From 063a88f0576abe058f13b1db5dd7df89160f66d8 Mon Sep 17 00:00:00 2001 From: vrms Date: Sat, 9 Jan 2016 19:45:39 +0800 Subject: [PATCH 01/46] Update implementation-strategy.md --- .../docs/user/manual/en/introduction/implementation-strategy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/docs/user/manual/en/introduction/implementation-strategy.md b/erpnext/docs/user/manual/en/introduction/implementation-strategy.md index bbfbbd6a22..bc494ca1f0 100644 --- a/erpnext/docs/user/manual/en/introduction/implementation-strategy.md +++ b/erpnext/docs/user/manual/en/introduction/implementation-strategy.md @@ -21,7 +21,7 @@ implementation should happen in two phases. Once you are familiar with ERPNext, start entering your live data! * Clean up the account of test data or better, start a fresh install. - * If you just want to clear your transactions and not your master data like Item, Customer, Supplier, BOM etc, you can click delete the Company against which you have made the transactions and start with a fresh Bill of Materials. To delete a company, open the Company Record via Setup > Masters > Company and delete the company by clicking on the **Delete Company** button at the bottom. + * If you just want to clear your transactions and not your master data like Item, Customer, Supplier, BOM etc, you can click delete the transactions of your Company and start fresh. To do so, open the Company Record via Setup > Masters > Company and delete your Company's transactions by clicking on the **Delete Company Transactions** button at the bottom of the Company Form. * You can also setup a new account at [https://erpnext.com](https://erpnext.com), and use the 30-day free trial. [Find out more ways of deploying ERPNext](/introduction/getting-started-with-erpnext) * Setup all the modules with Customer Groups, Item Groups, Warehouses, BOMs etc. * Import Customers, Suppliers, Items, Contacts and Addresses using Data Import Tool. From 932cf08aee5acdd811f117ffc2f5a5fc5163e0ff Mon Sep 17 00:00:00 2001 From: Shyju Kanaprath Date: Sun, 24 Jan 2016 10:00:29 +0530 Subject: [PATCH 02/46] Update index.md --- erpnext/docs/user/videos/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/docs/user/videos/index.md b/erpnext/docs/user/videos/index.md index 1399258285..071dedbd03 100644 --- a/erpnext/docs/user/videos/index.md +++ b/erpnext/docs/user/videos/index.md @@ -30,6 +30,6 @@
Watch video presentations from the ERPNext team and users from the 2014 ERPNext Conference.

- Join us at the ERPNext Conference on October 9th 2015 in Mumbai + ERPNext Conference on October 9th 2015 in Mumbai
- \ No newline at end of file + From 01de945388c17414118cd21caae36a38cc93279a Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Tue, 26 Jan 2016 16:22:50 +0530 Subject: [PATCH 03/46] [cleanup] Removed 'Is Service Item' checkbox and filters 'Is Service Item' checkbox only worked for filtering Items in Maintenance Schedule and Maintenance Visit, and validating that Items in a Maintenance type Order were of type 'Service'. However, it doesn't fit an actual use case where any Sales Item could be given for Maintenance, making the checkbox an unnecessary addition. --- erpnext/controllers/selling_controller.py | 18 ++++----- .../crm/doctype/opportunity/opportunity.js | 3 +- .../v5_2/change_item_selects_to_checks.py | 2 +- .../selling/doctype/quotation/quotation.py | 11 ++---- erpnext/selling/sales_common.js | 6 +-- erpnext/stock/doctype/item/item.json | 39 +------------------ erpnext/stock/doctype/item/test_records.json | 12 ------ erpnext/stock/get_item_details.py | 6 +-- .../maintenance_schedule.js | 2 +- .../maintenance_visit/maintenance_visit.js | 2 +- 10 files changed, 20 insertions(+), 81 deletions(-) diff --git a/erpnext/controllers/selling_controller.py b/erpnext/controllers/selling_controller.py index 895f146ba8..f340f91104 100644 --- a/erpnext/controllers/selling_controller.py +++ b/erpnext/controllers/selling_controller.py @@ -161,7 +161,7 @@ class SellingController(StockController): for d in self.get("items"): if d.qty is None: frappe.throw(_("Row {0}: Qty is mandatory").format(d.idx)) - + if self.has_product_bundle(d.item_code): for p in self.get("packed_items"): if p.parent_detail_docname == d.name and p.parent_item == d.item_code: @@ -199,17 +199,17 @@ class SellingController(StockController): where so_detail = %s and docstatus = 1 and against_sales_order = %s and parent != %s""", (so_detail, so, current_docname)) - - delivered_via_si = frappe.db.sql("""select sum(si_item.qty) + + delivered_via_si = frappe.db.sql("""select sum(si_item.qty) from `tabSales Invoice Item` si_item, `tabSales Invoice` si where si_item.parent = si.name and si.update_stock = 1 - and si_item.so_detail = %s and si.docstatus = 1 + and si_item.so_detail = %s and si.docstatus = 1 and si_item.sales_order = %s and si.name != %s""", (so_detail, so, current_docname)) - + total_delivered_qty = (flt(delivered_via_dn[0][0]) if delivered_via_dn else 0) \ + (flt(delivered_via_si[0][0]) if delivered_via_si else 0) - + return total_delivered_qty def get_so_qty_and_warehouse(self, so_detail): @@ -230,10 +230,10 @@ def check_active_sales_items(obj): for d in obj.get("items"): if d.item_code: item = frappe.db.sql("""select docstatus, is_sales_item, - is_service_item, income_account from tabItem where name = %s""", + income_account from tabItem where name = %s""", d.item_code, as_dict=True)[0] - if item.is_sales_item == 0 and item.is_service_item == 0: - frappe.throw(_("Item {0} must be Sales or Service Item in {1}").format(d.item_code, d.idx)) + if item.is_sales_item == 0: + frappe.throw(_("Item {0} must be a Sales Item in {1}").format(d.item_code, d.idx)) if getattr(d, "income_account", None) and not item.income_account: frappe.db.set_value("Item", d.item_code, "income_account", d.income_account) diff --git a/erpnext/crm/doctype/opportunity/opportunity.js b/erpnext/crm/doctype/opportunity/opportunity.js index af4e387b07..b274216a7f 100644 --- a/erpnext/crm/doctype/opportunity/opportunity.js +++ b/erpnext/crm/doctype/opportunity/opportunity.js @@ -52,8 +52,7 @@ erpnext.crm.Opportunity = frappe.ui.form.Controller.extend({ this.frm.set_query("item_code", "items", function() { return { query: "erpnext.controllers.queries.item_query", - filters: me.frm.doc.enquiry_type === "Maintenance" ? - {"is_service_item": 1} : {"is_sales_item":1} + filters: {"is_sales_item": 1} }; }); diff --git a/erpnext/patches/v5_2/change_item_selects_to_checks.py b/erpnext/patches/v5_2/change_item_selects_to_checks.py index 25d596b3eb..2665f4c227 100644 --- a/erpnext/patches/v5_2/change_item_selects_to_checks.py +++ b/erpnext/patches/v5_2/change_item_selects_to_checks.py @@ -4,7 +4,7 @@ import frappe def execute(): fields = ("is_stock_item", "is_asset_item", "has_batch_no", "has_serial_no", - "is_purchase_item", "is_sales_item", "is_service_item", "inspection_required", + "is_purchase_item", "is_sales_item", "inspection_required", "is_pro_applicable", "is_sub_contracted_item") diff --git a/erpnext/selling/doctype/quotation/quotation.py b/erpnext/selling/doctype/quotation/quotation.py index 43dd675cd2..3c8add44f7 100644 --- a/erpnext/selling/doctype/quotation/quotation.py +++ b/erpnext/selling/doctype/quotation/quotation.py @@ -28,14 +28,9 @@ class Quotation(SellingController): def validate_order_type(self): super(Quotation, self).validate_order_type() - if self.order_type in ['Maintenance', 'Service']: - for d in self.get('items'): - if not frappe.db.get_value("Item", d.item_code, "is_service_item"): - frappe.throw(_("Item {0} must be Service Item").format(d.item_code)) - else: - for d in self.get('items'): - if not frappe.db.get_value("Item", d.item_code, "is_sales_item"): - frappe.throw(_("Item {0} must be Sales Item").format(d.item_code)) + for d in self.get('items'): + if not frappe.db.get_value("Item", d.item_code, "is_sales_item"): + frappe.throw(_("Item {0} must be Sales Item").format(d.item_code)) def validate_quotation_to(self): if self.customer: diff --git a/erpnext/selling/sales_common.js b/erpnext/selling/sales_common.js index 7f17bd3837..850e229e4c 100644 --- a/erpnext/selling/sales_common.js +++ b/erpnext/selling/sales_common.js @@ -56,9 +56,7 @@ erpnext.selling.SellingController = erpnext.TransactionController.extend({ this.frm.set_query("item_code", "items", function() { return { query: "erpnext.controllers.queries.item_query", - filters: (me.frm.doc.order_type === "Maintenance" ? - {'is_service_item': 1}: - {'is_sales_item': 1 }) + filters: {'is_sales_item': 1} } }); } @@ -289,7 +287,7 @@ erpnext.selling.SellingController = erpnext.TransactionController.extend({ } refresh_field('product_bundle_help'); }, - + make_payment_request: function() { frappe.call({ method:"erpnext.accounts.doctype.payment_request.payment_request.make_payment_request", diff --git a/erpnext/stock/doctype/item/item.json b/erpnext/stock/doctype/item/item.json index b7d866de42..79789b014a 100644 --- a/erpnext/stock/doctype/item/item.json +++ b/erpnext/stock/doctype/item/item.json @@ -1463,35 +1463,6 @@ "set_only_once": 0, "unique": 0 }, - { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "default": "", - "depends_on": "eval:doc.is_sales_item", - "description": "Allow in Sales Order of type \"Service\"", - "fieldname": "is_service_item", - "fieldtype": "Check", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 1, - "in_list_view": 0, - "label": "Is Service Item", - "length": 0, - "no_copy": 0, - "oldfieldname": "is_service_item", - "oldfieldtype": "Select", - "options": "", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "unique": 0 - }, { "allow_on_submit": 0, "bold": 0, @@ -2338,7 +2309,7 @@ "issingle": 0, "istable": 0, "max_attachments": 1, - "modified": "2016-01-17 11:14:10.169713", + "modified": "2016-01-26 05:31:58.950718", "modified_by": "Administrator", "module": "Stock", "name": "Item", @@ -2358,7 +2329,6 @@ "print": 1, "read": 1, "report": 1, - "restrict": 0, "role": "Material Master Manager", "set_user_permissions": 0, "share": 1, @@ -2379,7 +2349,6 @@ "print": 1, "read": 1, "report": 1, - "restrict": 0, "role": "Material Manager", "set_user_permissions": 0, "share": 0, @@ -2400,7 +2369,6 @@ "print": 1, "read": 1, "report": 1, - "restrict": 0, "role": "Material User", "set_user_permissions": 0, "share": 0, @@ -2421,7 +2389,6 @@ "print": 0, "read": 1, "report": 0, - "restrict": 0, "role": "Sales User", "set_user_permissions": 0, "share": 0, @@ -2442,7 +2409,6 @@ "print": 0, "read": 1, "report": 0, - "restrict": 0, "role": "Purchase User", "set_user_permissions": 0, "share": 0, @@ -2463,7 +2429,6 @@ "print": 0, "read": 1, "report": 0, - "restrict": 0, "role": "Maintenance User", "set_user_permissions": 0, "share": 0, @@ -2484,7 +2449,6 @@ "print": 0, "read": 1, "report": 0, - "restrict": 0, "role": "Accounts User", "set_user_permissions": 0, "share": 0, @@ -2505,7 +2469,6 @@ "print": 0, "read": 1, "report": 0, - "restrict": 0, "role": "Manufacturing User", "set_user_permissions": 0, "share": 0, diff --git a/erpnext/stock/doctype/item/test_records.json b/erpnext/stock/doctype/item/test_records.json index f12c7cccf7..ca40d45e1a 100644 --- a/erpnext/stock/doctype/item/test_records.json +++ b/erpnext/stock/doctype/item/test_records.json @@ -13,7 +13,6 @@ "is_pro_applicable": 0, "is_purchase_item": 1, "is_sales_item": 1, - "is_service_item": 0, "is_stock_item": 1, "is_sub_contracted_item": 0, "item_code": "_Test Item", @@ -46,7 +45,6 @@ "is_pro_applicable": 0, "is_purchase_item": 1, "is_sales_item": 1, - "is_service_item": 0, "is_stock_item": 1, "is_sub_contracted_item": 0, "item_code": "_Test Item 2", @@ -70,7 +68,6 @@ "is_pro_applicable": 0, "is_purchase_item": 1, "is_sales_item": 1, - "is_service_item": 0, "is_stock_item": 1, "is_sub_contracted_item": 0, "item_code": "_Test Item Home Desktop 100", @@ -100,7 +97,6 @@ "is_pro_applicable": 0, "is_purchase_item": 1, "is_sales_item": 1, - "is_service_item": 0, "is_stock_item": 1, "is_sub_contracted_item": 0, "item_code": "_Test Item Home Desktop 200", @@ -121,7 +117,6 @@ "is_pro_applicable": 0, "is_purchase_item": 1, "is_sales_item": 1, - "is_service_item": 0, "is_stock_item": 0, "is_sub_contracted_item": 0, "item_code": "_Test Product Bundle Item", @@ -143,7 +138,6 @@ "is_pro_applicable": 1, "is_purchase_item": 1, "is_sales_item": 1, - "is_service_item": 0, "is_stock_item": 1, "is_sub_contracted_item": 1, "item_code": "_Test FG Item", @@ -161,7 +155,6 @@ "is_pro_applicable": 0, "is_purchase_item": 1, "is_sales_item": 1, - "is_service_item": 0, "is_stock_item": 0, "is_sub_contracted_item": 0, "item_code": "_Test Non Stock Item", @@ -180,7 +173,6 @@ "is_pro_applicable": 0, "is_purchase_item": 1, "is_sales_item": 1, - "is_service_item": 0, "is_stock_item": 1, "is_sub_contracted_item": 0, "item_code": "_Test Serialized Item", @@ -199,7 +191,6 @@ "is_pro_applicable": 0, "is_purchase_item": 1, "is_sales_item": 1, - "is_service_item": 0, "is_stock_item": 1, "is_sub_contracted_item": 0, "item_code": "_Test Serialized Item With Series", @@ -221,7 +212,6 @@ "is_asset_item": 0, "is_pro_applicable": 1, "is_sales_item": 1, - "is_service_item": 0, "is_stock_item": 1, "is_sub_contracted_item": 0, "item_code": "_Test Item Home Desktop Manufactured", @@ -243,7 +233,6 @@ "is_pro_applicable": 1, "is_purchase_item": 1, "is_sales_item": 1, - "is_service_item": 0, "is_stock_item": 1, "is_sub_contracted_item": 1, "item_code": "_Test FG Item 2", @@ -265,7 +254,6 @@ "is_pro_applicable": 1, "is_purchase_item": 1, "is_sales_item": 1, - "is_service_item": 0, "is_stock_item": 1, "is_sub_contracted_item": 1, "item_code": "_Test Variant Item", diff --git a/erpnext/stock/get_item_details.py b/erpnext/stock/get_item_details.py index 1c0acce8ef..55483506bb 100644 --- a/erpnext/stock/get_item_details.py +++ b/erpnext/stock/get_item_details.py @@ -111,11 +111,7 @@ def validate_item_details(args, item): if args.transaction_type=="selling": # validate if sales item or service item - if args.get("order_type") == "Maintenance": - if item.is_service_item != 1: - throw(_("Item {0} must be a Service Item.").format(item.name)) - - elif item.is_sales_item != 1: + if item.is_sales_item != 1: throw(_("Item {0} must be a Sales Item").format(item.name)) if cint(item.has_variants): diff --git a/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.js b/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.js index 91b1f67cb5..650429c8d9 100644 --- a/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.js +++ b/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.js @@ -107,7 +107,7 @@ cur_frm.fields_dict['contact_person'].get_query = function(doc, cdt, cdn) { cur_frm.fields_dict['items'].grid.get_field('item_code').get_query = function(doc, cdt, cdn) { return { - filters:{ 'is_service_item': 1 } + filters:{ 'is_sales_item': 1 } } } diff --git a/erpnext/support/doctype/maintenance_visit/maintenance_visit.js b/erpnext/support/doctype/maintenance_visit/maintenance_visit.js index 52141a8f92..51ba62a4b9 100644 --- a/erpnext/support/doctype/maintenance_visit/maintenance_visit.js +++ b/erpnext/support/doctype/maintenance_visit/maintenance_visit.js @@ -81,7 +81,7 @@ cur_frm.fields_dict['contact_person'].get_query = function(doc, cdt, cdn) { cur_frm.fields_dict['purposes'].grid.get_field('item_code').get_query = function(doc, cdt, cdn) { return{ - filters:{ 'is_service_item': 1} + filters:{ 'is_sales_item': 1} } } From b2206d11554f45dc811b42a7121c91d40a49b5b1 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Wed, 27 Jan 2016 15:43:12 +0530 Subject: [PATCH 04/46] [fix] Multi currency advance payment against Order --- .../doctype/payment_tool/payment_tool.js | 4 +++ .../doctype/payment_tool/payment_tool.py | 4 ++- .../purchase_order/purchase_order.json | 28 ++++++++++++++- erpnext/controllers/accounts_controller.py | 34 ++++++++++++------- .../doctype/sales_order/sales_order.json | 29 ++++++++++++++-- 5 files changed, 83 insertions(+), 16 deletions(-) diff --git a/erpnext/accounts/doctype/payment_tool/payment_tool.js b/erpnext/accounts/doctype/payment_tool/payment_tool.js index ec15b47eb1..e15694c931 100644 --- a/erpnext/accounts/doctype/payment_tool/payment_tool.js +++ b/erpnext/accounts/doctype/payment_tool/payment_tool.js @@ -42,6 +42,10 @@ frappe.ui.form.on("Payment Tool", "refresh", function(frm) { frappe.ui.form.trigger("Payment Tool", "party_type"); }); +frappe.ui.form.on("Payment Tool", "party_type", function(frm) { + frm.set_value("received_or_paid", frm.doc.party_type=="Customer" ? "Received" : "Paid"); +}); + frappe.ui.form.on("Payment Tool", "party", function(frm) { if(frm.doc.party_type && frm.doc.party) { return frappe.call({ diff --git a/erpnext/accounts/doctype/payment_tool/payment_tool.py b/erpnext/accounts/doctype/payment_tool/payment_tool.py index 19527d3a1d..36483067a1 100644 --- a/erpnext/accounts/doctype/payment_tool/payment_tool.py +++ b/erpnext/accounts/doctype/payment_tool/payment_tool.py @@ -71,7 +71,9 @@ class PaymentTool(Document): d2.account = self.payment_account d2.account_currency = bank_account_currency d2.account_type = bank_account_type - d2.exchange_rate = get_exchange_rate(self.payment_account, self.company) + d2.exchange_rate = get_exchange_rate(self.payment_account, bank_account_currency, self.company, + debit=(abs(total_payment_amount) if total_payment_amount < 0 else 0), + credit=(total_payment_amount if total_payment_amount > 0 else 0)) d2.account_balance = get_balance_on(self.payment_account) amount_field_bank = 'debit_in_account_currency' if total_payment_amount < 0 \ diff --git a/erpnext/buying/doctype/purchase_order/purchase_order.json b/erpnext/buying/doctype/purchase_order/purchase_order.json index 277229a3be..69e518539d 100644 --- a/erpnext/buying/doctype/purchase_order/purchase_order.json +++ b/erpnext/buying/doctype/purchase_order/purchase_order.json @@ -1610,6 +1610,7 @@ "label": "Advance Paid", "length": 0, "no_copy": 1, + "options": "party_account_currency", "permlevel": 0, "print_hide": 1, "print_hide_if_no_value": 0, @@ -1968,6 +1969,31 @@ "set_only_once": 0, "unique": 0 }, + { + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "party_account_currency", + "fieldtype": "Link", + "hidden": 1, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Party Account Currency", + "length": 0, + "no_copy": 1, + "options": "Currency", + "permlevel": 0, + "precision": "", + "print_hide": 1, + "print_hide_if_no_value": 0, + "read_only": 1, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "unique": 0 + }, { "allow_on_submit": 0, "bold": 0, @@ -2508,7 +2534,7 @@ "issingle": 0, "istable": 0, "max_attachments": 0, - "modified": "2016-01-15 04:13:35.179163", + "modified": "2016-01-27 15:15:05.213016", "modified_by": "Administrator", "module": "Buying", "name": "Purchase Order", diff --git a/erpnext/controllers/accounts_controller.py b/erpnext/controllers/accounts_controller.py index 81e5f9e1da..b8acf68ddf 100644 --- a/erpnext/controllers/accounts_controller.py +++ b/erpnext/controllers/accounts_controller.py @@ -386,27 +386,37 @@ class AccountsController(TransactionBase): def set_total_advance_paid(self): if self.doctype == "Sales Order": dr_or_cr = "credit_in_account_currency" + party = self.customer else: dr_or_cr = "debit_in_account_currency" + party = self.supplier - advance_paid = frappe.db.sql(""" + advance = frappe.db.sql(""" select - sum({dr_or_cr}) + account_currency, sum({dr_or_cr}) as amount from `tabJournal Entry Account` where - reference_type = %s and reference_name = %s + reference_type = %s and reference_name = %s and party=%s and docstatus = 1 and is_advance = "Yes" - """.format(dr_or_cr=dr_or_cr), (self.doctype, self.name)) + """.format(dr_or_cr=dr_or_cr), (self.doctype, self.name, party), as_dict=1) - if advance_paid: - advance_paid = flt(advance_paid[0][0], self.precision("advance_paid")) - if flt(self.base_grand_total) >= advance_paid: - frappe.db.set_value(self.doctype, self.name, "advance_paid", advance_paid) - else: - frappe.throw(_("Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})") - .format(advance_paid, self.name, self.base_grand_total)) + if advance: + advance_paid = flt(advance[0].amount, self.precision("advance_paid")) + + frappe.db.set_value(self.doctype, self.name, "party_account_currency", + advance[0].account_currency) + + if advance[0].account_currency == self.currency: + order_total = self.grand_total + else: + order_total = self.base_grand_total + + if order_total >= advance_paid: + frappe.db.set_value(self.doctype, self.name, "advance_paid", advance_paid) + else: + frappe.throw(_("Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2})") + .format(advance_paid, self.name, order_total)) @property def company_abbr(self): diff --git a/erpnext/selling/doctype/sales_order/sales_order.json b/erpnext/selling/doctype/sales_order/sales_order.json index ee97334ad2..fa21f0eaff 100644 --- a/erpnext/selling/doctype/sales_order/sales_order.json +++ b/erpnext/selling/doctype/sales_order/sales_order.json @@ -1569,7 +1569,7 @@ "label": "Advance Paid", "length": 0, "no_copy": 1, - "options": "Company:company:default_currency", + "options": "party_account_currency", "permlevel": 0, "print_hide": 1, "print_hide_if_no_value": 0, @@ -1959,6 +1959,31 @@ "unique": 0, "width": "150px" }, + { + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "party_account_currency", + "fieldtype": "Link", + "hidden": 1, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Party Account Currency", + "length": 0, + "no_copy": 1, + "options": "Currency", + "permlevel": 0, + "precision": "", + "print_hide": 1, + "print_hide_if_no_value": 0, + "read_only": 1, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "unique": 0 + }, { "allow_on_submit": 0, "bold": 0, @@ -2802,7 +2827,7 @@ "issingle": 0, "istable": 0, "max_attachments": 0, - "modified": "2015-12-29 12:32:45.649349", + "modified": "2016-01-27 15:16:00.560261", "modified_by": "Administrator", "module": "Selling", "name": "Sales Order", From ee8f88d6414efff4edc1d4a70017fa1f95561f45 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Wed, 27 Jan 2016 16:01:31 +0530 Subject: [PATCH 05/46] [patch] Set party account currency in existing orders --- erpnext/patches.txt | 1 + erpnext/patches/v6_20/__init__.py | 0 .../set_party_account_currency_in_orders.py | 24 +++++++++++++++++++ 3 files changed, 25 insertions(+) create mode 100644 erpnext/patches/v6_20/__init__.py create mode 100644 erpnext/patches/v6_20/set_party_account_currency_in_orders.py diff --git a/erpnext/patches.txt b/erpnext/patches.txt index 7b079974d0..f0e12e0c85 100644 --- a/erpnext/patches.txt +++ b/erpnext/patches.txt @@ -245,3 +245,4 @@ erpnext.patches.v6_12.set_overdue_tasks erpnext.patches.v6_16.update_billing_status_in_dn_and_pr erpnext.patches.v6_16.create_manufacturer_records execute:frappe.db.sql("update `tabPricing Rule` set title=name where title='' or title is null") #2016-01-27 +erpnext.patches.v6_20.set_party_account_currency_in_orders \ No newline at end of file diff --git a/erpnext/patches/v6_20/__init__.py b/erpnext/patches/v6_20/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/erpnext/patches/v6_20/set_party_account_currency_in_orders.py b/erpnext/patches/v6_20/set_party_account_currency_in_orders.py new file mode 100644 index 0000000000..ae7ad9592d --- /dev/null +++ b/erpnext/patches/v6_20/set_party_account_currency_in_orders.py @@ -0,0 +1,24 @@ +# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors +# License: GNU General Public License v3. See license.txt + +from __future__ import unicode_literals +import frappe + +def execute(): + for doctype in ("Sales Order", "Purchase Order"): + frappe.reload_doctype(doctype) + + for order in frappe.db.sql("""select name, {0} as party from `tab{1}` + where advance_paid > 0 and docstatus=1""" + .format(("customer" if doctype=="Sales Order" else "supplier"), doctype), as_dict=1): + + party_account_currency = frappe.db.get_value("Journal Entry Account", { + "reference_type": doctype, + "reference_name": order.name, + "party": order.party, + "docstatus": 1, + "is_advance": "Yes" + }, "account_currency") + + frappe.db.set_value(doctype, order.name, "party_account_currency", party_account_currency) + \ No newline at end of file From 5204eeedf750ad5c2d7e9e16bda4f76367b3d507 Mon Sep 17 00:00:00 2001 From: Umair Sayyed Date: Wed, 27 Jan 2016 11:33:27 +0530 Subject: [PATCH 06/46] articles --- .../docs/assets/img/articles/$SGrab_258.png | Bin 11700 -> 0 bytes .../docs/assets/img/articles/$SGrab_260.png | Bin 15857 -> 0 bytes .../docs/assets/img/articles/$SGrab_261.png | Bin 27892 -> 0 bytes .../docs/assets/img/articles/$SGrab_439.png | Bin 12749 -> 0 bytes .../docs/assets/img/articles/$SGrab_440.png | Bin 10229 -> 0 bytes .../Screen Shot 2015-04-01 at 5.32.57 pm.png | Bin 38581 -> 0 bytes .../img/articles/Selection_00616c670.png | Bin 14037 -> 0 bytes .../img/articles/Selection_010496ae2.png | Bin 13921 -> 0 bytes .../img/articles/Selection_01087d575.png | Bin 9438 -> 0 bytes .../assets/img/articles/Selection_011.png | Bin 29284 -> 0 bytes .../img/articles/Selection_01244aec7.png | Bin 30262 -> 0 bytes erpnext/docs/assets/img/articles/close-1.png | Bin 0 -> 90406 bytes erpnext/docs/assets/img/articles/close-2.png | Bin 0 -> 59458 bytes .../docs/assets/img/articles/discount-1.png | Bin 0 -> 84339 bytes .../docs/assets/img/articles/discount-2.png | Bin 0 -> 79214 bytes .../articles/sales-person-transaction-1.png | Bin 0 -> 55207 bytes .../articles/sales-person-transaction-2.png | Bin 0 -> 58566 bytes .../articles/sales-person-transaction-3.png | Bin 0 -> 145383 bytes .../articles/sales-person-transaction-4.png | Bin 0 -> 126688 bytes .../docs/assets/img/articles/services-1.gif | Bin 0 -> 310435 bytes .../img/articles/shipping-charges-1.png | Bin 0 -> 68689 bytes .../img/articles/shipping-charges-2.gif | Bin 0 -> 725068 bytes .../img/articles/shipping-charges-3.png | Bin 0 -> 63627 bytes .../img/articles/shipping-charges-4.gif | Bin 0 -> 951987 bytes .../current/api/support/erpnext.support.html | 18 - erpnext/docs/current/api/support/index.html | 19 - erpnext/docs/current/api/support/index.txt | 1 - ...erpnext.utilities.address_and_contact.html | 114 -- .../api/utilities/erpnext.utilities.html | 34 - .../erpnext.utilities.transaction_base.html | 206 --- erpnext/docs/current/api/utilities/index.html | 19 - erpnext/docs/current/api/utilities/index.txt | 3 - .../models/stock/material_request.html | 723 -------- .../models/stock/material_request_item.html | 407 ----- .../current/models/stock/packed_item.html | 395 ---- .../current/models/stock/packing_slip.html | 592 ------ .../models/stock/packing_slip_item.html | 219 --- .../docs/current/models/stock/price_list.html | 426 ----- .../models/stock/price_list_country.html | 84 - .../models/stock/purchase_receipt_item.html | 999 ---------- .../docs/current/models/stock/serial_no.html | 1110 ----------- .../current/models/stock/stock_entry.html | 1617 ----------------- .../models/stock/stock_entry_detail.html | 656 ------- .../models/stock/stock_ledger_entry.html | 552 ------ .../models/stock/stock_reconciliation.html | 589 ------ .../stock/stock_reconciliation_item.html | 179 -- .../current/models/stock/stock_settings.html | 337 ---- .../models/stock/uom_conversion_detail.html | 96 - .../docs/current/models/stock/warehouse.html | 682 ------- .../docs/current/models/support/index.html | 19 - erpnext/docs/current/models/support/index.txt | 0 .../docs/current/models/support/issue.html | 592 ------ .../models/support/maintenance_schedule.html | 685 ------- .../support/maintenance_schedule_detail.html | 153 -- .../support/maintenance_schedule_item.html | 233 --- .../models/support/maintenance_visit.html | 666 ------- .../support/maintenance_visit_purpose.html | 212 --- .../models/support/warranty_claim.html | 780 -------- .../current/models/utilities/address.html | 738 -------- .../models/utilities/address_template.html | 175 -- .../current/models/utilities/contact.html | 614 ------- .../docs/current/models/utilities/index.html | 19 - .../docs/current/models/utilities/index.txt | 0 .../current/models/utilities/rename_tool.html | 147 -- .../current/models/utilities/sms_log.html | 197 -- .../articles/changing-parent-account.md | 6 +- .../en/selling/articles/applying-discount.md | 28 +- .../en/selling/articles/close-sales-order.md | 21 + .../en/selling/articles/drop-shipping.md | 16 +- .../erpnext-for-services-organization.md | 35 +- .../user/manual/en/selling/articles/index.txt | 6 +- .../selling/articles/manage-shipping-rule.md | 25 - ...ing-sales-persons-in-sales-transactions.md | 43 - ...sales-persons-in-the-sales-transactions.md | 43 + .../en/selling/articles/shipping-rule.md | 33 + .../selling/articles/stopping-sales-order.md | 17 - 76 files changed, 154 insertions(+), 15426 deletions(-) delete mode 100644 erpnext/docs/assets/img/articles/$SGrab_258.png delete mode 100644 erpnext/docs/assets/img/articles/$SGrab_260.png delete mode 100644 erpnext/docs/assets/img/articles/$SGrab_261.png delete mode 100644 erpnext/docs/assets/img/articles/$SGrab_439.png delete mode 100644 erpnext/docs/assets/img/articles/$SGrab_440.png delete mode 100644 erpnext/docs/assets/img/articles/Screen Shot 2015-04-01 at 5.32.57 pm.png delete mode 100644 erpnext/docs/assets/img/articles/Selection_00616c670.png delete mode 100644 erpnext/docs/assets/img/articles/Selection_010496ae2.png delete mode 100644 erpnext/docs/assets/img/articles/Selection_01087d575.png delete mode 100644 erpnext/docs/assets/img/articles/Selection_011.png delete mode 100644 erpnext/docs/assets/img/articles/Selection_01244aec7.png create mode 100644 erpnext/docs/assets/img/articles/close-1.png create mode 100644 erpnext/docs/assets/img/articles/close-2.png create mode 100644 erpnext/docs/assets/img/articles/discount-1.png create mode 100644 erpnext/docs/assets/img/articles/discount-2.png create mode 100644 erpnext/docs/assets/img/articles/sales-person-transaction-1.png create mode 100644 erpnext/docs/assets/img/articles/sales-person-transaction-2.png create mode 100644 erpnext/docs/assets/img/articles/sales-person-transaction-3.png create mode 100644 erpnext/docs/assets/img/articles/sales-person-transaction-4.png create mode 100644 erpnext/docs/assets/img/articles/services-1.gif create mode 100644 erpnext/docs/assets/img/articles/shipping-charges-1.png create mode 100644 erpnext/docs/assets/img/articles/shipping-charges-2.gif create mode 100644 erpnext/docs/assets/img/articles/shipping-charges-3.png create mode 100644 erpnext/docs/assets/img/articles/shipping-charges-4.gif delete mode 100644 erpnext/docs/current/api/support/erpnext.support.html delete mode 100644 erpnext/docs/current/api/support/index.html delete mode 100644 erpnext/docs/current/api/support/index.txt delete mode 100644 erpnext/docs/current/api/utilities/erpnext.utilities.address_and_contact.html delete mode 100644 erpnext/docs/current/api/utilities/erpnext.utilities.html delete mode 100644 erpnext/docs/current/api/utilities/erpnext.utilities.transaction_base.html delete mode 100644 erpnext/docs/current/api/utilities/index.html delete mode 100644 erpnext/docs/current/api/utilities/index.txt delete mode 100644 erpnext/docs/current/models/stock/material_request.html delete mode 100644 erpnext/docs/current/models/stock/material_request_item.html delete mode 100644 erpnext/docs/current/models/stock/packed_item.html delete mode 100644 erpnext/docs/current/models/stock/packing_slip.html delete mode 100644 erpnext/docs/current/models/stock/packing_slip_item.html delete mode 100644 erpnext/docs/current/models/stock/price_list.html delete mode 100644 erpnext/docs/current/models/stock/price_list_country.html delete mode 100644 erpnext/docs/current/models/stock/purchase_receipt_item.html delete mode 100644 erpnext/docs/current/models/stock/serial_no.html delete mode 100644 erpnext/docs/current/models/stock/stock_entry.html delete mode 100644 erpnext/docs/current/models/stock/stock_entry_detail.html delete mode 100644 erpnext/docs/current/models/stock/stock_ledger_entry.html delete mode 100644 erpnext/docs/current/models/stock/stock_reconciliation.html delete mode 100644 erpnext/docs/current/models/stock/stock_reconciliation_item.html delete mode 100644 erpnext/docs/current/models/stock/stock_settings.html delete mode 100644 erpnext/docs/current/models/stock/uom_conversion_detail.html delete mode 100644 erpnext/docs/current/models/stock/warehouse.html delete mode 100644 erpnext/docs/current/models/support/index.html delete mode 100644 erpnext/docs/current/models/support/index.txt delete mode 100644 erpnext/docs/current/models/support/issue.html delete mode 100644 erpnext/docs/current/models/support/maintenance_schedule.html delete mode 100644 erpnext/docs/current/models/support/maintenance_schedule_detail.html delete mode 100644 erpnext/docs/current/models/support/maintenance_schedule_item.html delete mode 100644 erpnext/docs/current/models/support/maintenance_visit.html delete mode 100644 erpnext/docs/current/models/support/maintenance_visit_purpose.html delete mode 100644 erpnext/docs/current/models/support/warranty_claim.html delete mode 100644 erpnext/docs/current/models/utilities/address.html delete mode 100644 erpnext/docs/current/models/utilities/address_template.html delete mode 100644 erpnext/docs/current/models/utilities/contact.html delete mode 100644 erpnext/docs/current/models/utilities/index.html delete mode 100644 erpnext/docs/current/models/utilities/index.txt delete mode 100644 erpnext/docs/current/models/utilities/rename_tool.html delete mode 100644 erpnext/docs/current/models/utilities/sms_log.html create mode 100644 erpnext/docs/user/manual/en/selling/articles/close-sales-order.md delete mode 100644 erpnext/docs/user/manual/en/selling/articles/manage-shipping-rule.md delete mode 100644 erpnext/docs/user/manual/en/selling/articles/managing-sales-persons-in-sales-transactions.md create mode 100644 erpnext/docs/user/manual/en/selling/articles/sales-persons-in-the-sales-transactions.md create mode 100644 erpnext/docs/user/manual/en/selling/articles/shipping-rule.md delete mode 100644 erpnext/docs/user/manual/en/selling/articles/stopping-sales-order.md diff --git a/erpnext/docs/assets/img/articles/$SGrab_258.png b/erpnext/docs/assets/img/articles/$SGrab_258.png deleted file mode 100644 index c5d59f88258d762f5a5dc2c503bf7ebdd17c7907..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 11700 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 diff --git a/erpnext/docs/assets/img/articles/$SGrab_260.png b/erpnext/docs/assets/img/articles/$SGrab_260.png deleted file mode 100644 index 4ba692bf24ab8d2027a4138349ee8ef2f0ffd2cc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 15857 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 xC)mQ&rHb+AYg=@ko?>)fJrC=+h^=jP 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 diff --git a/erpnext/docs/assets/img/articles/$SGrab_439.png b/erpnext/docs/assets/img/articles/$SGrab_439.png deleted file mode 100644 index 2afa5fd3acd3be1b0538a22f35e421612b1b952d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 12749 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 diff --git a/erpnext/docs/assets/img/articles/$SGrab_440.png b/erpnext/docs/assets/img/articles/$SGrab_440.png deleted file mode 100644 index 6f62d34056c425563a555d0c512ab90b647b1247..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 10229 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 C^z9=6 diff --git a/erpnext/docs/assets/img/articles/Screen Shot 2015-04-01 at 5.32.57 pm.png b/erpnext/docs/assets/img/articles/Screen Shot 2015-04-01 at 5.32.57 pm.png deleted file mode 100644 index 44fa23f7c42d183d5c763be82de0069835031ae0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 38581 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 diff --git a/erpnext/docs/assets/img/articles/Selection_010496ae2.png b/erpnext/docs/assets/img/articles/Selection_010496ae2.png deleted file mode 100644 index f2e23260378c7731ca5118ff7819d2eb13c96044..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 13921 zcmc(FWmH_jwq^%nSa1ju2#veD1!xFPaEIXT?j!_gJh(&f;O?4W!QI{6n#Q4-Cil*o zJMYeWZ_Qe>*8DlAy3amUyXx%P`>VabkWca-(U1v|0RRA+lq5(A06=Jgw_&dl;8*n- z5iR%)(MeQF<@M{=3u_9i@ShmY;u_A%cBam52972GWpfv2XA?)GucJr+z zvr(SzSceNA8PI@d4(R9iD z3XafOR^u9$e!Pd)xzM}@S$~F?S%MbJXuqEliP10W1L?VvMmLk<7s7Fl@;(mBFsy)I zhY98gz;$IRlOXyRJ2u-2lk2VeJ6vYNty0R@YYAEg`z8D?wV9>N^^!(*dIEe}qMNo4 zmtpB!zq_>U`rbH9d0*VDZIj4^O-36PL=7W<)_P;7yAb2O(*oig{=hl`0N6hZr=cJd z630))DWm`@eWTbjRF291+BG<(ceB;QuW++2=oT@S8TBsMQAQ>(v6&{L&(cDaUc_=v5jZ{-81+x)LZpse#A>&-sI}WS)T&J1L)wP@m4IDrQQmQGID$k2`^Nzn0 zgi#mJ3D|6TES&FaTbJmojK_r(jvej2gu$cC$Mc`+_{csCmZ7;?L42&H3#y3ge;7wOCOvUewcM=!pQ%+WQkJERvz|Zt zJ1mqY9u6YaLL^3-$>j`*cey;9Ly_mZSv$$S<*t*EA^kD=`RR`_RKAeh=agcb77xA` z!&ud0gV9=;yaF_ScSsN4PBmTxJUnAZgKxK9&7yi=uc~?AOx^)7`7*n;*_EJ+K$*Q3 zgp=el@mg5n;ml5<&OHEIB0o@uZ~y90XsQpsc)?L7FXo|&n$m2z={$<|*^?r_$Ujoh z6C`GR?rck8@>{xIBU`@Bj^HmEBIYGJugfrZeMueB7am8XaCF~RGqm8gRiM95Q^Z2| zl{{{Fc>ccC<&DC}y&hfFA)OD7B}J{dzg#a1TXOOW1OE7FDAk0M0kK|0YT8fu)JH_% zWx~SBAXRuC_POH|it+UYzbsCCT6=zDcblq_nesYKaW4#{3Z!(IYi^tsF#&-vVBOe+ zrn)KSM@sYIFbfLg2oy8zD^e@h(^i-E8B1$+z7Ul!mI>f!iT(SA?R`)Fs3<{G_!eiP zVs}m%bjI=8Be>#P>))H@2fOjZvqa0gbE(^f`Z zMuhXi5{N=w#;?Ij`v}>Ts+S#w$kjkn`Kr6cvs%m4i3M%W{&0IKcdzt87t9_k+OTH$@%-&mf1mM-6S0?awye4y2pG@;iqIay|~r z4)JR!B`j!2P(%z8&(vN!X|`nHu@}lJ3jaR5EO z8-UaWWh1a-DmwW#k}=V%P<)rx1h$88hlgXt7FV}Uk)f)xbH&PGMLR4=2DUZ|J=*(9 ziTElS{xKJJ^+z+xr9+A??K_li_*j4Rr~2hk zqmgAx)O?FiY2w~7j|31KlUJ*`CD$;GDknlx4B^JV{!G*^gU5by_jG(Q$P|cm<-Rs3 zh^D7JR#Yo~`?C5YHU36t(*MZgO095`*xrHvWi$AOVxXMEeEmS$@+v zRlIO7wk91)7_pA>mq1C8hbXkP5fk0gSLhr(-O#AM+fD_ao5!}8DSVyF!GjGl&Rr7_ho&nA9|1PC

M@@gm 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 DA>?Uh diff --git a/erpnext/docs/assets/img/articles/Selection_011.png b/erpnext/docs/assets/img/articles/Selection_011.png deleted file mode 100644 index 8bf4cfa8f7cb11133b640eb88bcec40b32233795..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 29284 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 QoadR0guHl#sA0f=0fAyD2LJ#7 diff --git a/erpnext/docs/assets/img/articles/Selection_01244aec7.png b/erpnext/docs/assets/img/articles/Selection_01244aec7.png deleted file mode 100644 index 3a1c50c804d1d822dce7b459cb6d463c4a29a9bb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 30262 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 diff --git a/erpnext/docs/assets/img/articles/close-1.png b/erpnext/docs/assets/img/articles/close-1.png new file mode 100644 index 0000000000000000000000000000000000000000..3975f71f76e5aaf7dd6a46248ca85b1455da4231 GIT binary patch literal 90406 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 z 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

oa8wyk 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 literal 0 HcmV?d00001 diff --git a/erpnext/docs/assets/img/articles/close-2.png b/erpnext/docs/assets/img/articles/close-2.png new file mode 100644 index 0000000000000000000000000000000000000000..f9e63f21161230ed1c67a2eee1bd7210a60c701a GIT binary patch literal 59458 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

  • TwO$~zpZ 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 literal 0 HcmV?d00001 diff --git a/erpnext/docs/assets/img/articles/discount-1.png b/erpnext/docs/assets/img/articles/discount-1.png new file mode 100644 index 0000000000000000000000000000000000000000..32afa1fbc74c510eacdbd566889a5260648cf948 GIT binary patch literal 84339 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

    5AnBk)Q|WUNS{=MuU0Y^jT@`2$n}2_mmO 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 E8i! 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%0AXs$<&fan)SZNk!-J3aRck1C^U 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�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 bHGkju*F5;oB@=q62`A9Dx3~YxB}@Mug1SHg literal 0 HcmV?d00001 diff --git a/erpnext/docs/assets/img/articles/shipping-charges-1.png b/erpnext/docs/assets/img/articles/shipping-charges-1.png new file mode 100644 index 0000000000000000000000000000000000000000..31c5c1875987f5b8edf2876db3b09f5af864441d GIT binary patch literal 68689 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�P`a#l*g_$qU^1K04q#zBFD9Yel`|oo~9= zpre;b6S9>@<$JaugRV}`TJ|wV8Okg--hEjTgWf0x&i7t9Lou0x#OrjG33WGZoq2a% z$1*Ef`kw^S|K^0R_zEZ)h=$df*9P&H=#R(f@cI(*x@EXuTU|tLhF2b6t(;3IJHWHt zwVTT7$a^{Hp6_LVd-2jSafj6$;*jF=u32g?co97jx+cU{?N6VBI9*@VIPQF**Q(E`t;MNG z(OfxcbJ$>RW;b?YVG2*`DgMH2e$}{V_JI}(PrCK}1Jcc74`s>^mbvF!8q-hTdcAY4RH|K-!jet zOuhpLnm@+e8(IdaXG0=^EYdKQ7Lc*ZlN@QOkvKzBRDYydj1c@R-B7qdnhey{!F#Pg zm>H|^`fpg{`+_ScHd5*R_A(^?ke7uWa&IoC-#n&XMf_iX5QQA{f-$!Df9Hty$14Aa zB?(B9q2LjO>BX2$5l&)BN)|OwsDd{D6`9ufp|e<*+*0L#F+3RM17k9HnlG067yfNv zVe%si9Ap?E)Or>E1GmW~lmU!!5&w@dfxof%*9+e+6cmUOrVH|tKaXDjI{GipiYQ1R z0sntIW<^U|eRdC@3K8SKa{qURlR*6;5w>J&gJ-@Jx<|zcdFubn)IRywcvUO&1ccSf z%&*Y@VEVt0U6B!hVsU;4{G&SM-!y(*UuIyw_!tS2{%>_St*Kz#kE9HKuDZY8{^$By z{T$VecQ5CdrceC+QCI)e*->X@VG{wG$z_q2+D z1;>X||K06>Qa=Kh_1GJ~(fHpu4hIX)h5`JCB!2;70rrc}){s#3|Hd&sSa1tUgMVi$ z{gz-YIvBsyV2j@_u>Ypd_OsGSuIE3Q0)I;K7a(lF_L{_vKKtfh2KASb|3YB_)o3aC zKg#55^l^n}UtZnNH)o4>;w%=$qiMcDuE6~p8Brir$$e?0d6<#x5QSN$GiZlnT(;JW zi|Rzoo%RcxeSKS7)Su&sz(rfTqH=o-zel1H4>B#Vs8BbV?&pKP6go@dIhjq&UurwbW8xAFk3GKv3@Tr#2*aPfEBJ8+*AJ-JNZ@XHY8w8y+ly|-`0ats75XJ z%3??6h{GEK;?gIA0 zAny5lk%?q!+-&B1qdL()<8=3{IkArHKLv}0ZA6ag=XW(L_g9qVN7PQb&NMmEO?lK4 zHbi24eqzP-K$*{GKWeZiw<5A-&eEiZ24KYVLoa)TNjHS76qO=R>eh1J5(!PJ(8X5* zsehx7l6ZlB%n?cxUiQ_R8G}hZ0%UpJQTbxcCZT(T^b?+~cNB9@s)SDjAl0(TX-@PX zT9+6jh3^#^hm+{B#N$;3n78#;L#jAR0i!-_Gb9iB@WMA1L+A-jIWtX4l1vIto~52X zUM`O%#!MVtrFI)0^oZ)?l^2*r6#}p(L~C(J>H)9Q0Y;dE7aVsw@DaqbLC~QS+l~Wnx6%u$c_*ns zh9K8P8-W;4WwbOrC(cg0?yH`EAHM&&teB)hExCE~!i5gkDwk^6pad>^@aokI)gMM9 z@+0{^z4UdWrM5@r=a-2psgA+o@;`^t#^0w;3mDJpolGzq57|ClC`7o2xX4*EfQm+@ z@2dSCgT;)tCrE;Py!ia3!KI7SLVs~7?5FD2KW+- zB-ADC4ckk0M>bO!hJBK9{~S$-02rKfE;wa~uVlxsV{XpkJ*il%^hUev8&lY!2F9 z`~GDh(t!aX(g5j_PH}5Yow?>yd#r2r-EI#UVbB^y)oG@ zn^P+^jDJv|Nt|hNwfE=lcVW!}2f4FNrl-aU@6Wc&ouAJuyk@=V&S|=^-r*&9a3@Pe zgV>iK6+k}XEf9fP$WpgNF6TwLx}G_kV{hn223(z(NFIiaPbW+oTyl{<2`wixInOEu z>8pncI;y4Re^EAKmViIMDd_yzIRP8oVI{JL;^j6+mrVd?t5$5pCp?!|nAtL7ri>gL zw-zWEF%hLsJ_C4}&jb}5~G ziaxDC$bidbj`(!Q|LBUA7Qf=qX7SR(#vLJ-r>ly&O0~_lmjf$e{$f*vK>tv)VT8$v zUY?&HKdy`F^=rj`f7F^?uO`YgPJsRF8h#`F89{z(Vu}AdKz^XQvs3OS`%wV@8d9=L zE?eS=rP}+rA*u3sI_`n4IHpfG-%;25ZmpuQOrQg9 ztI3pHIEJeaDp3;saYsWd1k^*u@}hb_2$XkbALsckEV@`vg{mcXiiw=;MsS{|O>(Vw zy<=56Sl!svq!WDj9?$5kM{KEjHFxV`p^HZc@MCmca=5Wn_fOo9!0W9%o*}Byol5Dw zI5n7VjorQ&HsbY#4w^(R=hseTM{C#~?0&-~;EW*dEYnqtOCK>%#C$U6zf2-59G2+s zjJ1#rOFFC57}33TI8|)^j=>B4Gd#QAyP%pJE(4sQ`o{Oh)OW5nGhPRwHH_9vX5YCo zU?Q7g?YE_b+S=>X+Uw(z)=#$f_%o9A6$#GRv78ySEojf~-!<})_3AFVGI@!XI`m@j|eFBvpC(7b`uRy$0whAi1P8r%s-&KumeU1f6Qpckn#Q}FLR zH{sp23ky2Ok#*$lqLwGL6vJVJWHx$h{|!NwqFVk3+s>ny`XL6KJ|6}O)a z?ewkMlnTF%Ld5KN?)s7LQ1|zzfrCraxt#X|_9z{2_Oazw{JA3P@`55{re4%zoW-DW z%7OLrLq9_E%jIYZ7D`-u@A#8gOl*B965VPN|e07AHMc4|z? zZnc8K(vcKoajW7ghj(#}(AIbxv-qQ)`1#dLn`g}uGWn?9p|q24VGtzjgU1Q|dPD}f z`0A--Zt9unN}-cL-zy1Pj2WvvQQhzkA@6Mto^thelX{6NF^CcnoBtTK0-?Ge1@?`e z%KH+t6eS>In9dbx*L3Gz&-<{%9a6tdN+W(&+<>x@)*D}yoG%@Sk>k5faHw6h-!w~y z`d1Fp&8AxPa$N!Q$9LN|QNv7*Zzvc(c{$_X%7b_PG=m`R&L^};-lrV%_m;ey<8N`! zP2rZ*??r#$XDK`4B2^&Gkwa1{yyRqs81&fisiJR9;%wr=3(bZxN0`8-C z72HPv(@fKfH>2aCxM%08weD1W!d<@p;u*)u@ki2^<^(B|6w*W*H8(5sug~LKd?C%d z+Mv89I_6K0rMMkq&fq0GBYC$31!H4d-b7jyXLbq6ufAc_8IeZsQU!P3YT;f-p zdOttBVAq@`4t{jhkCF5%rA6Tt;ql3WJtlL$BSs0%b_t5SLzX=ZF&u8*@O=;U?4><)1^uDwKK5UEg(gI6aIoW&hM)`1?g^EswWdlYBN#EBEoWt5oo z_bjSJBaye}dxx~f_C~$E%GdgsL%RL*qz4gw7?3eM1Nh{nWXomz<&*F|w2 zMHRDQse0IV=kmqsruiwJ!CNmuJc3nH4cn!}8HHo%^9)5ZleC1%Cqs!Vy#> zKn0y9aFjZ2%y^-=YDRmS6ED#RH+uqQb5X6b6Gf~+zsvvWp@}>rUR=Gv^ME$(_M*cA z@WYWUu_97$Evu<9={?3#mgDBxkxPe}r#i9Gt5C^v%a84k1ZlVRy85PVS<~MA$jg;N z*BzeOR)X!9kErMl_53)&O;Npxx$V2PxL9hs>anmkn=abjYmJ@vwv%2 z0*)vI8)Hd^S3k`ytIkxr18VoH@hhIrpEUsx;azmixeX`&!!$E)8F<&~PvOTOiCbUD zklX|-=0wQ9bZIs1f3}gn^k}aSoU6Wn1w9+L53=b#tT7wa6s{!J;8Dz)Aw0!sqKu{m zsXX`^z?n?HL_TwWJg$vWF*4)GMJ=RCDJVB2hOWf-CDl9{t-07L~C^s?)aQ4Oar<{pkdx(cTj>PO1TM9KH&&?i!b}> z$VB#XciX@hgP##r{4+suoQY`-ojv){mx|u^j;j9dsr%o)3^gMwQYyxY3Vg_XLflyG zn01P%sNoC0HeN37TpfNDOlI}53{YHJ9JSCg5CI8rb|~uq*vIQwqOmtk#EfLgGWROX z-3m4hFIOXR_fXvDn6b!ERsNNo3nn9!be^9lTDik4=qj@`fXd}$9B@XM@Flb38>8V` zXti$sRU?OzbDGwHBiC||^GSK~$-+)vh4|Zy=Njae#4q9)Hie-F@ANCKTm18i^(abZ zg~nP*79NTw-B8s{dmudfcg?N5AK#!ed5OHS;Ru6F^4gV3U?g0RMx^0q=1Z*kkw$;# zWubkQFFhbdV8@My&F|Z-vZH6!_f1%g_|dq5^*irdhC=!Qf@`g;O-f*Li!+?j+(Y~> zG~w_Z*xhs4tjUtaVey;x6Bi51)Z0NDQ!N9k;|C(Yk=&Q1^_t*)0WCy#pcS#W6&0TJ zr!dduT)vWyYdJX1IL0a4#9@ z1LH%h)lUENIAnPLp=r((zude>=Y#3Ef(9O|9#=JkH!SE_O2C3HoMR}{4V0ef_j=p1 ztkcy4GRO-6&h92^OYv#lvRklw!MO!^e_hV$F*5FSIxs`*%Dg3eWL2y?4jd%fx0@c= zy;^mjnvw6w)ssQiP$*V+9%;7A%z==tpM3kIa$k0T!)}_=8Qqp*eR-avQorKNd|*3) zm4V(hT&JT`yuC~fKC85}b^WmREE05A9Tc%{t$l(P*L;Px=g8*$16e!`IVL@~btsCrm+XvUu-=JF+6 zo>_`mG+vt~SxMFY zpb^1O9Nz9JPMAu)hwltu+M%jePnsHnGYM+sO*q>CamZ<^cC*5)9!!-zq?qCiyq;Qr zJEv*_NU83;jYJ#uI^R&zL^_q4B#-T&RW|qPT1|46+fmSk;dT@RJB#s(Vu~M0S`?|$ zIu~B>jL3%S-Dd~7Ts5X0W-HIxu>yj!)Zan>DB_?rhM8urGks&|M>^GL39E7YF|<;E zIU-oczik-Cx|ZH^yV4p>$)lF`PI-L;uxx4#x*GRl7Rj| zC?s7+#O4S)PH8pe`9h@QY7J>&@JCSYG{JNh}fuKudnQpTa9Gs=ZRvSm2?(Y-A(B`fedUbH^>is9w_%$#5w$o+he>$%MiU{<%P#02Yy-&;lku2 zbF?$nMmjqlWS!VWIdK(LAxn7S5P{_$5sAzpCa@+4lP&g6vw9ge!ynG-aTi6Tg>FJr zi??l=u;|>Ph%uL6!@m4xGo4D1#z7wC^_+5Ub^=(1C16Gi2zM~AX)Z!12x30sPLVa2 zj`!nbWCntpOW}^$?+?AzTN!kb@N`M0BsssZR@hNJvJd&}RP-UXqpwbp(P1S>tdiO? z$DNG>A@;Ccx5yBKnu?M7IOCzozetrvMZZ-#l>O7xj44s1=VDd#e_Pr7aiEalh<0*z z)_!}wUDd^VdE*bjH$^yBI%P1GYyS$DTf`K&2s-v75<)hAmh{|3Q^$U|iWNQG7*FAl z+t-Kapx}+vsJ}C7{~EWn8hI-77?`MdIusLc69nuz+YMz}6eQHEW1vPIEElm~b`P#O z$Sea|Iy~^lyqRH1RgiwQCjgy%5#hl|fhDGtu6z9n%^Rz` zSv@pym=+YQLWAucY%18rMXd2Un_!zzy3q)3%)fr!(O^HTU`8(~;VR2-{emRzJ>#6V zMw^T&t&BOgrta(&nNpagd&pOgAGHTA5?bMwpf3F_`lb{pBz2Ey5D`}Zc)1BKe9!rL zE4yq$Fi7LGYZ$9&6t{N2XHbNb6SLC6*z*uEqSkE^e%Q*-&8b$9C<~$)^Y4<){5W`fi%k`rHB63c%q3tBL zD17f_6v-8_45_tYj`X!qnAiKW8t1ohg=h40J`jk|m-62&^=&D6+01HUVgy34{v z(3n@65&y8yH(L9`;nk%#W`U%-)Pl?GeHnO|fPtm3PdU*MgYcpQJ#u5BROWjkp^@NxE$R(?ijZXJXIFR-|Kz+* z&#Z0apcqh^WkvhzuZM@=bPiGC#{E9?%F3G%vXQfQsGoxPmz)x46CQVtD)JjK-&7Z#E)^Q-hqiy2`SpC1603**bbdkPYPp z-!Ko*XJgq>V6&i7l3i0D;kT4u3H=oWPrywS*Vl!Sa-oXxd`63;-zalk$-3b!LKa4Z44IdijO&G1+93Mff z#7bs@v`?GMrx*Z)GIdmsi+jG2!gyA(0$14JB^4z#+0QLg=x?q|7K?}WZlTid*rI>q zv^Vp&#&xn*4~TUy5j?3>GsEhsIO;gT)2>a^JANaTs2FH^O<`m63H7Q(Bakzlt2$_C z_u3%Cez_Jt{?lIM2DtQ3J#U)baWV9!H{uA#nRk5a$jLNF-zk;RbV}MmyDaqUzD~NI zA6Yb$CB`jKrho>^&Ly+0^>qsIeCWM6?ro>M@d)KQ z9cS-^W%VD|=yBM?raXBj$4vvaxnNssw{z!;2Oiv(KHq+h8*xr!U2p0?8Q1N1J&F(- zQ^rUx3avQiPjt}qBoz8U97a6Zo#TX5l)IF$@UogTgC>47eXaZ* zk1S!xH{su$SA&o402w}A>R6&Yq0`rVfxGE=?Jt8e4#71%F6}%XXOaW}Q)ZBDNS4KP ziU*(V=WO2Ob)aH9mx>C#D>Mz_Vh`!kNkN&mfConiXUlzwAl&^LL5RE+bKsn_&crvf zWHa}ZR#P>uRT3i5Ac=a|WlGx!md8$UpC0oEpk?!j9~uW+%PXFn3AAJsHJ1&^0ga8> zEXyf#$;H4(?RjAWPevK4szAI$qb{1M@4?piR>8K4e1GMk z7?bim_XuvxFqhV2_f3irn&G~5hC4miX0o^0S5k1hNu1bOv3$&E!DO|rA&xlDq&jxi zd)4}Dty7t{;d~&#n3y#y;VZ}LyVmlU0YF5|LPa>2YIw?Dk{$mW+5x=sjbry$T;B_A z11+^B#Z!>=g6MNQ;lKw54=s)1b?Ag#j}FvU@T>2fz15oU!V=w5WIkbB%k`JHsFyVb z3rEL_QcbUXE?{16U8ty1=eq0|+qC|4MFJqKdv#}&^n8t3o1K>z!U$a7Vr)2OjEqpJ(B)&0%h;ZuTtU1BZvdOYfX2^x=R-`fAt8a<2y=2^3ATB=|no_mfEU!7L z-L{j@ZXDi|r#k0n;r$~i-`sl_ZA+;$X}(g3_>&z2Yl0hd0#s{*@%xE;kC49 zlNxc`lA-UFN3d7dE@HTyCXhKP)vsESIsULBIU#h|*h4o?3+L%7!vUl<PW^;p_inLN>UmcYbTqdm%-V?iV!~a4K)+@x0X%# zQ(MXgmiTGE1&?IR0)}yCr0wJ5F&#JpGt$ssw;vX0-*3Ra+@4(Ftx@`(<$|S-<1LfM zA(>>rgoG1P`EE3pvSA6()zuXS5iuY>9viTMBBQ$Dl`HclD+6`2ejQknJaej={z^$8 z*t;-VR-P&(otPmZ>iu?2f-xavyv_5ui#;Gq@D%JsoH*WF1dKk~j<%?W@XIrK-q`j$ zq0yUd3(F2e=g-oA#&__DSgSKeK#k(N)YkSpo#y^xGD%VH5~0kaA0>X#t(v?uu>$NZ zY1@w8HkvjsB8JYh3dGfGQecrMcl5g0xE=j+;77)(4#WTVB*s6|Yf6Fza9$r$4omcP zC`iH=E_E5$(3KoTTv}p6Ch31RsLO&~_s%9qw2tMgSP4gX!}^bB&QIFVO&e(r8T`BqMj;s->BDS`~~fm0HKo)wb&AY779XC|*9 zM;zaxqEQn2r1hlWNi?BiBE0VhhlMeV0Jrwp=iolBTu|Vf7#fM7-gArl@qod{j|eCv z(H=uIiFNkJb=zs@&C!Vi)=8(#7sA<@b^FU4yAjg#+YSaKE-V;32 zENNmbX0}E@6PXj*`>!k;cORwU8Ze4<)J)3GKx-jP>kiLf8!qdgV;Hnf!&8?1 zsAPs`g)U2I=oLR85s~`5fP^9W^M`^;uE{J0iSSf8pCk#LrwB`{HhH#up4|AUgu!AZ znwj9e=C^VCA=tD<-Am+aCHgG^?qmv5`$L|=C#Q7oJK${V2Q!_Pjc7W{R3>4`)Z12| zd47?!!BY7~Lt5NBV=L{f+4R{-sp+E$k>nscW}5lH4px=vqt6cgC93lyW8-!+j5HH@ zC86I~oVT0-^^1u#7U`VggJ|?}$E56q&Moj>P9N_W%^4?!eQmsjOlpM$h*0xBQ~yn?PQ!nL#CM?()a^ zMXCwB@GVER@mt2OHYH-a%*pzNQ%pq?P5zeL++1pUdYM>iWi&w!nl1ZymEQpzBL`Lu zY-Ug3@07~)Q>g>zGDW`wQGybz8h<$h!9NlI%e=`?_^H$_*SyJJSo`DhEe2RMA1Q%< zUnBnYpGs0cm3rPdZuYx5f%a21q!_b*A@v{CQ|JCvs_T*|>+j|SELfCSln{&G@q?)d z#-Nku7~I(EpF}hK!JfEw z5%~>#l$l^r&^|^X{*E6#Fa|{l+o}Igo&O)zsVtEY`O^*rqW z_XV-drb|n<29t}x^&y4w*&;jd;(j%K7#grvbsg*TE!5F_2JgjP`5(!zm*Sq$71|`K z2~g$Ll@HjnfX>7~&SLE8GM%!HAmsgTlJxSLnwn9Ty*)i6L#f=G8;1*Z_ED~C!M~V| z00#_;0DKTgh_FA!2c44J<40aL77Mqw-5G~3>-MyG6qZ<#3af<7C%T34G+y_K5)Jmw z?(QOmoGguv3xOi#qBtyCwUhI~%fpEv*_NDezH|?(Bg(24v#+lZ_KMZ6ZR581uD{t? zc`A7Vx*j}SGdVqalTL0Nv`*V!nqgtqx2a#59>EXO821FnCW9U&n@)T$Zq`+4?q=S& zhW(vaxg)5Amn93S3V06n&}UwEkwBzP416A%LL`~;!P((i{sl!VE31k&<~&cCPlK@K zoUYz{Ip$|;Ic9Fk-iwSIT!=gK;`kIi*+uRV6W>^jk8wJGq#rPjSa{aH5m(nXI7%qI zsWjeFC>i21x*X<}n$Iw0X21FD$seD1_{$_-rAOJ~9r5UM;KvlDV#}4A{$|6^KGA{z z$B|hkICXxI_ne}MGVqh9TsH@`YoQ_wK?TVqi8OYZ#k)&6^XGKC8n32_%QOwgXL}v9 z)r6wS;^S~LmF0cUIFNHw9Q|CzKz^6mauW#e6<5yfSe4r-+ToJBlH;6{!glrLf>~E# zpdC=5%I!(v@M=a)iCnlhmNJ4rh3 zq9zNS`AF4N5@h(l$semhG~+ohv0OMNB$* z!|I`D1^ewXRheMB=v@mqF!cQrqZ<@Q^69?p1;gdrRd1?#=w+==4#kE>L9=0sd{?J| zmRQOs!5dYmDWp^)s^H@}fUfU*!`*XtQPcJlwKnfU6kRaeN=HfN+g#qyQC5!ykvLvj^?URl=X3!=;&yX zMJ?OOprKzT-=bB2{UXRqCX!{|cz_Yndu~fOd8B{wXyG93F00Gr%Ol~^<`B3;LP>gl zf0Os*;v>;WEx&hmrZ-+*P=ouuj_&<3KYuOF-*x{2a#NG!z%65w_PG^4ZSp9Ofr6(< z!>U0NInq_N?Aoyus#fWI$}Jjq^WagYY=L>etpHIezL|_gx6AEVY0iJGY=Kj%tdUhX znwWUis^vDbrpoq^hj()N?24c`ughcC>(lTokJj}iVF7ZU%xHQbf>X`oE*<_7>$BzJ zK^*r$-=$kEN5Hm4S|0!6?goDTlk<~2d~r=!boJcp^W?+R?c+$qqw7A3B8z?*>00|* zZ5u8!!qn3JpvL@?>i#KQ>si~>dNoeLw2|V?T^XkDAX=1K9D%4wF`aC7=CzBi&z?&B zxz$50r%d4^Dv!sn7vOUSs5GxVd$35_YMmI>tI3z{l+t_e)f@ zfG))Am#C(1=Np{;N)|IJn|1-8?seQvpPmly0bl8P8{JX4EZ_ZNelb!c2aqQ7&01^K z#nFS28(OKu<|fAT=Q3h&AB`z}{3ht1dG5D;-@WVNa!%UW*owG-D7y8EVb z32~Ed+Bll3YO3q!Fhu87q{hmZo4G<%6)W=IdV5|x+HP`$j+1Uo#yDaX{qY)7%6ysio`n*$>sC_ zrDsLNSu1APFEu`FOjL1s6#F=GT=a_jG&X*6LR&%462`>H#L2jrii|^$R{ifTL0^r) z4D?7=RwGO&W;_euQQ|DuCEb4L7BTR0ncCe@>DD04 z!?$b6saVc?;hjF&fy|rVO?Wj}9=kk>Cy?4O7zWkkQ_I#u!Kz1H}&_GCo&2*K$*^mcv)i4f#2`SPy%6zgF% z>WZ$(PX9sm>Ea#V^+yW*r{P7mNChuI`CBdL9~`0<--qa$1U{0$>^PdhI)wJx1x0si zI}~XjG)P1aN{u~UzpI0GtlzV0x^Xyv_^3|p4k=2vV%jpqiTG;tz}3ZYIKv58~b2_hq&RyLsbd^Zl3Jr^B`es+$DdZGp0LLHpdP zD{R$?KW!ug*2wx6~MwW3g{ z(h*PvdBaX28B`)wYWQ*)h`uNeT}>wOZV5L%O>#(A>t;H0 zbtsA(Dv(g0zA2j4sUq8lNImA4R>x8-Iy`1le@Ej97i%_GSx{{`pZiuajqeGS##;zr|5~06U+F;myLM-(>|!BeTVYZC;7W zQbieTn+NTG{Plmq7$fOh4xb@RaWQ63*fkpfrDAT7A?IxLF>EzJB4&F1yxlRjU0TUWZe!C(YkYPR>^XojKR&W*H>#$!vob{ z`eGdybW@lH9X?-X;63-^HF>CV=g_&zK9_6DmA!Lo!VE3URMf7`EmSTl1b<@f=vduc zP-)b+Sm0!!Ky?SGAq#Kv>ZMh8N$n==s~I>WY9;NqL7tC)_Z2DgAa$_??A^jHaL*$y z+KDeO1~8;6Gh(CHG%kRyeMCxx+aEr9d)`gRAU>Zf@!n_{v$4RZX*srNd#ph2n^yN7 z?qVMJVu5>W+9+gThhFEmuCIV?ijn+gCVkqKz1?ksjs6^q9_I3>IFA}XltFB(N$Et z?}$F=9%yj}O27-y19oo}$+Jr2p$Tc!k*Z@?>smGHYyHEcsfKF5JU2HpD_mP!Qz}q+ z8=#9^`IW*KaWy0y*;UhI6gNcKWYbjJ_F+|r!f9oUdizI&#L+rDM;rb2H0*cG_$*qN zD|;%S#1AUyVXsn;>VL#r1a@H=1B)+csR|%rlxno~Wj1b=zJa`}c6t=4{5*g4GzC@= zz^*>`=NSU(2k4ZMMCOY#gU=>IUPn)>vLC>Ky1yGkKI6}j%RoVHX3kp_`MPgnfd)qJRm)ZTtWy}Y#>uq@QUGD9#B*9$z0?EL!n1d8}Grxb>5)6sltDo_ow&;(s zzY6pdMli<^l|Xy?eAwTGj&Og5YF^30DgQG4{!joVHyDq;|0nFv8T)@vvvN5HN&#S- zXbpyY_!{M!)$sM7p=}v3`8im>C_-N#xg1Tdn|dLVU!02n!`getv)#S_ z(V_rm-fuxgyQnJb&;A4?I@!?Lc3%cR-G855 ze;089JOzjfRysQN1p=L0SvDT2q(fEd*{Ky15V$?JTFa)TO9tG$+6z~ca2USGV0$-@ zQlvIFabm22DB9H6BLq8a7h|rTd)xn&s_bpOks|0ii7o5X-ko6f`UjBqFJ?m>OZMxI zOrHVClj0O!Iba~3RH5lO#o|a?QO1-uXK*311*hcer>=D>rDD(Es19$6b=)iko~0lv z6hBl8{~VdcY>YrydDQ8bc8r&6FLps!tvIcx zE`#Gxx=DuYPpoxby^2SBN&bYq9aamT@@kh5u1Tmv^o(Z4$s3J!>E_w>Hj`eq^Ie|1 zW9cinf20t2r?O^}%&X$mKB2q?Tqvf!ucR+v8%i-~w-RbX>qv@MggaFr%VDbM1({v`-IYp>HHqyPh`r$aq{) z&v=Xki7mQ*Ga-69sC$%a=kzZ%&>Z;K+ga19TmAqh8#)ab?p6$37#jtFuk#LGE1O;&+xohw{Y+rV(e*-z;FRZO z$|*Z2>=iH1EE39@C2H^|TwX+l%xvPqdM16@fUf%}pOS-X6r+6-J?~_$s$QLDvvHCQ z0iI-siMNH=nht}o#ZIiaNP4t>Fh4q{Cqj3{sYGug@ila1=*0yd#yZh+IPrHUow-(# zgD&H1`U$xe^#|HDfOxx&sT?Z}dh&?Evi1}E6_bnt8!RfV*fDL8EbA%z9@K5)3hddq ziRmk&6RU$qrx)*g?q1h6;q2|Xw05U@eL`+lBSlZeZnX5pk3^K+xQM1<-MU5{igMYU zx~J{IpYj{$Vu+{hFtz8BLw>GLY-YNN)uPS0rTm<8{_ zk*~_hoIMR(P~)OG%6<&C8}G|uWLVFG7^A2wQAN9eB))3X)^|Q0F{C|%FE?L7tfSNSa5YZq}od`!Y$MQ!^sb-u^LFu;k5TuM%b4a z1dF+nnKaVVQRlA+VP_hu_xKLvmDlZ3ppaUqv9**iIX&~U+L6_39>%kM2%btlXD6H+ z&(Q7yt+dTqpf(Y`ew6{#J4mp^b*Bc?k4@!ro*A177H38AZeMt(n*JaTQDkU@n-n@@ zDtiqg^YuoxY`XEDYS;}o>clozUjM`1pXpBVt>hx4U#re$Sxsy_)Z}rxdCh@%k+C53 ztF($?;@ZfM_GKKp2e;GyA-V-9q)qs8YIJKhH`E81oS%E>wu|y}(%Pl`#Atfs6z^<( zxQ_%i^o^ZO_)I!U{G7IIGqiPs{Pjt&HG^t8=*zAE_MHe>pY)xHnJp-BYhA zWY!P+QyJDvmT+ob6yGO->tq&n9}4x5FV@{PFV{@=od~sI(Rc+#6$9R^JQ??iuq2jd z=sN&C^_LBtVszR{;*2Kl)mbGMX&E>d{Q&8c%J}7a8$j$O8}Yx#w9IX)(y3~d-_$6j zAg_Ms*qC-_XJ?USp3>5DdM&7riVp9D6<#C3j{d#a<3in6tz5%`I^0hh4X#ZMb`@9a z7u5V}d)k-%UM<;na+_1>=~Ka*K!)*qA<;5cfF?hW_Aeabo>hCw|EL8yc+}rWmwrn& z2qwMtBK6v6690+Z;Licp-Zh5^rxA_8)2(ZuH_ky%rNDzy;P3es&0m6KXcP?6eYH(Lc5~WUe4I!lovb zh2yus+qAdCN7Ti^%fU+2>m1Q7JL%=p0R^XC>kAt(pnaE%zATn`_J($$OCPmQ=p)et z&!&v$1@*)6QGcDzUytcL7_LzXn_?qm4sZTIGIZd1Z%VkKAa&-+{+|0rM~)SPEX>e} zFp9y{+72HvZ{-jtu&VQS#m>d8XQ^Xl{NRH6*_oW~iVnquw>zq>V_-QaXCzDi(2m+! z#*wsWcXRmWmK#0nQOOG8kqK_JW!Y(@B8nzml;SQrFDc`s>{P^CwkLu+BsFk3#McS- zOX#rgih!VXpT)_x6!kq69@Ex4dYsA`Vx>X;*YJpEJMWX3kQ1k^#4g(BFe7;S6g ztl|2y>yCGd6j}q66j!^{WA6O77l5X6^ARxcW?Y$NO&1QTCq3#BG5b&eUo0dw7-5@h65Xn{yFW0zGMu6KvtBrJgTsqUPj>zGoA9P0<8 z8su2@kE7(HP4W*2zF5dr;!bpu)abJU2PS#3`B;Uq1;2``zODWW{DY{xuRfByxfI0e zAR^6JKl}$Wg&&?1qIw9uA^0uyiScNbV>0)7I3gL=!23=hH=Lzl81#vJR5>|E=_5WrW5_Ljvhh!pQvl_}uu z)wmpo4XE(UD1z7SN4+_ezP#2C%DZAYxxMdO*5+@!%85+bI4^jxX)at@yNpZP?Hg8= z=~1>7$KX7pDOrf|Rv=!f_w;#%=41}GMf67Qac;jTlpPJz>XeN%@ipfl3_Hri8LWc= z1HjPVNc$YGJ=9~Nu?(wup;gJ-Wg7P39S z>pM5J(^tdq-@i2 zsu8eWSCU3CEMT8JZaxV2PA0Te5=7^Fe*_KQapQwEZH$%#vyOD1ns<#yX#;#hzgWRb zax3;52Pef&fzy9IZ=nO?08cS*N>M3%>`4lg(*hRU~-sNU2ZYxy%pVf27F@8Nyjp?hL4zQnk{Y3Y#%d5lX-AOG0%eIa}(uKNgf2&psJ z;pBQKb}L}ZS>^0_7INA}_2{6_7n9c}VSbn=rkq6t-PtsOILcDa)}&h+SBo}yhy=pH zM;vq#+}T%EXO1;tlGL*sW76pXDiy7ZCsNY$d?$_&;aS7(^ZU2N{ho78^l?`ISoq0w zQpzAvg4V*ToYrFoj|$QozcFDCP;q#y%&*=Fi{r`m-KSf|ndPQ+9Ec(lJ(@LPq^Lhq zQ}P;Bx*%(5^ty;5(tbVvwNu5gT9juWcXELNd62bg8rn_lv6pJ_?vpXUamFTZ6kKrW zu=TV*a%UFrmwT9TRWGKyuHjI*rrdy7I~njj<@7*JCGDUJ6U}sAc*e^;AGt<@Or-eh zCRcdxHvskHQ+_g4e4R`;u?tX%y%gCX0vCpOUa3f$z|U;@=ukvYS!6mkJsZY|l$5Xp zUuZ7|i^VMMbzHU*_b~fF6X$S?)shGu{y5xmlA=}XZ1fs0#B_SF7I)#6eQf*${mD+! zwRMOC<6v{irLAnC7o&8yM}kDxdlOg#oXmB2K`j%gCQB%?bRtiT_jq}JdA*1vQ!JmN0}mO{dC<#HB@ka1T=g z*jo)l2_1hrmc7U(EQC*5$LHmsQtSdVkNFf157Bw@LhWFGwW5{BW$1h3-^^Wmd<39Z zR=;S&Wfl5PxaxP7oSuvsQra=*_*avyV?$$TI@eJQBa{r) z#JB&p;2TH)EcO2L*C*FRsL4{gq%%#x*qwa4ihZk-$)IOKJN#L&a&Py~s7}%oRd>E; zG35_}McB1xjZlf$nyjeP6&2mky_?X0qh~46Ygg+pLTV=n8%w@$Y_Ai3{#9PjpDfY%PmMCZNIS%#q2PCU}&G3m!clU{&tQ-fnrWaQn zpEEoCsC{<3XMy=U<1MNH(4C_X^2WBZ!syVWGzU?shnu%~9v7Db0K)?z^mT(Q6_)!T z&F+{sb4>W1qlq-%0Wvw=);G?+{wp}8 z?m~Y1n}N%KAg^5J7H9?P8_NzhGHE6xP#K^$@p;>v=hCl+f>kNO6&eYeDy-u~L^vA&>J#iKao zw;i(6;A(laAx=;iYwL}DcN>&xV2W z$B+k3bSa-2ucb#l?Lci&O)U|1xTzw2vPa)7>Xp#N!=uYO20u;&%ZCrC)-!-wgmRELcWw-*a@nM5RrI>of+!i za6OAv^O78WcVxTM=>&)tWrCN1|@g6Nd_JyW-5dyHmo$&=v13d8qqZl%`ROlYZl zs?=!_9HnQ>pFib| zH19(%r2Pu(4$+?JV$=qD%3_CNLFs<n=;AXYildG0vr;p}v!B1QTfkUA z9Ve$@*xA7)YjLv9OQq8>r36EflYjwNS3Zsyj1l^2SJ30CtpX|G_~#$W#|wKLJ6OCI z*oI!=q+&X(jl z8JPBNFwHGJEhY<5G2s`uchk+OA|!c0?#h~ksGh21Y`i&9?&1UcZgkZS7Ge(C6$MFR z8a=0FYtH|5RbRgJAHc%c25evw3xO0jG>GUFYb%IDE-eO|x20((@sQ)v0`H zs;1?Ia5eVKg@+l_ja8+dNY0C%EoAFRG9~D~Z88n$tyKpDgFjlsXnucn0S^yR$ejSb1T{>jrHCcSB z_lYN!kc)Kp+X0^JSHQBOrs9&k+ez2Jpm%W6D;YTse9y1{C2~nIEE7UUHOOLPTO#NY zadUS6Da@-!g64!EeB|d}%(7vihLVz#HA&@yt`v;pZF6kZ;Kc>3EajnE(qkJ1tcb6- zMowr?jr%nVa8+xR|fS0Kig z8xQqPO5CWNUHZg`%8Gql{(5+H5S-2Z7;O%_NlK^cjAX;Sly=zCKxsqm(e{9`<96wk z^_$Pe)VmGkv0!3<)vv5=Ij*LOk29Qi!;StysPvY~=u-~W4Sbz9w!~+(8X?xQ8SU)O z*M7RuI($LWsdmF=Aa^=3wWO}oB(u5uGm=;6IR8bwT1mZc%GHUmxtR<2;pU`V?&4Mz z_w>5&Q>OKzQ}EGO&CzhI2JEQzIZthdpCqgincA*1bFM_5QF>Jn8r`E=bHARXH`75` zwbvu%-gN9Cr|?t8#;7 z8Gyw0j^3vWJzwkIpH_*2>Tgb(Kz;KAyf9ImfHaRBF_XV)hQvA~@>KQEWegdusuzrJ z=TXqM6o0CaHiy@>mly6$QwLPdK~nmg6$!oey0f97jYW+<0M);hRxIiQ-lPJff)uPqBy33C+qg|q`D@EgR zJ39**D-lnHVgdI$y<)4%Qqs7IY1ZaK!ZxU@hCELcJS{$nXOn{2Ak%`^s0y$zxkFAu z<-#lfV3vso2Ua$JY{M#MG!)C838<<%_a3J0?{TC!Oq1E&$j7yz_CXy+`>U;0vz$U% zk&s6dmE6k1y~x_BjZvEV$gz=H4rps3c(d2-{;%h9^(}8@c>_@MT-hvG`B2_8x_aNkJv8zAGzpP*r~p1U zK_G%RhRjVY3+-n$7@ajF(VP1kSmxxc?hTl%-Yl`WPVOewOPwb$O6Tkt<73u1eCD^D%cs#9NSZaP1 zu-2hssJYX7){++%;2RBqRz@(y(1}n4CNO;g`A6gzsFOASllXEzqCf&C^Qor+zAqxcuwe-qhbk=`?57OHyNE89>*I zJl3CI@GHZcg-@V=S9fw{lI}3cwHyDe;rF)x^2E`I{j>A6BQ?1X$+t-9TKuxf(fF>HAT_=YMF1=%mQ}qQs$Ya_82^jwhG` zFLSn4_Fwi!+5XM8_o3=s#)9hl;x!p@LFv6ek$fD>zZD&am-7EP+W#K%$0TvU@6Z2Z zT#*ii+{^4=F@HTO{x=z>LP+DSMKE{z`%d<+&k1z>ZT3seFopbyHF35h{YR?((XhXb z%YTQzk@T^y{z0}Ze^`2LMVCmjg8yG%G|(?_x~d?zLPCYN~eFhx`I;9&?dX)in#ND%NJFfIas(I9179Z%Yrg2OmzL@#TA zW`}ac*zP)(-en>fayoM*Z{;m|x3A=wcq=wihqR+gk-H*or->zt+|`1y*rz*`(0yZ> z@Snd*ue8kQC^x)@V-cvnq?GJWcs}HLIcznPlX}?11CM(1v(c!uB-4rrnCcns-8Df| zo#gAU$Bzf$$lenLg8i*qCF#LOD=iai?`Bfgz&Pe*Ft>62tP9i*g9pD;K81%!_-34{ z6v5S4wMW99*Z!)6@lFv=^ek5o)0@?}6CJc?8p{wx-Wq2Nskhl0uZg6SRzehehtI!f zn5#i1eekT``&BOXdpFm>VVRE3@>sYS+q2$y-HnW9VTSw9t=xUr(EawG`EYw9C*B5iw>89Ex%{}7IvTSKy_+>N&8X8Qf z0hdq=^2l`->1eb+50F~UdmKH^1efn@RaV^&vcC4zrD-$hvC`-0c)w%_VO4_p^3a4^ z=a~RaX%+GHqdJLke;k*X#rh?F`R}VOAKcc*!TS=w&=KfgZ9c+Ym_<>C0H)^fe!qNS ztCePG^Df$IpMUQSYwCi|Jrb3olNqO?_3x+@xf56@&tPj)@tv&s@fqH|Uo{pi^AU0M zs96W@E4`~GlDYakk^50U5hGddf5T`Bo&t{ZS9dFTXd4&OaoxNcYSs+?{IRe+3T?#cZVlGoNE-Fz1w|iNEsG-Gtj|R{w;*_NAmf%`*&Qx_AR{m~h(Y z2fr%Le^UbiGOO$H3=iNRwn69h{&OQnmdl^4d1PLRg81@8Gw3S zX6)}x462rqdU$`dj&$u!>P@xOhF3~!rCCY!F{Kx$;L--!tfdU=z;RIhOyz(*vK~;^ zN1gXw&@LZGe5=Gisoqg(ELF;Ux(}cD;DPmbVOyP-;8ju5R5H%JiaBCpaM7N9q%sa! z9}t#}wHrNowp&dFJc>>}x?fRD^vA%uF-5-`uc6jkyLEIs>X<>`B>LV-Art%nx&pOp z4zkgMq-wrfKiLyoJ`uvl_`j}M27V^oCBXMFoy8hIujMriHn(kIQ3SW7d^Mxoc-D2v zW~ zphG2L-&LPlD#J{2pri>Du0MY~8(Z+*^$asqT1)tBxMGlfzDtZulSC0MW(cv zc+zfMD;1`uiq9u4E+wtF>VM}Tjxe%TBb=b;FS7oV*+ZoxtJpnM*!z|ag?Q`PV*Z-B zWTqj_(ENbv37T{{gXn0ny+%QE{M8ft-Up%?cdlA8C-4K|6oXM*b&wOH+1Vn0O0yDY z7~3=po43Ioh-84#eHa1dHJi=)dUD=zs^xw^tYSPrMAPcgymUf z4K=;J@0@HnT%e%5S3J8-TR_xcaxZ#MgSnc;L%KAz{0>PJEu}47YGTw{D$swhSYk>W z|MJ#53NosA+w=RfwTLI+XjZvhM8 z0nRwcc0(1I_QXsmwUOTa(JR4?hP+<%S>LH4oK=bOjREym{MAm^E1>>s=)cio#jL4arjL8dQ1sczaQC$ITZJ!0_~MJ(m$bF|$SX?Tb)lSg zkEEp$-&YAY5t!>VtLE)UnekgDBy~?zq3UOXpST^~kh{zirD3@yo&B?xZNsh8H(D~6 zd5^_2O45mKC(fh7D0?+!gxAXwU$B>A*IqO2ws6z>eAydc_z6dkH{an-Fl;vebVc$a zdVhv>l*h|s=j*~G!39;{K4$q;{W*QM}RQ@uFukK}4OzU3D7t1%XgaDsXi8Ld-Cq&$yGA#2L zvcyC!$Ue+kIXIo3&AK;XpBBef95qnFTu@Fg(!3VlH+D9!jL452?-OM2qaL}%#Zmdq z_(EFJi{WC}%&tKdMjDng z91CV>kXuITcw>&ZNne(XbyOkaX@DON`;xfqvA-9yH#N<}n`ZO%q+|Uw+Ci2NovHUq zM>rF6wc>Km2A_PrdLN(q4k>&twz;yeY!xd%JENUZf@GM zswr7cvPz1c(zl7yDj!O%NgWryDYmT^Eg*!E#{8+;HI~nH3~O6{P+xr|3@j5vRa^+$ z=e7+DfPb(mW&xg$?I_tnPgm@&zjXq;)DO_rXMbr%^`<{_(fonQxb!V#(W0u9`Yw|8 z;xk008~+K0!8N!NH(oxf#4eUtCrj|G+hjDwhg=F=y`0J}H+NE_PIv$^&K4eP@OjBb z{l!2{iI~0WtjuqoBh=p#vSL+i(!V;KmbD&+W8jjzRuvMxOz=K0>C5UtX$G*+`?M?% z;NSYzEN+ji5Sw%Sp*&R>pf;QBUO%7!9m&_T0c8cCK3s3Lh3FnUkuE~Se!xwamj$+s|;`D`ef2;J{? zKsYR(1hY(}_>$96S)XTeUkCvApy7ke9xP_C;L8Q_Lil%Z8HY zmi{~8ADwI@yPG&Y#wAYdTgPk4obMoSaP+NCV)INLzSB=zrogu_FOmwIXr8Lno4#(M zp?;KbBXAmhn|$#(^1AZCaQ@hq(BW%C?jzY?$&cAZ&%O#x= zXgkccQ24W`K85vt&j=%(u^E2eC1$By^nK=9t#L=qfe?nqDb+>E)`_!QYfc@FF$$m* z*78E_x98X%z~{0(ESbp)c+{r}_;~7qbN`tgj*DcS;2hkUyFS{-_WNZ0!X4jn`y-_k zdk*^&q{#UaD(Y5)Av*;Q*|}hgm8N%zgNhE>9MqZKv;0$={X#T6o=pMKREVgea#kcU zEaaxv0EB{YGv#Xme%kwO>gOt@Qr1<~(iX2_AGwF}c9X{{^zjkegINspTBKfOGWR6N z?TXVtdMcC7KYWt?^Hv6205zudhP$DAO`6(vi2Nvuq2u#+7-eO8QS! zc1phc@Z7Qk%3vtdANp`P&t{$&QC5$UD%%n(Si&3q^!0;g5KY=owED)Tom%y{XJ_8E z-t3c3ZC*V2)LZYF^QCoAt0H1h`tb$YYaGnyF*4lD3QGT$x@R6=j?WGLVD!}OHQs8& z&yrJFcXf(pkJewi)Mv&yA;9b77J2Vh0Kw>8CANQzt1Dy5r(?3Smj{6i0j4#6UbC}$ zZe_n6bfK7jY3b5io_o$Mx(t&syi@T>R;+$WcPlR?!yIh}>OU^;HogJQ1E1m74F%21 zNoV)c?~XEixsNR& zl(O7!asV?(-C99DLmgq~76?qZWvw@OjBK5lG=sIKvc!yg^x$cX%XD>s`nA2~uYiNH zO!uOA@?=8s(_6P#cXj>n56T+E8^%8EWm_*zj~HBT^tqol-WgZtpoPO& zFHczKwcou-62!m0w;V&$TFGrDryy=tGMeg2+pIT!d}zM3s*ZUfr(IIE(#DR9DPF?d ztu1jyg?*fWbkaVjnG7ST#;DlN6PcuKZe+``E(>NpXFmo-WGi59hw1NFV#)^$o~_4&v! z?GDU5;emG87x>7O+dlVJcp!FmI-jL-lBPIg)2%1}#er8MMX>!!_{<5&I1LOr{WUHW z4aoI;W9_$WtJ-~H(he2xC2rYn&wg!LFZB;?sf?7g?cmA#A5u0S@coInr}n>_UIjkm zr!zYFF3pqbo>P2$9A;3lMn$x4Sz%!x*!!*OBwX<`6z7Z2%zTZid_Wa1_0Scyh45 zQw24a!!mI9XX;Tb<{+YQeD48NOjd1R;k3dz+=D%*U5YARJM$ynRJn=!@c*D>nF165 z<6-4x{fd=_2SMhD8~mf|TMF8F$SwFyE=8jOQ9Ktq<7>GQan$`sK7S$DF=(KO<#w3C zm+L=*WjaZY6Wy%=QQm)mRUA2FI@$KP)P-GgHy;~>=-~{I0^-nZJ9aQe=0efCaGuml zAk$UUiM9Vv9eQNu;z_2GwCk+mf5HaiJxPG$(#e%kssAK_znaYgwXWZL@1f+k_D3Vb z48^y-2V{+59`=L{HoKAPM!S_vO(DF7aYBrj>4sYP$H;_d&m;6_Wj^iNafyTCJPzzu zS{~C-r!G(bOanA}r1)#=2-*+pep>d56WExldT}v_u`q8Pmut!l5!8DnUtMRlSfm@L zYe$#5`Bcrf&Jh`Xt;)`}`^Sk{!IEex*LhHVly1^Q$8U2AG%o?#sr+Aeij1_4f|c>9 z)PM`goAN!%AV(?P!@;<`pBTl}>SzwNpVSY`KIwG+BLWvrX2#@XAOMZ=r#z~@8GK_I2=u~D_JLQwna?0h>Gj3L^R&Pf_&X{3~KeCdjf{aw=^P~^2?fy zl9hMcOZ)5ID*X1Wq(!uX2wqIEDJpLK29j8sdLewqRhxDPv?p1ZI|%oTMhL%?%>rA1 zHbB0>^+TIbq?Mwe`2(l}DEte(;E0nW?%I`aAuM5*f12008&rem00RJC=$yf;54CQG zTuXK9SsMF3fdxGQ8Tr%PN2?g2tfU3WLi2HJCsh(^73V)Pztn?u_I5LzDdQ&@Rm#XC z@A@Q9rQlK&S#7qOZlR{jqJ3LFe&q1v-|sRiU&BN=bD3K%t-nFCK%wd8BT-AfEiD?? zP9+99n&{u)@&GgR`^ch*IM=$eA>ksRWmVH$70T$j_PT@NUZ}y*)Z58ca0{50SMLkO zAZib8Z~}RCP>&~BUviZPT_P6#i1yzkf7vCG_|n$8@S|j(FfL|ZpiqsC(>_VpDt#r8 zQ0xAQq8D3-%-qufIio2j*_bD*G(y71PQcbhgEqQJHztO1wv&x_wRbp#YewGVcn=J8H1EFe{PfWSGlWJ8wp= zX@jxAhWevu$$sgmeSpbw>1IKUsh)N!K)Y`UrNfEU+pnxUcz~#qRbirJq_QLFtA`HY z0dx}v{iXG9XQ`%GGz^1@<3n&Mwc#B6u+qAURp4h7dj;PlMfo=xS{(2EU3T5Z2aN8UNrS#s1v2KLP7K zR3y_3u;WV_azF(Aq#>?Y>}lao(2?l?3-5%F`nVwXr58=~6$9F@f)kr|d&!p!$Tzw{ z)VrNcH`i^psS)FEADs~G5zMZQ13Ja6sZdp74Yn{}8gfhQBH)(iOiheAfNpKtYQ5~U zD4>?6!riIY%6 zZDgx){TScldo<0^xS6vb<>{io*!q@o^><;==v_zg6-gdk!!+CE8k%6L!DUwXlC^m-r!1W~s7N zFyS8={ohG;?#ge@Mt11#pEk355+omU$g+11@=x1_^=pz9^iB}w$)6tnBH3DbB?g(G zfBLH;vLuRWfKDLnpN`qzEFYB`sT%m@JyZB6da&)z?`j}4Q}oIomWhlP$<|6eNRTi4 z6LmEZLqg`BllPnbWAf-Ygvo4YZO0^?xND{bK8D^?Zz28SJa{7f9GSJjTw5xGAht}$ zx{>}aNgc-()E2ZXZ?nB!8a||rA`N!lL-nyUPSKR*)uQ_s5P8co=;MPa)Ow%v1X9## z)yfd>KpZtxj*o+XdPM$B$+Tx87VEk|ICAWJXoPnAK<_~7oy{=(VOeP(NTp+q{*%mn= zjfF@Du$gS(yYsxX!$~|@ID1Sv!mV{Ij9$Wbv&3kADSuw_g3VJhb~fkfGp%Y}+X)yy z=jp)k(RQ4$dzjM~#|GCtA_w&^+ zb)KLd?)ql1)cTNaJrh6LNx+f%M{FRMQzEW@yT$eO7FFs8nFGopl2|MLY%0YZ&O7k7 z`BjaTU(#%X01$>zJ<&8ARb85$=K=c{fDPT3r=*E08Uv{M6Afql)T3pl$NQc?ro>ie z_p-np%s)IGPSoZle(SmR_bv7;S;>3T->Vt;?klP^VNdC~=KCAg5MLSZzn5vaeBf^C z6gn^dwygXYiX2O7t7xr1cW_o{$H8 zyVOG5nTql{UdC^>Z-wi{+@;%OQ|}wxHuQHv?SYOS*2jP9^R#_cFLh|CI#sP+lVojY zd$xb`j$OncaP)Hsw_uqZYiH*oJNN8Q8j9K+fm#y=xrQkVt{j)=ocXa<-3lD#RkzlH z>ZxvB!Y%2%d-3g^=Uya5#Uk%KKiPR6x?+!Dh2k{CJyB5dOluZ_?|q5N@HLsa$5a9% z7t9q<{_CM4W{T}ePQqCa*GQ&CGP$<1<@k8!sp)$LU)6LT0Hylkve;5`yD{}#`ZuuC zg%xxw3fSv76)aLA2dLJq6uEM`J8||Ef z)mRkIU#1v7&Ja%jOrWRzIMPx_!So?C6!$WOu|Hm&g8u#-8(k*vP-z9>`tlTn4tk|Z zWGw2I*qVHn1WIiDNP{14gR2&_oX|QN{Gcab0ZE$>;!QsMYW&t^2$R}6QeiiC&#A9c zV<7`^g!VqkdtUo|7};3XC2!N4dP@xFOJIpD8cc#=>o}O6tq9i{HKlldfpd0 z6o6_dA53Oohkps>XZU8US3KyPHJ4- zXq}4k&dR~}Ag5flveC6i1%gNA`Asq4w>7+N7|+c?E&JVc5VH~7rwm!4U(&I>#xp2V zrsfd9+4@4X-n|HLU0ROXBXxM_MX+G))*W6i+wj!#^f!M^T+TRZuTr_mkOwC51(Qjq zX;Y!iFOCG%>eL>k9-fz~NS3?jO#ZEuY1_Ppz1a81IbNTq#`g4*<_pmYL$AN9CCqo7 zrp%-fKQfV1N33S{AoC2w_voiRmmQZE^+&u%M}jPq*8Tdn(Rt6M3!5_}t8WK}Q60=B0gK&nb^MNvO{TlA?D9Y)R3EIf6c1884ppZ|7#yxR=D`zI&9KEvD%dYLsd>A#Jr z`Yu_OBv3#3tWm|F#`nj1m#xYeANMqd&0QhDwmoqa;_q2of6tL1C@p+Z$3%PYy-Xv8 z$H1K|9m%u8Bp%Eo;@QS9(WU>YK~aa}W&_XJC<|`a(nz?B+a|ipyVJRj5E&}kr!4C9 z0J3_&9%LQr^WDp->-n>1w-!7i2m0dRRNCb-=O~9pb`QUR%fBIMOA!;@jYb@5unI5( z&wI>gm&8@cEr-JM%c*YNcb$bcNjE&neg9x*|1K!Mm82FI3AhZsF#vXbP2dafH}b*P z28_Zs{6eQ;^7|Tn)20T61Yy{UVtPiJ#YscbLw&}sH8Po(GMcSb={FYX)f&i|#1(P5*TM0(%t=>ydGmPQWW z1-=LhX`=h$d*+<6n|f%JeO1j5-Rh@?C{D)Rym6+4xcTAjwZfNy6U``GoZbz=tT>9# zY!XURO)uQm5H!uTu;3q4-kV6E-yI z7&goJs6usUo;M5f#QKe65M9DyHQlwmM4_+Q_j>Zg>RwfC+aFRG}ir7R6>(*;UgJEe?}Ngk{>Eqby`QfH<-o_p(b+^RNPt661E zPS=n?5e`=Uw3_FcKT|P08c^2g*luV$T)j0jNPw~1s=^Bd2f89$3oso}JJ%$`MxS_^ z!0Qx{D*>u*tzbY7YrR>l1LMh}SY-MZgtCsqLw?c8*i&;wE|`n;*B8lBG=4sP_`2@g<>_UHqye}P+D(G^Pk9>aCR z#&2aOD+~JscKcnA!&(INFA?1Ngpy~RQ&7m9azF3M3T(7dYlz287cBlk+HBRKtmG@~kY!!uR0 zJ)n+f84~h+$)|ACD`dkYOEIEVz3(Yu$Fbl`x{YSnXT?yN_tf82jEkY?jW33iy72|x zqszL+8bC)yk@uPEo-_5O_#M$ljt5sxEDy9T4Ls{Asb*6Ssc2GR+83;?^l6jT4fWEQ zJ{uNp-^^pAUOeSjn=ZX?UcaiwWIgdjDNp55OSioH(9R=Pn;!F5K&d%|~r@k;Yn9rAgr_ad<0gq%z3UK`5;=Qkx%9_f{n25cLAR9qp@mAtJ1 z_5au2cSbd}c3~=lf{5sqas??CM4AW)NC)Y?mjoe7F+k{5x}b=l0i{asEs%uXI|>34 zS_mbCqS6VyNS}k>z2CZenfW)fW~~{1WG&W7Ir}~P-S6JdvkS@aLg~QSyKn2zv5Cov zFoU}|1IEg6(9t^y!^eZb&;TdhS6=GwqA-@h%p&uR&bj4$lO@@6ca8DI0WRY`r9#)i zB|j|TdxSq=&IAzU_?H9R=W^%jmvqTKn2lQ6w5o3mG^z=)jhN*?(6WyleVwR(U^R5P z59=TIl`47j8d~_a`-*Zq_dj+k`RFc*#`7=TUC&)IG*=dJQZJ)c+Q=5I6PHoR8#kLu zSlY7-0?;}b#+gSqpKaa56rgAV82l^pbezvus);XM5o_MR!2iKg+ZO6tqU7)3qi+O( zjteu$K;FHZjjbq^wpQk9t_B`zxdtz)$H& z4SI^$f0>t;7aAI>L&az=IZ^F6J(%7su!Vf*AW(Q?r%HSAMyDSl)~^A{nRSX3qtf(* z_MZ~{r+h-|bik>FW>7$UF~`3z0tn00B>*A5cwgwG*ezEQ2<#BuMcLW^JX-$-oBrSV zWUhXg-4H1d%=RS9wrTwn&OXkgOa%jd$MWfd<5X^F?U0z@D^UAt?Y~V(NL3-VBGu+I zsCG2?5`JPl8~6xlZT61kG2$c$S&I({qG{L7VZW-$&n(UWR$yWS-S=}J=1)o-)l)le zPrpBOQg?dR&j21kwsSh$>!im^drTehNtK@z@sm5BzI)G>@6;)NdSy8oJrXM!zvp=; z<&a8$0*C_r|8pX1&5;1jJ32lJyH)iG+?FM^R|giZV%jN953qsu=;?5lH1A#N{@f7C zvh_!2k9*8XUnSEKlsW`4ZPnRYT zokP<$g%`U7fxYuWorGT~-N&~BhyjPW@KxrT?0tiF4D{e_9mDo_@lS94_k>yoi%(@4);~0$Uthpk%n^hKn&%a2B z+gm<)iq~qs*nG#6|Allaxdl-Zn;G5f1s!&oAMmN9>$1ws3vVbWHKSD;tcNphl#_L5 z+l$^Dzhn&R4({t?(s%~eMP5^lt;^D1XXzasSMLc{q&znlN*h8(t|tv>EZNEsz)>O; zSYbzCWbeUJaPKZ39Bcm7=+kT^(2LwiaN>KYbRoHg1t&2O>pAqeLScsm%e&YgxN(Ok zNkmTlM*4u~qD%bK!Km(S=R+wr zTe+5gyDKHr9iB0eiC5xbqDy~C9X4av0i2e{vtF_yBd!D89raiX@N#xW63XwZu38eM zGAV5k7@p7u9z$1%EpW8U+GZ4>~$JOK5qi7Ul=GtYHt@%`Q%F0V)XnKDOG$TFPi%`-Eigm3fiY>>B7h1yv@YQ zq*vpZ2W248jyJg3p&=`?^8s3uCX3mQa*6t(Y>V6V49AN>p)Hi8oW~Wx64&!S+$!v47}6r_qaZaZg(HR&RGbvmHc5 zY`z6+Z+R)5N^yTFqYFpn39fibr?jURezAh@z~CBp7G3f~f^gDH3_U1_eR;<*{WBgt z?n=krxmPS9#WDl;>qqU!eqq%b22Mgw2^uJ^}Q%})8qbqD)i*U)L2PV8xy_^ z9+TX!uQZG8C;OgwPrN^ZsZ@GXsc_Lucmy7tQ5mO)U9OZTYc3er{&$#Kw;3B*oVlK6 zDf5EAV%o1CRJd4N7ff%%w{(jcdq78;4a}O#JJ0i`F?ML`gSPaOS4Fx50`#-KG7Ja zIUmxOZmChB9$w7Pzu30(uKk!9ijrkbk5<43FTR}eCcyj4d3)1Gopf*DMOzrq{qck` z#(<;{N+isHh4$cV?KN-9D**Ux5b(AiY@yk+@92RrZYhD>?IlU@Zfv#TA;$MD)$e6d z|H1Ql!Zrq>FEGe)yMDH3-acmk;Y1AG>$?0pNl!uTc6Pf94dmew;r2b(_RJ72YH3Y> zs2~Bjq-icD?x}2LZJk-p-c-zyYp+*oN~u+o=-$`PY!|W3uWiE&%VLI2CJz)JO@al1-sZ{UMh9Em<+>x7q3!AVan4R zXc|X(M1o^1GJ)&vQg2aL>!7a zXiBm%bI6A7_%vlBe=ryofo9Blq$`dq9=l?L-=P+YD&(TO?zljai2pkd$@TM8HN>r_ zMY%3{d*{|wxTqY=YELk)DTaiyDXFXL>*+<=U~|(>!2)73qIBCfe8YUsAHL8N&~fTY zP%^~K&kn&g!reDRTX0g2lQLn>zKZAy}k&1>EsP9;{?Wg;;*(~4_4Hqy z18WbNN`0@J&8IHgR2Jio@W!r7cLoK67!MMha)+S$ z#_gufLPve%?&A6x21&olkyo?@`Sh359k!STbMOiCDQ#P;6osBHlfwUU;%Ug``kZS{ zy{Jm1Coen&mXKKc_~&-&{$_^9hLeW3It#AL`(5!CEEedph>Ox#9?M@y+O6biuODyd zqDppS_(9EZ&9DueM>K3ssUMiv+=h8U!aWG@v>8Tgv-zo!gGUGZZx45c=a%p<4u^DQ zPVzwc$w`0cKA;p8$yt;{aBayUC(k6PT!ogl`O+wcxfAQ}3|J%TfmHUmdH258V>}z< zBSyT$__X3@3H4%bN^yf(D_h$OvD@x?wgfZv(NXoCpug*${u9Iej5xFoNJ$FF;v3Gm zD&w~;ISZyFYzFq-1^chsjeE)w_JsP_7OFudmNy5=)zL|Wya8if+eVD&`TT@*7_r9s zBZ0%qVXtDhVXwZ7=DLl`pa}zbkRqS&B%hgeLX6J;6zq{EVS$OB`0*lJEvSF**=UQR z+Zc(J#+8!9d^-7(JOhi;5%+>T-5P4EqmXNxi|%T%H$-6_k#N@omFkE{chGYp42c?7 zx;cWQe0(|dmlkM$`P*6`lG9^B{hf|hGu8KxbgP2T|PUhgBJ`&gPjHy#%~0mHhPM7^^Y<#lY%#t_N67foR9`~2M^H>n<)EB zj2t4=*Q~^(&qUy6`+21X7a(4P18}>nG~#;l#GFa%iIr&cTw33jh4kOdLmCjvXj5IJ zXzzJm2BA{7xN=lBGT+42q^vP5BH&Kp-)4g5K)R2@&2D@*dodyDSDKW3wDQ#UJ7N16 zfG5q(y)%%jebdo6mEc$g8|dx6;ga$Z7en-d_s$|`l=hNxIp1Y^qygv1XF) z`f2KXb7gG_sLSn>G|yOpbp@PiGLn%rQ#`O=KV}2Q2ZD#=I$)&k`<;Sx;+=Yt7bOO^ z5APy&2q2UFra%LDhW?1?c*c7dpOX5*36RBt{XD)Rhhet(;?iNh!ykDX=7io`eKA3~ zp22r*=pzvWkZaoRdWlQRctel-@9M=W4K-%^GS%~Wp2g%%6P5-KB*3#@i_EL7-dBxG z29NaR)G2X2Dg5EL;iM>~z zvFrY(h_;LthHTkKxvZ_m+29;9E}AU$zmRgs*?m8WVES6Z?_ZuAkMjU$%I6smhS_*| z-y{q-k=Rp@A%}L~Bj~@{T9k??kF1-Nr;A?bsUw=v;-~H1>>e*XoX;!Ld{Mq{8}~bY z#o9=A*Fm!<>Sf(&Q_9eA=_dit=bJqTz`<+~Cr-zY%&d;L8g5(9+?~_GI4w9|%|l5Z z+(27`b$KZbf^O|WW?l~Yz)>rS zUf)f1i^J@3iE-;2A%aW}!vdz1GvcV*kL-P(#3`nZP-NQq==0vD>V;jYiF&l{Y^oa} zeA}i~HQ%k-nMrh-tSfOy_6gf^Ko&V^t~6pS;em`xWa3wJzXans*uYvlTP-?fE!iY< z`mj6Uf}Q#^kgnlU2~Ya{^-oe(a?1+x<K<}?*afZFnT^Vn?SkhURFn`$8Vw>W3*=I=)`qjjWGk{p;@cVz13uj;B-7VRjwPEE(iyBeB`)T!MB3 z+D_Vi(WUo;2J>Ou^sYVDS7Y`XPcd?KF*goZV%>tcOG*e@#s@+~J@mA`9i*n8ndVYn zc0KhaN1@LmIh}No`PO?*kP&n>)mIv0bQs1Kf-Wf^-|b>VnD)QIyM5dX{*lyEgNM@{H^CS|Nh?dhL!ek+gXv3_B97Q6}K}Y)@#xeKX$d zY+Wh_1HX5CKu##K5_1VZve9}ehpM$4>E~vX*mP-O0fKqqX1>*yuSVK}ORf&93>S6P zrEL-)PSx%~ckDdBLT9)YP67N9xqeO4%>j%}L}Im?!yZMZnDC*npL%=Gd-Xo^bz|BG zL8A0oUjhfeT)(tJa@p(g+CltY9}OID6+MUh0(SK%dK}-)=xEP$PzP-?zmzv(kl^N7i9 z76=+O>FF{ZptzJQFW=u}=GQUgHPLZbs+=Dv5_&4+5Vv!?c*km!amhFtaQ!zC#6e}7 zy{@YHa%Ozh6C~CtRe?Z+?-GX#AD%-C>T%6j*7z|@)r!^VD#EV~@GS@J!Z*6a{P_gP z^`uUBTl+rnc#j*Z%A%Yh&?REvJjW}k74dxLVKw}Tkc@xg-s^|F*Yuh{L+^WOc-S#J zu#ECNHkkcZ<2!a}(Pj-Vq{efufokgEkE@q00G6A^=MJy6Kez0ufC<`_ao_&=Mbdiv zAMp`+O89KYZAW9)92g!u5tR9KKqJ-f=qi}DU*3UN2`iRhs+*$z=KhR-!xU3ERvP_p88avi?b0Z2OMj{ne1hN0qTxUN(u>I_}ujZ6IMLs;OZyF7*_(c9@5FQHZG> zjw0pH{r^H{r4H4?c3hQXL-18g@BMIxSdH;(amUlFn*n)3dYBHfJjxUAo^nm7qP1Z( zE({YPCDCEkU*7{dqTw7r+Kn;wsz}_{&{s_==PmK!`hFyV7mn8J@VwHiMm<&jXE*-# z&6~P>_JgyvZ2R)5&Hyc-kAfDBGK{>qxI`o<)-5mDP+z@M9!~~nVxY8Yw|lCWS~)i8WQ_9;-31tbza3Ml0@g!L`bjs-LzDSzMv3{?-j?(|7EhL=+hQ*>@u za~vaUHyDMpg3I{d*y1~5kN~(gw^R*)Yi`#w!@+&t0*292fbpPJD$8*ZmGOE*61Dy} zn&vh{HJxKK@Wm}O!~-P*WFx(KF0r4lUjFo!tyb~6|58=%cR1JL6A7Zes~%~?@^Cq5 zWNCYID>P{-*7y)eT$njcc91DgiK}X4cen{OH(Q1Ql$&V~pzSi}Z($g;#jloCh+w&mMB%0Oowr=Xy|wzf7fVfYo0 zU7YZq>T+cj$-uX-Gukn}-n0sxB?)`otz(zT@1NFu2n;+>? zw>q@>DjWLA$_PMJP>q->P3!Sgsmjx(;t|d!x{0tT_NZ=Q&)54@DgmYN?uA$uYOUU2 z5}JHlj^*K?z8L4R%9$rt?aO;XYZF0;HVKO`{A~hA$^tkxPAfLLsBv_$&-1~2r^TWd;+x_1yw}%dIJFv%1V$V^ zCfBn*B91-LJH8w<@T2uYt&6qNsm;gXteVoTNitpA=3aj<u^;C5yRT>29k>e2eF7lxX)JC|W*qMb?-SH{Zl8wMghaK0y~#KyOs3E-eE zu|6{(Q4ygtsW{<%0Q{2gWxn-O=8#haNdC)cwO?}Z1CH^f(D#Ku!KU9|0!RSPos90w ziO{OnaXtdyA3#vm*hT*UEv&Gwawf%uSJOIZ^%~A0SiLvkZNwjzHV3*u5vaF-D!85h z_buGP4d6^)^lkyJMv6*fi3i-k5F%+G|@ zWYi0951?g=nCpsd6Jc{lH`w+5rjFkx8X}VaLNT0U-Rtm%Wj1qflP;8!ZWf`zhIemQ zT=UmBK(dCf=Wy3`R|D_5Go=!SIv|!#5ecoJC>l~lBJoNs@d*%;o2-77$ zZM45vt=6ZD1xBd>Ed_2Pg+*RBSFa@L5cW6ew@}4&)|hIDHLm#xYe@I9|${-9F1BoXIOZog4-q&ZVSkvOyACBb)BX2w}J>CtL!@-shO z`-Mt1->pSC-)HxZ)I4-O!;rlWDF>RqH9}2m@w4R-VpUt?>)Sgokz5XAJ3*Ge)ssxH zU(Vf(T+HJ4aGrWccVrzK6#h^Ttr1o~?4f6jcN;vKWz6RtT+(s2RXk=O2A-jMt!_6?0tz>`9*k4+{MT-hRvYZ+!32Xb{cKMF+f^A~8 zfae=Y$phIm!6!v_n;#345lI!;$n*im2K_|)!Pn)Ru7{0xeM=9D6N!p$p}1{jvC`d6 z*zQ!Wns4dqbB1kH{t6Ppm1p%t53=2sJ@+Q+j>M|Pm4h$sM;&}f=L+lGq8R!sBr-SO zt-?*EnA1VN;5_q;U{@QQ|6KED>(HX}rbD&Tx-mXkFi}QP%yXuqg2>w#zEIK>fZY7 zX`ppMKlMn_-UqRq(G91AV4K}Y^F?TGwSv+(=<$-b>g4qBB5KqPv&(0{(h0gNh?T0r zzwJwnDT|JF)=NpMp6?pmF{y|a1vzQ3WmR@YMAq@>=|pH&qBYq~Vs4lXlxyTR+bR>| zFMEBbSe861SR(t4^bBGD949|kL@#Z}&8Y*}T3w+K!1-^i;*H^`oAWnR6!UmkBc7SE zz~wttzSMyo?5x)rTt(YFj?E6Wa?MFL6>p#S{bWbszV^l=E8ASq@_SO~YpdLP0lN9? z#>RasRvI+}Gvgn!!@3v{@@W5_3|uHr3phUMQPJnEgUVK_BJp(m+~m0NVcStb=34`X z5fHectE%tTLjITA^9*K4U0veT9Fr*R+B?w^w~QY&S)QH#==!?&`GugAJkR}3hTfbc z2H}$821$KUa}&MJB#+g)qT|G|WBmHBmsA^4lDp5REk7GL+k3Q%ofA(zy*-vzI9d-E z5n*1K{*bY-CEEWDAH}6u<37^m(BjT8R#kqN>B0B2gf$}=_>IuAo~F}g9k*vdMPgqt zUqzSAJVs_aH=v7+D3z1|Sg5d()}TA=Y@a$T2!h>5sfD5y95Wl93ph`GMIMv^FDi?X zhHEx{uEetl0~N9Nz%GCcq{4MIZ<7Y9vzkD7RLdLt61;|prXsQsW7=5MVZL$i1+gIi z-l{aQ<-<_>-03QGaXIq54<=I))|3Z?~*& z2|Rg^%w0g$F1&}#E@&Ph-uBl-kHDgmnelqYTgij%CinrLXONVG=_$+0Rqr6*&*AvF z{Uos@);qecS12z&U1(fYBRm`1sk-+|Luhi=l`G`mKfU$~G||W0ZN_iwjDPRm7;fz@ zgJw)!WynkRUGDErjDLV^*10&l=`S@=QZg!LwScJVjE^e2+9zwr2yXU0SIV`6INR1i z^_b1KO5sffel78uN%iiFk&R`J?Zc7w^^MbA-Q5Bot6zq>8vE}oetepc>+3tG8ZNNr z*@P|VBKA$H3WW_jF-mdBHC*daVex(TNU@ta;)>0}2rBMi3{n^{E|SA)z1#24y`2z9 zOHNwbIEUWwzpF4e<;k1tnX8zrB}N&30J<`LkQ0$z|MhI%#l#9Fz2MQ=Sh9$9@COm7 z*KX1BqDPI-tGCTL=7-ME)@EZiwepQaXsKT-p}2sSAwDniTsK!MI9A?uDSx`{NEK4& zFV9qcq+n4e zv6ZNoica?;Fgw=>9j<>khZV+Eo1-A;hNp31{S({`_-}totUi}7bygG>vosM(8c-1`qSKJHC9HDNLQE z6LD~-@^y9fLcZQnRueffxP3Lm-zc^K;#%Z%F2PNA-Irxf3gfCfs327y?0Dc)5PeYQ zxhph4K>!WY*V$Sw!@kuHcb=a*FyDJB@vG}5El);*A_I4rGQK|AFr|8Ck-B7qmFtQJ zDhsc~RWE&vwOwO6gN*S=EgJQuc*niGkq<*$7r zAn5S*B?i1u4cFe%?o+nh>Z;?akI!3=)r~gS9CyvGevffx*O~6!;fkd(mr@q*g!Pxw(%#@x>ctU848(b^Q*wgwL$-QB} zhI0Qw8T6_JNj=Fe;r6qRVS`P8zFtS|KNXvO!XK#&UY)VYZ7h}5sbj|(GaEJ*OA%$!=VNTbe-WYtLZi|1Y ztIl|iM`zq8Ay1636t9!mzqlwD8eaj6ODUcWxYPHpt8X~s24x+d2J|82roeG!7FXR` zQ;I6LYeGl}SgN-MvHVtUGb!GBa>218`or>B9_G00&2Y7tw)nR}3O^|LgU9lu{NBx$ zfGQQZeR+=DWSECz6zvUrN6X;B;yIhLYZ0#&CbRr;EuOq@_Nj;~Ql*Cy<3W?v4)ZXu zRC~t~1&2XBBaqEv_;)tT-=`45G_`fy4zWwnJ7h*dO^Sm_l_uYBo=;W-?bKXXB((?q z1+E0LE^2~$&M32E%j){mi+%dH;|4n_t{c-{`2l)HH0wOZ5dQHbXlTj5dw))M+sQM{ z0lKbma;ga0V97^^bdiN#yPzRW`BuMwo`nCsoBT$*fwHgIliK0}qnUy1YOXhbSfBVw zBoM9Jc+ciNAQ9F~HBi4R5uL`O^CtMU-m9CQ{|uH+kx1QcG+7L%C_1kCHA%H6YF(Dg z|1%$GK6Hgnr%3Jh{OD9QlCqAdP&q(2X}0s&!rEq@*RB5|@>$7yNO&%V{bBiQtK$FM zX{9v~BiS=Zh@F(2Ku!w8NCA#fcYyXXzuqVCZ=*Vpec;|dJIr^&MIf0EAmLwT$X)#< zBKym|us`k-oS@JhcG5)>86fszy~fsYLRC4dV?U6oO}Ovn{#JV8{L5D_N$n>&M1J{w zEh@6g@cbbew0=>S0|pn%&##}+Y8QF|t($vFnZ28HeO}N5lrXJMV_H!zma<#nnw6bZ zvksqE%T zTi?&blR%g6nLwu=%Hu-!;B-lCYMeu0?UW(Pl7l;nPOx6+%T29#X*E3wk$|}k)vIe3 z(AbzLx8J^2Si8~MbDFd}aqmI)8YStYQ^a_7W8&9%j{BKwp{B7h(5WM8vrZeXiAO$F zrws8enxB4I!2lb!OOEELf^S0**onC1Ud+PbT+Lh0zkRyDH5qvF0rNb^rU)Va2=k}S zF9me}-77!N1HTV9Fsly+!0CUhbpV2nyz3>(kM z`yg1lk*vr5d!bKk3^0-LM_yusW!%2RrxI>_#BY(?&s$}EKnD1r3S31K`-+(czb)0V z1|m5DA?|}i2#6z1E5mnNc&h~84ie>ss_|*3B`=2g-81gLO7i;p@zIaY?{IuG@A?p6l zYKH+5NzSIrek*wjRE()li>TIP1%C4k|Fg`}ATkpB3#G*d1>$qF^&n=!^4}8#fQ1M& z1~!Bv3&iHcnhTlZ5-)-hS5aY)R>ea0dhG9gFMjU1fHm^t`%~Z?PW6itJB(Ye;Eoii z{~dezOR#zp87Ap<Sl|PH+s|-omG> z_`4#*NlMg64=53MB2xFvNmr%+IKDa~2G$Q*rk2{TQ(0sCtpw>m!ZrR>MZ1at$4~x0 zyr;-&QKp@JhnZKZW2Pt;GnD6k*(872AWoBsqcblr3dOe41a6%I{*>i4?bbK>WmNQtVIbxVPYpyb7`$|-b zP->Do6Z+`D|YVdSxih6>ee3XxR{O)j(?sKV-gmt-uRRfmR$hm4eqk%x(uo0^1ykdBd=lZcp@n1GC|fQ-3~ znWl}Kwv?Ksl$*7jp`4AOr;ebynxw0gr?{W6t(~#Aq=gM(9_xbqh{r&y`0000000000000000000000{p8^9dYC zu%N+%2oow?$grWqhY%x5oJg^v#fum-YTU@NqsNaRLy8fFh*r_Y~2g9;r=w5ZXeNRujE%Jd}7fj6TvYf81M)vH*uYK z!-^eCwyfE+Xw#})%eJlCw{YXiolEy^wx?V3>g|cwrqro>0}CEZxUk`u^1dBj%(&w> zyp1DEZix5q&6AIO?AXk?vuDmeB26Amy0q!h*-ooIoqDzF!<8+YeDt}t?H!_D>)y?~ zH_V*AgX;zUGLM4+0+0_FV8B3u<^~QJSUw{0=Ao+3w2?Q9R0|`vGoB#m?fZcr>nKRyl5Q1kOOXx{u zQhONgz~F`)b{JWH9){==h$=ZCKyt|u5ZwU+3TOZU)FtSEh!o8d;f>?X(o%&{U6>(z zGzKZ;kVlb7IqTZ4}@J+jEI zysr0|Li1p1XcFtF2)E zn$MXTrYS5$r)VHUn;2qX8!p8NBblFo1)Q zDJFFD?8JrHX-`-VV>C_170E+yU>g@yPHOUmrC2`l94nALtvPftSc>7(vQ>bf&_x?v zpwNu7FI}5lbJXcsKmjlYDrf)-nR0MR21hIq#1ab>PZJAkV8+J^8H_Mc;+->4E>IMN zj~2iTq>Omue(9*W=wirFu$4N557iowVv^G0U}Ue#3B~_m^&ebl@Wa3a;nPPZ53Q3& z)DSg|h8lstdl1wVR}Qj5_)K$h$yiSmaz&YUp4aCBg?{noA&*=T%MYC{P|1pEepMb{ z^z}lcHNoWbaz^t>-S7S-y);R6?5oJrP7CA?3L1PdM&LI%q&VX~g;#by_z0wnLB9y3 zjzGACmv(yP;(G3n4Z*FfK?XBVa6ZB?4}&!V#jnBq*yF)G4GtfJf+zX#A0qtM2C7}H z4$S-CD-sBbiR^75Q`5jG@)3_Y9O7R#ki-4D5f3mZ0v~dKffzJ^0#W266);c(3QTak zV{kzf@!-N5MhF9mkt1+s5Q7cqWiS~?ZH3>E!w&!RQ3n`^gL1LhAIB`mM5f3oa~%7I znqHQTHf8QBieVY&N;Zuu=A(;WnVG1Xb$HLEeUW0$K)6mTiiM7*^;8XTng1G?Z98n>d}}kGK?GqNhp3Ms#nVI+nwkHPrj22R-S8(smF9vGor0yj8-;X_|07-7Verh$JROlu;A0ZHf9 zJgP}fAO<_ZW8xBXZ-n5BGMGCdL_zidsvSg`oBj;ZBjX~BUkytF* z62Br3*j=%yGtpznLYLJx zQlNrCsNeW8H$W)Cq#D^MpW>n$*?O^hc+8U1C~TDT!H$+S^>d_~Y*!}R);1-w%3o|v z=F%EwMZRukU>3+@K37RBJ1qZnY?WPNlO?KbOg74CPAow-#$|%2uE~}Z@staPJ&iff!*?EN^SwW`{8 z!7HAyVedQP3?D5DatrvXM82C1$)noV9*1P38H!fOFk<<<>;^S&rTa0w^RYaBYRzB( zlyE{Nyz6e@qoW!aqC}q23_H;oAJS0iHUQRZ8K}6&ZIUpCDah>BGW^6A7Dya&97{d` zLSH(7IEx_`b5S`=9YW9f($|P{J|i|U`S^2dE-4U3hNWeby$4!bb7-ZYA>8?B z17`QEyGR=#0(r1WOSym(E)=L#0RVtO+|h;>FYOe*p0EZ^K41YKjHL_Hf&cbpf~_fU zgI#@x2o^?(#4Q-r&}R@tC|VI@$3M0K@`P5Mi($q%r=pl69zk;z9THSU5jJP($Lq* zBSP>`5nBaTY=Zv@79RRyJ{$}V7Ov7JxV#%sxBN0Nm<{ON{DJiF@jXRLh}Y=Hn4?)vrxc=4|9-gGInvy23+}YYo%8!sF!-)v2FQqHsA3*?ht$V z5I*Pyd*J^uJ{Ce>oFNe81|$pNdks-<@K!vOKx#JN3>f8!pr`@eP&~Keht?SR5M%d!b8nS zLHp!W8sG-LB~;y@G;AOZT)=At*p0t|Ic@}H-*7PwQ!;>6j!||=qur!CyuX^I;o+Kg4Q{W z^^mC{k41J9sAo*;gr;6G@HJ>q9K`9Nwq(1zS7lQbDYmEc=CfQ%=mj2h6C&!`gMv@+Q< zd*XCX*kcaLV|yrpdy=>rxxy>FLQnjK5SZ8ytDph8CJ+ln1NdME3zKyv|R(-_4Jd;3|!1Q4VVT%so4uQik-9R`gW>P=4n2E4!Ua&7a1eMMA4rA~FaPU*~ zLTr-5Vhg1KCm;saNMy0(YTme-FJUoX_mFh;MPbxMkVQwaDS=CrM({Xjdp1^B<`uE2 zn}jx-Ll>Mv=Vd8KkWANtF9S0&Xq&M)5NW1lat2k9b%2~DI?ee=`)C!L6nFB_3}62c zOK7Kr9&sSQV*pLS45l>(U0_-X005-|0Q7kfYUq}E=}{=~lz+E0FLs~0b_{f50w%Oe zRf$`8z-!1w5FNBHvjtoNx-a~LneP&z74?TC0Up*y5Q!L0<^%=dBoN~TmQL|bkr+?9 zcMy@1mIkqw7(r)+V=49^qlSqP>!T2e2@%P{HwV#UmNXC;h7UE0Oige#%X3rx*8UP6F2?!ccAP6u9fM8mIL#ws=Ah$YSf~u>#O04YKuHWdc@gWb5#&)U790?!+ z1abfo-~e<72xH&?6i^@(kO$Jh4&?w1gpcwI(tqwpSMmq*$5K*z1W+*G*Z3V+r8fVz2N_=8r&Pcd6kNd;e8Cu;!5YlI@ z{K75F!Z19;G+e{rE5kON!#cdf$&150{KG&T#DeR?LR`c~e8lZa#7MlvOx(mqro>Jh z#Zo-QoC3vEe8pIt#UWzFTHM86{KdV&#b7+fWL(CwOTuQH#%jFAlOe`z{Kjw`$3Wr6 za$LuDe8*vl#(2EPeB8$~>&Ji`$b#$whX$T zEX%sQ%Zp6QxBSb%EVjAK%fyVzAK=TuoXpDXuESi+&OFM;thMB_%+y@XP1?-QoXyeP zx0rmQ*8I)jd}P?1&Ca~d-=@bcAq+&|01BW06<`KS6c2VV2bq@;?=S~*&_EtBm-L(x z?;r;k(9Q~A0*FHp-#GuhXtpEvKI6)xLmQ2!GEfjiS243yeZs4*_VbY{5 z2!g-@Ctb=ZoyXn$w<&=SS1r&FAk_*$2m+A|GhNdPaMK>4)I3cRaQ)K~@Y7K<)Cv&O zS+NX1&D0wa4=&Bv1YrbEoezrr(h%^|mr4+LEzlmY)t>zmW>64jfCggC5W`T{1d#;_ zK#M9t)}fr$0)Y)_4b8}W5~|(K$0HEr;L-|^H=F&}J?gRa^AXU%3_DX2M%~ULpeguZ z*gGu{hK<-*febS((h%X;lU)#!tpH5D-3$Ma(5;}+zzyAm{n_TN6QNBIUF`-KaoQW; zR9DT~DdE~HkOTQ}4}!1)*N_j8Fx#QL)+O53or@BN&DR4_+1$NOdA%}p+7R}Drwm~a z4c-v=0O1Hx;SYh}20jqZJwef3Iu?GX4&LAoKH>`@;SI6b(mfC*9^n&CL63b9+s)KY ztpM9M5Vg?G3-E^6tpFL&&MU4H*>m33oZh0{-U}cB1!@cnZ~+Lz4nv>-3t&Q~U;|OU z0g815TVo3HO%e3X1Nk7^pbQSYpx*<*3n#}2pj;2K4R7l3$^Z_iD~%G#-Pwf`B`{J@Ky>^ ztpe6tzdbfoI3sBFR&grDE>+Sr8QWN6_G2_@1 z*MvS0@NfYTu;T=g;|kybmHplwkqof}Z@0$n#EuDA18_!^5vrg8pFrexY~%z1@Dwo& z8&Cy&Jq15t1e5^REszaVu;W8L2-^?@H~`n%hXpr&5%j$R@S+Wl0Lmwa4USL`_h8?$ z4FvhX2ol2!`z_|C9Oorb$Q1wK+%;gBn?2Q&t>Wa3^X;73+l}++4&%?A4~DG)Qyug~ z&+}4F??SHto<|Vx5Ufeh^FiO^Q@u5YEw?&;eQ}NRe{Bmu4{ugq-Ue~nQ=K=g!1KdC z^;*C5tnTgFJ=s5R?FzBo3m?~z?GVeb1y*1MTi^}_0q?)1ams`c`~HUe4g->)K|X{L z`wl?<4#&@c1_Cb-qrIpRF$^5A4m%zX62J{bKncUJ0N`*BElmknVCS_^@j-C$H_iuB zokjQD~3UC6=a0(i2 z=Q=<2?R*2#U>e58H z5ay5m>c8`o{{Ak_)8-El3Lq>Hheg3b8qDxGIH+JlzI@9XhG3TJ!oi36vNSxSFv39( z5Jf_CH%H3B1#=qZQ`T@nBVj`t{(xw(p+JHoA;!C?pp#CBMh^bW$Lgkn3VOZ)g}992 zf_nLEhGbebq7|%J-HlA9!Rx1dU`&Y1=Z=d86PEJTL7@S~D3NkBOoHgjO}%(x+QI;5 z3T)hTtOUBLx-- z3MH~2g6|+w^5My$ngSHbCg6xWs0EQMR3Imy-1&$@$ZS$TKmZj0PPc;$-032yO58BJ zvItbMte!Fw%0H1FRDhEbPt2#k7MberzkF`&U?iJz5^(_-nbMIcooqR7%QH(zG!O_SI+tZONfH;%7iw!fv5=$+`vPF8{9!b zhJ1$6;5PpaTo^+GLhH}~1~I&H%somgwe(UY4$^1&t_Msmo9mmGRnB$8jD zD=$;@AYyO5P2Y)wz@sqy5v8bB+>opxBUE6^kv4*`$P}YI2)_q2nrbBd9(oYOanBVJ zLCNmT4`A7i9Eltv z7>aL3e0m}=h=T~JEX**;B*e}{4Nj2Nldfd5yNmh9pj2s6hi~x?99f9Jb zS6{1j4!nE>S;0VJ^I-u9>zt$0xu~AVp&s%4z82GL^VwECPwjyv<(rP{@5mfkM0Z|w zp&amCq4<3m$B9cMvfm?-ISBO7{RK)#FCVk%_0LCo2bMWB09Q$nBF2#`f?GPsE9Pq~ zOXY@4Xr$b#Hg@V=<7F1uDw1^qnJIQ$$>1m$^;^IidD6czqseH_ip(GI;S()!c-A!z zLWRyfTXz1`fRtjK#Vdqrg$63o1f<1*d0wdm3TToKQ#6Kb6Qp1TEqFl;W>ABqX$}8V zI;ff1M8yagVpTqfK_HsUZ5a4b*oKC1tIjmXZ_d#bMDFo~8ASyfgHx7s5GRr+%y0#h zyHw>a*Pc)bgFqqa5BoUguZ`KnbWgOA?FPoWi`a{F^&wdAMzXKm)lLC5loyV6hrD;G ztxEnnmGRjJ%(WGKWH2x1X}dyXJj5X@s%OAy2qA`vZR#LHpId|}i`7a{*QD1g6Lo>diM&cb0BJO(K>K-D; zM!*6P18u}Ec0mo_y+R7$Qb2?Lbv%h+ua7DGBU3a)MsxY3MCe2$e&E5-D)}ff%W&UT z9{E7IjAa=bIKeaILX!x#p-GN10U!Qkf^7_n9;aXwL>OZNZ?Mu0(hy5H7;^|=NUD}g zWolEM`c$ZHO%G<%!%}|0|EJ zbM~j5tIOx>bVMZmKuAM)OzS%-Y}q_+QA6y4h*1uboxfH^L^2bJe_NzH1$bbW1x}HM z`sp(nZ4DovnK5^5d}AEvSjRi&ly|}V;~9#VQsm_pruwP?6ZroD5U)K5kIY%SY;I9R z3OK|!gkeV*-DpFZV8Y^4q_2j02fZ;5^CD^CLz!RAY{@IIw9Da2a&-vq`_nb zWWun0+z=Pu46(k_ARFaiGL}SCt0Y8@+K=W^#ZnW zgqtkj8npwRyB-J;<#9M4C}T(k8d2Dh;o8xfwfIOfzLP&6q!I4&Ny&jC3{6`=6cKe| zD;T-}X72>z5odVyDoPB1D^N#^Ny6GB!6MV2^8X4p?wPkD8W4J1> z7foL)fCfC+aj##~vI+7a2Ld5G_}k}x_r3pp9xtNw#0O?u$1C>o(z5kdiM;~S+?iiD zL=h7V@KL4@e*EWO|NH0v1s5^I4+ua396$mrKm$C$0^}j%vmE4;C33ifJJ2kqkcB+B zgIx*@a*zuOcz_Bxg9{uRVUPk1*gy^Fx&Avr6ih)CT*2N`Jr;aH7>q#~oIx5~K^Lq+ z9Lzx-+(91fK_0t79}Gev96};2LL>YXAUr}PTtX&nLMME}Bz!_CoI)zBLMzO_D7-=~ z+(ItwLN8pkEc`+-978fJLo>XfFg!ywTtojhY(qC3jWm2iIh;c}tiv{pLp#hvJ={Y+ zTtYnTLqH5fK^(*s{6j)KL_|zPMf^NNTtr8FL`aN89BV{LtVBz^L`>8mO3Xw~>_kue zL~KF7A_GNIEJag1Mbg+rR9r_uPv#V+JU zU>rtbEJh<#J;zE$Wn4yPY({5%Mre#iX`DuCtVV0RMr_PRZQMp~>_%_=MsN&AaU4f- zEJt%ZM|4a_bzDbwY)5x|M|g}!d7MXjtVesiM`aYoL&Q5{>_>lmL4GVEQS7%*49I^x zNQBHkgFL_E8@qx`NQjKc?pw$q8_56F^F)f2NR8act;@);YsmC_NRAvylEgZXOg)Pv z#gi;amTbu#TglVVM?!>2m#j&fye^t74VfIooV-b&{K;ABNjOYNP!vj_JW8arAfpV8 zofO2SOiHMX%C33J&uGd(q)MsGO0CQktn3V{1jMe~O0gVE(+JDW_{u&sOR`)`w%iQ0 z%nY>T!?$cpx~xmcn9IwE%RR(PyX;H9V%sRwO%j`^>7N|E$T(zHy_d_2*_$kJR*$2?7-&`dgXP1c;v zgOtsYfXz9yP1@W|V${vGOU?gI^iAFzPF)mE+>}G%Bu?d=MdJicPE5|_j80Z;PLLc$ z)s#-`{7LF$K!?1}?EFrb+|DCXNz!13JQxG?OwT;HNbqdW=Ul+?EXvVPk7-CB`(!(U zbWi=XMDc9E;2aG==)AQ9gsQ-YBVeAMql5d?iNLr(1%-@dD1-f+&?W58?)*>D$b-kw zP$!9iMqmb5Sexu9g$4bh2MD9$c#PSgP!=sh3k^x{1PubUiW$8f3Gfml2#Iotir<+Y zh`$DUm3jqnN6k%8zd1D8e zkT}i&%o=5iGX0_(&5!?wunoL{0h#Cqo(O@H_<;v;0hwqJB_)mpI0*v@CpVQSDh<>c zw9@>nl+?k4F#SOHC<1m{HR2F~Z^#1l(hM?vj5E!VG%Y8nD1uJ7f{bv5Zcv6AfQT!= z0iIA1EC>lD&4P?bh6SL93(yrTXjDP1)fFUE_H+;4U>}3{33mw7m57HSFawAS0cp4h zq)`S8;Dd_@1SL`chC_$(sep-N1q;A~k3a-`cry^FhgP_V3K+0dTL;nFER3>@N~KXi z%G5$x(@uB?7GbzzAcBw30U}M16;)D$Ut%^(C z33km<-5?5lh=mK#0ZARW->^M8$yaIf0DO=K!m~Ym4cLJ_TKp^6OX*dyDi9dk0G=SL zE#VCvun*uc2m>*QQ7{M|F^WZCTCFXT+~AE4u!eGg&aX*X;t;9JXjwB|S1fr4D#6oE zr3$;bf{=)ZATZSn2#K|wS&6`sVSoymB@UxSTEyi(rL`1;@DXCr0N;S8B7xcq01o@W zkIS`>&Qdp@_%$5B0^<1zBghCQYpzsN+Z4?Vz;vvtU|p&^h!B`KT;%#4og-`#al+^ix@u7|6eFiGA*UB9i=&jo6 z{ohXDjS!dyD%o1?ErOTejTXQMDgj>{YZ?3qhVgYv_pRVdJl;xS;E5;~TTq!9;28X9 ziT_3$Ecv#NbP@haS|W&R|~~{$VA=;Y{>l zATHt|6k<#yVk2H+9z@~`W@0GbOZdIe_l#mIj?F2CQ4GCeE^b37=Fct;<2C%^N>pMo zK4bs=BV$Q4V>E7K?^EL&c4Il-LO6y*HlAZV=Dj+8#5>MoKL))$cEmpZV?xflKwiW_ zE@VZfw?kIML|$Y_ez!(W#7B-~OIEc>M#M_KWKPzxOy0*%4&@m9&S3v?m+`I0PC=31BkeTLx=}6Xb`mS2C>eES1<#zKxbIIUTvlT?5Ze+GuQ^n4(l_>j(4yIw^j?Ct_T0IcI%!K z25>-YG%#$;*6fkMY?3g8%@%F4z7>2x?xtpK=~haqt`y`(?s)iYGjId4D2BJzv))Dn z<2r^mvj$~2gLN>2P3VKnerq!rYv_LN_F?hveg?|RtLq0WOd zhzGO-QsoYB$6yC(Km$cM@33Z#_TFshHtrmuZ?e{!J|OJTQ|U+V+JBPfeSPU5ZMSOxh?+^pc5+4fT4qRC#3?0 zm=B=P5QjN;h=4gOkzIi&c#$yp5HMLwCjt!+1uEzXim&$s0r{sBc?}qNaAh{Rl>h~J z02;`1aqq`pC&OT$2qX=*o1l$N?~5v-sQ550Rj-Fu$C5>N2?=C)>ahu>&l_CX4_JrS z-eAy+VB7SGiWEKy`iT0Xs1i=_dQN~ghe-P0HG3DiiEhvk2*3zM{rO=G`Y|NTUwa8e zY6N?r5++IdLU#yocn6pv2ra3H777Viw}~2DSO6?Z`quA&*M}L}kbKH- zGOs@l`kG+9_eZ`LL&QXxqreY#FQ-vA{3gS=CbJ1Tad=sQ5QeYsg=PETFm&UIkL(Ej z19=Ele~=l7hGtMWt%(SRU|W$Wx1N2G?|-62K!28KvP%aDV+t04%O{W^F$D^`<;yp0 zAUG@o#pR24LBS%63SD5D*YG3AkRnHtENSv2%9JWsvTW({CCr#IXVR=`^Cr%mI(PEy z>GLPhpfINi9Vzc4v!qIy6>aMDDb$`sb$V=Aj*7ws;*2QR&`_WPP6xq_ZK#ox#0~Wt zCWDwZpG1NcFXCvcz*9qI5JO5-&?qTZ1s)74$a^aUxn-V+lwYft=CzQ8{>AIx zWg^T)a;3Ldj}U2ONIvddlvr0uwvg8aAbkJ!k!cH9GmkLZEzpf#3jA=`K=l+zpGF?6 z)z^X-8FmmuW2Lz!d~LpYBv=fQ$0DJH8hR+Ai7L9NOD+~=B8p5gI%$ZG&a_x#YWC?B zj@31$onX)@1i@q6G+6bE+1mrjQ~HuQp*mBXj?uohTaNg^#>lm6dX1B||5df%zzNA;|6e{4>x& z3qABt@BXB&akFXUZAxu*LQ^wDM`iR(^2k%wN(f#JYn%C)xY7|A1euRzTD`RONmi$1 zHP#`ay^=f}xAb;O_s}gh-g)c2H{ah<-4oJF&6X>VD!p?DdNDntz%zXV^|w=C8O9fs zE?uFJ1w`=bIOm;v{yFHO`v&<=fgcwYR||jE%0(53Qc=t`k0}lWXk}AU{?vlrh4MIHi)mwi(_SxrSd`_mP2$eey;J^w-vn$X+ z##{MShXQpe&`FXnT-oOWnsfg;lJMFOr9c1u`~N=x1K1Sq;lz8AdP)`)@QHXtU@#Bq zfHlfN6#g7S9@ChI)0UxtEm_1XMlf3u%mxxPkdO-s-~tKJAi$CkaD^^>Aq-^D8haTbiE<1H9jE9=K60{?p8RATX9LKhSfoZD z;g2XrCcB+wWfX0>PCWnOpaDJ%!GrdK&m}>UNhxj;l)n5WFoQ|FUY-pp>*|n2d}xu2 zsbm@&Am%WIDa~n8vzpP2$|yIKz^wQOn9#H)IKwHpk&?8eCOs)iQ>xOHvb3cxeJM<1D$|+Lw5B$_DNb`b(rkRK zc%n3B(jHn+o%B?wMm;K0^;XnA{{Tz@l&*qSw4gmLY7=T&p^)~o zt4%FzV=K?s0;RQ{rLAmptJ`*V7PC$bs%~+++u;(|lfngDW`}#+;xf0nRa|cAlDk{z zI=8xfjhi&7+db(9x3|`fg&D#dUYpH?9A;pHZ2Dk^$$bPLc|fmqAA<(*iuZXS0k6&C zG2d=h1P$cXA3oF@-ZOy1z3^=aKJIV^xsgP_|7A&l&G2BI;DZ^~P?2^E$lcs#7`Cqn zuO8gchLHc!M89Sb)O?qypFAu$z8{H49^5eBHpH00RWd`1k8xg(IoN;Tbps~yfMa^F zI3&Wr#7gi1h~>4!9Rs$pO?oV%4%=|UvZXR=Km1=|xPcjHXqk}B(1>~j*bRUP?=yt# zhUd9ry+1U=A(TAdFS~ca!Z-s(gz;sJ&3Dbj1+TaC99||T_{916uqDXRhVZ(f9uC$o zymQC5yEmQVZPGhm_-WBzb>H=$-B z$2tGZiw^I6|Eps+!a$cIHyjPS;~#k-C7o6QhwLx1GMlPL5v z<{M-)Oybf0&Br^?u;4bkLC6#Cn=r)7hYPzmyh1($JrwM2dh1%pv<|m}D{h91*Ms3< zeqMslAPqRr+6><|L%1v6a5$%&%t8hSw!iI+U^5%Ajs5LfyX$ioV_Ur4`0yd#ob*C} zL&)9GFP`0jh6DH44BMD5IHZAzdK}ISO<(Z44{Zi*n}HhH8kt#(VSq{VzV|>+pQQV!q?Gdw=t8eer@0yX^3^DB4|d z~d9eqRzcXFVu0L58b!l^p;Qk!Sx(Ypp{72)@H%p zXK5Kod>BP6UPGwY?!6!HfyBIpSN#>9D2(6X85;799zC#wGuT&bHJ{Vv13Ii)NVHja zb;G!UL*f}+(%~IDph2Tq(C~DQiJ?cET|)nnA1U0}A?R4hq}=1#U&UQr`9=TUi)~+c zv4Q>Z-ua0b_h#+807+_^_;btjdzgeD%Ey<9zTf*Vr`+-E?4PK#f zL&O;#*wLDxiNc39f;1GK2zuD3(VZJegOD*1p5`p25zUfhBlcCj0@Mg=spRUJ2=p#)By-kE_JVqD=h0xX0V&i&t~ z^<5?ipic!B&-A2No7dXXF5fm_)fqtwycr$v~o4Hv%Q zL(!3#d`VbEc-yM=7`8PWdbJ_Hd5*{pnt_#G)1lXgeOsgH*tZdwC!+sX!lVL4i`S8i%5Wxi%}#^;Dg*?Wc8>G zN-&^CzS(s^S$oBpF_vFVL?lB}%0s$@7gE+rx)@Bpl`uAhjx8TbcwBgCqv*WkIW;6| z@nlQ}rB_)bNMKiz;fM7Ar9JuNX(^>pJ|$F|i&F{|QGUGpvPV!+%!DLI^}~s{AFSqCf`+5Ly!X|WYzWDWnFG2XFmUhW)>h^?nIk;f{BTj zjL}yjWFAdAW60bA&01s|rqJG>#DXLdJ+=0#DrZ|9Ci$xq8?B5xH#B?%*cIL%+R)iV+ zAa3&4P6}sn#;1JR#&H&9Xy!yQoWVAjR5M%*L5Id zETm^%z+8Bqr_Q9Oevz0oh-Bx~=X`dkhjP}?`BriUol~4Ah5qM9{HK1ALOhtkC@6!y zeFX7^S9h{O9w-8B-kEKRmngvKI*eT(Y$t>kgZ15FaEAZrhbF0#76pekL|)p2lffL0 ztp$oU#DB)&d>sOJHpDyV0fMe(cP7jk{J|g`!+1XEbHM113aMF46+T3qAigJ(E-9VX z>735QLfYppK2}pasMVO)>s0A;CRifSgFHlBINZUc^}&KsD0e<+p}pvtp20U*O+Bb- zp|L4!zD~l$Y3Q7lPKBzdjw-2^s;QnTs-~){t}3gxs;j;#tilw064iZ185*!x9weQh zMkj%q#jVCe;o%rXIBIN8>ZP73eTgY{1fZHWL@b8aYbNEa+9|bGt4TDe*VL+Rpkz~U z>yZwiwT7#>wgk35sbXR4xTY&smaDd&>$IvXye9uCyY8uGUD> zE5Iu0zDA02-D|)eEL{%lUHL1xBCNy8tHIWUxh596KCH$5WW;JwyHae%UaZFkrNSyF z!{*}0mTX;yEQyY+LYgeg&LztBE3|cN%g${7xI+nSrObBW#v&FN)9)s zpu|r4wIk3;qb|^l` z0#-Z?U5>30F_0qIgAq880)WDN@QFAL!vd^B37~>0AsE`ek6BbeGa%(hJOtfdfU#`A zHzb76cF4=}>2h8K(~twbARHjH%}E%+Es6hxUD(PRy;5Z5siGiYEC9j~^ooZD*dJVg z+RkO^p00UtN<2J(I9x%m48#3|6BcYhJdA*2f`sa_E?aN_N!V`e?uXhMZ`U^L&+#kd zHU;5u4MnuYC#*yzk%V1vK@$+c85|BcI1Ni^fCgX>7-9kHCTS70E?t^$Lnv=NNB}ql zf!g9OIk|&Es0B%+Z$p?ySLBEM#_sHX2Kz2A$v(xz)%ftXHDGb-;0K2ad2f-jY z1QLf+?+Qb=h(sM1Ztm(a06zeF%<+dPaa1JG0yR)WWPvGxE;;N%MFhbDY{LbZ5*73d zS5QOvT!lcD-Q9;3+Rvn6a*HS4fwu;=46E?tMc{Y zk|=jYrK-aXvk@9+3KF+L6Dj{d8&FUALUV@>@>~wE{aWzuI)qm22R&0$7Hj}Hi~u12 zU=OQp+>%)kL`E^t3*KtpLND`RWXCO+lQgp=*v3Q`F@~{Bav&GM+~SfZb4n|ufQ?vE zId5({JIzA`$zEcnNW8JMdM!)TvWMER9iuM!KuKV9fQAaw$UK}4$HN#Y0MhO=&799# z!~=gA5dp8PE;{cL2ZbOJQW`KhyawuwLD*RU1$IH7h-l#Qgi2g!56GBO=~u3PZwvyO-B3GT$eU$L)Bgj-7L4Z zY{PaOk5+2;)oRbSZX?ud_u^>pHgLP^Z}Y?fhwW(xH*!-|Z>wxxCAV{L_Haj+XVW%R zKeu)B>~XKnZSz%bU$=MjR&>+qbo+K}f46zR)pEydc%L_W8&!J0UUs*)e2de2J7j#% zH-3Y6c{|&9Gj|`wDu4&LfDbr<7r22RID#j*f-iVY-M3lxw|eh)eoweU)i=hjH-%?7 zJXv^CI=F^^_#Sb%Rbn`Zm$-h{Hh)WX!IHR%x41WXI9_hIWx=?M*LVzx_*b&HjqiAf z(>Q2CIDG3kj}N5X1y>x=zb5K#8mFNfXxyFP?hsr8L4s>=clY4#ZV3`JKya7fE{!|E zEw}{|5{AFbz4y$TIqS^1-=J1ityQ&ud%y4V{D`+LpocD)%pl1ADBy}yWkb`JA}0tY z@-dKXOMCAFP!n`l6v*)MVbm2=g7KSpv}9hiPVTT|sWimA7R;;}5ROwrJ>AyX35EL0 ziqxX`5>~4n-l>y=7L3HVj|69%hi3U$`6XEAjH?$z!iwB5mmH~5e;ntid%2B=$s7fV z*mLKjScvrWL8DZmjQ~;k`p+^wYeQ$hnu7wA(%1T`*U7(bMBr|ouznXCUMa1v>JgGB zblm6*-{EqU)bhO%5-j0PS2}VP5fI;v*cW~Pl4r&L35W&R|@0H{E~}mvmHN$ZLwQviHI-;HF|}x-PBLpl?b!6lY0fQXZ{vI zx@o~}piK2U&H3H@x#L>WH^+=8X^lU{4&GI1F?b4@s&hG|k?PmokuGBFBquxzr?xCevi@_h@a-}I{?l`?> z$p#+jlh1N0PVMYSck)~Ar!;}@e&5nDORunT9a`CKy!Xz{6ukOAU^xD_wf6VhT98bg zx_Mxj#pV`=5q-dO;MM!rx_`Upze(3(>9l3{`bjSrZD&7#%6O9n@5{b@xBhn6BF)lC z@0L-N(3|q1iP0}(H(I;p*TrkVtJlf^X%?BsYdqnG$+%YkfMw`}+?1XOPX_9n%0sA` zY&?me=j{WwxqLE>LIzK^)9PsAE6ry2M;uF~Y;K#yMju=&<&VNX_qUI@)~bb4(fAvq zDfI6OuSvPwex>QE1tVU7t8y-$zX*#4ao|at4JpxoHXB{kV7jr_ZL(Ww_V|tOXwc?% zyx8QIX{DFt8^A?}dRH+YeBKi%s(vw5=zo>BFF41hFXrDj5!L5M#P~ilhtuo+iOAi0 z=CeX3Uw|I1Rr(i?Uy~@y6O<#Ue~CDYKEc0&1#xER&Haul zj3s%q62zIdF|V0+-DVY7yPj|+I6myv3$ZZ3)P>l}bWM@ z)>Eg&{ygEr#gWL;;F6f4uo-DQ!?YP$vH;kuJl);gSV7VN*4v|ziL^Oo(Lb=Ew{|=? z(yE!b3-cP9hUuC=Rh!c0N%VQo7IYoD@RkgIe7P%A^uUW>dLK@fv1~f|1;+S3zKdnq z;$r~*s#Wg3!ix1_&f=s%@edoN*%4#WZ?g!*Fx7=Plg6Ozh7u(Cr93AeC(QXNrDmJlO8 zF0R@4W=IK$VMug@&+HbZ=bNDHI93e_*+#-gX>hC5wFDC@X)+GeKUj?R69-iMowY96 z|CH-kxbtcB_>)mGp{+{+xiXRH>Pluo4?8t#{>bGD3C)LGT6sdzzx47Mbrqc*=M%gT zS3xZ4h;qu=X zWJMwV=ZN#73^Q)Nt;r6huNcgR(N4@fuz*{WJsmhabshN#f;TtVcn!PBTNooeUph2URCX$;*T``kc1LXbq@I*l1+|$B%8A!^?oBL z2jS-Ev!0MNApz<>ZG0d4b$Si?M_PGoM$U0>d4Tu&9vXi0@tE2{Xx@Re6^l$owH~7} z0xLX3<)ARYN6~GV!oi%4P)*qBN!s9emi?fB%u+ohvwonBJch7M{G)Gw# zpBuQu%~_Qs|5(e*=%vZ#@O&y1DWlD`#Z76Sqf!efRtXhHt8%m>WbFw-<~N=7cjqmD z05&y+KhM)_j|=V_%X0ITm*`>jC+(WsY6iSRN922#8e_i4xQ(sQy%Sa)w7zHj{4lDT zbEjK-I>h13p&9vbS6T0Wifl|Yt83&E!cTQ#qG_(0&KO#%(MWCMHQVRggM(6gYXBJx zmXDW7ZqmY}6FY@tu3U2@HHR0`MAiXZdbIRqttB{|d(i7~2AW1R$sqBu>&&fiGVEnL zeJNqC)&o!Jjr}O5Zb9hf`JV4ysF7IOwkXm_V*ZM7jnca>hWG6R-FvC*PcV4!bGr~T zIkx5|FGq^ecSFRM$E}(VRByzHLlzrrC6BTXaZu+`#goUVxy-H`)G;IOr-Km za5L%27erj51{71VZ<+>}Gp^$DVY^A4tzY;`uM&Jnzu@nlbtd+!VV8QZ%Xrk;_ol>ci8ha$sqz(COmejBXIA3?t zCF90$>oke0vSG??@#fP?%Ax;yc5dLoO#vDi>@~oV@DYz%)$*F6iyCVjdn z72U9VpNT(@J$vWl^T*Ci{nu=b0%Jv!zrEG#jurOf6nUuVh^Z9Gnw#>yhq?cm{RfiC zH6zbV7feStVf}TOrDyH*hNIU-`8pjjpLf?EN52b!jcg;Y^z#iTw?n`Ay@cj(XyYG{0_gfd>Ak}y)2v(Zow&g7`n2*N)^uwB|dx@kvhL>i6P!bu;L%p z?LG``QQUuWe4N;S`3=h?$sjNPA6FZy! z4}nY*Paov|9IBp_h_NzWieOOtF0vB@@^%hFK$b`{6@icr1A--4ey!4suu}{P0LfwS zcy*S)UMXdrs4R&-75SSQ8ju+22{WFBhU8r^k%sW0_WhKX2twY$3u4E|Dnt-ey?^F&<_x3x<;;rVu3RD@ z;U6~gAXJ0IUKCQm){%fh!BIdGRZf1eO(^7au>}NeO%pzirVBwR-b7PoNT7ZQLXC%_ zp(UZuNZ$oX0s|t>OcN>HrKo;wLBqB=XiWq7k}!DTkG9jD8WEV6+gPgrkYFLARevWj z2NF$`j5tb0w*pWPkg+#RmNWI)7!74cfh(*4<HX)}<6mjl%Yjf{#Y;xE}0)s4NuEd)KW;t_;uhLkBLj&|2C{Dtrbg6~-{Q zxEBnSr)JtF7_247nghdne~!_FFoycTP57JZvF6~+hQ$M?!KWNWJWf?~^0*w@b6*it zS5J}$3{rWmZVbe(Ce2g%+}!l-xo4f#`9I+5dAlw7;|jz!=!B&%zbrsA)wPpSH`7uD zKf7t=aqkwW3)OIImg62*;R<&&s5hoIN>2$7H^}vH^D(E0%-smIanqo>xecg`?xqs1 z;L@zCyKSk9-Q0{E%}p6M?7-DugWSykFosjNlLvKiTn!%V+vz9nVf(&wn1-Z2outM2 z8&#}>m>rVEfvLp-_B|8g9!JqTGs$N~cTIzS$$*r#2-DS4^~U<%MNNBObb{F5@Vz{FP*4i5O+%hZgfn8Ddh9$gE ze8*ia$HNTAAB&C`_)gC^T24PRoR${(>bFVuwn++_72KPhAOtSB+Aai{E+k7X6a=m` z+O7QV znv{+lB6@4lwV&HPJC%BA*#+G+1UWU(4;{AM!|CvrlSv87NhKqAP5rrA=`u{N9#nnA zmuY<&lUbJi1Wv;ixWoM#=pSqX@|+`tiXudJqF>equmUy=^&UrY@@13KFNE|)Cv7o= z3W?qVcGQ2$vnZ*vO5bfG;MX89l}0#7fNZytIkK*b1Sm47K;3A_Y&&F8LGg(;L_AxF zd%(c4WdG*TaO^Uy&N2j;8E2F@C;=@&vw%EG0yJfO$s}%eQs4y>2O&@;p%4Xf0aKPD zNuzo~=Z;}QD~NemalO1BoR;XR$MUV)$Vs#OJ-x9D%Kg1pl1sB9gVCeDDUhnhMus1i zJUG`l`y4-CZd+q#K@4AJjA)sIz)T-PQpBqKxMT=(p%=h5>rRoXM+Hc}l{ z^AbJ0m1N80imB3z!v-Q+7Gal_kKFg<`~`<``!YD8mns_%fD8bBBwKD3K*($h z?Suv4KwEubt2v{G$k!(My}Ca3r3DZ@;%*c;|51oKUx{tXR{~UzOP!+!2>Cok6AC@%p0;J$dHY*4hFIwo&AD8KIOe3T zggv7nWX`nV@f08)QB{ypm+j_MF#8sk2~rgOsvWfofVSeI=S13JRQDcNE)aQV;@3Su zQ?mpRbAS{na@A&pWpptSkJ(|lS#=e}MXA|Q!C4UoI+dA16mRruX<92>1ioVHH>u?& zj|}6i(n_vu<28HNr``qp(55H-?H!~;wezc#3@tt}(o3GCNfafRAtqm*s^xh%=CJqW z)0L_tfIy%UHFQ{HU*C+;QP!2^Q=eP6-Rq~?j>jmDsQkMM$GcUVyDFESBrr|or+&~9 zj3FqyD$5&qP>}k1E%T5KO$5SW^GbHL^|6Ts`I#-C& z$6zEl-k>qQCY7LI#D}sz;NaH#&nT? zn!bvo&iG6?W+W8raY%-h1AC&A+=u-TTu4`?#zJ zD**@9)dw?w4kj1qv#20LfTK_`2p7*`uGe9k2faL=hnkm0boWv8&!duI1%QdxJ`gGp zg0(nI76k}SlNb}ECePXO?-OItH^I!U1&bk2oETr#`V-BP)6^T$j{H4-{>*j~I;?Qr zLvtHQV|n~Z^;f%yWC8j_t$-=vRQD$#gbX1{lI33136%Ob+g}9{DDrwDe*|uy|JAkI zIT0?p;g!sb69>_wSC8~Uc@tDmUl`%VX-Y@eNQrUkI2XO4(_)CbdFpj~egBHtus#6tEpsFO4k>3iYVAD}+BdSR$445dXu?`}rt z3UNt)7>TUkE%ypv#J~Rb_s`Ss-_H=^AhAD-8jc7r2Rz;)o&x?V>5 z$djq!a;|`)BX$`yj7Lu0146*dT0v6tzEtRm7rjp7R*@h)2t{-w>GU%5!_K4IOc0Qi zqmbT$Y8Zsbl1H1TykQ$PPyNE0l@_e5yh4#CC~A$9u^>|`F6w9q-`5M<+f4vLdiU`S zbltP3VMQi|080t`Jwq{B?;tHG|5!SMm7@$CKO37x^1W2X_UM8e0VVN(+s%dmv4uC& zu6TilQH)J#j^mh3nYyk|TH2?CU$m-oIzCK_GI^d162sEP;`$^;lvrZkuK>Z;V_6GC zIvxpSJxKgR++_&VdF~TPdq_AH68u`t88B22Rh7m$t!G6$w^6X-3<6P>oNen)f}&&F z!8OVkwW3esUn?Zug5*1|hjPCLU1>%hDAs~)7+TN%VmS98K$I>O?r@qMd(m6mIeM?) zy72z(HpD{$siA!4Tqm*FGj^x9z}ekEr?#%$6#;aVPQ*KxLQV7H0$H+c0EfK+?8 zDWQuAw`q=Du*RfVBE~ITmLlGL_6@skqlzSZm(852%3F^Gt@qVw^CF`09;td>n4Zg~ ziJ13GLN0HclP$|8J=Yw+OIXC#8_?S?N6A!1%`J9A`3ThIL(B9;PQQ;z5di=y=7a|e|9Qr;{3 zoi%^|RI$!KQ>{T^NlP6^WWT2lCiaJfVG;Xugd&e4ZQn!^S(@*BxpHJooT7?TeC>NX zr|mR!=YtE2y|w3~U1pP?x`*Z(2@q@3jze|s8rj^L>(R5BGv{YzKk|7|?-Vya$HhLnQ>EiUUCbrwZtz|`AX?bDV41J+PH z`%CWts#t;!bg}K6<&$C|HDPAdRKRCrfyU=TqUori-|3w6LegXR)TxnkZOT#JG(|+P zBO$=1S}Y>=1}+hS%q~zh+FQdAUms;e%$JkmVwap~4s}%i4Ofa?m;y=S^^pGnC)cy$ zz^1tNz)3-{+yy|61=&RAH5OJ<98Jk9wP<{)6i9N-k0Sj15Qxr*OJM403HyiWjyK(V zDYB#Hm+O@A0>}wYQ>`TA0p3wMOgkTZFpQ8kOd}d@sd7H$T9Q?_wOiBAX1uT3eOCQh z!#hPoQf6Bw{2guDd(7?AZB?1*Mf9})iCg~DY1!*%G(Ne2zDr! zqClUCdgEU7dqOtOGJ<5;oQt9cu=VTt5?hYD2Z%Y{n0vdvRk8)V%%L32Rp`%rCz>#= z*++6nhF|dxB6iI{fK;mT0bS$mT_Z!EI~wQbki=A4ybl&>hN}7K3+4196`-*^jgogm zMMfT#24^SA^|qQd)JRpPtd+XcLRxW>`{mZ*Xu50YORZxb^iGC93>L<4t2aGr{AJ7x zG3J*#cX(^VSWh*dzrdP_@#`WSs?0u&>J&3J*Cq#4S+Lvnk9~>dXRX?`!&%{+H1%vO z?)qqrJw!5B=*C;{(NI$nV{JLdvsTSF{>^kxjYvCB@kZ^ME+PSuiHLd$qX&i)nxp|c zFIV8BcqBXJ)hyIvto^TspRPAQVPylpEs7hS3l10Y-OkukTOpIzE=|y zn0REAJ3Q|}IV;(Q{P6pfN$ekCR@+W`gG821e1)!apNXsD9$R>^W#^rTl}Y!>rb6Xo zlork&p3#9?>fjS@*H`lnf7D}Jv-%b_f8X^zHqGY#_8gt4)E;^hI^xBjuhG*X?k;Kh zWRZvmcyDrG(~jFz5riT@oK<))$-CQuUdQP_nf^Z#NYj5vBtT!UJI)N;+kLJV)aoco z_L=g9M+hYAD0CrRjNj7+>56hYNhv$+4YZ4$}PF{drUXIA|nm*|!J z;hzhZ60I*6q$~0to70}1dXWmuVhpVtNez8>?!dr;eUEm(h`IZSoJ*6_Rh`yYOTWBTv`qT^6%HCatv!8@W-*@i2524#}wXa|l z`t=^S&oIxr)&IQX!jC(ux&=|V|is!N1a}fVwpxa#FEI(|`!*v8nd@$Y1F$v}Op-}FyTQndDXD2&Hq;3Y5`+pfhN2&tQhU27 zn1;Nh&Y3(zdDKF^Ji=r~!rtoODl+0K2xzMwg=t!cmmP*mfWo9b!VQnYX-2|@A}uu@ z!Yy>d%mtM6queYrztgSU{A2c21BR#A+bQx`3%W+pNBLm67BEuho zgO+jMF={(oN5y+b8Kdf$MMWjZN0$sou@pwRctodlkAj%2iWaaSNBV@|UAK_p(EB>QzLP6<Vt=ZQ2?Pbjk#wY=asGX<;Q<;Qi!m#6` zgiqG-g4^*Ygozi{iLp9~R3ix{-id#fV;|*1_q}lsj}nnq6n}VIZdoT`=t`m5SfY<6 zVUKD6MqeY?;3B?CCVC}>wGz5go{Uz{#*~F~Bc5_YnLkV>|1pd)n)aRpQ)9uF zs||Bqg*Z70ooYO%qEf8;4_*{nnXDKmjU4l&0L5EW4blQbEiy zsvNlcoMt_vyaM%NJqg*e}$ZEvx3W^3*lTzQ}$r`PMKj~ zgJYx%b+$>jK*O>aO%Jfia73fD6U3wE74zfvmA%4R8pNp{ln1HV>!#TP=Q6@7aQy`_ zwdjR?D>4zUvL6AN*IOFJ+_ZH!aV2fpS&tMEf_OwfZJRP-sckq(6*7(4kn&MQrqP^E zU}iNR=G|7Bt^(AxEwj=mFHkDSQX$WLRC#12_xE;=`nGTnjmQA#^@yAF1g_D$7VD{S zNhYNCD+^X??go#PhDbb|A_K_n$cCr=T%!wYnM5CXuX4MSG0Ru-hR|~0XnA*lEYs2F z>}hYN70QCUS0B}h!fUQx18Bu()x}qMqzic*EH5#!P!N`{H zEma{fOA}lgN!mt1>{9b8Tw{<{_P%63DiiKco78%mj6f+NGxxkUi}VK@nab?+A)6e& z9Ev$XJdr);l{AP1PodC=zy~?3aTt+Tfq0)YGAF%9^^LR?y^LCfM=G+lG|W;3+4^+^ zz7i1|Z%i?}OMW+1X0e%?g|1~lTV8K;{zvspt4A2;XxZG>XQy_OH%xfhjS6nC5^u!p zLHu`q5uawwOy3h*6&cGnAD4i%OILXF(chFyVVAkD=ARANyaX2m&Av<%m2V|Ie=&Zn zXg4WW3odt^SI9S)i#sV+$w3>8u-8h%oW3tkzA5Qgv_mYkPjJi4854SymCH6?(fRmg z2A#hS9d8IGHX6nsv!WzqZTwZrp1rsv`3l|s5*^d3bm7|Zx0dsxv-7rj>4J$h$4SUQ zs@1_x>1<4m@Ipd#iP{h@xetSnBLBN-+8|5l+rehT)^v}t0XIzo_f0hMga*O0imI5N zpd`7^pK@wQD!J#s5G&q^Ji678D%KzF)P3fyr>m^rajnlvuV=<+h%2kJX-$0T{p82s zW%bi#k8KdeNarSrkNYAXC|h=GvH;-l&Mt6pq%&%9(h9@+_H;XY+M1 zQEj}5b*{1gO=&eSoA{>D(5|`bs!6K1qG&+WAoFdvMQJau0mD9><2cQAn}OA~!39yp zoW&<%U!1&l!;NtK&AE?hd`(uBtx74)61_%b5r%Wz?@=s^9-H37cHWcF8zagVp$?f~ z+zVrR3PI^j25#C2JW+}GY!ZJPJzkoS%nOmpm^x-y!rNP0?CPUCa5R757zml2X_>jw z$_SP!h#Z)G$2B+pA|jgskuNo`8!)#*w|M7iqPb`roorz=WHC=Kg9x-_7)@P~jonr3 z-nZ*MjO{+I?EW#{efFapQqocIKpc4C8<^MVdz;-jK})Y*ZNDT zwU7l)JhEOAKKY@!i+*ee_EXhwJ^gB6Rk_x;rA6Bse7kU2JNn+L)>1ni-KuZ+_DI3@ zs$TY^&Gyza_PXY_y-W^MCUwU~eHUD*=oSeM9ZR15o!i$;V?cqC7h95iOQ{)%KIR)i!zm$Opa zDSCY{PHEIOH5?E$nq4)TJ2Cq4bTlWAd-A8h^yiUu`>_MQ5r(Vh(aMRjN)~+!zp*-z zsLb`TCj0RkgR%Omab2nL=F{=~xbf7^@qUByuDnqsweb<~7~;%mZ{FAdc(O^&CU;_D zqH|)&eiEQM`Pef$1@4^zPjzxm4o^&G{OdTmro!CzuuTRw?jc>C|586yDOiWEq zOg>gkuli4480cMzOmB-!opnxq%9~s>fbW5)+eqPufB%CtEa&hge|Fi!skj{TY`LZRFd=g1|A&w&|)002$&~ z#ybn>m!NBomwM8Lb4r#)I6682%YqAajsuY#jzz$MZU7{@pafpeVPn8idkX;Zl$a96 zD_PYmJ3T9h{7X#wOP&Gabxnb~L9=$fXw4y{Dz^BIXLNzvv*%FYP6UJyj`>Lqa^noP z44%IX0%kdYNsI-^W-uRWnGn_RH)_`>MbW1>hO6UiYB1NTNumEQ_4Mimy!rayqn@;0 zs3*1mhkAPVpHNRV|E8Yo{#(>jWRrc;xBs9$CH_b4DfXY*Q|Z68r&K+gM5}*mPhbAa z+Ed;C)SkxvsXfh=dH&yNPdN=~d9D8?@G0+qf=?y?CGaV{Vg3IEK7DQZ^AGT;`+o;M z4U9C8E&m&Q8v8$kPr3gFpC+23Ucjfh%E%Y+X|>`1C-{`{e+53x{-@y6%6|l(7XJx8 zt=v5APWK)Cf54~P{{(!x``>|2KmS+o>4kdwiT2;2o(N`R6&gw>a|PV~7wRdVJMo2j zYOI(mQ{|pr)2jX#^|Ue8RJrsYs3+DAR-5@2XRmfVoyqJ5TbG-Yjq#S6?~%8Cf5?;w z&0E{TahZ{o;9t$GM5q-%Dd}D(D#UWzZN5-XJr19w{E%7OZ;e|#D5Snlv~yX`)tZfe z!o+1iTXS*vw!Ui|1o#d@Cge~xZVd(@hd@xb#G&UYN4C6bl3ne0Kb9+&^bTjMZ9A&_ z^`8TkyE`9m&^$iBhiHh7i*|#aupB9a1Ab%S&_dWK#Q}$>Het%1i1^lIUMxO8KYD|a zkG4XgOb13`uy&rpH(02bYfgxyUOfRniNu3k{|c&7$utp`n|d}i78lrpW4w0acorGw z!}$)5uoD;``M(1OF;R*Fs8a|5Kq0=yos>o1?H%#&)%dzJsTwvG>G8GAs-l4#ZYn7+ zp;lO;X$IQMF`P#M3Lx2{7X|1SCdZB|5Nv!Pp>$9&kcuE9s4KZ{oxRB&HF!6{ZLnE! zRK!;}di2@7cQ4<6j3}rl0F}_nz~4i%J@J#$bz5S73K~p-ro8kdv;cL%&AQMj{MpUA z2yzUnENeZ8N&4I_tE0k`Q!x5NK6OevzjUCk&E~^jAM}%yq7>q6aowSj{)`&Qv>0SA zf87+pKyUrzswg3t3L$ZEY`^Gr0RU0rtosL)i`bhQyX&|VBUAvj(6o=g3;C2F=fPl* zU3P)g09$nDB;8r!Fi3VV$_P?2qf1aTk%vuyYA1!423{vI5HBy?5QTiCyWWsLQ2ln z9pb=kFF&@wP^*Jq(QhkZ$?lov!AYf2X2X%i2NaXUKG zx3HLtRe14K>~EzZ+U^fK&b(~!T_lFT&I3p`PpbO}Z&?U;l+S?3w(J58KgO=Bbt?kK zn#8_O3Z}Ztwa48~G>Bgo6aWd$JL5y8ynlS0^H9I|oG9K&2#XUxMJ*op(C*K=Tg3GI z$SQSv!ge7xaD)ZoL-45S{W_JFDF#PTe9{V3dKJ~N@@3!5_YO% zVmIYd)TNeCk3JpVkq+jDQ z%yuw2Go?cihsbR0F?RAEvIiGjDAiXY4~A|LLN!20NhBHa{*9zm$HM>^WhgQu9I&)7 zs*Ki~-NjQ5#4Xq+KZy;6ufs*b=wYcGNn35RccUQ_yCIB#ye-68Hr%|kbOylwn#f~` z&r1=qGn@`Z6jd^4G8C)bZvV~K)WiUo6xyU8y+;wzTkCT(BDf+nt(LDk6k5cKb+uZJ z$|bBUK$ZD>nTUw(0n?)%*NV-13vDF0F@O-{_<#_4E>id$*%BN~NbC%x3#0FhJXN7; znCrpV>Z$RJzi@DI%M^oKgrNMzup-v6>Pk9LB^2ke@4zMALX@n*B`x*is+A*b=befD zYexu7-;;NfpDRRVj^4gpBw;`%W@Y+nw(Y$udLlm%y-~|_d$|sELzm|kJ9Uw%HXArG znGZ(AbJLPpSM}42FAn+2w6k?Adg-0$CeTEz@m6R5GbQJQl zX&WT3F45t+l8SMwBazq$0qG`eTh>jMof2->^wU4{+lY$_fpjSGOpt*T)}UPZ%la?Q zTDyhTUZ1iNW}Gu`E_9{Kj@H1Oar?^h%b>&q!nX|X@}<#v*Jp%&H|&*hh7MZnz?*T2`T0&6=ukh zK5Q0@!Rsk|r@K z87-$;lV_KTnHk;0ZYiajyWMVuaqN!j+m&uvi$x=LUVScjnPKHUSd;Rhx>EFJLISy@{^Pqw)GN>U)dS} zfHBm&6WA}PDD&k{B`~U^rR%QGy4$m$+dZ4ornQ5TaL*@kS?CtY@Uo8vvFP5vF2IlE z@6Qg}r}t}TIZMQscQw_ZxKSHzw4p^5j~v~mgGri|SGs)OrB>B;oV2SRMyP8MmLV=j z?EyxVgFjNYk=_nmD<<9}cG>bf{_UHb-*e{Tg(F=>HLj`EXaz$*8YB3!i)B1uNd@Z1 zHazcRp?nMI1|NBZI(`qNd^O?s{HElY&XC{WSEOJhcQ@nJ{al!mEX6NAA>~B=S&LnS zV{ho|zc-70%4I1CWDY??WJ_dba5xp8P~k$Q2U;c~t=HAj#S zCil{Kx|TDh|6rfNshp-IHqSx%V5U4AC{2ZG;|yhYrt(F`@p#9ADGoI1@dzIBfT?m% zzJnr^DXcSK0ku?!GfXlfAm>})Whm#lvDg?tbS=c7aLbEez=6aQB#p}dvr+GtDoW#` z3Bb#)vI$aj@BNwDCsmGYs2QTEPBsaG+A87#zUc4l8`Z8JE`l z08B)gsEBglcMjp=0cE;pUR6>{_WcNMhg$Rj8AwB@7nX}Z=FDr3ApM_w5rx(!N3Nh9 zb#wtYgsC95xTJvldo0Oa-SrU322}CG;&;RVl#2a#--Eav#W4+?ZO{4RnoI=r8qKy< zIbO13_DyjjeDY)EAr^e@a(L2?bgsJTjNW_hDDoQ0+ML1}=2W=xils7+yzyeq7I;x^ zS#I$pgz+j7ZX?TrnIK~LvSnanXwpuwF8W_pV`gt}6UcOk_m#2|4r=-0-1(fAa=NVlzmKF^(WR`Hve~ zMHA>Nqe*Q!kn34DmZ?{X$W7$qq0*eW$Wf4RK_pHQ16`>XQ$+~VcMT$pU|*~mbYfLo z1Q(T;WB%Sr?4gnAdavwWww61ZgwG`%zgdCX)zNfE-=If8^NygGmwdmjF`W$4OKndQ9FF)JdHJ(71Lm5&!#;v{bf&b7$~Nm%eMT8Ip4 zUmdz6(d7EU65hJV>&ro=0mvU|J+$PKdemMiZ-J9#kd2_aFMd-h0$|w(sxFXjRH4c! zo@$fHP5j*au_Oa*YKDO0{zgbp&)3@DEZjl~AH)moqM^HKPzN;Z<|00nVABvDD5w-d z@J3Ntm8XqcohuoNL!8YvhQl3&EBn)3btaKc4;%BwRnZ0F@5~kAB~M?Fm)w{4nwlZ- zo=^ToZ*u;)tl&ww`Z7SkhMg1=VwZSIm!Jki*soaT>yVn9eNb(2(3yxdT^H&+ zD_RKF;Kn4_eDo{aF%Qr+8-(YZB5zw5=PF~0)Mr%}tSxJt0wTQIO9Tl$sNX6!@vKnq zGq!?X61(YE66@zzQ+*}KDUlOezF0Z51R!1_U#PtMXCI+20?Fk($r_%tUlfB&s0txf zzhL3E2yP}{NM`cVcL2ncsPI>)#03aOTT_^R5j5m~7LcTfe1;y=E6U4ZUt5vZQ z5bx$Zwkwi5D&V8bKj^`YIiOdi_4#c;-`mkK&}%^TwNMS? zRn_emqWc(Z;w0p*EwDNCD;kHw)*B!=s1hsb6><+iW(%B;PJfa^rsP~DpIuesQiJbT zN1R+ks7OfchkaX%0{ExdB=aw`36A762N>og1&bqpN}-0>k+JrD{rtT1wZw~vq@zKE z1etLMeMTB&aZ6r4(0-Jq1THr%1CEKNezX{}s zTEj?MCAC{~TnM9b2}3(t6FQn~8u3$v+tT#gGW^=Ia@%q`@EopM!)97Pk+i=!PsJo0 z1^VsfFVs^Lt-l(ow%g^i{Z{*{`EDw?j#-qy1mhlV8i(7vekB&LO{lQ%@6X zom2m!o`k#R_5V#ht#)*+|C@Ru>E03kH}!Os+kMjUAE>9P@s8eqQBT5+-aiO`|BHHB z7yM&K0Qx8O)NJ<+{h!oR;CK)8pVZSWQ!oAt_0-vW9@$I!k9vr{)}3BzgMUy@ypny4 zoqa6peS3v{Y^42MBKxVuqvk`8DWa z47rL73$Oh{Yx2$;_WdXI6!XMTvLB;%UA#L z)+(A8`KeT7d`zq7og!G~UtE(jGCvQ*TNNcV6MFSh+nDs4JUD$K59dl8g+O)Ug=_MZ zf*t@SXTbyqmna?p)EXh|UjPjFM97H&3V$)AA_+K91;D>VwetbP^H9Fzj6W%jbv{jZ zllt~3L9db~SN-7@M@oa8z?YK$!8{NJCj`3y0A?-MbcUmJ0en-DAY=p@&hUIVHjd#0 zl><~(d=_K^zKNSbhfcZCAg-Pc{SldydG1BAa-QSIM8Wifb*vAEiKDVyP6v>}Wd-4> zpt;p20CP1Ug7QVFfn#pWkaN!By~X(zG{4FMB>clo`XWDJ;!Ot4&~;(o7{krpLgj*H ze?u2hFoA>tWr$bvtEWI7!zD=yZTMSJs9pgeryNJLdYFq9x=J};J~0w( zIMGA{Jurr&JM+03E>Nu2Y~5hbZh>E^<4_n*P$x0|f-k^Wp@x4JR0_cuUDHstMO#Ct zO*MdyYz+fCRl_lz;jpUju++JM>-`qWhlxVC4JRp3=MY_frMB!{1^S%?39Cg|sfDBz zEc+KeZaD*S#BzX>p3M8RI83z$V$^#{3N40Zx^j#kl=fP>&IUKf!r z!=-N@m-@Q^I7y#IY5@es?C0W$=(PZxFm(Qx1d_3~d=gK2&^oMeof-aeeaqe~SlxgP z&^8A25Y^is68+KP)Olo)wRHKxZs+#PkOZdoGO0#ddy6FQjF{oPz*>u`3D_nzMBSi76m(t~%tQhQ zV)Jw(Z1!O$1r0;XFq51ik3H+rWQf1FPyxFbGx58D{(E%5_F@N+-K!;*>c!{kHH`NY z&M&XS^baJX)fK}D;+|R9hbzdpt4kYrlpI|1imtf&YK4BA*ZzU)D_Ezoe{QeD^X};Hw35V1RZhB|(^zelm;m{rU=Gfj)kk z7}@xP`Z#wrdr>_R%KyyJTH=Te@>MQh1)Y+~5Z{$Dl-(OpAft%k) z2-E9BYqniCD270PX!-iviCPHscRi!( zmdSUCFf=@Jd(XjbDQ~n)n*u`H_k_56_q{)gdJ#(lyi~2l)zGQPFw?R6Lfo7-vywRm zsH6&AKc!0kj*71;RHJx9Xu=bur!#+~R;-ZDX0bYdtX{5GqFkc4aH3hI+vK>vy6{80 z)+D)9P<`=q#o4ADf6ZAXs>GD^zKc~B{me_moQEQk5j9>y@dkPiImy;d8B&hnZ zg$@I!MShNvgfbKU{VjMKFz8Y9?P9cZGt^bTr>n?yjrDbikbG48`H((kchR!?R%+4h z=gR^norWJ_POu_n#E4ULr&ny`zEK#_JW;@K-1}^r&pxsUX2oxek5S{WAjA>WxSN*; zlngvUQV>k%AQU8``&Y7{RvzbIFlI`p6o_!BAc}FOe%@7)t>gAuk)t2xro=UFf5O5u ztyjs)Dnf~X{cX#ZIX~bFHbYI@>^u%oeZU9VzSY%NWbS2DGMkIKU$}0>-pMb z7<+YA30j$5gM7Gsc-0Qv`A3npE_Jj%GTiXXBSSD>d1|PV>^RX%>ydNM1sVXP`Jac~ zb*3a(Jv&BQ%0zGH7Xqb(zOn{bXSehAyK5&&T8x%YfBzY>^Qq&Us7CeMflv9lln#l8 zMm8FW2S{U%VOr$eK9d&mPIjfjPGGaG{xFSR{cAj7OHl_ zQB(<|`P?QE3uA$mM+`R&bsXDN$%;uxNL%e!q{w8 zqw^@%&ox7gs(e9j6d^?#g@GLkRBHZdmK6~|R)8zI*$L6gP)1G}&5Kv))+bjh}XXQ zfi*-}%19GUAA&WACAf`m*D7Q21f(5bxmS?F&`Jtrw5I#yj*%4|0V?CbUTGwf!fFTx z#>3Yv0sSa%Ew!}6s>;yV#+Yzo-Wf8dku(}SNCR`G#TlG1dY0weEx)6L`<@hUJG@uY zp_G%HP#W_>TaYDHQbe}%kr#1i747}%AjuMj52U5Tfy!PJ_8f)_kw25gvZW~@PqBUH z&qdTTZL6m%{9@`lPvv%{XVeEQ*!Cc`rbRq((3^MDEAh|c;^l!US&<7LejpXIW%m)t z@eAm@D(-seUMdL8C-HT4@Fs%wS;}-cQQ`w8 zXoxCWPW-pwY=mBGDHE6dTR*MEf}2!hEjEXFpF+&xO9*uwTdh{-)UPxJ>8`mMV}b$P z+3capo$kE)Kk`M?M4vK$YxP+Xrr^##V%PBIZ+!Gp-1u%p_GX>WQuV;SRzLnSqH9&H z4u2cFOQ#|_ss-l@FlD3NHUSI*(|Crr&`dVH>b9B3)cb90goJ6(hsx}V81`ISWHtz{ zUD9%tc@HdO??Vd)qM2cB)0$w^>ef&vq7V_{TLSqYzqh8DHg4jO|4*ehXLx}*8rhtDhA-O>(tZEpBD-f(f+h7p=L zzah5cir9{@r(WV0&Nv(peMB91jlwSUoul?XNsuz|`dr5Brlya< zIwsAR*a(@9+_Cc&{ZE6hGUHypVf-xC7vaFcsb^B~@ax*oiTZF4BAKJ4s;%NCD!cu&gOC@}zLOrEsUD zUiihi!ye2XDIhMCkQz!<)`QLYKk5leTG#T*>HnslI1B$@>S-#5>J$q8FZD$I2TCt4 z&8Q;Hlqbbt@;`@gBD!A3=y z*Kz-)o=&BvyE@cYs7}uKztofIhMd`d zs3$oXuDr#6sV6IOd25vy>S;u~b?9ZtOZA0%(vgDKfz{BuY3fGo|3f`VzT52)yO99> z8F7B0p3)@TP1+pM20X=IsHf2`M};rOqo6bepKgT!PGNsE96QGTz$t}b+%d5yg^!1$ zgp7&^6~%ByuCQI~P~!dw6UFGfvA7t;=X#$pV5?%xhGK#VZTt{+99n*p z7Vs8d_HC-u+f3?L8D-e%8+|YNskz;6=c?XTXT8N+e4F>@ZP5^RVHkG7R9`W!Qklv` zg@{rms}ioYQhA(Gbu0U27uYLLsqST%Dp;w)bpmHssUBB37freRQVEAqxk*L&C8M;A zcM{85`BR*7beM9ft1?!Za_5wC@X%y<<0N2Lxd&Ip8*M7=QW?Og(yuc0PFAI`bkt2p zWlTqDWCL?Bpl>`*Wh!oHyiNr(Ov!Eql^>uww}I+3rLtf$^wo39X*Wh~k>=Z&j2M9{a1^DtR6zDQxW!PTzg`VU$s{B~o0h{xPnlVJf88F-^SToXqq zXp9*!q_Wz4lY(87&|RU4ICC>aVo^RwXpXEi*CrYyD(b&lc>PdcSyqu-cwo{PBe|7g zR|L$IY|fI$sIOI}x06$n&o;TZCIF-Oz%T-`S-yQ>i27wLdQ{U^QaO=?2*%gBxVnky zQYwiKjo+_u7*>QNu5kzfm|Riy)hilhm$SD>b4V0Gh6gmxO%j6#4BJLTXkQ4mYr^j_ zl+a*JuFZ5C10?^BV99ZmXZj^g;Xox&Pv>XFd_)n@r$fVepJA`l#dO3t>1_w0l=4=#biQ7`1^z(R3RNSw|K!gnsex?U|RQ{^sKr>gnz?) zU?fpu5%hornnU$nR&{b3fM0Q@Ghn92U_rQN=}Un2PpYUtmIORL3G%Q+><$7PK!W-h z-WVMK4=HiRFqpfM!o4VgttitqEA)Uh)cP_PNYyK5g>!!y``rUuT?m^+wNxX2rn3VW zm=%t*f?&*V>o(}7c3V=vMhYy7tTXP``=o1frth%0gqf?I*_>Iij&u;r2CR;yiNfn4 zkJ=)S(jo^uOMQHn2O30uCFrb*#qYzY9Tae3;>bPLxpUIeI7{*wOCl@RGRLCiFg&doP9ivqNU=4IaGP)@n_Cjg3z_y}YWZWD@C3R52;BVn%yJTU#Rl@OFr28So#R*7 z7B9&hNjQhAh2M>zag2UGG5=&wP){vMFII`mkoIF3mPnMZmGY&-SSFa(y>BBOd)v>omU&X#+l%q-$fOBf1f;YqI_~>@xu2 zFqRZGy!H$+3|6R$C7q4L9XCPd=v*bon8q_+c=tp4W}SfXM++0s1Sy}wAboX=dMzF= zH7mVZ2&;<;@Bv}+BWrD|g_mns;2+y!4cPP`@aL$k>3W=MU230PGxmMB`QP_y!R6*O zQ$PRW!N|kRp1(qoNMUGdP!w)eR5chTWDvb~0Z z5qe1j|NSI{Y%y_eVaQvMGE0+;^rJdkP~46Dvw@KpSWx3zXlSXvnzo>==qKC%NekLW zZm_^&wq(?UG4yUSI&X)XSmJwGvQ@lgUEX5r-EObj28~#9_bPLlZM{%W(|@+9NUa3a z`kuiU+X7}*s46=YaTdY}Rwy1;6k%4Py*u+IRyRXdkPi?E?rjME?&{MHX{!|!VjV|s zO)B`=4{ojS!CEoF`fY)=QiHW}ueHjwwdxORwR3Crf7TlKHku$CEp8iah>eb#jjoxE zp0kbq2OEO~8^Zz{qXrv8y#9z6S{9_ zZ3|yk;3wUNH|(2x*ao%QzFQV>`mp`(-~O8u+bA?U_ktbvx`J7eROmi9Hl`PDD}uVa9w}}R<_pGY0Y{39#FjiBwjhP4RKR01#6#ubId?I5 z+(&{P@Hnr~(6Lb2tVjV^LgK%OxF3-(kB)zUYr&52$5G{3kCaL5cNZchL{R71?0191 zA6v2n9;P#Mk8Q*+bq(Ysg9OC3dC!#Q&SnZRt4*bUsQ+`NV0wWXEPz$^qs?-3L z|KbIr9O{0+A#;(v-0&udQ~cUy@A-*u)v-V@>dSsyDmQ5Qq7xj%QPMjC*rQC_fhDAiV?XO7 zOB>=&nVsXAoszs9zY!nBdSPz#9`6e~d|Hmabbfa{eQ^`LnZlhTp%~@^Ji|{$e~Ec% zg+!Hd$4W?D{3Jim6vokVJ)MJm>4RiObH`RCDE$3#c}=nZ%pOB9V~J1emPvR(^B3EX zTufqthJ@wUzK~n;DfUr(8!lJEM;VNVq!>fZl4>a)yj6!XasWs_Cd|L3y%+oLGK|rC z!+XSy>HV*&uwUt?*qRJc_-qO5u!?KP7{r)+4R5aljyts~wzgIL^Js1iV`AjyW#U>@ zoN%Ojb(%Z-5A4uf zNFv_PV-JzUD|@}2`l@)zM^)U-%aeaXwM%~td zkv@uvI}b_zo3x?4p2v*{Kc8@%t^~YG-y($vsiP2X-j>x(Ur4|Ek17&QGR&h}_eT+e z3qS&XRb*jeO{x0t7XqsCOC!_ASoA~Shv$SQ9{(s7K$*T@NwQBrQo~-LuWzRLA+Z97 zv*c@zxYdUnq^7Iia=Ia4Pf9^EoUL*7H(hp!wWCxu;zhoW?Yr z@L%@%O@C<|)}Lo2dl(7=md?1{jUhJrQl`cOj>o3EYJ^ut{bnmgM(n6^b1J}YCfVo8tiJokT<3dH{(>S-X3xrNoh)df6>zMa6j0tRNIpclAK3{@AUN%;_Z zjxe$`8YsJQz8fKKclm*iE>^@2_Y}16&*DL!H<6lVVQmn)=ZYtLukfkWz8!m!rEISq zp;$|w?kjN6UZFno8|^be0cyUE#M#c#^P;P1W%#e-^3PVAq7s_#OX{2+`S+)CUVEIM zJ_;PpmMElh=W8&*6HuTZ1kZj8*)K90vcol9%)8sU?bl4|78=zFQS1-C+QSRibM7-z zhL1%aLsW-K)|jfieY9$#{>j@I3Hah5rnrN7l`i$B(N~TMsXlK~wd6?+eRc}SsEN#M zmB2Im^W%%iFE-wv5L2!LYIC16T@oj}HxJ-2LM0Kpa1tY*t+&m-6>E?>->?_z3A?OV zQD@I{I~YA-Z(Z%}W7>iSw$H4I8W63b&r6vGo@uCcCO{Um)E~B_dyx(3kN)w_b;bn8 zI!PNJb1uwMZN0im3O)5}rG8@K+;c@A8p{!avIq1UB>kn_@M zYSW@*6*Or}mR){PLz}61I-TO+QqHd(GoCEdeR|O9p%o%#v>rcthRQd4SyErvXNNV) zG)OWaG0S25kP&tuXYOFZrx_m>?pep;?|x7Jqn^Se9Z0Jp(KPq;WvV}v%n9tO!5b8B zW<9861J67zlDN+}2#Lt4+X?*4REI94?}V*+dNJt!03|w*=_MrneS zd2A1xM2XcwF}lyh@hEdXr<7wwkFo}OvPxlcYNW)-dy^7R|A%^VFmzqS-FiOcJBpT4KUts-~S)= z6#Gx~fEoE;v6K-ja6+7LDoO`)B` zYCs8cwhm$ljroFhMXE&}>#*wZmQ4#i&36il`T-nrL9JUvMZ_3M!&m|wWF6s4X^O)} zW{{IMD8ca|U~dU2#F%A$Bbw8c;Ppa19Vm=ORcXFVW2l>4i6lv2Hz!4iGtvjiD@IZ9 z*)zU0SO${EI z&(RsViVIqgFmkV+G`(uh{4e#yHf2H7k~JdE%%564Wy9Z+JsrR-So%NeX}OzOxTX5* zJNK5{AF}(xB05BR>|q(7RL0*9`A)xYZppvau2dY$26}wR_#>WtsGKj$yb^l8}@$-G3RV4IV$hm5*goM*7OEPG9pWjrzw zWYE@<*rLP1^oe=J1d=-ol&9vJ>On62i6-yK-f=ZPm$WgS7t(QWqQ_=Ji zvA21N;cRN%;3DqlCE+~rwzGT}(ZeZ#|m$Sk5HNBLW?5Tu=@i_XJ#1vs~d{rk`me|ar;8CM8g z70)AQq*kj4A4UNXnaD!N9pvZ!;U`uB(HNCg1;)-{@6Rr8AB>bmT5j9nvqKDMf7biF z==-Qt7m|%Gkuwe$gS{q*K0S@CHLYc-7jrCTjRAz!JGM|!rZ!%hNY^8&QzuB$a zO2F_oJJQMV7JYcrQ90mTqr%^sKDf4EQk%J*8a~g?BJq~)#;%tydl!0|ofM!y#s6d; z=syF!7a4epA2%Zh*-M>iv##S!#Dr4jbYM-+C)k)B_Js7RGY+tm)13-u-Jf4cdTFB0G@2(|q>=^!=* z2kVNCnx8tDuw@KKI%5W-)?S4?lWwKs#a1BxTnB{e(Wa%}Lad>y{SM+kX?}LWBqH^_ z|6~y>5?rj!z=#v<^qsc8zy3-PbnX8Itr6!LGDwwiiiI6Z({yw0m!bR8?58p@tnEEB zF=Kq{Vy9G|0vKY_e{$9O};n{AUzj?Rb((+u!M(W^ET24YEB)SI*X34>>&u07)cQP}zS+|hhw)T^9mi4aaS()MIfdH4o% zH^q`B3G#j_vI7YUwru~IOs;9By@cMuCkrU+aU#P3cX&L^<6RDxd0qD})ZEF*hDI?E*!KbwMSyfDj8svnw) z|7x01W{_6WtdBp^UY_NUeKymt|Dk-gtaziRb2QjVj)v3&;vQI#Jw$bU+&*N*m6-zZ zz9HA>CWDG(gzQmf^kfXiO_J+{S&Fp7}H_N3GY6RkHFQcj?5fSO)ff%K? z^WuR+zYneg@VuJ+BP-d{75P&n8}G6}qlYxvNo8Zq#O}P*YGeWKPLR zXV9Pzii+3&4R+t{Ct_cg*hT*2!z7AC>amnV6+li295NjVH;);$fDBWl73zB}Qy1?U z=~dXU6WferJJX<2dOnA4W67El$-)Z^=?zvSTJ^!hq2L=PU0Zz^2B}8lHm6{P58Tj# zo4HMJ-`WjF2wb{Pyk~<^>FTUzYn15B#q6BG4440Eojo9)2W8`xslbz6L)U}790k16 zdPXaH30ateZX=Y=^1HFVwsVP**kxYFt_^^Y;UyU_fI4lelM)|d(hg@%Q*3L9z zg?J#DuHS%503)fu$QmzAw(KcoUVC~M_CMR<(SUhFg+p+_2w zF?_VQFJ)o@)7%q-*oXJB<>?KDL#!4>(-c=q>^7^fr|k3Y*!-{9pax|e$Tfwe$2LSY zQUC`Ix|(9)V-5bAk{Y7YH|*uMjAcaDMxFNM&JN*b4*4lMC!d%q6OOC=*f~GwR$Y-+ zH?UXc92-xhS2fqv{jRQUF6gvBuG@FeSa#s7IOaTNZ|r6JSaMunVb=)y&xJ2xpo1X= zM>E8cre6kY<7=amY14><+(t-6w>=5(hK9q5RF#a5L5x)QfCerK+uTSHxokVW?0-$A z=iv67T9hIVFAWUini>Uuj=JMoxh$C-Cl3E(RIcuct}>=RKcy316bNg2fj*?fY3L*+LOz%mmD}=z{tGu;r!iJEEZ0F8SB4rv zN+DZQG=?LjF)={ErMEZ%8R7(>5XxeO$LN7g`ug$rW=YR9Z$`w$kwjsLInu#Bm=>v1 zpLkrK3iA#v<5@p9Dkd0h2~uxN?X+6M*|x7Y`A<qI63B`iXo zhzjkJ3d4Z+6|kSUlAq;L_Rm+?kdnV!n+`>b3I$TvEyWOt?+&Ga(YCSC{0yGC8)VNH ze)SKw&yaG~&T1;(cy;0~$KPtbnjnb}78>u&>9^6`*WQx8{<` z*Pqj&C7eaa!VkCi;knt{o7ryBL>xE;XK^ zXkq6|F^Zqw5W|4@p=HuKc~ap2uu8$Kjj}jH($%M9#Bp-^1_>8!VYC1g@Bj6$1?uyj79x zT#bLyp?3TbOI&QhBOVUqlzMFv{6z;*J{zWqHuHP;G}<7f3%4n8=o$0!d{6+aj;@1r zHKZ(6afzkP3Lvn#Ry&7`g)Uaqlh_fF3JxrvhZ4egq2d>8X!E2Op``Wga>5knkt7rG`*&uAE#N#1$XT6ui}Xo(_? zG5WKzFaIkja!Gi9FJk~`gh41oa;WSgYSJRthbru?kkc(2=xd<63 zFX;)7MkZGlk$@PxOw@+r?i>74OW*0&*1s!v{ zV{^#ta~>Az zWsxZCkb9?=Xk}=1YhNksMBo7bxnwu9>NG0sOr~YOe&=}5=3+PRtiAK@S=cRA(^YKO zm8{(zbI#4&+MVaM=ZS{Lq?e0A`}@o}Po85B^Vi<%>R!snUf%6KUuL|!bbS(E`$?+% zrr!Bhw)=C0wQ4!~6Udh3c)#BnK?;94F3TXe2;V6geb$JM1OYi(YyQ3y^sK4i)Dy^T zZBI98%QF|e-R>^VH)T11Q3cf6nuv-Bc>#UYZx`@Qim zagpG5TWfKo5D>Y_UXH@9Qs*LmIU#Reruw@j2UjMWGqRn~Zy{V%nWE6LUzDXy%mR-Q zwXTl-@AHj$qA|;ND2GWS-Ow+*rI{7f(3FcLFDT5l_SiA^L7XMAjk^wKnW@8hqwWPW zSC*j;RxE9bj50A*HidSVQshv4#gFsYOggfvTf5CE-=1k8AfsO2Xy16&dTQ|*7v{2BAcM%AG-+9@)pF}tfJZyQ;T%@akEoGxfAleAz1*~DGqsIvJUY3Yp90Dv}CvF;Dqwj zps`QPn%XT#Z;htMZ~xalaK+Z?`>$iQ$zr=HjH|m+m)7^i7V0SXV`363llSEWj9=W@ z?CI7h`e>Y*R>JFh42@D`B6~J4ziQ2(=&I?NNbeEXuX#vU(5uaVo9WqnQu(fpW9L_) z`3Guo&M16ZA$7CQH2il{y>~HDLT35-8>a@2JI18t04gnDz&G6vmd~<*3E3-zj1c!e zj@y}={cImM34Lj&j;>++>RphrWZ(?ePEKJodCDrkK2c0BdVZ;q5lJHM8S z=ij42qo-Z0_Fw+|4DxULGS6@)_lNTz>JS8hibX2u1GJD1$Dt7Rd;nU$%>1$GwfYeL zk9zVn_{yM|i2u?(^&%>7N#-zY^X$}O9Ci5rrJjWRi0!q?m9vH4|0Z_Osn)L6`{YOR z?5J0-Ak(X2paoM(GaJtk^4Eh+#XHRXf2k)j7qcG!$A+_G(o;wi%M+|jNn5c)sE9p zhwuH}Un(Eht-*`q2>6E8yQZP+%D?N>ex64Q)%xu}$R0=AC$!Bj@_XofE_TKX15Cw?m520Iv8yaq7C}+_ep43^6*Q^Jz!^s9|?y)sqeqk6Go(rD;U5)bSZ$C zS`AGLP1!0f!lU8Gq{6iEQyU^u6(<}fR!w!KC8aHK1qc3H*-3s5wXIGrqN4dNLrn6P zVQv&0PMtDFZ)`aym!i_F3bq8j#TX5YS`8hMPzWHuB? z+4GUZs2P$4iT+DHsU5sgYNjK<&$df+S=`zIvE4_F5)1{d8=NCR=RYD*ia#WXfZ zn!8)7i-03M6}99fNLQ^TxNI>GzkN}T$QfZV zH{<#UJS0;155Ehhs;x-O329_>@#@pn7S^<1$<8&Rk)vk!j|}Sw7)HyS#PdT07-ar| zQNuv?NLSu9n$wUzkef9O#6{X6V!6Lxy_ubjLQ;b6pVn(v03h!_01)K-`)(5IpoEOyqLAPDCt^m`^Guu8ko}^G+EPx1y2M5bs0cz|%ggPw5di~0 ztLQ}Asg}Y(cmbwu<=;<+Xms?EA?}6w-p@Y~WT4pH)qnXu5piP{*}ErnV_sn;WMkfe zK4gba;|2#)i)o&qC{pFh@1!$CoeVgPGLRT1S+;_4l*PtK?&;oAK#YqNg<$(9?=A&5F_M>Ryt(QtxqPicX8*z3uKD5A`+1*X#?76~iNf_1H$hZGu#2boOKao`==r&IC0iX{g5EI4Ha;I4;Mgv(c$GTH@4ct-=PTPwCq*Gih^j`f2j%Z{7ZFzJ|p7Q(MvX)$d4cTs~a2wi3oh3k4ai z$PSzq9R5b%dfQs7%cJ1K?8YlUNZZ{%)yu+jm%i_lcJz}RxzNq8*AVG#z{8oI5!4R9?FKA>FCvG&~VuD z7E*kDH}0NP{KooA8O5~Q{$!4X_CEI{#fV%zZcbszhVCbIF`F(6gvrlMZuu;1Z+n$SKMg&U6#rxS?a)Sv?ogN*<|OEpmB>$L<(~t zKqH|$89-tG#!cqx2L9C-45BUymImyS|07c1mzu3$D0zh?^c|C5tq4=AvSj1Jvb{?V z$;G#Yax?k;ZSa0_gh2NeuF%9Fz3ux5;UfkD{GX})Ga7CxrwrR9lBle<#lHl2seSCm zX8DAB6Rq=#si=-45$xOYY5o%Jb)&fZ-caH;sk7Gz~@ zsHh!}Votzo3J!a25D1sWGtlkfRUGnL~!bj6tBdwuDRFx{p~3p zL2?rrcT#Hm5kWLqejTT`Y3Tj~IC>`iNA500)EByo0^aVO&FQ-`ZnJ$n(x0d#vnaoo zh(VPVl`N47{U&%@*Bb|SdOX$WV0dw8uS_M-;j^4_;}`Vv$mg@inQt37vZMywvUhzu z)D4>|7NF@OV(jxxAh!%aV`mKdc!x~7=}fzcjHjiBx`5=_nD~339En0*k`#x6820M9 z#)3-60(k%m09qV6G&nnj|KXlJzCr%m3=2Po(pGGNHj7beiU^bF(4scucGUw+E>UQT zhy#Ft@Fc(!0XFn(M#c7%1D8HZ5_QtWeN^!_Zo}m~(yI-`OSo@Y5|7CP{tjp3=8rx+ zUi{yUBdB)8zt^0%WqBn@W3f9X;6SK-FO;?hX0GIFZJ_jHfWXe_l1hnJCSt3QdBip9 z+;W#7o)k=VgTUq-Az4?)4O}0#d9`dv2}_7bu?0K^Ii}^Nt6eE zAJQQypAk&MtluPTRjA|7X#6^LU6Zb-qfZ1k2cw=sD~XX%fXwTlDxf3q@AF+TMR)=U z<*#DSqws&gDzp+xnwn5?LTU*W@|NhY7|OKZr1Sa4t*R|tr|M1ae$>bd(CjZ<^5PxA zgkK#%yG7{kF|Wz~C0UCLH5UqPKs*?isEf4(JeW-Py-u=iXU+kKm@0*y_VoE>ERkJ{ zA^((~MvG6Fh%vX00q=}XW}ea4iLufNte(Qe!^uSVj>%Yy8Sj*diJ#eyh^42NIna^b zW1dCAkwx+sb5IIvI0x%!ElaEx8{r8nCMR1a5&Pc@wpY#6e6fs@{Om3Btd;X~V{xA% zv^WN}nsb^5Iu|_+5)APRJhl?OOqTD+N@Zq zf?{~|XY&lo+Cu&+d?X=UcqKxbjKcbdBPWjW`aesl|?HBhO(|l^d?0_ao>2vy?ObNs<*HgpK!E!jCU`H6HL9i z@9!u;NYK)4tz1*UUh&SPLcVfH#MdH8s6o72AWx}X=L@2v0&fA_bVs>Iyo^|F&E zvc|iNxYn|dR`MkEJjQ9v{Q`8&*DX54T+jjJ#a9Y5CvwjWLZw8ENMJ=7PsMhkvBMq3 zV*a=3Ixl60vV0gC2dI(9T{C6g>)U|B^`AVU2R=m{d8U9bnPQ3Q(78`8VL!lm~sq8 zkXI~Vny&A^q#s0L5UOhsnQjofWROT=n5t`-`ALWE{l{kvlG)%^IW&Y)KC&7UNqgSX z^t2XZl{GC~7kEgg)%2e8l`eabCoS3*;~~N*GtGqX_H7F>_dSuC#jP=Nk7b_}pLGF=k4_N}3rq5^^>ln{BMx)XemlY?f{9mMv88Y`xnQ;iSyIr0}^D ztFPSfSUtsnW#)K2dv!E>U;a0j78aR$4iqK!3fc^9RZlT|*8k4IQWdDPiZ4Nq;O=Gc zJ~Gw~Q!+h0NQvEAEm)3gdwE~0YArmkBEzJXl6@6M^`>tasjL!44)2t^^2zgM#(Z&-=**k?@EWk=ctB&WlW6gd+@O zzjFOb;Vu8yBh)cP?*v#$*1n->oV~{r^jb(^2s;c1JbzQIW|T|Xu~ zjUgz&2F`s^Pu5rnWmQ^6Qpe62$3{KBXJ8gJ(8p~U8U=!*DkVK}7n@qb7eR-vp=vL} z5rY3P2wB8Vzm48Gb8)wLBkQfFhg?+7u!qEbh4k?uy$^WBrn=3={08AOj2!wR9HAjc zLib&}gstWGONsl48Z%(69bqyUn0FS@7UY$8#W5eVD9wDH^bRXiSjnzAU`G`D9%;aHsTyY@nSQHg`vM8Aox_7F* z{(>xd=t%}5Il<~hH#&tzJ(II0zs^QHkEhCI#m}|n3?8LQ7RQi%%Xg;;ff+_}=xOK= zgz@=$$ZS&F6vuf{xcX<;#22>vOSF9$S-xc>l)aIG9>>uLa?YDCESu&%FXVxs<3E;L~uBs z5wax!!BG^*5^ee1jT9835CuVT7(3V&*NtIK?H?8J zv6_micD%w$THfd0!Xw@gyqxj0;RQ~i%ann6XqQfUepGi5u5dB3*e@REnh(a6XPtQn7m(~T2>tZTe2j@|>dl=^t zgt6opZ1duihj)GcLN)H`&+;#YVwRWS-&d=C6^d%(Xo^!ljc%n97wnE&c-el5zV4TNu@=IPb zYy;MxHznD^{jPgzLHu>&ANQq=uWTig^(S8sOz5{wlBx5i``4!hglC@e99B)d{+i6* zd%&^0W(g#ukxYXLO=s@|WE2J{?t*cd^XEO%=jb-(gz^|H1uYrcWZF;Xm&6v7^B4x+ z51=8_ox-d(ivdp26#P_l`~6tl^2>%dB%GJGQ!u)lE&K_*)?DZ}Ea@c#d|Ad+i6pRE z)RN$t*m9MiBtYY3dqauNRoUM_%hgfRIgp4FHCdXrWW@U0em~^iX{3JA@XO zBXJ-41OS<4|Cj^`*~V`1GwgUB10%`%y()xS6Vf9TvPWQf7OM)7F7^+5sbVqjo}{!p00hzA{WyJ1bVks{u+|G!2?Cdl{zW%JKyQk4yi4g*$G2*W_~Fp|atFWAqu zz=P2Gd+;{2k`o$|7wMg2@0axRey8f;-On{SwwoEys$J*Jx&+;yBb0ymSEYwBB`kLg zSSjHO0XI@F1Rh#2uWJ??imlya53<8dKUkCv%cRgRj`otFFC&2V*(U1o( zQ{yf;inn+m9GB`%0D!M#D4LkVs5^?UbR?cy%AzQm$dnAj*A-#<1SipdUimaq?_6XW@lFbUgyluSWI4B)q2t zYU14Vq8S>rEjhSO+-Yxzkt7~Ehw$k4M(G>jaQpB-fCCuea#cK#4tSb7?>r9r)GRehcyGRi5qQ>Jy}Hq6^vx6J||{}xI8txg0uEE zXP3#wrq^qv!Un9#j5x@Nvo`try?9jYzi<7RJ;83C#1J=SB}B*J&pVHU^!&a(UGEAa zko>2bo3po`$@$w#2>R#gdM1cgx{*n+NVXYQXW18-`*{o&iVp!;gb~SOY%1NVM$x?` zu@#vYHz9l|meof<(VVFZqAX+B8^$bSquyoBhjULK62;Tyw*V7}hZ!arg#Q7olce$A zGWzqDFj^&Zf~u`k)gV|lX)dOol|!G6b>Qc|9Bo(NcRp^H<{ctySD5~n4PG1pih-A$5guz6N$ zTQS+DiU>0VG9hX9()%z59ZEGi!AW{^{u+2~Loc>t9pyZkCV%>mQi8IAury4z-`#>U z6qS%gN9h(`t>eb0j+U=A%@CY-t@CQegtgS7&q}kjcAU~v6wap}DwOFdHENV81E~>- zfTLGq6n0J}IUTN9wQBU&QB-VQ=L22p{8u@#HC@gdCy^alr!sMg`%$qNE?P#)?}muf zRhlw^j$vF{=bxYO%IzNd`N~tYVmPIniU`%(EBZV}81CS;Y?a@g-Dk$x3Y**~c@$za z#Qpo4zV@(sD^EAwTb9hw=0Qx{7Sts1gfhwO(tbf&I%;d$x>qNn#yayg-K$g1uQ3@~ z0;n=NbD8}wR%{AYlORZ?F{eG9pT)H?E8l{`N-KAjdn^q5|& zGzUL?cJx~5X$a&Ijdn2+l^&kY=Y;z1KKINFoF|;wZPk37_B)XWfi$<(_|AzZV>LcI z?mCojxr%R3X(?`GdgOF|M|;HYzN|7fZLhY7|8NT7KVpd8uI@?*yjydTe6>lY%Oy5o z*9XPh$|84v|%`glTNOwsI2uPPhBPAgrp>(5kqXR>Ci-dFv64G7L zF?1tHNQsn4>HJ5(-}C$5_c`Z2=R7zM_gZ_e{baB8S!=KBdcRa%g2^g!@$W};gB)Ct zbceZw4*@;UD3=g6o;;$*5j|w(E}=Y5dBo2F@}L(53?IvhF8e&o4V@0nuFY1cw-UmB zjN$5R600_fh;%Y2IYb-hySb$l@)W5k*ypL|Po-2i72RX59i}R) zO{}UY;(ZyJV8~+6`Y8H~3uk>}h2+8kMd<2{I4K?$ zgFBU_l@#3C%gyq}Te)O(oWo_7S=dEAEjiK=JCkn(pXgOn(JWl#$vbJWMqn3N%f?5| z@G*F3!XgRFlGqh=wYf!hSo#|;5(pj(CF>kdg^Lw)H`LNUzQb{cfm4K>%-6*Ma@Uet z{P%iT(C)6!W8UR6(U-jE6;Ga5^Vb*{57INqOiMcLfgv6<-CO zU=E4L6&jq53!L8D%oTeiKA*2jQtHPDcqqi(Zps1*p1q- zx1neSRVH0}4NIT)r4LkJs~=^XGXyIa}z8)jg#!Q0ybio4` zw9UCW(81qL(XwJK)1L-@zHdSOGAvWcIs3&(DM>UW@}7)$B#USs?{}G1MesB^jM+d2 zd39+2wFTz-NwC;b!=tHVGxEKeEs9%vGm${3P2NO}fL375B}^0@As2qM-%AblvP7%; zPG{+lA|!EC0phr_)c}uZnK2kWU)9GqN~-ykt5TvoOFBP|Twe$IgaPzQduHfAlQ%cjQe>$Gd zerdfRJ+tw_&d#yQ7KOKYPJi&K7n@c>0h-_b=>;-6U<)iOrWEx}DcN#s%mogm7<*(d zc8I-MWOR~BIq4c=cQC~Ey?MfY??qZJT@3d`gv>6?&Fg>_y+s|KCi9g#$Wc~25zL*N!XD=t_BCnj<~tnF2MJ%MjPqR1YFx*2|=z= z#vx}!HEpt7_pfJ4-kk#kq%RDst{0+dFQ(4glNHJl*X9! z^>OD-Wb<$PF!Zl;4xd}f#oyNlIjKKIcW!?|5SeqY!&1<%vF#A+13r360q9FJha#$W-T zClrQ3bezbGL^kyS=#MVsk6ffE6`Rn4G8G_%BM36fuRM|(0(K1n)fo%ageZ!!iwr&i z_;~8(WfMQDLG ziL5NdgHswP1ofw)FeBy2XFWaNE6 z!v_3ylgw93un$3?85%!WD`GY);xtQv*C*wark|CR@|~2z%$`+~I*pV$@y=dEr=UE7 z)9|ffoNrTV6KP~1=N%Q5x3ey(;a3uN>8cS(`RHje*_1T%k5QZ3^6A2u5ZDv%J;TCd z@kzTkjB{_Uwi4Ke-bN>;$3!N+DursOgulVb+Dm`?g+D9r1ljzE+LBtPu0Wvijx!%M z4>%c=$^Xo^%k;XM}1&xToIo%^NK8hKRRGvAeEeH)S(rOsHDliAUY z+AHv6)8qb9FXXmIR6AGK)pPmiyLLxYGMn{}7oOPexLdpSTVDbchXoZEiYT@{d0sX+$VOz6suoNNrrD+_ zb%+)S4;NIs70?d8ljbgjofYKO705>whUyf$;N?BqFAVi9q$&t2_*tmO&8v2;q~TCx z9K~Xo;if%YWKP5WOx44TyV#an*ydWg4evo>O_XVVksWu*P-!s*w%0Hl^~;Q6S&5Rs za`ta_nXMl+R?jt@*fqCi6l8;J!P5zceYD>T6Yyjcer(B?rE8`aJ+_#8Yz}+;bD_v{ zza)>lAi$55s7RM26$-tpEn|jq$*H(LmkpU~Y zT1z-@-a@*w`?sqXXH6#V8cn4_ckN9V$ip`lO+RmoUoYnG+$2J|~Ht=NYd-v9XgEmGxBo)(EgRSbyD&V^|amEyi449g57bb*107aGDO>X z^}cnb6*3nMJ-9)4E~!E14?1#6ItiV`ZjIY_KF3Lmu{d?_D zP&Z7fn?b6bl&*)dt()Ab;|?VbiJ7Dl?5vU=$cy8}WT zKA~uEf0E&H;PLbHD$~KvjC+J*dKr0o)OfmN+6t7h@Sem#OHnkY)mUw^ps@`c$}ZEb zC~QAWKoslQ0E&*82|R>_qnU@#g1Dyw?H_c(@vEjS)9QB^?SBCpxMmtqp)1EEQl(b9 zA6N9Une^y5bpx>>kYf^87} zm{JQ3w9qC$VZw$H^bsEedULVj;Usd1;quYpt@U9!(4YnPVB}$E1YH+v%wS}ja!xTm zw-nhsI4wMvrnP2NHV;B+)~5o){#^v2IwpCV+w&s<)GGVw6oFkH1EM|Vg5Q!{o6+D+ zg1&(8ww%UyZ$|=YMt?+43|1)PvQv!bVev9itl&ec=;&N^`#jjOuZ8ed4=0QRh#9m% zyt(-BTznwT5OyWS+${TKKUD5HlPvLkUXxZOVBAtLS)IR(eM9*QC4O1dE1$C!1*i zjV!(yOq3D<(5@NR!=xHrrdnBsvTujYYfv1#T)kT4b$M9orgXvhLpMsghTKEmHxf{f%aq~HmG1}O%A-ry&^C~4!VE#H`VJnd& z#d#4pHE(`BkKpaV#{TOufw8c#c(|}|Fdma9PB`WQMgqPAfl}TfW1^#HVPN9A%g)cs zC&edlgN4eLG)^r_LS$546)B z7?y}zyp?eL@E?y!$LFK9Ub2I2xP$FmC+{#vpEus#2ru{K7ybphUN`POx7x_27s09C z$Y_tSHvx%nor4P<{|}GJJEqAe<-J#GgUUiyFGGAJaR8fLb^AH=+}fhb>zDIC=eRLcueWe)5ZUf9@E=& zMBE2NOmpnp;@HfFl#HU3%=-U=F_ov3H04xRX4fFy#GQeC_C8jHxfFYBHsEB(;7zzWRGr>aVh< zvBHX9|G}8rds{MlmeTtVia+%i^(=gt{M^zvSpOGeYMfpv9{DdA)7Vbk=&!oD{f7C| z_VtV2|Bf+D{l%D;>;5koQ+wU_nDFD+<}a;L>#Zq2Dq=30V}5pIo>vxq>gfH{^y@ge z@3dgxN6WxD=6&7&1I9F4c)HYb`K7tLySr~>dSq%~cxrBTWbi*2Q{UK^@$ujN^V@yP zr^~~?XO=e?SAH+E7x7?$4Xk{hc2NKd&zT&lnTt?Of#a7Y3q|Yb<0hLYKunR z@LLXN{cn%ythm9K6$zwQtt*|3h5yH6Dp1W<)!UMC(fjDII!w;eRA|~8MSnwfD9d0s zU2d9r5zbcYvN@cs*7(7+Xz2*!F;SYYbs%t)g&h+r&3j+s-+MONRI@oiP$v6My}5L& z#E%XHt@g#t6cPXtA}(Esuh`ghc;zcU=qlM&Ek@pHw0b!i?Prkk`80VO&vhY*88xLg zx4#S~vr3IWnb^U~lBQLGXSX2nilvDGP_z2e;;&B8XvT+Z9;vuAGAa%TSEa_+W%N@#KTI(ierhoAGcy%B=)bSHqO> zNm$osk68i4Di%&YMHiNWMchk$HmHpV4S6M&L`r5mqxHc z8wos&v&0sSSrYx@ERD$=paf_k+7Pd>}&&r2#-8$=p<=MJY$AbUmOF2e4#6iquA`F0YzpD~Lac?l#Qq`z$tA)J*`KHgt(9w| zUD|5k-*f*sOJW#j$-p+7+*$A-IUe3hg%<-q0HhE*i=2gh96vb8x+g#5z*i~LYX|NX z#`*D~`+M=%JYSL(7Gw{{HD^x5>5CBcTKbIp5Vaq9>LKTHOpfp>wXuH81Y9t*>gSB)qROpKq@ z6RhRRbazsD?Od*DFn8TKpC&R~ijHR6 z>lgko=nzJ5Dyd(4YY6pSf#5$U&V*-J;}nRW;=T4TV)SQ=7g+gD@^&i+jRoMtEatn% zJOMf%=Rqtu^E^MqknosasRnZ5dVLLoje`Uudc_KDQ-gB}L^kl$_vJ0EnsP)F%0{D` z*8@4I28PbHV@k}4K^X@M3|RzW=5}59$$+=J47Jjs>YBLseQ+Bygr!Pk$DUrn(}>o7 zRz}-1y`7bymNZ{SYvwxhSv|i4sMkDBT^q_}FyGaaI=JFB4|ouVJ(jBweTSPYxYs~4 z%ix(?y2z`b-pGsGFMzL}-N~Z`FIn0+siH6W8e>zUPVxyK5#mg>PM$k4uW|}&UNo^PwnR>h@1dbKQ7AzrOFvn&Bd(A}{qhO)Ryk98v3~S37`keh1k={TY zf?h=>a}}I1d?6-mvIJR(Ynx_DLo(x_XK+%W&u8Z9A2?(7@Z`0@ETW_<%u&P)p;?fX zrBjU@BGE{?&Sh%?4aePV>*0n+ln_{~YX)9_$Qk@nK_Fw0U=zXf^u;m28HF9s%OlHF za~>+Qo`=VUURPr>?kduu6Xx`D+HCC9NXe%nWw&#IBwaUAouys0178IrNezVwldDb-VwO z=~3lG5KsOBDK*!ZG88{Q86Ck9!A+a!BmqQOmt!&ca!4-7Dmgt!v-9-St+{Q@n4bq z*U0boqRD73`#$jrJS3sQc^a{<^uUNSTvb0AI@E4r^(%u{E=zpuv3wYT16BurZuiIU z+u!XpY}Z})d+QceD;*p+1*eC?Qmfu8%DUt&7aV(eHMHo-*KL3}?}bnW9In_=ItVpW zH_crSW(ho2;@z>PY<)~zCwl6tNg}1if^s3q^2&<0MH`qKy>c@Q%dcg8%9$)n{VQ1AN z?X@*wdAg43C_)awu3HUr#!S9mk?ls}=K46wYuYdHjd?(>BF{A2z(C{xB z%SDoNu_sa_RyC3=LvtzldQdrzbgU)2aJKqhEz|yIhyHJSgKTy0<2tM|%_lOd;8ecS zn)_KgwP*9oV004nzUAi9MOS4|`a^8ML~kTtTO<6Gq$luart`LrgF$kI9CcdLGj0)X zbO)OrAN{XrrkUriy%VWhw40f~HX;n-RozbVY)n3{T(iW#eQgy`e_TpG!*^W*;V*V` zgZ*Wd5X^#vq`Gq4e^{jicbYD1%+L^7FE{>%v#*u^2Fi5W>iG|H+n*@#m?G8hW6Zom^m^W4(xYYOamwG3X0km_;e}8oxNQP#u?C^U|94t+#+v zF0eotlC0|qhWU|9O7puso!&tPay}n)!|jm=Qo7@eA$X$s{ik-o%+m&K=wNs}K;~13 z7R@n1#3!va7XfE}5>qC-!Jm=AHL_d^qT4;ZXZcTx)6FfPMBz1Qe`RsKCXiF#ektn7 zZjj>kg+qtS;67!)1#Wi~N1D9)td+?RmkZIrV{g%qgMsCjeD_3L4fI4;PF;U1TRZ6T zsVOMd*-?h-LjBh9!>7sKxmsgzrE!Ek4GI*5!Icsi9j%~IB8C~bz}ItNwPcSumf%?( z4Gbc+b4FAw3LNeYF1GZOFMv2S;0o+U{_u%kwIqtD$Bo*37E_81rH)jtQN47N@SRt! zwUYRX5DzdQdsX5P>c$y1rRG!veYy+9um}it=)iiP+}q>#OfHwH9@N<-|qQ? z=d*>_9Q*|7O=bZKwz&&wL9%>o1ESJ}ay%h&=4@|d6l1D6MeoljtWdi1Zkw|wz7eW( zxi5r(*;ocXiuo4qIwl*{i*`I|%WCdumm7p4fsx@db{0cT`rErphc9N-}3BhC% zb&aKtJk?L89F<6Dw-r>C2$qs0^gLC|LJ0af74k#;ktSU5?Hz4m0rum)G|(_5i6J?& zEh4Zc7S{;&E$OA7ImF+L|G6^B&*Tigx{T}%{---a?0;~j%qD7&i$%U|BG~Cr4%JD% z9$Nvx6{2~PIi}zRalO-?xPx^0K{m4YAN9v4Ym;8kbuo4wACKx^K`C$ zIUPiT+?Oae)*Rd>Mz+jJb#{!yj+Os(33fFp_6}RwFM-#hD=x>C`&)4Vkz6Pw$>H82 z_gR7v@jjH}NuB{sX}oK(wyTaFUa7Zv0dpcG3cW;W>40M+TS_aC@9_nT9FQ55i@gwp zWd#MeYzw)omTa1r-~^TUa+j87l#>;ezY&D!7H4R7^Aj;)&;ON`OmpM@$Vv!$vRuMx z6nFGD1ibz=HF-?`XK;@|_<9P<`ESGR810y$K|A$r5oW?4|ropgE-@=&o zBxpfNYR35$FSM)3jB6}0B-023l_TbeAorp2)?LO9gca;^KVENqO;W9p`i*3&*;6pdwUKDMM>qpI-I*;x` zt$WNmlJ$qKAM`WpjWXXoZ>c{&A%7;xXh_>&W!yj&q#&Kx;LzIOwA}FGron}_k@w_| z%>jd@aidRWBgSJ2I4B9cX++RA1&=g(OE!i1H$`MN=^HggEjPv8G$lB4#nAriF@4|Q zJg;ufT5f)K)13Q{$7I}6?EkOFRI%Lh;UAAlvbE0mUyrG!wYBXZkBPReN3yNY_+O8y zP_jAwUyq3@B+*@p@?Vb$DGMD#wXeNzUq}D-nB)Y+)^6Ij{_&VHb8%fec9%O&B|FbE z+s&{$SB*QbTRU%Qn}0@k{-W)|Z0U#GbYQ7>0kXP)w{>XZPU71xC|&o&QrFje-4p@c zRJW02be+^I-3+(gl@48CP!Hx;A^RaKZB{48UysS)UJvx~1Z3s};`bm1yf- zz6ZUG?vir%j1Hr@te>|qFemA;)uiF8HdV_7-K#0kp z?#ciw-Cz{DZBSQoFzj~FmqyVLg<0zMT8CUfD5?33vJBk9Djp?xBO&oqY4Va3nA+)WYy7!A{AS&cvXl9vyeKxIEWFLcpt zI!kKk#CX2NL>xyOd{cp?b1m;WB?UTS`UtDwImNu*hO`oZA zM}F{NhOj!ee04CmVe*vabcc5t31}$7q1tD01S|&SL#sEy$sChd& zaJ$wD?j-Ty9Kg;A5@_mpfEXAdDIDX4rex3Q^lku;rER}qAHuijUyO}1VUse=T%-ON zOc~Xv2|66gzXsDx?iR*i>S6iUU~0q|Oj^KCE(?awptW5)tA7oqolyMT%Fj2qJUS$J zj<2@2oCx8j*m0E*+jl!7)f4q-8z5sP&Nu!YYZ>VF`nDOLFk*ay!z|zt#$Y-grG$SC z{kBcaG-?yKQ{=MSB86o9I7_(kxp;b7O9py^F__HO@nruPOy=#_dD5Q)o;U`E?I*k= zx~uC%ngV;Di=BJC9!0l-*L_GP`^R8X`D-wxc1`o|SW?DT)#~ssy55ZL<*2>Uh7gFh@#XHX(Z%C#%S!dae*E8p*@j7Q3 zyN+32FH}22o6#gwO4C39dY8Nki{tf)kLD7F{UW}<4>VtzUz;}h1|9u}VLArm=YfWB zLOSE112V_~FmAG$3@`*XFfKLxVgQvuFwO^knOz8z1<`eZ3HTtSC=w+tqP}XZ4Fu%a z1v@nXU+x9*1|Qxg-+Ca{)cs@V*A5)(N(d5)H&=}#!4JNy#&Pe&k!Srb(S;MkIE2Wa zm@-|r<=@2>_#-imBY?X+TLd|0Eit%LE`+;nSRJ*;z;(c+*>>Z*{S4=8AcA0w=>{%# z287~_VG)OGoS>Q~2%Diy@i#56kDvd(xdEMkqz^U|7KKqD-{VOl-qnsO;Mjd=FgoyN z<~8c$eGd@t9ofGf0=s9;@87pgYgLTijK- ztohW9iY<-x^Hbzg?r(=@`rXk5jQSvU6T<=4p8WF-W7rYXX1ms5C_CVtRl442Ls*6q5Jvtx8ts6y3U3TTm8sP$MWp{@;jGAmR#6$xsp3tvzOIt9k` zz2%v+MUvfAx!>2Fs`7mN$74z=uj;vVsHm+wMnuRT$-UF@1KgeqSlsVe z!QtT_<&Tcxe|cQSpF|FCR?k5@o!cuA2Kr5Q6DqOoedHgjJsizN!8eH*#24;qwEUtF zo5($_ID6SZ>^s#{N#aNQvgFF}UX|Xt)WT4`zS=hG;ep?mRQcSDkM+X(B!bE`4qkFf zjX0l^Tn8-(dA#)BnIy+aD(`abKhfFn*Js?P+B#Z(M;4I4LFmn00w82_dMR<)cBiLO zF7EnR9wy8gqNKRvW0x9#9?78+sP7xWVJN5rAPmfRRbsRPD7n%}GRW1)#fxyANU;~( zo?0fzQ}|jX{q>lVN!_glzxjR*#+{WqDsrQvx;xJNRl?$f1zBlwmGo7XNA>VIwH5vv z-fVa%69uh$fA=_2ju7q7N86&qbAOg&dg4_J2Zh(KrICl&L-ONK7E_E9I1cT8R2o>I z3n<#JFYfSDHx7$Pw&HEzUX<+Yv-@-SSmep$KF-uLGps*YtD3c5)3I~AGzu&+?NoQM zn)y977yj1EK2<-+FO+4q+|&G-IOeyi{Jjoy_By5PDiSy?&Y9tqbkng z5;Qdeqs$-sXGNMjFYZTNE^>8;F@PQ;*KvVIlLNlBK|%^7#rA|j!DxL%{XP3w$9&i@ z|AOT`^opjzjch8~czm|*>Ln67G9l02c+|fmH(X4qL7w%C+5?U5HH?s1nky<2< zgL-9xWD^OxObJ7DoMt(m_tR1PfjNPv<7;ySDFInuc$bpnA*)jgc|N<(m{ns5>fR)L z#s)p)WnSx63B`FJNaW7}2#*TEV+%dJ3*tbiNM>|{gZGgB3=f_&{<{3fV_F%dp5iF- zbvfcNidIF_H3iG^f3XXp#v^93A9_S$kpvFOO=TMtZn@og`Cb(a`5D%L&i#taaWq&| z7`$U#==?%Fz=ZdyPeW(3gR4y5_%pj9d3>&Q&^T5&3Aur&js)01+CzZ{=R{rkIGA#l ziH@fjz0QSCHo&oRZBnPC{P6DY!Z&>9Onxs2bL&3gW*$vVXr(8%274q%G57)=2)W?c z`6&3WxZ?(=TLsIU58|x=bfmTN*pTaec%M<5am5=@*L6HtFM^br*H8Pe$E3K(px+Q4 zEpeL2dUtQO?tDny8sNUPLd0cktqRSrMUI#0*X=w|2sFc%x`>>(U$R}9-Iw%I##O`H zk7dSbiZ^tqoA$K@5SG)Sl=$S*KEO+k#38GMZfqU@E5dNx*-ujzfHU7Vr!}jJ1w}J$NMoI3K-}f9bvLu{!;VzX?bSC!< zTgYlo|Iuo8*MhqYnTM?V!W$?1{&ACT6_SneL*n}nEP1W8`(m1Ahu!vXPGPC&eEq*3 z6G?y>Us+l`@kNef8J@8QHC`Ezznc*!&!B1Hw2W@15(kPMXO5?h$-c(1F9iWdyTh8w zgd(`2%MpC)-S=G%hyqthgQf9;0k0A#J^VRw9n^7qfv6B2WrJ+KL-ZwY9mZp-GY5kV zA|x4$!|2oQ=u=P%aNZk2#y_kTU6 z1fY#e4wt9S1mcuQJ`EaR9%UTik}P=?{E|G-CzG6bJTsb)B-Y>UGi|<7xR5&7Ghmmf zZU=Yl#iJA1(tW<4cxSrs4V&;^Q$gB6%^cEa%%z|&_TH|A;$NizI-3=?|9DJZH90-D z4{sK`b%R~zy)0swI*M@S0ZyJThZq%G?~>`9N3)vg(Z66a?_XFjUQ~IcxZZ-_jv4T5 z6%EDid>GvrPtK=f+nFtGR_S6i$ z8qHFKsyl-a!~wyIQEHVXOYzDBB+rTu^gI7}Oh03W19mDZuWT|jy2ma}II9YyU_E8? z;>qd^hxQdu_5QcV6przjAOxs%QjhhaO#N-uKOU1jLvX~WB#g)8myYYt3d|M8e!2gLaNH;)O{bXDp3?A~@4F2mq{ z^3z>xNK}@pxYWNM)8j?{zaA6Q|Gmf5_1`=ussHLR!E;OD;M;#ZrtZZvIH}aX9uwXJ zS&D#vJf`mNuCg?3vUH=e^ef$^)v^q?e?6u`Sw=cJ*1sMT5s%zmr@tOkp)`Ap9QR+3 z$s$vZXXUTQ1mfkrl@s{uF{Kd6KTww!Hjzh*i~@z60%Vb4i!2Zl3^U|2AdI_sXJK1D=J1uWvCPlS&YsN-&QKQc5KR<1v}2ggL2%2dG5E zU_2(3s0tNybel@ds7frxV>(oczg0;9JxZi|gz=b?*&YS#;qFR=vnjEQG z;)B_PQ!QUn{jfz^X$7p9>8d(Zt>qaRqf#pZjDQr>K02v2h5#EBfc1S{O#y1HZ6o=m zY6Zt#0lEDFm!NU3aP@WZKm=jWOt?MOsIh;)mka3qfkGg^M1@Xa$9dn`V0fRD`rx!$ z+oAe|6kwbU2nh&%5Rv4u3;aM88gPt!;DUSr#|uor7vcwhaM4&W33~vS3GBjEOd$Ml z9EEo6LRMW;uiQpGJ|3G3&=?{fn{XO$w9?Egg@0DZU5FVI;Ri^;@qERQU%E72CTIjA zLLVRiD|De>Dxgw^c%MD^4i!2AP{;>bY@b1K2I&tY#Bp~rC3ihEe;*G2I)uLxA`n^+ zJBiT{asl}?5qz!#^wkkAo{#;a4Rh%l6KWbiH<`#*dAuTqdr_znaXcn5L`bqa`kP1l z&fO?KKrNh;x`6jBrcu)G{&@ka?o@K_DjI2sZNnT0=C$9t$X@mUJFNT&_^ zhPo;ov&DW)Dy_{KtAoPpBw9i}SdY4T5PoJyC=JK;U2hJcA^?BV&bAA;S3xQsPoftN zfh^xpuuod2DoBV1Zu|*yzps@nRY$sgKSPMLw$|tv?|(i&W{u+PvGMpl?^NW-T1i z+y>vt3a=S?urxGh_ib)BQ$Mg&pLk{@fT|YA)X1&cW|>}DWSGio0sN5!y#Yln`ON2O ziDCM5rJV7a>jr@UNu=RC?umXdFTV@xh5HPQ(Uy0V_D0bhR#&(MqgT)vp>Y&501NZ#I?S_GW$N)CYIfJ!Mp?_%kpV*REG zyH$f+0n6EeqDW2x5>8w_cwF!Uz-~>@^c}cCUAFO7DWau)Is4l@3ksoKigU@iQcV&!NH0E| zYTTl@!kzG!Dp}VriCs+yS~}JpD9esQ7Bo6tHB505qk}Yvys638O0$e6nlK z4vfd`!RtS$k^F77VkSPNO}{qEynyox+*Cxev758uTR);TOP}SKf0(~CJ>n(#?n(JF z7Yr~XzfLy2`k~5A-bpv3rfQ6c$b=|2g#*MBKAXdK!go9JaFTGh)bi}ExWm}{tGif!oMvSX>x6M;ck<1e zj^`T;5x^_cLoIWPch4GK%m5eEr>oKHI*9!2=d2B+OO-l)ZBd?FBy$T(6qXBELuYULXNL*@v<@4f_Wmo+hM zEC9B6ZRSr0vC$DpgUwcKI#|k=puPet?u&Jy4`SQ|d0t836`$=?s94;5>Ta=m#wL;Q=)=|`>H2aP*aRFWakOQk z6h}{G1#ejYT+Xr%UFS64o@e?@f2lAmv~KH4q6FPUSQ}dGl+kzDtk}JIr3k*=-CWGK z)notS&li8qPl(AM**x2|v9Y3PH!ZV^LsOtAC@4}L!lJqKvCdn*?37Xxi9CDBXX6qU zhmS#??pkj%SzGYM%SQn2T$}A;rCK*(L9x;rTL}EBbN7!4uJiL7vG-mU$DbY}&g|k| zg*^*u-&owYH-M!E6WC&ZfV$e)m3IJbUs&0F0P1DtbLW#g5}0*1F`a8+0lKo%_}2Vw zZ0*W~+>{b%E(q{_KU;9EEpUCj<5f3hXRrJo>k_LZNYC*o9nmP}kQhh|fq%YQKZv=B z>m;x}HO1oR{CHd8Fl-a`{*|5b2cVBn(<}GX+Po^wK|2yeJe1R+5rvr5io?IKauJE} zNI>$zX8>^fekCY+J=UTt3mO4MW0%F6FFtK_S zhQbcf5^U_p#q{+N+?p@ymK_*y`SOV2xTwjg%rn-L7U;wOumnMXk03ascq^4gu_OY_ z*1;mS`zXfl0)8!n>n&pN_S?Ek=twM&ua8($J%^h=;e1dKOFH(xOpv%10?0Xsba4To z^%I|l5&9r3Oz~+Rb`~(bXk@AYKRjK!ap`K!qSLy+hDrc0EV>?(C|3(=J%jH01ig8c zDRTA{*>wU?b`y9hfA?VoS`Rz))5p|?U4&z`#0eZPw}5c=7>^_|ZWGHKQ(;z9!`+k(M$@$gyYNZjeeE0#ZqZPYR{!WGo2kKR1_1sJS zwU>K*kNoSXO=!}lN?UF&0g0U#Zt_p}DsMvdpCy-~v}tg^M(@`T;Q_Cs%I~y<{PIRp z_8=zqkI7(LMeof_*JjA;iYwpH9AMrXze+~x@~Zw)eAkG$sEW^iwdkY|KiS?_T^8T>Z^-#s z|MRNq_2qlWbwiauw&cyr82`+YsG3Iq&NrlOudC}``gWlGdm)uw$^%QE4x1@&dSBnh zs0L(C-`wR380@^2O$zWWybWs%7`;FFEfzjD4-DD<+4xZ5Dd5hk2T+#x3DRurAn@`0 z!#>krKxWa1nRyNL78~VflfX7(jVdv%#jkX*?D@RiUqx82J~u{n7Bfb4M0a^KN-cB&#CS}oyf&d|hCdz?OMlRepv}tQiRC9>+{{Ft zMG)I?3b#S6)816kz#AOP;R^dR_VFwUZ*YjG&6h6oml;LWcOOIKlrK)NeD465g$iHx zzydsrlVz-Iq1(hMJL;1Geq>kovfQ3W;(8 z#x^n`NgAG*=>u5s3?JKSP0drI0#b=|QrObcWsVE;67*g&>E$57U?hq<&_tIuKqXHb z!T>C5T;eoZReEmGkj-2meYZz>79N-H62#@nek+(o|Zna+Zx4AE0v(8mUr;q+xq8MH$s=k5fC(Opiw2<7S6N!0I>RayBA- z`is`LLs9;*Yt&33M!fl{EJ69*`z#Hi$cY>{)0MfjN7whUc9 z`|O%Y*shvAM_@PSdM4EA)k)=Cq#>}Z{CnMxcdp;-V;vk*6!wd6Ca1(gC3gn2M`k^| zb&Lar{&W1ct`r|B4qsNjH>oLNsZzQrxWcI4{6ZGz^ zQO12>ES4=P|5oU_ATH!~{4ED1bnXbNsfRMd}xBy~S z(_SG*N()xvg+Hhctq+Ebg> z&~}&4{n5LDyZ6i~Ct-3)r6a*8H}-WJqM0z?dW(JJ+u^?+lZLg@X-ZC^icG0&tRp!2 z?Ra0ry#Zm3P+#|~9Vrfp>9TQ8x3c(TA`Zz`y>XwZkMAzpIAmHyA3tQd<9#JHEraGl z1(DX}60B;%zv4_F1v&FTft(6|JSM*p_RnpDa$M!~;SLy&=@+L;>X3HAkK_==(+CmW zjHVPFB=<2E;q#0{B0oSOy~40fM1wfgz3ZHThhAUZ2?$B^E2MjiB9Ks~nJN;jFVmdO z)>%!O%nG#d2-~A_jMmQ$sOKZRquiNfHC`%H z|G}&M-ZSid&CoQmgdmy~__3BuRfBrPn=%pxDm!Zbb!<)xdSz3xx_prZr+8ce9y6MI z3D$=C47RyhhFn4#Ej#sf#nQYEzH&y{Rx?y~>q^6TEQZ0O`koP-(b8Z!W*@xZ8naoT z70iv2S}%>s;zzOp{qmv^n=8%A;m$MNd#igojV*Lfoizo^pN^5HHTXxWa7n2F$BhKd z06|W)=hc9ZY50{qH2AiQC!7yCy_x!(3<!%qcK%l6^~#=`H()4y1T3#~`pME> z#q^~HCuo2nAd_b>ADh|^3y+z{BuKkBINaw63zZogDR zcL=6^tk~vtZytH}TQI$sXGb8pdDKScLB@2&j_}9ku@|o%WNq?%6`yV%_v&!Z{HdmM z0Ow^fghepyKC$fH*JpZ_7XF;nEsZIDb`ZE%Z4A>fAGz4;CAWkb4h&h4ySGfg)Bjp* zEjXK&uESR}SEcx{a$oPGUv}QBp;F^jb?K3oxrPp5*z<2mhK)w^O}~Y!k-U;dYMxzR z>guaPD-W$7_{$DGBdU7(>(EBGb!kqYx5k(Bo8IFa^wQdIktW$G=M*R7*-fx$%XH&_C4s1)F&JWQI~7raWJMaI%Rq( zf3#{JA=&nYf^tGq6-zBjRN+h3Q3J1+%gM=;4L(+HwL!w9IATsFyd+meJTfN0fsHIS z&=6rqq;ned1RIws0Wm~~xC6XAtJeKR7ytfpal0Ccqwvb@+m{z3b+Y$iomP!!jH+4lzOO-)5V(;!TL=|{{C6Ng`{uLF zS56|=C_WbbXLjC*TK^|NAg&-Je=u$fJG)Xu4|?rx8{5M3eF#rz9b)yf^O6D~fI82j z`g_fYCu6ZIh7BkYL1`;0tc28$a%k+I8xeF3q!~cP{u||#Y81ExZNOb;^KivXoO@_Ai~V$4qD-kxWwEKBZv!$l8y|& zto#;(%HulWY}0f5IXDS#0uhwmXaXC{j0W`;QSto(@PE&P{|wtvpMF~XBr^61 zK5KF{EWJlVd7YgOrwj#3cLP7j5DA0;wYn+)5kufK`{6A8hA0tX@PvHeY`3JeG1PJ0 zRDJCy4v5CTU}SC4^Zhtx_;ndt^y0zP zn_-2v>seBv)V2)eT7roH3dd2lP}GXV9DjjWi{NU|_3=KT<3c95#SRLsM5~0HcQJ)8 z9sG^-i?kw@1Ukhq5b{GFMi9+1XFTNhmff>BlHP}&K)W+#u^PLoF;*-_ifqwud6^0& zPFNL|4q?$5d4brNhQf1vHQJfQKndG^V5ss5K(!0oizL%g*7h5LZ);hbZY{Q zll%vTLgcRg=c#})GmT*(2vWE)jyFu;-R-e6N5Be*!;ZioLB{*}Vf3ErbZ19$C>-+h z!z^#Ur$}BFz2^8h9k&4dc+RjWeHBAMiYp2s#VOE@q5-494!4q}KczyFIigNFN-4Bj#znHs(}I!@DoF);PFEP1h(* zrPrj>(s<&mWN?kOX^}@+LeNEYosx)M4@-TMY+my2z&VWKo>h`-Q_{4ufUYw3>@s*h zQ`|7q+cl=3=GegLz1T&YpeLpfp=YDv4IAxp2r6?JW4T2y$TIGAH&uC++~5xyYoA7ppnJ&gC&l`(9?uug~{_Bbj5Xnd7U|VkL7UM{?qtnG>sRqh+nH z$!r7WnUin#RaVNwSy$p8m{W;aIB^hmFTUH>&{U-I*(C$*xI&rV39-DdXHMVUk9*N9qOB~tEH4z>PZDD-NwY1+JSf(wEVbS*QM4;{ zW-Vv5EhAHj@n)ffmKK@MoxLELUNttB1jcR51WgT>kmmvUnYXuElWLhg^e##r#2geDL(BfPXEMrCKQD*(C{kX%-k)P8Bh zu^T_gpPhD^(*ZK2X@s#NOm<7nS2Z%3!`N8UPDFyf?Dej(vga=ymUX<5p1ECUP)7o& z?9U!biRk6Q$JkCwigq{mghM`y`O*qso(c(7+qKb&j99RcpDYl+nm$CnVsR?EBFd4ZWvoG~6LUW!}j)U5pHWP0qMzWU8)_sk~XN!hZHJLVtj<^Voc* zu9Kt@wsAA?{peD+e$i^@<}`TTS?~MG4~z&S_U_xRvKLxwc`rGPmp&Nl=$bt3Y+O>J zyz2i=yZef(bh?opv|0YKva;Zb6%&ilMaKcd$X>XXP-%luf^=>ZJ3_sLAtcrn^Q^YT z$i7g4TpOdmm@rBo8&PNYaX#U)7Ju0uaY}}9SHTvdEe+6#Sot3PR!2`e)sEo;--om7 zz_p*KoDC4^&@-?98_5boTF_8Rnui4I6%k259pwTOsc^qmVx6OMzqfL~@UaBUQc`VG z*Z%tjB?%W`!EG>>lX_B4l7o1|bhswsXUtCRGI>2i_;UH?Mf~@l33W;qvoTCkWDNWl z44Lk&R+kkpqx>C6nA$uFjdZCKCv7g*%f3^#KJy#*{tAo>PdxXRh3Nu%V} zj0C@tUxrpiszjpy~5C(Mggb0293H-Zgxqh=97odwf8;8A^b<5Jm({(X}} z0LZn!&ascA_9rw3&GzBu^%gH&*V9n78N-N` zjblJP0nw*UI1g<_R&pV>T#$`1;**$d)@NvgFpT55VL5J*{6suh=pYyaZo zn{Bj2FLB0-_`7uO6x^)FJs_OLtM;qOlJF+(>%Oq71M)YU$-f_nDDSuAFh035s zdQDI@1-Gwy~$4$J3&7Z^v98WVCP79na zK4sx;hj68=ZE0`6=Z?67nqCtdCx~+@0Di;AfEH+X`aHKz4(x1tUexJTJ*Io`z}B6%U3*_uRadGAcz*ZO)FggD)9EfQr*9%FY4@d^B+Sl zQ?ZqvTJ)Z~Hzp6g^nZXm!Bi4h=zV0ePSXC}s`F=Rx1H*=J5NznnF(weBQF$8`dPK0 zs9R;G_`8y9$Ur$)DX}|6=*E-#U;m?U5LN^lBD4AzB_Bk3-p2>c|7lcJ2gq$qvkr= z>pJ5eJH7HaLx^28@E@QRA1!ySk%(XE@||R!AN>ltQbnAB5V8(pH#P_ZJ#nwEO}D{_ zi_HD$>@F#X1JOM3hq7-EHR69-zWw85iTP)eok2<>N+ z6gf5C|LZXsw0Yk=5IO4A34VFQ_9v}Etc+=}`K5mbtznDD!F*G|zaA4;`iqORkwypY zTi#Aij{g7QF%__T+h%XAH>C?w^dGl)*#0O|$m9!LI^Bz`)rYBFR?1d4v_tA2j&)w5s9`6%+WoJ~d z&ZFPW(PE1awJ^Qvq2n(bWt0DSO!vrNYdpGoALtIhA>oKXdO$=x>|Gy$hUaBKnhz-lle=BCV(iAV|y7QVZWkoOeUR z*DJay!Y&01@hK8T@Q3kqrQ-(<(?l=_V`J3ep)jm8Ip7O4{K6rouaEdje=|HWWCAa< z83|lL_Dqzam$4X7UKFnA9H9gKh6$mQHl|5oH2)dpR6xnVC-2K*R7&5**y_R40n2@K z7%kO4A!~;oY{-mVtveD+hzuQyed!8Ek_2&C&p>)5P$S%~e@KD?E+sZKLz4t)l3CSh zw6%4NBDHni^igK~G_Q%*=qnw2$CSvuBG88yc&;X$Z#Ch{OD$487rn^cDY}Jk_f2$* zK!2b_2j(|HDno5CG>4YW-Abdo?D8W7CDHSj7omR4nqM~s!kllvjtGUFWiJdxM;j31 zSFV;4IYIqu&Qu@|Y+K!-5;>jY(l`i60rbfaREng;n zCENS(;^?lQ@t~nuPJgNvEm@{=b^eWOn{v2O;Nwt>ZCC{H(254?WuL9yM7|EObe7W_ zV$U+;cDqxkwmcSe=fYDS29hitX$%VE&@rakD@^_+(}a;>CUUZ8Af-1<^={y zlXbgQ%x$w4fHUifYr~R0zh5kSPei3yFvAIEr({`)0k|}jk}$+(F4{_eC*%{h|67Mp zvHeuA-Onv5qH-Wz5+0DYcp?CK1`nNK7ogGa8pYd5^Cw16nl5bDhdaz9@uy|!ePX!R z1^FOH=Nwy2$p-#OmMnR~fKcVmYnb|LUGkMFRJ*weD0p^tYH0T(CNu(*-t#&5Re++j zQ-q1xv0jErT(^b75=mm2$sx~2kMfveo<1{(xHE17IBthy3W@a6FnPDq8RNf`d0Ql> zW?9Xrpq?;~KiGK431)Q{Y!kBeSWef zwXsNUZZQG~9?hXzyfI-BTSd9-h_rgBHDNIgk)5{KNLo_8OA(#+fue4XM#2ZrKz6GG zCA%fH>^Gp&!wx%Tza`CNMouO{XbFY=($EZ=~Xq6ii zeKt!w^vtmD|6)y4W%gxCms)aeG*!FGPTL`PDsHOUe!9}(*<&J^)rrcQbNBwoV>+b# z$_lD^|Hr`u!$5BZo0ukaj?5fqS#K~dst#41O+&c8e9)M<;a45otM}!^SCk-1FY+Og z!+yf)5e$W&3bxkz%Wt-;_~^FWj_^Oy8!#kVLYD+)o&A;#em(u;F`c@`8W?UtN!p%0 zCim=R!#y#Q_8;&6@tBN`j7d5c=T5z!J*Kmu%(kTvC&!(cxr^PorUPx4G{=sV;mxYA zN6#Kp55cd9&O5q_l4p;}fd=u1@%D@L50_vJLsR6xcQEF#Q9qQhHxx8KyYVtyZD58F z6y#fMZ0oZK!Ih0Ott=R`d#xq6BinNy;&+zn(O8tipML4BdTcru33e+)WVv%>g5ID; z_haly?A8GZVs~3-O4IOl7ejHew1ntqkLj*>sIg>H-+0WF@$7O~f1b;@@K_&Loot}L z{W4?NaJM*JcO(+2Au80-n*ZCPnC-25;>t1_-z%~Szxf9Bb|uowO~1)dVjk6pM|~t@ z|EXA=#<=Zco4^DCT8q;4LKY*t3Dl;~X<{j*FINx9NFGMTZ?4M~zUIhMke8I`+*D!! z?S*tBW`eA4s$QSiGaVqp8##xY>|P5)T)op!;w{{#UZa9RK%+k+dY!Q3ZxJjmZ@jbfI zE!iV$OZ)HdAuP(vhBV5ZM_xgH&9%#$YQtLgOu;%;s&5gKlzWMh_vRjJ9v>GT=Wy@t zrw-aZM)0W)9C(G^zFWI)WdCd3*JyRE7n=%Dz6%s)x&`0_c@U2!ymJXLkp%?o75%>MZ+ug0m?XUE9ZWlE_IFZ z9<+!&;=CQACz)cVV(Cr`7!={)uerw|wM+}CLFbm|6+NU9qtn!Yuh$SFq4;iI)O}Oj z{=AkNMpf^owIm_A{p1&U-39a11n|?j`=P9xLQi0i=c0uPGo#Q4m!Fs-heh{Ns1<$RM%8o{mj5pZyL{DA{h!6NfxNvy3t>L{TMQ83ZJvodP*B zJ}7cjBl?Gjepb_k?YZhrLAR3>6_fG0l2Ickuis7vD7jE(^jwq5Qh#vqH+^+l-fw+r z2371mDUFU;QSmc%r8J$o?xpdKut8?G^=C8FG*!Kch_<}mFe6+?ir7O|PQk{LIw>Bf zYYai(3e|EC!N`hUR2Y%afNY8Mx{(eL zm(zP)Za|kL{%oe8hPtFZ7Y&k360cUj-t4&%K|+t6#Hxt6!R$q^KD%5|1EWZu%I}gP zjJ}^(Pu;h>lFl$-g}UOEOOP{9LetcdB)jo~P6$WUIVYw*%Z7n5&RpYYfRS>z{9qC% zb=WKft?mc$mzvjE5OfL`bj~Q4p#-vGJ{0Z-bN_+&5%0V()qpS3t@4NV10Ho`9a^HB zc`4J?m^$4nWGakmy8M*;H=LjkG}P#?pyDpjofuRMTAEcA^gulH$Xb}z8QzAgX<8kl z3@6P6F1gGr8k$SAifx7lwHx*gHNMYOre^msZgjaC!$PA!MAGPhcz0T=qWh->xCh(~TTS_3MmKtrhDu>24+FSNI+0OchM>BbP4_qDZ7f z`GiLQ4AvP?XnofwSim#BVpT9STa%QVg(bZmF7Z8zz;L@Jc+tt1z0szZXNT@G} zDwu!@@~?1uUk12x8K?s*EV-mqkrZo~PU^{8rjV;#nN5>?Dbx^3lC#V64#AAkjAa|gYqgXXE9nBis0?vZytD&KEy zvZn8>rK=oSJTz9ST+ND}5-O!>sUoiRG&sknAZl2=`5>=}Y84cm_v+ccB;isq+aBHOo&TQnXgSl zz^bmSO@d1g2+?uSzBDG%)lJ>>ey>3|!ZyEG6;A+E+ARb01XhM5SSB=iG3)tUIFiy)MI5Sus* zA^-iH`N{@k(~3&cMpqqt-EBdpqw<jbfmA*&x8V^hB61Kg8l!WI< zk`9Y0upt?K5w40Z1gBWqKu47|#q1?~O)<;mC=XH348Nm?!5nTjh|EH$ zNEDEo`LFg%kwt7^A+=cSA#SbGP{T_;*nE;$RB7_h$;D!Jwpof?`c_(`%!~IIPF&3u@=1U_FN?+HT zBJZOTf;Q2gNs{$~M`GAhdI8qfJi763pkkfN{6LIoh*#)OZIEn~TUKan3mH(tg-$OF zjo$UkY*-#YO}$P)h+Tj?z%6tbhb7a1Sr^?H|1CcpDhnra&krB=b@X7ysE8ol2+d+e za@*od)Xz*BCw0>INnR9i{Ky#>%WqNhyLnezy-b^qD+>l&3?NLwTvaQK_$ zrOXWN)see|gEo;s*78YouyYXV>-K`oJ?b=gLSS;Ti2$%l`n}72vO#9Xq5x3L zHIRsGuU2n0 zSt96x6U*I^f)-Ang?;~mD8#(g3Uen7Hv3KyK`f2Ph_lIwqiZ?=2pYNi)0l4{_qCPWWQXl}3Zv^e>Q2&Z<6_6G zLxP2NjB{ihh1kY=V8stK>pkw-Z+1WU`_<)q{!3SGQT@3uXR0e_uYakEJ33WxK6NtZ z3vXOia`l%jq0&h;Xk&>TqAD_xM-nVcBX?CmcAf#d&4G>dcx3I6_Q}p~zo`pVH0)qC zj$$;hjioy`B?QPA4b8)t4eS#JYB36_@_7XF{p%9F)~yxr%7+pX3iJ=<@-z;prq?~k zL6A-vg0)ipwGg}MjkwN|dYeDk_7uj>%OAA{4VFUmAM*8ktw;+?D0MmnU8EZ2I&{!Z zsRq7Nq?Lj@ciQiV-}n=obce<%7PM0pK&@kIt|H@jdZ1mxor4{n_X@Ce3Gf=6A`1nl z`_CI#j6ORJ^(R!pLW6cyqK(7YH`Xljn^t&Lkw)zlUaJ@mmOTk$5q9pgwE=rQbRyJI z23`Ukp<^I0x-A|eO9sy}lF|XW8`)5+BY_Qt+k}D0Pmq{;77?6* z0)wud0WZ(6$BKp$l>VE7HorgL)D4G`q$cLyGvt2%-cr&|)bmCxav*a+QAn3q>3iQ~ zfSqq=p9DW;^NKQ0hnE1Qf!Io(VwiUi55LOWVa}#e)NAt^(8$FBPU%L_?+5Iub+X11 z8->9>l7jZd$hb~JqcG_yld`D`mLa6th6a@Wxk#f*iU#Gk^!q&uJ@GTbt25$MvrHckNH1nOrRwpU^jw0#M$zV7%Y_J&;uUBupmM>R6^y$HW@@UE6 zEmhueMd4(3E5c``FP`#e0mHEH=G@kbS{aq1xe@Ip&F}I_I(Y69*4%Q<*9KD7`mR;N zQ6m#7%+>K#(8Aa6Y$L0SR1cf0ak&fFJF993RBNh`UjbUb=05)VVadw)Vo*y*(Ghs1BRL1m`7V;-T_IJSNuwZ?;wNQoeGzP!|!k!*%q$)XK*MnwrG5 z_3s$9Sk&cY21Z1iyFOog7K03B3))vDaH2vXSv@jEU6Z^fVPhgb)lnlo^3d53>A`YK zQ2Bna$t|+#x0k=B8R)jIdRmsdAWT3g*T$ol$xmDp`>Ag26r{s%Z?A89C@oRI58V#4 z07&nSDxmjMmv_(p+<`&h4t1m2gHkZG$E zBXZmxQdrV52bQJu;!Q_pqdCpKe-sILc*Ni-pDK`kq46S4>(`HBrO4eYk6k5dQFVR3 zFRjPe6`u_|{QqL|RsF29d=`V_`MxYQIWD&cV)0k6v{_`PHNEgDR@0BU9_}l$Wg2ti zcqJjCshC&Aja#wyHjDRzn1wASHG7Hsil(%_IVYg{M)?aYva6U4Gt66c*K-?8M-IaY!cDx5o2& zi!pKA-46RsEcyRDiQYS2S48INzN|-i?IhYW^PE@q0={$N zDcn#A-k9S{ps;DhQ%q35==mTv=+tEXzdR-dtM@uW_q4kDl_kI4oAJ_Rr#1WOXX+c2 z648YSzqBR|7AbWzCwIDzfhg5mHEAaVUM$Fp`4Y-m=Z8IO9shbvUD?A1nQ^#87GBAs zinG~D`u;izp`wJAsR^RRgSl=K*|MhIOWc%-oX@d#ZZ3^ykEwn_(cw#TS}co3TgJ}* z7jQPW0;AA5FWq9x0&lgd7;-oFAfR!p~6i`U*FaD3Op8cuu+&A@908!@jY ze7BMas(u?pi$CdXr<)}C?dEJfcp2x;Sl#axCL>h*4?H3#=C@0c7w!+Mzu^WPXEx(z z9@d*gKAg0lO$6+=c`OEG51^{Py%+#L1-xmd7Uw(}69)%gzh+9FznoS*dAwP2nG9^7 z&9nM@^UFsy=zf<%NUUa$--V6$^cy(%@p4i%`0wqnr)Cdq{VAfQ42$7AaK9$`j9bFEk2OFH5j#olXr zsDUm;e&`x4vaNvob+dQxZ*8 zb?39kRQ{EX(JFp`06|AO88a}MUB_(6wnjdKJ}AI`nkZ#Qcd^erC~{cm?28>o6}~Vi zis_zWh_$Wy^ix<0-#s;fCxv(7ZU8UUnLocOrcTk^`6<^AF);lrQ zHVv(LoMT%>!*%!fU|O#l5~<0aa4nw61sGY2EXR%Q9LZ<0H4XL@QiW6;N75_QdCS!)bTtd$GI)7*eU=a5QSqf) z^bm#cP#w(oXeC=Xd1Ppjd@?jV5p*xKY1Flx@#D*{CG^4iO5M2b3iEMJ;ZI);xsBc{bM7tXWGF*NOJ=E~V!5F?u$* zhTFe1Q$S2axDrr4Ca@_U-RotrZhvYZeC3tOZ`AN}qNa9n-ZdvaZCVG!sKh$RT;Gc? zl3+(_8!{-92b@hVfY=S2fNU7_F%{XTX(U2-BYH}dat4CY#$Cipd^NS z9EgQ>PD59UQGJF5)9^C0I*4!$ZNh;BR_c)qf``~D)w1eUrnZ9W!}7+H0H%cL_Y%GU zwWL4f>pz%%B}Fq_TOrGvE=GENjFHsb4vXUvruvoi#=99(lsn(Pk}`8z4<~?&VyXnB zyT})HUi0+KL{(`~WZNm2O22z&!r4y;tHVs=%%MR+IKogkNz?lh_N9MC_gdB&WoJJ| z*&!YW3nodc?R>E6=geciv4zS|m~Q0EZufJcv&-0ByOE2(D19Ze8WTpxO@=Lz^dqji z>B}VdZk~w0g*vB_SO!5fOc!KoW6B%FN5261xFP;LlMjYk)`7rfIB4oz9xqEvL#ZC- zS5BM3c7g0Q+fov_pq7@&MCXm3ckI*YtIabwXB>O}foDlAUn_*quIB!%J$|z58gDrZ z!s^UHu$y$FCAn%6e|U?g+S*6ac7DqHxIsu_*&kY;?^v@pl*HrnUA%ff{z$0jc*A#D z1otw%MPSqI<(mY#MoO1Q8AejGVGgBH%OmvuYG?K;IC=zXb`@_e;Nij;qk%H^v>35N zuiyat^e(ykQ>)t!FJuLsy}cy+E}r!f=CHOxRBy4Y8WSR=A%Qw+(|!UJel61aVX(?eDOz$;VOAc zxX6b7xQ-S4yZ=?!|I1^Vgr_5?GK&*?hYWCTmnQ&wPSyH2(0j1;Jt~J6exGuAP4PQt4?j8UMzd<@?0Jvzn@qk;LAA|UipXn`T<6iDdIQusg# z2r3dY7L5&r29NLpLQ)q*$r&2RhtD9P6UacrZbrbZ{)%5Bq;b>tZ&{dXW3WOaNx^_u zxP-k`3u)qpwJj4_I%jxR9e%EvMIIhG*^p&vD0%1xlTC|#P%3$=1VwY`bD!V~mew#$ zU+I^mGExPO2u>5R9T;kuDLQSC@*wPCDsohklCO-4c-o#kO-Fl!26pL)=GgeUC))TL)m8h7PEu&_Hm906?~9h6HXdpOP}@3iRtvDxXThS4bs} zO})=gy^cwvv`S8iNamd-Iy(of!Lcb|kT3awOf_7RS^z->0L}r{$_HTFKVKp(tYczA zaL?8O5pW#ob)-{Qq~a8?WG&$AE{UiBk%YC5-kT3d;=ox(f3KnNUS~0h#V&)uI0b)lIwV``WP+QxgCqSxfLH0er9JkW*GMo4dw%K&J`M_jXal4PIiSw1q;U~7{lVY=o? z3$k@rfHC86?%^nxejsw8^n`;v7DcadeZ0Kk*XyX67!_dsZloJElp}N`;R-N9AP1k7 zV6&}A^a1iYq(E{#_aZiv|4r^sj$#@AVphzOboZpWR%a_W@bwgdUL2u>XNme@N!U3yoH9U2Q~>N;9Us0fIZghDaG(6ZMx zaTu%hFA&(epV2ygSV#2ezLltZUSb(OY$Ey*RC|u0e_XYh5$yPLsKdbCdNMN7`R zMmVQnd;$7X93;L6BQF(C<`&bUOnoEs%aWPiX{H4RzD2w%WMzuF15b+>31*#3RN&*s zbm9Nor`%(-Em^Z=vX$g06E)V1KJ>h$7)I`^hUv@bz!4hpn*r?1*Nn7@Q#*xmzpj~T z&|LMyeTN_Oq^0g~x~)%Gj^>D9QxTuZ3>PC5+nA`qjspX|r(HM{&B7;;Kj5XIuD`Vn z9$P^N0KWlO4}w;p9N=B&`l7S{b63b!+Z{6@`fkH*K7QK|zqHrh3K;}fDd4=&fYUPi z`W^(eeOPCWYlj$bM++Wlqnn8|frGHGeMNKI(Tg6RnJzX#!lf{LuU3k^yGY4feVcqw z#&^H2iz$T~$S@Qe}F=u*S$>Th{PLNA6t5m``jY4%j2u{3B&!f*EXx z!J__=FUKP_*rRo9qYX-VUP8&jrA#weRmuiOc)!k8XFxO z8$TYK#2){_Ha;^pl$J2EQ1w{>39vjizIr_V3wvT?WxOC^eCLtAjdtRoYT`g?V)uCB zDs>aKreOT4YVz1|LFz6Z|4*lj?n$_6!Gd0yuUxFMSl>i{=hH$!Ss>@=kFBZ$&dBUX(HtxY)(_8 ziPOAaiCI^t=|yK&uxDt-XLy`uBt9Aof0?0Qo#Fa2!{#(CIX+u=NIs`F+R?_jEh-}&l{c0yE-kX zgcEwK&ixluf&%^nDltBTN)rD8m7dikeo1X%bu~U|8y;C7Ax%d?U4L1r*Z&uvq@|%P zt6-}r@2jBepkU;$Eo-gu#!}nF=NVM8l2JC3)3MW4w$s<~mRIq7t?R9=;-{zitSmWN z7zLWD_?y3Ra`)#_h~;|yo?knTSNFsJg)S*t#wj{vD7$8ATgB_TChB_T{A(~dd&Rr@ zSHKStML=eQfBcsM`XOyySUm7dzQ4jK*Knq_vTrQX(c{x;84Q?g&wzdX~wFjHBi{pV=+ zrbx@iIIoU0@BfW7^~GBardfT@@|?-Gp8McFR^T{V=)G9#yio4DTKD#@RXZ^;`Cp_d z>3<+i?}}QAqrxiEBg-;#pGl^c_hBvBS!KDUE#+yI#bsrc&84-~<@HU?<>mj7Om)vB zQ`0la6q)=O^YJk!>oKlu@EK+bZ&*vM?EjZ!ifr1BZF~G!^_bSV{l5M2AD*dYyynZ_ z&fbpPp5?58gZIO?wL`OIBmbLWx^4b1!*uj7!_=RfJX{<#RQYbKDQ2iK=b2%8Hkf|4 zWcGb29c}(R+}1GNQaSsz@n3!EUvX)<=iU53<8g1|!EpBWT;A1W?)B`)-O;kGvF4K> z#fS6lSCd88|3h3F7@HlP86KIQn;#kcM_ig8p8mP=UvcT@f5oM_<*lC!{}q>pcmE?U z?d;DT{$9E|dKQ=Vmqs^!9`9}sA8h|TzL>w;8@f51d%PHXyqVwI-~X?#^!wRY+Pgmf zudnnBDk1)Vfl8DL^~J;g15_f}jQ>BNQbXBf9{hiSO5Fc1P^qbM?z7N4+{Y-KW&SGD zXHe;NbJb$QKcLbJ^`mdqu61?)fJ&^4qepM^TE}kZJ%I0iI|C-$Hl3&!#j=~VVK=;!P2pdGpJmy6 zu$w!Y9s7*Kmx2nojA0Ns;8_#ImAK<6L}$gED~h3Qc)OjPA5o~KN=tss0>`N)yq+kC z)wscBh|@|_m3sns?B}7zR-#t`?~CHm{h!;bS^v-@2*(SO`Z4#uv~Du&eK44hoql`c zSi4u-$H$q%9gvX^sYjx`_#uh~%CAy*>XcxsLn-ElKm&w?i75Jer|}vC;vA+(c5p$7 zpPpC8;iV||bl+=Bw(ZZpqRMa$b^U>E>S%QYl@Butoj(-RFnwWqRfkdAVZ#K}ZrH;Z z_5S17IFq(LNz{+o4If;3dN=s#wUXC()2_4UB+3CfNOqKo;B$9VGb#N=E$jN{tFPgN zJn}RMm3}1v1l%YGsA(nSh%SXlC-q3;v!tXV-*7rIBY&l<>NtJ$;Qo$r?}5#?8Pbo# zx0nSw{lxwDAz9o9Tli!MDV>domta|leH5wqISM}-h($l}3Do@utAh-zg*GJ2k83jt zItW0QmC7_d>Q!iIY>ZNPoKa;IOt?~IRV!n;G0=MIa{|Z`5_+tgfcsU&@h62H=A0{;3r9u&irMiE1hTFBovh$P~9>J*$p1i&2QsHzsSSzD?nDJ#GRz-L~@&-KM}s8s^&_C@wN!oc*b zoDS^t<|KbNWXe!<|27Tw?Re*vUw)i)LOvSV zy%k%O!u+IT5oC~XXtLQ1&pIClE$u`@p1MHM;RpvD@5|NdnW5nm_o1&oS_`0Y#d=?? z(_qi4jic7bGDpy%DY(jsyQeHru541DDuvds^)D$Bn)QN;hixLHwD`aUv*Y#j7~0fccVS zMx^sH!sH>xto*L*4*JTm+M)7Q$TSO61W4vhLil3a@8n}%Fu;IE^q<13L!-|x{B8I>)xo#xEaipc=0W& zv&M_C@JmKVn34K9m;vmgS5qr>6oIAZf@xVB!7y)zhgC%Xfg7#yoYD%7YZ0r`jQZRa zCc#KSJDFyQ5PR{r3}t;sl?mIj^^4&N*&V&Pf0Ztw_^RgXOo6IV*7T;gPllrpzy-dm)5uuEae`Q=pw^Xft9RJe;NMc=36N4w$;9)Ns#ZT>wO z=Q=qLfCVPM!n)eDK?F$MJ35dEc>p{7Z9t`2CSC^NbBjnuRN#Bti|ZSPlWXy2+yO4) zbdj)ek!cr)r>t;rLvcg%%|Ox5XFCd>Odj%{jIQ=Yydd_x;iX=t7;1eNgVc7=8P@Qh z^Ki`8_1JDcx`f6*sKUi;5Nj<#53iTw2fQNAOoIqRD*YV)%wv5lf23ZEWNx9gud^0Fd02i&mrJo7ao?{LWqBc zDN>5Y2(h9kw#Ko z06OstuN7#(hkU>m2o7cGYttJnx^+xjh+oWlaQmzu$@}N?>R+TA5z+GsEi{6t2Rq{m zY<6x-K_@m zT4O;1;n@Y=`9aZxvOvW_HioUhqoUx`GSNLB?E?}q^o>vk3z3rdAwV~Ke8ikXGan?b zHHL6Y6~y~;1|rk%?!$K#J$4zC)++X^1!75W&W&b@z5#B_Hvw*hqFKdZAvxjSqS5X1 zZbpUCrSNbKgeBN`&RL7K&H6>BJDJWox6_M}>M{;9R8mB482Hwh_}qBz8C8xqZCf za0d_`kFfw<4jePTfhI?dV+)-&Cm(}r)0&PGIu;frr0ap{>*@VFdSOqU;wDrL;+?U4UF)Z2>+pHwJAm0@D6Y=EZ&l$ z|5a&#pa>R7F9YFtMXGYfMo>lLr1B`DdnT*5 zMo^3OrIjfVyVfx~l@K#}Q1J4SvD0V=1q-q153@Ba?2=Mz(=ML2pZ^4N2jQsy@T=Ei zpm4enw0BU}`ZiQ>PzAMJHi=4ws;cS=q^#PiIiQXru^-Wp0qqh;Xv$vaBP{+&J%~07 ztLUag^)dx;4rPEXqLY5pcU~7I5d4R8bf+f|fC~HBn1HgR!y*Gcq_70huwyhtl7b3H zQ!W~75X!Kr7ElW+Nf5tKk_P}UMpv-JLI6aCk~gYGZvTo21TnGTM$~Sw-><=%e0Kkv`#yuPzw@l!Vy@T5cznf7Xd#1Xl$s86Xa5R;)+I%JG!Jh7cSziGg2e3 zx_l&2xw4s{86lYxPza9@MUbfzu2=(*kO=EVv8DUFz*`j;@*=1UA|p~FUos`EI})oC zq62|0&gK!)buCx}6v)~!w;R0LyS+~#APe%n;Qt%G7=paX>xRoK67S#$jsR=~K@5;k zDUgZD@KmmlHjXa?YYcK-zI|4Jyy#O4*%rUtFT)+l=z}Tp~Z;8MR+`ta39}4Un z4?MvXT*0Oh!N_638oa>`Ou!uc!63}I9vs3XT*Bu$!X});Dy(lPyuvR0!j03yFg(LF z{3bG7!#JG7RdT~R+`~T1B0T)VLOjF(62wGImZMx4Y<+{EUw#7-Q=Qj8r?JjGUg z#miB}SiHqtyc=5F#b6x9uJOfUT*hV`8f1LNYP`mjk;ZKN#&B#H(UG`xT*r2N$9SB_ zdc4Pc+{b?W$ABEjf;`BCT*!ue$cUWCivPUGjNHhM{K$|T$&x(Dlw8S{e94%c$(p>$ zoZQKt{K=r~$8Jm=W*f(*Y%is3Cm4Jr^%1uD@XD|p%d$Mnv|P)!e9O3;%euVFyxhya z{L8=`%)&g(#9YkAe9Xw4%*wpX%-qb*{LIiC&C)#0)LhNhe9hFH%D=M8`Jv6H{LO9R z%^}3i_#w{Ve9l*5&TmG}_o2?{{LV6kQ<=jTHP$9~WKG9GxB;oe}fl52fr6U7O4*P;uwcrnwFbIb*2%k_zgkW@NHPuyZ4TDgebu`?+`etuSe1IAu_6zUKnV9>wf>+Cy=~oNB@fflOTsj(}qS5DbJc4ZWSx*S+3_J=0x{;KSY3tj&Ql!Phpu-<1vF0zu+` z0^q)F85)k^Ku#M!-Voan+yem#pHL5Ctu4a9FQ8!6InFPTaNt)RfCj$S{89_hZQoRc z-ft7t`_kh+9^_<>9Yf9#H|(PZNy=s3=4`&YN8Qg+ySI74fpqTXc&-p?$`cbEOk;O-*dg_~G2;WV@~^F<>IWe`6d~;vF*0`w5AaZ>i7x54eh|auoA_`z?(%jNk?EcT zJrYBloGAY0d(ZWOXb%M!R1Ipk50T8hQ0SzM%2;>z2 zCo2#*7zF=d@IjyqkrDy$G7K0XMcCj4H6TVKBWYHHSN|R|a4-TmJ2GHX4{o3*b7qhn zQ>y>4414lTCI9O#HE^&HFY$a*@fY6$+OFwdFaosz2ays0B>(T`GxL*T^CJ-P6Q3#d z00$qF06=i(?C!(He!)g9(e>;RuM-2PAhxJ3E&K54F7{7V_)qr3Evr7g>H6p|L`5C1 zH;Z$kh+cc>vg#(E(wYdm>BpA?!GW>T3+<99Y(MV*;Py~f4=nQvoR%zPuXuz14~4IF z2RSohU-d_P^}NyN@S)*sFSCI*RQzBqct!SgPXg>v599h!bTb3{poKY;_jD5k`S1%& zx-h7(`r9r%?!se$u&G#B_n8Cjd9P{&R4oC(nT;4N!82*mk^=cq5Aza6vtRqSFDwM4 z`$%K%L;phn+Cuh}2K~~X{QFS-wvRN5Z-~~QC*+R#I;{Byf$Yrj<8*f|C4=v^rgf&z zqzucX)(#Nq{{8C{fB?HZ0Z#l&NWk5{dlv$TsweT)KxPKn4dj?Gz(8KU;Gu|Z&PNrSkq*qP@&rqeAWeRjn3Ll@FC$PD>-m%QE7Vv69C7+k`YWcJpGIX)_22X8 zs{j4E33A71$LZCtXW!oad-(C?&!=CXE@a1r2PQ^r-~a!(@T<#?0180wA3QYbO}AG% z`^c7o=ve@%tAH|Xq3|SHqNu83>&T!3$0*R9qg?APw2A^~;u{uOJn$cXq%i0w3j-)6 zsEs!BDZ>DkI10jl=(!0yi?ka_BOC`JX-AEuTY{r^9?7620IRg}N-VR~a!W3|^in4Q z8Po3{{to-{%=yBc%cC8>s)vdK_gV0$1~ocrhJos6&ZACXydnS+_6bd;r&wAdM*o9c zQAQ#U2a0Z>1P@}#lOQF+P$7T*++iSVG+@Cxj+iS@oP3m-kbrcQ3IK|M!ibZ{4JA@x zG(C~Z&MASSQkB(zTs08ZB?V%s6f}!9_E=<-Rd!is>r!*DG0Rk}S!(loHm-X%2o5Ax z=j6=JkR}WuH;)2Ppgc-L6ST<`pUi06MhVT)LR7Q;NCA*8742ODK={Zwom|~E080N6 zF@OjpT2}pP>?QETc+Ot36KeEVQD6RY*xs#f7I@&ZKdIU ztpkt&JgW|B!&u#!Rb> z5BmIvIfvRZy)4kr0$p^SW={(rve(l6tbTsye0buEH~x5)J>N_6#AtdKPqgZBWL~$n z31A!K|5BbYI>CyRdbQ~I$O13^&HjA!(^r3e_OIMNFXsE>2n+$Hw(b{+B&Y= zrV)%INFn2a7ku!KH`E{z0eHav#9}?{wa+f^8;ms)kN^kLq!$8!0RQ;ZVz#w$LV_bC zVF^umLKKRHf_I6ZnIeP$BlyBbHPM+eHXs0ZhzJ#o2tW}qhbSHpZXqZkK>0Ki76_*B zEh|)F6P@@(C`M6=cwu5)S~x9&1V9$|SU_%^p)+y3Lok2(1U|lz56oR70GrCz5M%d+ z*wLgAa|A>H05QixOpz>A)MFq0_(wnn5`BD}%M}NbsQ~a`4GR!S-$2rXe@sJR1gHh( zs1X1r@Megb0Ye-)GBA(`k|Tr^WhqU0N>rwDOQigqVP5u{fkD9^yn6>10ssqs;DaB! zKtKsd0*lh%DI%NXjVE=IL{zd;mCIyiGoAU&z^KQN4+{V*2LED{5@cit{*c=%tRMh! zNX?hGL{tQBvNJGn(wHMJ;;K6Hb&Z)0E3SH~`6rd<`w%7=cD5Xi|)(RHZ9r zY0OZ%J6BGQE_)~(jV}7qmgZEaJLTyrr5V%a)x{t0SO-gS+Eb(^RjEs5%u&t4QKqiN zsZphBRjqo}u}qaLP{ryVyZTkIhE=R*(dt;ZI@VFbuN*C6Yg^s=R=CDhu5+bpUF~{T zyyjJ}d*y3i{rXqH23D|xC2V00dsxIKRF9^aw)4=&Z=3ImLs&QWo>H_r`l+y=d@@=X=z=1TioWhsZ_iynKBF7+Ui!g z!zHf!cq?0=$}hCREpBt2``q;~H$TaB;c|})UF>F8yRn^MZ>7ar>26oN<0Y@muG^T| zjy1gHWp8`OyWYj5SFG@LZ+-1cT>1h=zG2Ppef|4i>v9*p)Wsrj&kJA#Cz!SejxT}1 z%U}gZSi)58uV3~H)(THp!y7g#g!Sv-)n=H(BStXqR4U@-fjGe3B{5lsF$fsL7;tfU z#~==Y9!d;iIERG9jaxjHdlVwZG4|j zqIY5mvXj*Uu1<9O7^t6|%5|3@RRL`Nv%Dv5*g8 zWwFp>5PF`5jmg$!D85+EkQlT+AVCP7C}YlN@y8`HxE4VVddqb|^q1JoSrr>tzMCnl8H9Lp|4o#;Ixbt7APHN(9{9LPmwW zvF&LOw=C43{q%(0ObAz?;?-`3u`6uN=w7$_+AtQflM8)_f8_cVZa#!6gxrot@59X- zadR!A0b_panZrHb^&t2yZH~Bk717=XycxX;Z8y1Lh0t=Y{~TuaDI>;{Ftfi0!DvG0 zBg;Amdcg~AtNr9)mu$HEEB>TyoQm=W889oU%l63_cuF8zH)6e9OI*IFlJ@C zV#|^mEF_O{I^6t;T|++F>tJ*`f=q0B6vD@!5%M{N%non3Vjt2Q1m(57^Jx#lYH>!J)9J@A{i-%T&G4(?|YFj`UbB#6|gjxtcCUY`>5Hdz< z8(|PK8S6bJ13nLoG4?Src|f>Y$T@#&z(F7i%_}qqVl>aYJ{6Qf%^Qsu!?k}CvR4Q; z0?an5`@ew;!1Yr;2c*FG>yrDUi~7T=B}_0=E43EfwdwnZ98`GydALC{ilFpKvK+}Zlhd*l zbiP5jg&^UzLOYzevpyg6H_vOqzB`T)#5Nzy!WXQ!fw;n)`v>+rLc5W=!DF%MGQ6Nd zy!%kR#lyO!Q$8kBJ*^A7oFhIU+`NGxJ{Vg**3&v7q&a7+1vf(lZ(zPOL@=V$xipSFi+LQ@a{eJ~;HidHFfW zYejU3#T)#+;B&=BV?I<6hFkPRTbwj5c|y5p!mHv(0E@y^%n^$lG%B+)OQgk2w6THE z#X%6VcD%971G+VgGXDxBF{1Ma#?wd6!#aG!wt7Rfzq2x1j6?SEx@W7h8ymzMqd9Eb zhnJHwb|A-xeLGBt#J#~UojDJ#0KGeTDEIe&vR`O7#9+c?hx$RG0u zjnj!)Ld8QGEw=E7-qFeusvWa%Gw?%?LW7V^qY0Hf$SITysmvXcfy%e=N2_v6tDH;h zLOqTsGzm0|vn#n0l1tffO4MRXx*W{<9c%dqeV7cn8f+$g|YFv25D$(+oL5=_2; z%c^Qj%G^xOOc~8o3(TZ2%j`_jEX~FFOqe1?oh&C?vsGB)eNh;FkMMjd6^jN!IES>9P@2$DEBu6E+Xq4WiF&vM z4XwgL^H3Or5U>+bnvhS;druBU(L$IrZ$QlSnb8={QZ0oGEZr&h{MAiISW zwFPSsI{%Jng(5bQgNmK~MGEmS5e9*dfaD)EHRTDpwd z-{Lr`wOXzvHLN{6rkxAh>RPg0A9|>PCu z?A_jhScVe#j0A88I^f=aaE9~kDLg2Fd!T{nG)qeO-p;KC6cCH`9SHZ0k@Xbv;U|#{g z2L@mVE9l&3AOWPJhX5FWKoJWO9tcqh026qT6&{EdzK8UM6e0-4q7{=+qaXX}o11um zL`Z-DNPs@Ug$b#ESr`Z?762d^4d;CX2D-G;5Geo}hYY?4n<0SY6^jk-;QzKwixNiF zD;QziT;mTWj#sGR?+}2bst2wK0N2rpHXevRz>|8A0xzcHY7l^PU;yigUmjfxg#_7wU|4`(34jAwgOng5Bch4YAb?4@gi65RTl%3t0fZ2+ zT{Gt3hGpcqfa5^zWAB7xItXHjK;$d1rhj;b_eHAtRfYfXC zUsgg7{!5|7qJr3>F7jj4u^I?@hhu;UDIkDz*Z_Ts0~nB#1%@L~iQbQB14e@pT9ka3%KV8cBps8;bMgcs{y7~-j;^` zheH6R0D!rF2I;d1=sz9kH)dZLo?<&V-(_%!OabAY@&gih2O2fzeRp$JUwAxCa@j z=S4PbXoFAn1Ql9Zh$4=<&N*GjqcQRb5%WU z`@Zl6e{(yJ%QWZMF~@TrzjHs&DJZYaKL2w74S6r}2+{OKe#(i9$s&#Ch^A4}`v&fbvz=u2d=G(jnVaS3wx`G|hhdn?YE*jm^ zCE*=l5!Kpv(luSwRbAHIDc6Nv*}byb?Ofh9c>m`qc;CeX;1%A|Ch|s>+97XqxNrs+ zh6n^0-qNgxN_d3Wp@#+jhZQzo^c6VM{DRkGd5B18_QhzPir@LIU*o)A@a^cDZ)gGj zUnvM+s4jPPzsz3u*lVr^c*ji?eh8cY0#-QT6uwPFsqBBCdKG5jkLM{Emf=mK;~gI6 zu2*@k_u)jYX2>;nwMO@ik8`=0hK1?Qryu5G{(>Wb-C5nq{XruzI`xwcj z(qyh*(B;L_b7U0&ugbJ^~O1O-GJAYS>{ELR_ z-@}L#|ItzLkKTfY3P+MGY4Rk>lqyYrTj`Qy%a<}`;!}w2CQfWKck=A%^C!@tLU+a- zs<5a}Ujdc|5a7-z)TmOYQmtxr>OBTe|5;nG^i@Ko0SK_WYW6JJv})Iu{Iyg7*neWl zCVaCr#Xh!r_wpTScWEe-Uqt@eQ-Nvu^D=Ej<=_U+Wbe)HYho|1{rBDDNBaZ|nZ~qx{a*wvorn(QaNl zwDaiFr&F(P{W|vS+PB|^&Q~{Yo&OvSDnE$OKVXAmCG+9h1mDcG=tdk4}_uIGYCS~43dt4_wm=$h#{JI zB8n-hxFU-!zEmPneJQ9JgMn2<$T@>NMadxwy(12Ut|a8mY%WFz<4i~zxg?WKI{74& zQ6e~*j5aN(&@eVS64;jG1^-4*B$o&oO(Eq8DJ5%4zKAB9ZMyj;oN*ecW`0#>c4b0Y zepFtWgzV#pefMYs2_f?^=Z`Xj)FLNobgtwmqmfEFDW#QKDifqBWh&H+Io0^jFofWP z&pV1%xad8O5OV52^%Sz`rF(69(yX!CdMmEE>N;SpCH3l4r<-A^VIgt-1Brc!mN!X{ z!kFjau4w%_(zMZ9do8xvYRgu&33WSDu)WRXPf6r%Th+JUp1Ur)?Yg^ex_0h{=ewT8 zTQ9!(>bvi`_aY7qMCmTYMG98+-gQ z$RYF9ac%&6Dl(N)ssD>I%PqUSG0A6X{4!AK26r>gIqSSL&prG6GtfZ`Jv7lp8+|m= zNh`fH(@i`5G}KW`JvG%;TYWXwS!=yD*Go^yu*t&G>{HBRn|(Ig6qkL~%xPo#wcBya zJ$JopTh%t*DA}Di-+lYd=-yP}{r6FD6Mi`2i8~qiRD&PRxZ;sZKDmg7r{y@|kW;=n z=bgKzIaHYc4Z7#0n|}JpmX~~Iz>1TOI_$B_o^n(xyM*^UkibgPG?DP`yGuVl{QB(0 z8-Ki}s>>XZB=VM2&uJ$QwWg-(28ftcY07rC$}8q1yf)Hjaa&Bh{JOo&C4 zlf@lY?<4kuo&#qyy>}sy9v%n)4Cn{Nv%uj4A7H?R?h%Fn9DsiB=s*BuP^38yr5IBr zi5~grM?eZPA;0hnCfw!^Ff8Q+gZxJw?|7k+JTd^0OvoLYVyx*@ktYpv4=T>_jdx&g zhzX&D`Tv0T4_GQ>fkL_mB|xMQ?9CDtc>%^OTn%DA%+OY z`2Um1P@15NMjT7*vK+~9Xn0PGf0rO#5Q0DB}wd37CVy9{v)*a0BS<;K!oay z6OC&- zioqnL8Uk=zG_=r^g#LrL#tkla|KZ(pXeG8$l}>GGa@)P6?-CTO+d^HEUFb&FC{SgF zXf+Gj*m)xu0n2{kR0#0sYT!_g|y8^E)L*+yJkE(0?41ygud$7*wzii4ei7On9eL z=n;VI*&)eiKFM_b(Fk_98P4vIGo2Na5s4&tY+~3!GK}DhW-27jYrev4!#L=TbmSu; z5pkFQ#k!NZZp0_)1ygKv=bqdn3rlf9Ub^y?uq=fxqgKgux!Dj^2OutUp`T$??6P}M zq1EFUNvThrm&7b40Ecl5WULe4mx#`9%YHSqKU0SoN3IybRnfCo((D#`I{(_- z6TmqI@609q;0}NIks6-Bg^y0+5WhIaQA6;O2z+iE&p60KPL+?3q~mfUxyVzla83n7w{On$ zsZ*UqPA4nW(H)wualPwa|2o*iF7~mLz3gT`JKEE(_O(y#>b8A(^J4Dys?%NNMu)q@ zOW`@CAGcNQDI@pMOgcqAuu$5Z~mkpHI_m7AaTTm1AfCk{6=uBLp?Bux9A$+G#nT}!5Gw2LgYeI z00IGA)CB|p4`|l|e!wFjKmc$87}cN)u){R4z*FqO46Ioh82^hj)W9PMKsx9G56XZL z65&4>Arg*~0A``JJRgL>#~@sUBS4FXJcU1y$5V8nc?b!4m`5xOgLw=Bv|xy$RK$8v z$ROlMEUaO95JE7Zha9rUr4SE2BtSX*NZ6xhQDVE=$ENJ9w}2|T5PKP*>5T!RzB zqdd~1J)$5k7UZPp;vnpg1BPKjRLG8ef-?9Cgltl%j7J=TiXWDts42rCl;I&5<11Vv zsMts^4kIxgB)~}oQv|>c_=6S11wHhi9UPTJlw(Ymg+E|HI)oBa%%HV3!w&2L6zBmG z0MtFYWL#tyEBs_o4rNgqBvfK!_?<-CILmqL4bY4-eDp56)}!vo@nJsO3Ldk)5r92-45{I+614G)O zJ19$;L}MXrkT(Ip_RMqFCT>#zYoA(JQc!3_Gt8<2%G zNTO00OH6`DVm{}hBm+cD5<*cT2@DcuRv`h5gFmoAcWS3+Rw6-?rg}=r^SNPJIOH*U zNIQg~KHx*5oWpM#<0sT-P4pr@ILrRM2UxhFgNP(>o~1|TqHyEvK(yb&OmhUv*orAYu?+C-n2rl|mtDaVc9n1ZRA#_7v=DZ|03oZhL((CGl) z9-j6o&FCr8*{Pon>cjwQ)bS~yChEr+s@4grqCP6WFzVnrDx_8_eo<;vm?_$zsik%* zd$K7>XzJN;s;8D}lSu08VXCRF>aL(F`KcYGM|3Cb$2p3ANJ-enx!Isk`4 z-~(`AhOkB;%6yA%OR{z!&dt~SNsPMSLpiXWwO%W>W~;VtE4Oy5w|*TNA-s9J2$Z7j*QOvjd- z>s9QZK3+?l~An6 z(n`P@t-hPHal3?8ss**y4-U3LHL6Le=VQ*rqMSBJJm~ z9NMZa+-l3%x~a_(ZQS1NwahKLf^3plE#CeuuIR173X9h2OW^`8;`)c+{_Nq3ZQ?$z zf_mA%ektTuZVF27;PRf;`Twouc5a(2F1-kAQHUPCf*$@D4BW7O(LhFY+d@@-8p)Hm~zOFZ4#Q^iD7J zRM36maqAqFZ!nM`Qq;H(k}15?}@Ol=DIKZ)-Qp` z@9^oa{q8S-;IIAhF90j9@6Ip12CxBN%mC*v{T?s_V_L!fY`iwG1asK~W1jv_Fb2Pd z|3Y5|cQ9>ia0Gj>2y0vd|L+K&aA|;W{Gl)lONI)&ZVSioTD69a4#TW}Gh2tS-{6UV9#7qC!d7fX%=9yG-= zmP8&HTX~5w7?UxumBCm96;ISd7p!Crq^D05$F2g~28>x1lo&%vCbmz&=332oQoYXg~l&K=v?#J_o=EU_v*4b2z&KJa5uFctKOt zfE?+9J_|q%_}?w7UM^3nR9pc%S5rpY!CN@8DEz}Ackv*f@*_txSFNN|Si>VbqIx|t zbak;4Zs4e3NFA@FM`-a;!L&Pc@grva!^asZ@*J@DWW;Itoy@*y9xSOkV!1b|5kW(}T`N)`a0nL$&q11&EF4_v}z)j=Ac z1V>9Es09EkXz@9LbQ*^-EB`}S8}(R}MO)k8C3r(opR;N4S~>p%B^lN^fAmwwUQ`oo zRDd!Rp#Rn;`2#=5122>{Uk~yjQ<6!GfmkCFXlt?i*~2Bbbt?ZuB<55}d_iLq2S#T# zX!A8hgfT>5NDY28E%&x-J68a}LR*KzH*~`uX%lV35i0QQWOH6+*J@Op^8tt#AVWh9 zuH-p&^=VVmoB8r-0~=`bvisq5Tbo&Itu-fkvpzfqfjPEV>vcl#wmaCjZ})O=KSg>I zw{fpDB~#)`s#bJEbqHu}1)VLvHs0`1-Y-xI%Q&QYPSL3 zLS5p!!s|G^_e=y@gCC9u7UFuv7x)IlI?p_*#w)~Xa_-09G6=_e&KRr4&xRuaBFd-y z9jkD);>;Y|1H_l%#CuHR(){bbFw5^{xpav`qAt)+G!4f)biYHH48mNoY|^XzftMT= z|LN3IJ;Ud26lXmT^Z3_#eG`NInTmZCll`We{n%GM46D5iqy4D5{Sm{x+5EiR11{Z< zjosfp-sU~l^ZnPeeGLOX3;X??68;VwKGGxp+Y5fzGkymvzSKkI)k8iNIsZNu-(pK3 zfaSA^)S02tDCU;`uo0`V6=Bq;FI>HhB1e($r$?R$Jw+{8DG3iS&s0WY2MFMsp5$n!JoR9r&B z;=?7J#3F1GJ$QjGSp&15#66(FAhkaV{(`9Wqadh+IurA>Uqk(mMESo2`~$>4fddH^ zG+_z`4Ckt0c#Gfjfdwr6Ob&s{f#~5(@oYNl{K- z7!v!m7Q|)Cp}#cye71G_wxC6f2sRe12^Vi(y?gog_4^la;EF!){>zC|aAL&{fsVYS z@bN)rTmOj};q>1XR{!2r$~MrVFmDW``V)pq9tL+Z{go3~j~%~!uPcF@{Q45Ag7*+q zy+>LrKFnQ)lDe?@W;`aXyb{YSwcIkL`d)euJ}$*1$;*%OGw4he zt&pV}6f(2rnG&uEAf4x~fa0DDnD}SFF^(#cKRk{SBLGGvJ*Z5N(j;hErjXzRihuBcf{!E05-8CD`6SH>SOgmI8WQfIffpm% zl=cX!1d20H0T@j3pnBp6fE7^xDeDSDNfSsbZSO5%K>vIDjS5>?kHylWOK!p^N{)6t z7~+T}p7`KoSpxGgijB3HqGkp1n3)4SxP{XLI)KF)5(Y9#+W|Eb$eyVDnc|Td>|x=J zrLtY1s(u+jhaY_2x$atl&LF~GQ1ivH&VQNa7huwo26zE>m@-&n_3-(IN_=#p>z{|S z9-Hj4%}$JCl`zifY+BQn$m4%J#xX%YHy}X33p)9S9t2ovnKVA?X2VlymCB4ibpHXv zDSxCO5eyprv7%Hy7g$0ddKM5x;H{Rvpz$k+$TRfOrKYT`FPyRl0nFPruP`bF()IP) zZNDA&E{7EeKAmz$*d(qI5o0E(G~4NSV9w?@K_ftNdx19 zLi4EbY(c8Zw>0DsI|u*}TPU0hdDufA{;-EI90?132Sl`;@Erz8;zR0j8Y4aticyqe z)`Tb$B2MuyRm9>Jx!6T7eo--61j!Y_sGTyN5shh7;~HTi#*dJZjWcm$9O+m`JKoWV zbL)w9h*}858iODNTSNkh zT3CY+&%p*KhjPh*yu(HJD8vl^F$_>3(2$Rm16rBGY^b94RpfP$**%hxkV{3ZY3Cy`vD9 zq(>oiqasTTVi2wn$TZ4%h;+W=6RL#gFy9%^dDb(X0~rQ9524CQlvAF{&<#2@*)-c} z6Ppp0=tQXr(T2d09`J-`Ix;zkNo+Kem&_zq1`-THtOK04$S5lG(aleW5}dBshe=U7 z2$c?kr7j&vJs@$2a;Wm8;B*HwRsZPYFQ1WS&UlmAL$0`ti1XQ5SEJU4rIn+?75){2$2kxT!RKNZe zuv_eFLingpsX*eGXw|AExjG1vqE(}gW#&MHc~)oYQ=?*itTN+@)~YzduAC_+W0e|M z)1DT!eH<)83R}*@CN`s>$Rsek`mMRXh8@G;gj*{c%FEvNAF$CaZ%rwX$vX2npq*?@ zOq1A$rWU%&Id>TZZC^24NmY1>U zUFLX^TUVkoHlxTqn>O=N4*#zG7r+4)@PG+iU;`f*!3kFIf*IUk2R|6X5ti_TDO_O- zUl_v~*6@Zo++h!Y7{nnK@rX%W;s%%FI%JAu@228ffdoUN^7IE{!&!*%Qj(x-0jEaO zJ7Y`YIGj3;Y;pgw%Yv>lxuM-LPWft*6i*k*QI_&zo*a_u8U&FC@kc?nY|CjzbIM^B z^O)fRW<~NO%YL2amC4*@H;Z}Ak^DxnOdIDn-x<$&_K2O)Ob|K;md|h{tKdaa zAakBlY6D$pM?bpFjfP198GUF-UmDX=mh_jxyy;AT8q`nqbW13W+EIrZ)v2!LsaI0! zg&dW%dqHjjS*>bY-~W1%wN8nvpW)K#`Um?ooiw5gx5PJga;w}V;ZM}l63;5 zRFo0k9Up=%_jtBIuFV#P5~5D;I7B~9DGYdiv_CYKCqa~LHCPWKH_z#3JAtL^V&5Cz zWwiH6T%Ac*$O96u97s&{;fPP*1IGKH#41{8(|W{Fv?4hfpPc@__#X7(sRHKVU2lZ`e3k`_A{yc@9OLuaF`2aM4k3 zyvj^MFP+K|CnO5-3Sj&DIqWz(T5A#3*SNx@yp07Y*N|8_$}kNamZbdzE*R_@kfUWHv?W;fmGY9rm%$i|MV% zkYNx)D$@|SZ9@)s&h*j|lgOtbEU|94vgPB1n1=7)QE*`L4Hd!Itw0>{inH>`^3{jg zF`0Yw;@&>@pipJgg33L zVx8cLyZ%lp7>db8uTE}{%erZwL~HY&gT`?0AC_!WuCMZ*Lki)^9heZ?2I2?@fxEN~ z37e^sf-L8V&?R6jyk4W64r&mb4(IBj5C~x&0LrnHE}Uio#^6a3{AmT}PY4eY5gEe` zNljv~!GnMy4pV3mSpvq0%((n%o%9grR7nQ&P(XNaALNhb24TF`=@5L$_YzSRS1~Ro zvDG97#%j<2AxZsw0>*Yv=>V|~1p*Q@QLZ}il{j%9cIlE}tZBMQ8)l9bmys1|FC=)4 zR{!2X6=aHHoDn2KFtL2B7GNymfNBrviwF1c7l&~W&;rJ)V##Ka8P^dAt?`XI%@tLm z{mN;RuyGr@sqNwku{v=ajZ7S1%!BZd4cU<(+c6$@4IXRJC*DoR|^5;q^RHCV7q|DMBRw zswM$rmy~fPdy*y(l7SNP1h?cQebOj*E+-}8Ce;imkJ2fhQg;-x&!#LXq0%a^QX#4m zB9>Crni4C&5-b%_Dv?bn&nzs@5-lajD}jzG*D@{N5-hcHo61ro)(K>_a){`12ocjU<5DqeuPw*&F)Pz44O1Zqlc_M%GCMQh zIFq#)6C_NGG)vPoPZKp$Q#DtUHCxj)UlTTCQ#NO_!y@w;Me`%<(ld7x)j-p_aC6Ui zQ#d=)H?a&jJ3=>yQ#l>2IPKy%DIz(SQ#$pmIcefKvuQfB^AM|ZAT*PrxKlgBGtz8x zjIL86qEkH6Gs?g-Y|K+F)e}B@jy=6|qS!M&@6*)C^BpI1DDl%jZ*4x^6C%*_KMQm- z^)n;|^dSh;KpPaB0+c_^(m^MbIT3V^6jUrJR6_|3LN(1oH&ifog(VRpAOA`;A4U{J zBc?;w^FveAFZkgb%{;BgYEw+YhTmwwM!D`05-Q`o9UAUqRb^%{^?Ff&}`wo4Li`y}BtY%4o4fUHM2-3yOD)hn2ATh7b zF3n2o=rq&JBM9x%bZil2Es)W3#9Z5AMykQ-%({-xYk5BkyK$9NNI}y3tzh;sr-OF% zBVOpG6X8i~f=%8SwWprEv8TOxz5zSkt7x>o&eW4z9i8TW;kwieEAKZ>bPE2_Z?4&# zs|)O5Z`rHC7{7^B3uE*yxmimcoX?)SF7gFa$=-btj@84xG3Izzvs7W)b?stkwRhSh8TY?Bh!w|Wb?l6kH`?hW6V)n zVftP6y9WcbH`E_(^w0H@o!q_ZJyYfvlI9t6wY+NI{NP~K>WF3L!LBHOQJSg87P<)z z%|mQT#{}45L*ZA4q=@C>uh{S)KGsD2V1pXyC+HyvZ?UAXX8 z6_U^v(<%z>zohTqzjI1)`JH+4`$Yc$@9kU} zq*2kY34oVXm@ow7DCtyZ(*Cr#pzoE!+3o1)RGir@QhQ zpFE9w77YKxySt;1hn$`VByviPH3BGI0Qy1> z#tDJ;nFwy<2(+gb%-ji_ry0E5A4I^#;^1W&FuTIU#!^+TK3N&!T`BGqNRb`weIj}m zcR^0lXL8|hShwh<>IDtp5}XXks<1~nS^TIb*5ti@nQ+IBm zlX;&^)v6kB(Nc7mSruVh7WUezFqsVbp$cQU`eX0+4v#A8teRgARll|KFI#Ga$f4xR z4BRjC`Lk*j$wgjdMOlZ|X_JSlJw%dg*PCY*iDz+&>oiy{H;k4v5ZBf#UNrbGdwLl2 zI{uIh%xb!$t2y+ji8XG9LhB=5=F)e&=|C6{ErFO5)SVEmbmJe!xJ~ao8a*!P)#Ly( zXF_&owhiQM_!Z5Dbw3!9(fetPkm!i5!T|?zq!W8mIWL+dHgJh-?(-1>O(2xTA;^VR zICi-ohom}+@=&NOTfHo$Z7e!59;va#x~^Wf+21ztWr_W!MVJa9g}v@226hszZMvX{ z0dfJ<3p9YsEGjMtQtu`)5&(h=!EX=2(6ON6>LhB(2dv~#k#y#%6#_JANr3>u)(~{h z?4N-Y0}*09UcNoDSz-@TEf+h4l`q@BTDD$EwS3u@8E{3I=%$vSq13UZJ`Wk5rp3(d zq>=z2I!lwOKvFX-Tc0*DY<`jT{}^2t8{2y(pseh~=iTek?W-u1n#x@}rWVE?@Of|XS4R|_Iw z*)sb?p{*Oug5og*tAA_lLR`KjFv5H_(*b7~ts7fYih3#6Z{~@5_rY}Ib0u5g7LPn2 z=R0vwE4xED&Fv~RO^!^zG>xd4UnO7%3oc6s&C(bMV&)I=*3w(${Q9);i>ImWUCtiX z+dcftA7Qn7(Du6E=fBPOXtUp_m&?-KJ@|GHM#~zO4@4+cC4w9&1$6efxJ$m!~ukN%H;FbP*H2>sO;p*zhxZzY*uuvcR zMYH1{KSX(}7{T7HBYx^(PZ`QBhQQz=j_PwGLF~$0R*;QzFP&lES17^Qc zf0ZqzOzqjXV!%q)`}=w>gamri@O($z$~8f6b>(Pq{v)^&7mJp_*E?V^b?symJEUCi z28<_kChQkE@a2&j=&@r4FK`v z_eK+RXthT16!gbay!3kn@fHpwGpJ^YMe`QHhSE5UTLRGdibp>2I~o;6Yiw1?CZQxe z?CleFTZThg*gPkwXl>;yu%=K5rHH`PSxDES15jmPyXQ*){Jsy z0;?0Nml#DD*D?C2qtGNnhsC```=5C*K}}AS94MhLZ8WoG1d&;kWh9x)fF+dbJ|aa< zjdn+u^H2HpI6oAi8>?UD!1U!Ea>Cq~m#&M%6fEdkQ`z*_BD}eA97GFSPUo63QEyq= z3p6xAi-@aGd@UAuP{}OXHr>c&@K=ORi`<&*_~&1XcA51|sUc|s#M=_Lx7&t(0?&wX zPL~A06-oLjQkvI>XE!*EqV0T2oUf`cH2A~o6jnSMeIrX4wY;MzKBk(*I2LER3^{&< z&mX+bz+p5faZbRj%L*C)%}gEU%PBW#c$4j9C^KHVZ9*HdPvYRwuqy~+;CvmrWcUXV ztK!z1PqbN->xcffZt9il+xod;*k!p&{un6@7(YX4@3YRBs_b0>eI-Z}|U$-;$u}_O1reajd0GUTzd$1)j-M(U^$hr2$s5`s$ zlf4^p`#TV-%ugAn-n4S|d z_6K~5FL6v?Pb$3_^_+h7=4+jTqU5pGjE?!=ppvTo^o+5&&DFeBqPq7YPDEhxyq#== z_p(a|me4Y7e?0Dz=X$))8tJll@{;F8h0jJP&KTDQ?j2?0X87NrQWo1Yc*|Ax#P?Ua z`5NsnEam5h-Hc#tzx{>xUhUvLmlQ6)gR<`uBnN1p)~@Z4pZpCf{b`3` z2b^}}{0%BmCkC7ky%-O;82cMkn$pk+yqYsl47^@?_oeL+)YaZ_Q=SM9DlK@&H{b4l z9}jx)DhO`AKN;7MeA)_o*YJ4tXI%2|MwS2!puL07CH*ULv%n>8jsJnf?fbtZahv>~ zk+?OcIiOWftvEpUmu?*D_tJ@Vg5+&}*tiThXG$Wz_i!GB5IMgNV&9kckK68FIWw!~fV zKa;oz|4ZT?`0pj|x&M&3Cx^BV|9gr1_wvxz-05G5``7zY_P|-R;5C z)ARpN61UarQ2n?0@Bb-r#~F>6nGQEpEH}Dt4}Biy=llOUoJCU)QI z?Vm~iNZh{hl7Uw{*}1b0&4~T{3~$> z;_!)64@wW6h}5l_bFaGFS# zttkD9q|Im+U=t9E_^1n%aj;+$f|U;)RLe-X6QxLP3(6 z;P0IjR9wfM)Mwh#4<9gPN`IxB^s_LgX&ZgQOFt(qj3Wjifu)ebs$?g`<5@yuWUg59 z2RNwj@b|J=W>cb2oX|DH*pb_;nR9g7WTWZQcBYdhI~RTzODD7OmP$SE)5&B44Io1j zX!6!y>2tju4@#2)(d?3~^5yITkY-`EA(?ekOTAKKC5E9g%_y$DiZ>kK&Pt}c3x$e$ zqNFh?-;%pS9p@QzRmH9{kqT*ZgO^}_M>=u{Ac|-wk)SR;^q_e^l3*^!8XATMbK6EaH{) z8#ukqci4FHSa9C;|D?AGDl++m|I*tND&>6$7I1nS<)g~+PXt%BqyaY!hR95$@CVgK zOdOcb&)yfPTurh(_;n|=B&#MerQ7F6wGsbCZ_DXBUP>xq%s9j8Z8`ToyrypDQ*=&iRO(o#TIAz84rR34lzP)h*$uqw>Vi7s(pz{ z`bHO#5xbWR(^V>$pGH2Ubvwa{7w~0DNls8^l*TA^S*lP-F!+}<&2yohDRj0f5Y1 zWo7b`MUg_-5ejhKqRKX?viN{_PJdt6%r^Nt zVD=bvKmPT7Z15LExkmJZs-V}$)cqyQ%(V_$ouq~O;MmL;mxe!sZ9EHVN9a}BtA4zsqzRmgAW)vU_%rVB(lB1pU(UF#$>HurI?#@3{~%S%(}ji^`vu-^m! zBHf#mliRG!^oJ;j)>}{BPLvlL3LHg&u?>k}A{HDO9QksDckcI40S8@x4od+>ozuP? zB4Bkx=A8?Tv10`rINFP5hs==f-NYlsBa*rAm2`G#~Db^jT9pDb6y+9$TB!*G5N(#WR76RSp!Hyx*n;7!@ejPgc37+qLWkU zGh&iM#0uAh)9dpdpas{5A&vZ_&olX~;$XkdcqeO3?JUmYrg7SkuJ`H8T`t4pfI4`p-ElI_I7173(BKLPH;*Z!c&^ovJI&BP)008 zrR$C5kX7ZJZG@#?4NhP00qS&U){4khPt=lrRIiNx;c#`qx=!2^FtUwTs2_^{#`O6x z-RaMMzc&gmmL(&>Tj1^0Bt~dMn0O)*@?=Gx4&`!7}aTrI?`hd_)#0fRzVl>8LX(+Iu*DT_5Z>`}Z5EoQ^?kRO}B*APCLeVwxVBrkPKRtMChZqs|V@)>ox23DMi zOxe)OO3O>&_k{MEN(;rh0P1GcsJ1dW-Ar{7)sP|ue8*C1=40+m##;|loyGA8v5m-P8rJvwqRR|56_ZTh~|1S4F@X}dN zz@^GY98C0&z76nwstuFKh>JPXg>}YJh2WGafCZ+(`U})>eLHoVI@99CvM>!?-zJf< zqqnqcI}hY(bf^9W9f3l}m_;4)1L*KQzt}+C7u?UF3AYP@Q^evY_TYGJ@jsr4MYWnC zynprWoMQLz4E}gwSFx|WB5-}1`#<#UYCOz0Qtk-cCahslhLnVyZFz)dFbot`r7QG> z{)6|0_;qLURiRC-whx8^H~oaB4$Mns-a=(rO4p1I9Zqip{?gk!aC%!)7s&IM z-u~$eS_4=fbN{8cPm1G=97zs&|I*vD86rnIk=eBj@L@|TIK6$EBsL$({#DR{UJZ%I zOQ?v+g&C~7!ydG6!toJmsR;gZ8HioVRC0^+WhR;N6LeW0Al3_wjt(r~2b)`aQBMm2 z5wvp8u@_u1UFf4-Sv;M3#QEeLrfZU3&L(=0vbdZp$2o#SZ*kV(?zROya){N+WPxJm zEdP(Y&7L0IIA9eigp>=!BEFX7u?rT+m0)dh76-6#JLp==>K4!NU2cRBd#f5Zf9A$Z zw<4w4V!^Y670cIOGilUDzC|-WT==N@(GsaS%Im#j@C+x52Q)A`aB|P7=tI&&lk_tk z;GoAd*ETW2mzy><6MZqsh#*+On;WL&@hY7=1tpK`>eE8w%am*Pdq#kZRVG@piO0_` z70SW6{PNQiocU4?JIvr0jvs|^B}fqpRzwOIwmz@lQE!ss+1X_T=%9VHFm{^ab1uno z8Azx+rmg4x;L& z5Z5=bq}TxATY0b~6F9wXrNXY`k?}9R9a6)A$_P+`)7t z!@;V_7Uu{4Hm@-*DyWlN#zJq(@mtxStZc`q5}T*2(5Z|%qzneeBHiG$zf>$)^r)T6 z9GG^m<&Lo~)27n~>}jG5T8UH@1+2|#nvyxI_jtnrZY0)>cfi6rIz&F5DkSM(FHam1 z0+y00zB!p{JG{RDH!U3C?o37nbBUu?)yn`xuaZxjIipwr8B$=XVel0UU>+S+gP4cG zO$rd$V0k{}Cn!rawy9L`uR{*06e_D6AE57M=2D)=`jv}&e2a5?iuK%=i1rKT{1nT~ z9`{cYmMT=adnyx)7H5^Fo_G`I&qjUmb_1N@c8bl-8Nz`x+~&q${n-CtxTj0NS{RLJ zmW^P-CZ(*Vm~VCKgLRZ$m9$#*Xt;?cPPj83iLJY(B3hi~KPwnYn{vrpe57d${piSL z(ogvDKE#4k4{@Qa2oa|sMV$;$%NPLwS~QIrHhW9!@(=4gYQonoNLDnU4-Bu2nHbMR zB;~=2ctMoOCIj94Qn=+{*&prxZ41kUTh&x6%WZ2vsQX}VTJ3J@=+CedHb4yu;9dY) zArSA6lrDA>fItc~Ie^uQTzDGmk+ie5RBUIyM?IK!>$g!OgJawd+5PEm{Z1?WF6AV|NLubH4P<&v3|9aP0%WwdTzv15Qy_PYUK5@eWP!85cyJatsqtOw1iti;wR<1V)&wb! zC=UeP{7rdJ4bD`j1EZdXx`D>QGzW7P&cw^g`}!Icf>DFC7k)rl@>>n-gh zsn!%nti4Dd&d)79rPWCUslPz*s*$Dx90;a~;Gmy&_y-7J4d1Jwa#k|0hem- zPd(D}qS8<2MN0Pb&S}><)E78({{sZ?xXZtzoc9oCzqOt}f8-JO;6tk7uxxXPJ6?#S zTy!7hlY1*Zm&9ZzG+R~yHh3!yKBlRN$9)6kAn6(UM&xCAJdZleM^sxnJ%a60;XY1} zE;lNf`FZN9x3Iu+5_W?=KFw$Ogku@M zN>H%c{lt^sDJ}+&;kGTE27;?i?Y;-jQg3?wu`td?S~$cnYz~|cx-s!1 z?t#RnZGD(F6PKaAm|U`5zw%fyY81|)dn-04KK>9Zo>j&R44Owvn1O{aZmO^OP|i`k z;-R4$b@{LXs}icOLA)YgKNVl!Hdwz2*~Xt#vop?f>04(RL;@NrWjFCsYXj@Kf^ z%K|FF<66)5T5B9GS7JG?QHfN>l(z13xdH+ZVAdd9Vv3AntUd*R-PjGBov~2r2K1?lA{Ou5ATR3KVRf;z@`6 zsQ^2=)SG>sBBj7B&E{LE{ed2WWBnrjC+#%|;RZKvn$YqFXA;LxgGs?cC^ zt1oh$+hu2Aa$7NpRz88jaB4?6l~uRWW^wA5Y6g$(SfSyxoqD{$8Efy{G;>4vb0yM7 zwOt6n8@7RDv9!HjhoOcxQ$_?Jst2gyg^HXd9_j&4NO&2IuXhdWVD82Loy6T@^3ub; z`-=p=5&JMfjAX#Wnp^b{4z;8yNJXjE$g3Ytgtr7;kzH>#0G6*4Di=OpI?j~pez#j) zx_Yxvt(BDkySp*p$U!?qvPe74w6R0*zV*l7NFzkpD(1{^p8b*vzy%{IZPvfBuf~>+ zO>g_??Q^=>m&k0s_W1ttH-1pCBe~FoKRNo5ws4&uMUC{c;WEvvo~|*stWCIb%|f~8 zkpzaic+-OQsWgZ_)l~+ay-rgA)z}@UG5KV(vvfqKX+H~>x7C#qUqi=Dp2*nqOrB(1 zRjUXKk=_xf2BgH?kMjQVOpzvxz+H(>Ig_V|ESPQZi_aYEc{%-;RCg6NxWqj)oiE0! z+*Or5s>hv zE476>rfFV!MsJD)^pf=mOLdLeWx!U(+$tcsB47))ii>K8IT1P&P56{L9^In|1x z86~Dy=rKBz9(WtO_7M7*q_^u1n8ejF-i*AN_qs9l-Ihl)t#^K{ZF86Cs+u*$s!zI&tNIcvBhW8emTO|Duz9>*0KYoVR9=f`PZ#=k}MaV^(U(544Y(a zz4x~0T9Jb`38r@M?K0n-yt4af(LiFK<$rx=-|B0pycZLJa_>->(ywd<70`3HEl5lE zbArv`VF)=fd_H+?TV9Iom?7Pb{gNPgjdTZm|D0!&q)&2=idWa>@;gVSm*^!cw3CUv zw#COJ>ZGmu(*C##&2sO!Da<`Qsg4=gTF`}xCdL?Cg==45**N2;Uim5AxX7YAVJAt} z1ULFb+FMTiWyG4@<3-v@$d41*4VP?MKa}@@nYHis{N35RxG3>fuR_AXk*PdwbirJu zMFlHfH>-s|c`jRbMlX(5tQVv|2GH7KcNHfY+2D|;1)@mqe5h)qeFnGU10#>WqTChU zwG8?MQrm)XRY}jE5Fz%l<~PE?1^`->OPH_OAw_aaaQGM@e1dvm0!6qb56IW>W({^% zj9O67sX>y$y>{PyEv6a}8XS=!x2kr7O*Dr^@R0PGeMTr6|9ShZeO526!AEe_?D6{p z>vftH#ZD|g&A`jNa2$k%Zs}ZLBvBpJO(qISC_IFOqNcnL+Cnvk|E(I=&UOiHg9YI!sla87V-o+ ze;_pjn3?eBRjxIcff2B~a2!QN(={@{>|Q zz|)GBvD!^;Cf=sixA{8bT7n&VYM=``$mLnl_D8@^pA z)Z9GxC*O&kZ5w@gKH`?gIV{kEbBj$2q{99AJ_#y_ZeSSYAdm&)UbZ9T?Wij1i9gCM zVfd=7`TmlSdVM1yQ4`vDmo{0{n{r6wa+bIf80u4;Ritp!DC>qDTG$&)eQ@Lr>b|b8 z3|lx_%D=}ssYyvpc=|xd7ugrDo^D!&JZMYY{c5H;G^L;yz7h#CieR|Ro0CIje)(od z7PE>dPc}k`>elF9Fgz(+ELPk)5)Yi7bpe8FCaJWDNiiYN+PQ0)XxM6X*lCUzt*#6HIN)XZwj zXe7y!z+Y&M0Y-JBlc5i;)|(5`)^%=|c+d{a%3rPC1wjC@f5cYl*w)-{_eV0zU@qt-DNwxN8S%}30vNbx{*!H&7`eQ zk54s3woN9@njN-lkgLoFubHONee&K*Nv+_pfgUZ5?s_+xwt>GH_EHBeT_rX=;pS@{ zt*qMl{J5$+NhtKUI`#HxI~Hg1dndOB9=>UNdV0rt^*{%EFw5vf2yzYoIj})U+tf`2 z|K(F`mBINE)zIHYC51(-say(8F@j?0!(E*7&gH(tv-p02-_(x_w|$BU6H<&jl$FAB zsVrP>*?T4mMRVZPJz|VMMy};Ml&p1LhHn*}=g5|3jb)DVUiL0w5vZ;kPj%TfdUMRC z3+^?KwLN{KjJ7_kQ`%~_|=m(Z`U99;QAZ4yzIOdMW=7*4IAWK`fax5 zFYF`fPh~jY73AA1sdNN3)Z+)aVIMOw9AkWHU6PoD`$=Q(uA0JEgoa=KfO1OZQ1!2& z{!#D1K{<^u$PpTP>(aw)c3n$6zC~SA-uyM_I5ikXwd#WFYivNDgkH)v{f0Q^>&=S; zt8Wpf+ncXc9!+T{4J@)T{+KPMJKy zMJ0X}i|iHh)|=Ym4cVM2V^pJM)W=$;C*zjA(n1(HULX%4k+U>$fHX;*G-J(-5KxYfP_(M;}H}>rNFs{s{ z#5TT~s%p+R7t%mXS)KsGAwOQ46|!V-Lx!d-tg@$_CqP!1q2~_0{>FfbJ5E+?q{qFv z$3|3kj8;HsMpl}lR~)l<;9T|?K~9riPQh7D_Ax5ZvdI~d6wy;om7-HcCn{1kL#{onqA!%SPup2OTD4DEj8wu?-l$jBKu+#uKrcL@CEY5o75hS- zL)MIW?6)rj_OILf z>K4_6_Vvc`f&f77VyLUyK(+$3b40oo zI9w=x!9PCYi#+oPbpitdN>RfwAzRL%OSLG8rZ~9Yd#Dz56F2T*0Xe!ITFUNO7E{=l z0nndD09Yb|Cy;SK5VERpTo3>w16d5509SnP2EqWs5CITm^z_vWn#qU~bYMofY6((b zIp!V-x)cZ@$rE(u+|zssx*+I%T#>jaL|p2{1h$2)-9qj6RoihewFOT%5cBsC6eM?62pWgmWK-NV0&+y)hho z3mg|7?skaiTbTwpgg${FFtsRWVGw#QBy1q^aCkCdK}+0oYIsJ)ZeIodQAJsR4RTXH zd5Bt|VbQn9j{&MCr{pZUQ7UaZjUyw2bwq)MxY>B<`P}G*O3LF4V}8O~rNU4Qkj^0h zW3Ch(A0X`u(ICMZ>h7Eg77p*Gi4_7$ojZdRMr9RsH7Y37f7OMRnM78BV|2WTC22x@ zazhvcE13dSxiv#Bn}JJlC|KQkA6kG#g^0LtF;z(;!&%Syn`$=;W^8X5FX0^E4j6re zY0{SPm-cPL=5ErqTvfJY)H85Jd6>!j5*h^~#}f88jk53SxtVFF^wRv(o3)jjFpu#u z2@9}+Fwxiw<*+~}&c#7|f+ndW+&7`_?@wnM%~J172`t9bJ;j%;Oh7{y$Ocee+M+s0 zL8?f?02@fQNpYs?V6irAF|UOYxbZs>0gwX51gcTYPT4*#x#pn~kt~Wf8+d9L-|i2D zlb{<58-2?i00;xEEzl7rAkMaN02T=4q_UYVsN2E-fU8ns5ktz-81p2PjcnW}-nw1*iP02HF`q5)P86Th@r9zn@IE; z$tx|Xh|dF(>HOctQZo~>E<@+Us*B3_wA^DP~sn%?MBh391De8uKDYUUBRQI;*%uH37s7b4rs0Xh;S~f) z1R@P@rKnV;n7RSqE~WULfqq)0umIH*wO=3PY*TfV(`{bMnQbD)D-i2h#JWaK^kO3U zDp!4j+rLQTxu~K~sN;ny-;f%59zvbN?M8BSDkyY)?^Is>LalKgYK&8T8#(OE6{5|! zhxqFkr|Hhc+nwZ+Nafuex}VwC6VAdFyZ!FnpUme&0Io zCcjwgyelg2h(Iy{6qxgSyH%UEZ~n?At||-w7>{F`sK9jaM|sUiaBzH~RzURHCuu5v zmzZ((*S)XmSBWWj`j9?eo!!e}%D{@P-%*fz6k*1}-@$G?PUmZi`eFg9bVI0~)M0Rj zPI=u-MV+Jjq|U1+pvGIrrouxvuGtoey`~jgpJG{aE{mvys5eow)kFt-6ERV8rGOH> zAI~jinqwOls7_C)Z=O)SXZ7Cyo_mKiukm@v*=s&nQ-56I*e8Dez4~7FiLFJpgAx*2 zVv(_``oBFv3HA^g+;NMl{~fZReUvw;HF4GaTV7gORLBccpH9;@u@X&0YrFBCh3 zOgi?W?6RM@)Pa|U^jbNuC9*%DO1a^E+*Z(M;abWUp`&{DC*j?ox^wDA8WRVFFj@Gw zm~8ZO>gTla*yuKZt6ZmL;M!gKaAXP^BiM={yNuG7EfWH*$Mi3}|IRPv<&aaom<9 z3~`gJ!;P*ni9$mvz(DFpcU+&LI{|@vHkUgqDjo*0%vKf?&tYEhhRk{X8Os-U?iZ)D z8d2&tJ+Ry;Vq6>#fkdqD*IO^lJ%okMd5HVCxSB)~J;b2#f{hnK;~tVPhD2`6gOo2M zUt9{JU5ffNy%h3Pn2#0Lzr3C`SN`Iu^4(Ll!&7bCQ+?f2L)!B=$Ku|_Qw#M{LgS;{ zUavg0mu_OLqT&b3MGJ3 z1PO|_&rM7&(l3G={TDv|@6xUHHEpFL903}(kZ`ZB;pd3HI^f$0;H}a=mkQw4tppkY z4TrfBqdzwfe3N8G4Xrj%_LjiI^sW-E9aDXvTjdF!kH7l$H53XJu>e z%YdKp4oZGLUs077l7qh^p9{eX^t;a!a|=75v*u3@EHJWjs0B-KFc{@Rf6S-ko*N&fP}42o2mrroCi z-{k6*h!D>)u&2{Vgf7h0^eH&%Nn0g9cCV#ttzEz zKE-+qO|`=htyPT2cV~+unJ+RwFWwc@U?~XxmAEe#tq}CG7QUu#5bIg~;jw_;3!bdB z;A}~&oL+S<)V}#naU0irvNI%7=2Eqt>ooU(P6YFzC{`1bOSgaIn0h%=hqzqB$;n}A z-oG-xj)XJS*6*(iEU|b8lXy-Fw0r!Gq0$v?&qIH^dz=Z%B2X#iXowGL`l-S=}P}$srmPxD+8~pn;JZBWgfl#0*hhzH()E7Ny zXG;@3NLMvRfIR+y>f{@n>P(Dj!`e=#@0dHoPDriMJVS>fFkg)>SOCTO0At5pzZ2{2 zC-;mSO|5fbWXF*+PhSps4}hQ~YoC)k32Ajt5$g)k7#3gr#EjNI68E+aw9AOySS^r6 z|Lw#ArMPL%d}q4)#FFEWC&3l{^#ZdMFYU!^Nnd-a zx$jZbrA^y#iCg4X8aeizUBI5BNLYr)v&ep4tb|`ij(xGn@9R%FqK6efo<)yDE4YXb zst*N!95)}fzx-3a{j77`_VN11DO}4YiAP#+7)viLUUig$7#*IYLC5qJjuV;9GTs-K zKGxT`W)uX`sFc2aZ0^;uX078y(jWRzBF|#&#OTTTh~<|AaNoY>uqNAP`6=RO7r*If zy}st4D0*I<7*vQxF&g=E^fwPASd4)VAFWVa)HV(svyhISRhdo3oj!rXf|0p&Q2j%4 z@(4Ktqxj&U)`yxTTf-G!GJ6%N^qRCv%pzJCAL#zbh0X*=EtT-MsBY? z)!0*aNDn3xZ;D8ZwP0Ze(59HTfOT|0nvZtu(Olqb>FC=z&MeesyXV%yQMV7%PFoxx z;j_lRO5sDAs|=|E6hxF4X|*}mI&&hEyu-S4xC|ozEip8iEXZ@1`i&Ti42((T=y;lX z&9zSyg)UL(E{x+UYF}!NR_5EIEEW9N1`rBM z90EGhAaWEy8gR+74MfeS6P#BA9+6p8cLN+>_L;W1gs2a zG6V=vVgU@Onc4<2fPcP#yR?2Z5d8IxQ1o3l1Y@ahfRhqb#I3t=_{%9Nf>eZ1Nz(G_ z^>t&HIJ;-T^5=-%LT|6nW89!>97Tf>Tfd4!n&+XpKC|7L6;35@)Yl8f;BY)5jDAZP zPn<@aep{6KAG5*3Cid$tLju1DNjuRbM+aS;Iw|G#ubpdQ8o# zpQzjx7>=o(8gnX8Nf3Y18<@jvH_03~)RJwLuvYlp4C6Y-AzMOll1?S!96O^#9_De4 zuH3o63#(awL$WVE@au3SGaSn`{TcoC)zK5r%+_^cY9u29j85!F%ZRcm`X+BF^g4nS z+vQtCjNeT?X+G!;c1IRCniGh4=)9%&Z||ha4Lq{eDfWmiKK0#ED4m8&FOtf3S9#kW za-Q&jjH_lV-kCb*As=EtJ|mK>nsU?9efuq=Sq$Ex>`%d}FzonWe>#IM1SvF047>)NJ4wP(?+!ghUlJ4WMVqeDlSfE7S%{E zfCb6kb>asuluE8y@H&=XQ!`jsRE(;f_A!OQ6#>0B%C5B{&@{mIDJnU`v#Z??y}qeu zU-44YAKgp4)k`NXrpvVYfg3%`dsR1y2oGrKUy+Ay!JblZm?@diyYf8fJgG>{DFB1N z1gRPk{cTxiB6zpD?H4(J_E_;7#+hF~Tog-+FGfjpO}?qRED3(vd!a$E`@!t0 zszdzbx6K1~jRd?`B7XY7;V;(3d)Xx^aZcQPTU&S$)S)49i7y(k)EIO#+0p*{>zBKw z7t{}HitX2*OWxlEc06u01}SB}>)6ZccpAX$Aa8yba5GJPbvj<~XlMv~vZsEsIub{z zriNkBFt1Y6{#sXSB0%7x8DQOb^zEDuR<9ak_9UnY59-r_MZ9F1!l-)s|Ck5;yXnjkZg$cmOEf0dX{?znXTjMs}2 zIZhHuOO9@ihxaA+?Iuk&?L)aG`C6XmBCY7?YqFqe3JH8F6sx=6c@oOB&x5p-2Z=OX zTUWSrxd=4UHen3;KoeyvK@Kn~Z$49wIRV=y0ayo2I(TiFzoJ30RdWLj-+CwM(NAsjY2hy^}WTJ6orr@>yDCPD$7Pp=GHb$ ztDsRmn|e?$J~zluP&T+w*|P^zK~Eomg(Ng8FZ4~g(f2+KDW%WwTm9QgIZUk^d zwwI|3P8EiT7CN9KI9E1si`we0L}@Oc6ULhSR75 zumF%Uv(>gQf44PA2$J+!su*1Dvj_M3NB2wQ+c+gLh4k3~29I@&R%P{&3)Zy4-mMlK zl-H_S*!mFltIxiX1QojOpZRs-QzQQrkn+0>4U>kjjH#{!|4JgX$d@-f@RGsWK?Zxxs$} zVkVG{i2pB@m*A`=iOJ8ctRPyd;0;sn8l%`M@(01n5FEI@=a^K0R40yn?jCEe6ImuVw<2nbAZfCcyO4eBcS(L)8Fsnwdw{Qs+ON21t|JRhpHKqex^F_ zMFlitfn0E^hB3+;jM+x1q>6~hoj4t&9zx`X)B_NJ1IH2JUnI)p{YH)Trc8<}0 z=|OCrli&J&eyPD-EnVoQsKvY0wR08s|%^QG-j3|AtHN_6y8(fJ72bK;l z-kkP@lt*T8Y%@A~hEE1<^&jYv&hgud|3aR9fcxF0jgzFRx-tcc=Ind1AB0o-P1J7l zIs#JqB_BeNCt%yPqwoD{Ck(7HZlL+8$Tw?jZ?NnGo@8KDFj}p$*+NcVR_Euq_}8Y| z*(Vtf2q1lF_?!wZ&~=pRYXigR1y_fAS29I*9sSZAT-4zVj6B^=W9_Jx2f0+FyOaR{ z{h4`0zjc1D-A#+f%oN8#4z!1$kpAq-f;Z|_tNISJj!1!y4uRL!D=Gt1R50|Pa3o%Kl$e^jmV2*&q5)jTvqQF*hCr{0f5)?KCtd*W?rSZGK zuV6{<&CszQEQ~7LDC0@SPsk{R3CMek6MgA{AL6Ml2jri%UKfx=dHw1P4Fx%foKKFD zdXU2XLet;?0}mv2OlbN@2|nYY!Hkm&zd(PVFMvgAnz$%V#7jRAEBB5YH481%C*CEY5{#q-kEhV*=e$Gby>(<@U3PO*`Nq`Bo2VZ% zN?FW-xcnMmMKW+M(S>Y+9?pW?$m{*l;0>z-Cm(;6YW0m3zwT8Dj8jm*QIHKoaC=WM z$o)j+$}EKMl|-D7yY;KG#*aByd{vDiM+k+Nh&_>MK9c%IuQ@((cLh-q6Y)P+9P92u zca4%oL*i_QlGN9~0N3HP{4zH3QpDCW3fEW6*Ez~fa`7l~?my+6uaSAFjav8=BKQq_ z>-jFf34P>Oma#x_KTs-bdabssY{MY@gpya@+8=)U3=dU>E7f~9)#|S= zRaiA`O!ZL(_;EdX=LZ>bXvB@ArP)K`XG4kkqXkx6q&JYsHez(gkGPE1BGIMgZjtE{ z%5hCX^@-uyn4`LUzuAO;Tf~9r`3H^ZK$JpJ_9Ioj{2;H}m=byrUqW*cKd7l#^3{k8 ziDFI`7KrnJTjo}V%&6R`mB!csajBv%Amef)1sjuy>;uEGv%6#%j0&Y6Lb-hgqD{$J zN03q5LX}ud#p(tQek(A*kZqR-7-lA)@nRLpD9xP#JDUZMfKUlAGOG)L8{12TKIGU` z88LOB{r=5{^p@32GwaYIRUbiVA8#qiF|mN&S1OWSHIaG1#qNzzjoh{9HXF=psg-7# zkVj-{5I`L`gZK_aDfjBL_tt0%=)H=&m4QW%Vdt9UE6 z<9z}IhU$*1g-IS+|9Ro`2f7UMA(xH94JRA{>KFxcfE4TV(V8TY!qhQSVuF+P#!H8Ik;Xh z^+P#d9B{A{TN4gcp>$$!<1V{xgaP10;WZ3XerlI&~ zL1hAv7UTLb=IiE0d>!vY5rUL*%&dOUO-T~P5>!dlgd?#9&L9F1=GzG(YCnNC*%T94 z0I_OUeZb_Pp<_|k>kSz=J`Aib+;_Fz=pDZmFu(xnoTyO`=V3pX=rc&@>-LWG(T42n#U7|M-u zTQ<<_BMK#9YQ21N{eT!Qdfc#iAa;%p0@ywsDkNB) zQZV~ucgo2a;`PUnUYXCz(A)}|-7dnK7ioOfMBs)di9HM?Uo2>X_I_{D)Gg9CEt;?( zTadV;1=TJ0eqet>226bTZt_9pXqFmNM;NwDf4zA3;+=6~vsF!K>t;W7QHc1l5rmFlI0iWG53=eXQ{|jS4T73|08kpwZ05| z(*NS~07Q-=aS&gXf@Pp&>tlS?wj0|q#Mx!Q0fLZjaxMOn!2DO1TR~cCq#z_t z#PPYP{QN?p8GatE04AP4rfP;Xe3#A9>|*)k*0Y*4&e{EdKf(Q#B6)&$QuM_n|DsXy zq~K=2iz%Vj_JdE;=M<;e@Ao#6r^O#1Ud%|MP^QdCV~Y{Y$`V>N<^)7`@KzA+XHWN= zhPcadZ=k-iY+ZHP@c0yjf#IYWWZiW%FC$I)o9%o;cu?t7Pp)Jv2U;>ZYv8#lP!=dE z187Rz+D~0Ej}>bfF!JsA&8+m?pZ6)TQ0_+B+KM$|&9U)!^Bd4Fq?;sXoOV#QS+f}N zrpKZu#`;vTn^%=*Rg)m2-?#2oQKyS8dOfWkeFc3)018#cP6%~FD+Am=L{~8Mm6i`f zBxRlupObUw0kz9TACp$J*b~VCK7-eZaWx}0X?LQSY^K$08v}8+^DX7rM%w!x(xX`| zal4~zk~FTPAAX#6$N8~o=+t7%f5UZ55q5u$%S-a^G(JU_o*WTX2!22P)bf;77AQz` zpY3&VLU!J?_(bwO^mX|6gXWhG_tYKV^2n$iIcZuCJ0G9ctvkM3vpDqfyx90P_?Gsb zJdQAk;xYuUb?m_A?WH2eR57OS<%k%<=2M&mb*_h{h3 zmOpNGFOU=cW|LlVtuOHBS4GoqxNJ}*-J>GYUPKIpn>I`{d*jp>FGjFZSSGE( z5g2b1<$oJ-KTzF z%*X3t&AngpWnSNU{%%4dUM&=)o+`X*)32r4WBzmrNg-PAk|Xs9mZf=D|LVzfjQX6r z(8>OSII>L|iV`jNPTC4LK{7<>ZQ&rzhd(%pAlFDj{T+#rS&}x{P)K36E-ur48|4;W zyf1$icB-b(_rS1l+|}0xA@dOU#K7~)%^*TRlD20{sXhVQ_l+Xfe)=QcgE2DrB z5$JxTQUGmo8rZ~G`m2<*3SHa)*3O4FQPHN5a-q*cGiLlJVEeTq!53LHW?rkW)uD$p z?`4k+3M<&e8ByFf=C#hOlZXsg@IU=sDD&NlA}|)T3widUOCb%CpU=@=B77AMKAOR48dzzP(#z-$aU~8qb_{cH|SgkxF6j zOiBB@V7_>57oFa9KgPboqNqA_#rC7l{)!5J@pF#yTT@Y$$^#*VH0iIJvT(2qBT^2d zS0xouCYpav#w<%%Y&Q`6s5*~L3=GV(@_LH2ix^jC^BkC7gCJEs zrJSa2P=+_dZ^$XsQptjj+Sg0C1wD?g>R>)Yu2V7XGKKocvRX{rp{2RO&PT69xfH>dmZ`lemxl-tr(Ugy1af1>`R@8MNG`lhAS zAH10@F^>Y$&0`#{wNFt)S5B11cCYtmr`hZpHTeSV)PnpRa^H-WCbQbBe38j7>RHl;-&Eb5wrXMu^iK||!-zPjo3KG%?bbc(5K)7aVH zCSnWMclza?;EB~H`3{nVP7i{o`a^`_3Q+g9Uqsf${X)cgok3`T<(+G>kkQbK*4v?1 zPF0?vFZZc`-i|1V6UMmf?K9~99aD0<#4gME#-rOlE`a5pxt+7mkN7<4y5$~zw(&*u z&)*p&oa-ly++!u@*4cY@w-U^1Ye`Ne@$x*}3JK%)Do31i^-feDQdH@G!pM|+ew5H6 z{LYQ1GnW{Ccr=$)og?Ik?v;BuUk5s#oYQ6AuZIrZ@OI`tA22)8gj>9WTq-C$Ywp#0 z@G2Xh7lh*xLqF+1-Smn~{0x3``wivB)1=wqr=h{{Dn3`z*NDNZ&>&F}s!u+P`?*&H zS0a_X>1k_>C~2&&=AQ62Rplp5Q=|B9drgVIr>1AuWkHdbh+W@+rn6sPk|S30oga3| z*{?V`O5L*e?vu~AxSy5qYX-F2vlru6i*^qie?HXJ^GQ6SEGJ#8a|Nw@`ed3(jHzdO z9dG+wtqva%rl75qtl*r8(5XhFlP?JxLQ9%E^@pEPx0LxC46_NMWGyi%+J^boPI*k= zB0LzL#=;*?anBLz(|6$&7Y08a$3`5XpHXCHHY8_kbbvG=bd=xIoyDWmT^y8nmO2qE(B7CKc;}G}H4sPRXuHYW?V)!__&j3vTat8E_(socVz|t3t6f0WDfnyoHC0z@R z&gN>`_Qs7?uwP`zptwjHHih7RoS%XR~PV4927J98QR9@N7J7j3sGKpABu9yt< zjCZBKJ`Fyyyp5>r-Au}?|?yBG%E65q6We3;i zZkc6K0dw$qNZOwZ3>+WCrQfwd$nWb9n_L<766rheeop#J9XqHm;t;Den51|v`~c>mb`%B z8dNj+4dt3Ny1+Jjx^W;fk5V!}utxUG=ysMq{&MkYGQ!r}K)R5HCzd`@lXVsg2k#9_ z89v+F8rH?{B#m=ynD5!#*;&6NvCGu5>3{z=)WE*Xd%SQttvvzvlhv1vW7>`L z3V#&QKR5GBlM6A&e#V>b2y~CUnte!O2F)ef z7mwJ|`GlAGtf2cwmLumLu{{;>mqkD-kNg^#h}(z#t?lV4>H>Ozfgp=OteITqd0zjk zI9{$Gy^%zKA}nhL22l(q0TH>$|;1ilb^WV`~-MweGYe$qxcg+}F!;1wN=RJh@L6>OQ*=KrdQmjW3{`c}ChEm5>LbYKb@w^A z+0OKk4knA~_q->%sYvwz`m_Y*o!M=c^klx&22)0-lE{Wo$nLJLK*a5NfO|kN!^lk-~ zNWp*+X;Mxoz-I?ojxPC(?n0n|Iu41{2zB$5vmnH12Ed96odhC1pmpqh-Z2?GVOopT^Qvt5|Yp^ zd7C84;V#gzkGeMhpT4UpNUzxPzx7>wZ&&g^u5^Da$8|hx1dYBQQKPruGT%^z3tG6g zu&e0cGV5>)!mQNnkbaE*GkDKo=2vE9DuVxq!7J(UjMY3Fym31;wMaf;={~W0qyw9XD z>{|m~><4}~MMFH%P(Kuq-vm=Z^RZ>6$c$i^&@-9`V%};%s2VzwBTblYTbPMZuzwrl z)KZ#k47OG;%gf$pnAheR<~`LRySbs>Npogc4xBHDqNF7S_fql-0$f&{zbS_Ir2&Te zs8@R5H)nj@T#A@)duQ4b-001y1?|pnMh&%G8pbAN7yv4xLk7asgzCyx@enWptV@hS7tWd+qpP3|+$p~vpBhpS$ z`^&8OmzS6%)v$e+{V%8fYO2j&FVnvsR+(w;nV%ee{dx4$gEINGeA84&Gd{K_1^N=M z-$uk{W+J>vGh2Dmlv*>(^abGh@sXKXjjLH#;Os`pBzBamDHlq2qC_(l$Po+ckDexuMFB)ghSMJih5;IHu$l5M*H;RWoR`wnf~C^OEM&*#=}W;KKk!uWG@etJjPiav z_*s=@9i>XZENLJ$uYr_QKOPPZx6?kvM}z)omL)c{DuRdPM@6u>GCea*F$)rBWM3gK zI}m{g1=1uN3^rHZlL_3eCBHT2imtu+N@2gjI?i8mviTtq#@oi$(SZ`MX)kSDA@M_0uUE+7G5#bEtIrUKn zS-gs6R(_Ic3}&GW*(E&h7mUnqq#Qxg)k+c?P06}%Ke{&qWzmZpaQ_I&pfV>r2G(Fo z5$=_D<{}3(FV?JrZ>ts6iHqnyB6H4kWQx-&myFg;k{K6f_wYTiaBt8b6Ds=HP$RrX zX)|q;_qa*gZL2WNVa5;0CN7Ofj`hYRM$SqtnH}s${<Ik2wpf#*43Y zo5cbbO^k!T&*hrsE?G%0SS+zR7%#slonLoa4tmVc5X%bAT`{a(M%1n(Q_3OYy5FUW ztvZYCSH4**%U!G5T>DJ9-e|nun!Db)x&DQ6W59T0ICo=wb7PuvbKZD!Id^k?bMrYb zzi+&Cl)H7dx%HEB`-*by?dED!;C4j!cJSl2jo405;EsR$&SUQCy}+*by z>chd;hQs$y2X^8|5`l-=-A5dcN2KD%Y=OrtJ;yYU$FDw^k)%vNA}xOnI8n-D(qr+1 zCQj2qw9GZ$QX*A;nPxBx5yVPnHbp~4N2htt20y;Uiz$Wn5i$q8T}v-x+=U!Rbsx(l@S~*ALQ;;AE-3p- z=?ky93bX@GlYxjsv>>KSd+6V>&!XrScBFkL%U$>Y2MJiM;5Bh_F zH-~07lMjcdP?CArE`5n2U^DoCmADDN)Kf(LEP0l=9oAG%G!N^fnmK=X{EpA-3xVJ0 zlV6`~H%S$wh0xm0d}@7<*doobft=C=#i4#j7G&O>thXG`68k7vv(`-esIOT*LpU3V z(ke}Rz*Vr4+kDGvWx!3KQR9x#AUmktdt>NXB~1@LnduzpxHJ+JhFQ* zw_Kn6lepi^ny6Huqvf()H#xoQN@SwKZsv2{?43AU3Ki!Gys3?#Wl%%wGXD_W;pDYPFf^#;0Gq)%CizLt5k5=H&`!KCZ5NftMFMMLVQH`qytI3?@MI)TWgQ0rPdvMiRr?kmt_dR?usbqYoj*k5$w zWy4Qk&k^B%$w7UKJpB>t!e~z6Qi)N@Jq#I2R7EP;Eqd?qH*nkJ1S23J2DM%&eZ;Xu zI?^}2sL^)bV=#*Tao~#7pcld1!G<)1*4xfAc4oc+#Sg#%Hhp0X}Hhg^=b5!ap z1eLj+s}#q$c_1N#G9zfj`N1?%-6aWW!u@~fG$;Q_+}5-6l(OeA`*h=?p>Gtj7?f`B z^Y-PBrWqns-1N-VX)v-lbT+eB`XCHC-@C=%p=wzAUN~&{hpv=54Us9_vdfQsz`7hJ zj~CS#p4rpuVH6RGBirW$td{85(CnkIjQR{VfY5cbWG(W>IC70|zlz^FWY(rcZ^+!$}sjqOaZ z$R)YdTJiS4*n9iK^oW|c^3`Ob#CE{I^>#GZhqcWYl&=#P61nb$4q}o|Zog$YPx&6@ z1${6+91=&odsSbe`-pp5TK3_tF8_7L-?N74|47_#5|68XPIaEvHs;;^EZV0M{%?s} zqNej#@BC!PY4Lr}-R0-6PX8qC>A*klQW}w610}Yv z(@~cY{a>KC;4>&L_5THmE6dC3C~4|w$f#(@>1k`KXlrT9E7`tQ^j6ZbS2pq2mbcc@ zwb9b|(zSHbwg|A2Q#Di2wbfU(*46e>eB+^F?4|w2OHapI$NIgcaiHlNKPv+#j{sh! zD4y48FSVlubaVLh%3hge3Ojs$HpSHq5|phzDm$d<*hIXw$To6`({s<%^7w3}o$Txt z?c!G<>3ILz^!B)m^NjXGwYf0)h&C*D&xVUbiuv)SD3OITv-pUqZVnPo1v4h2ERXT+6f7Xu$cC^%+lEGmSkTPvW3f*$^XH{S1!AEZU(dCNB`mCDHF|+W6fD}Rgr5=QLAm~lPy(y zol!eoDPMaAzP3HC52P*)HGLn5I~mP9Sp0M~oqfHKdpJ?CKhbhFU;1C5_|;fygY@uU9}6hB#fxR`kOU!eHa=|52X?CAIT|6icE#dKyeuI@# z|Ez90YI+KLroBk|v||$Q&EGea%Da?WxM+u8Ni1Fu;@TiwWX=|3LaSquJ8tNWnXm!J7IUcz^fB3`C9Iie`d>N^gW(;2v~~g5K+0u)!dEf`6!TsVJg7& zVGA1nql*c%eP!7kwY6Q_NM2jN}>& zb6hOue1Ogi@FK7-L|yeW-6Av?ySg+IkM@AFAwQ2!vA3Vfa)!1K8qCozKR_03>j>(j zd3LLT!jJ+tb-(}{qIWRVZ2~FO2MlAHat))q9l+4MAEqo^X&r!%P!P>a?Tyq&2VU=+ z^+kv5CBU(w(SN)oeLFG{A}JPi8a#w)td1^|G09fFAajOp~*3zfk4-aD~f-l?gf>wWprExMT z1oOLrH+^IoWI$Y;6(QtKl7wu?fEsxsAUTVG+U%1C+f^HYd=N%YLps6<=N&BJj-6FO zAq7BpJoGs@=1?~4xvoeA@IQns4O_#oP3zbchxX=P(_PTvP{FBU^pLwZu5cX&%K??@ z^3TOxBl4)G6{1#aoxBfiM2`VA4tfiP5$M?yT z0*F-|)iZAROFXYI_tG8e?i#xo>)?pES^hkA0S&69et2c64TLcXq zx|(E|$M=+>umu@BV~!+Pu9Z32myCsPYtDc-ED6=pnD4F_M!Ga>O#T4VN<;64=kNn6 zLFu;(5(3jT4j47w9{c2=%%OO&5+~BHj1?3b;(|1tkdOtfUh?dcR+71Q)fYk`y7o7% z`(#{dqrWK+f-T@*n%T$1Z*_2JE=^+}&{;p4Zb--bLk$))2ylJDi<;wB zkJcB$w~IxHdSsptFEwNCBgm3=liHa|Ku=$!!rjOcys6fP=L{3if zYMZMmTC_tY#8`Hqo*jP3tq8^BCosZuwJ{sSTgAlJqS$Yn?lxKSfNbf)Nx}CDB%m(l z3aO&16}DG=DZg;722?QvIwQqjcpD3(m_sQrmVTo!4F#9?9o1JvB6vHpDibKX^_9}A zYF{mSn4FbsYHS;<57hG4P`f`K7MM%Xny_RWr~LGIDJmD@Wx~XF`7+2^OF@bk8_3Lv zKKo9X)(d$zNV65PB%@!d) z58cB&%()Le2S&0hfS*!CXLw{^o~Cpg;c;2!LG_kO{trt}i`1{-50yh+7D5sFM;@xl zUa0j<8vF0uNO;2+sNo6NXZdDjhe61R+HR2!0p6^QvRIjjUy+qASi=Aukd&7L#2#tq zZ7FR~fpj>qo@d1(a+X%=u2u7*fhUid%g_Qh1FSIgoA=UMFIXBFd7wh)flb?lJp~tQ zP6xkekQP)&H?~GTf>__}U{2FR;;fLLYf=plu|F>2#1UeQ)mh8?#IAse?C@=pp+t8c zJUhSLQR}^d`BBJ7;CAZ|Y*yhFhwmh0Au~j;59^(Pcw!aVW+7CPZ<8T-v@EO@uoi-XBi7U7) z5|~d#o|1st7lcUAMuB1`F-NT=SOgO4$=tj~L6~9Fn;Li!hn5Mr$n?_8K=lI#3|wuH zZDsrv50NPv{AR8>rs$Zi1$CTd@D9rIMS|kiKSue`sJ-}S75L&oxgdeRG5GIJsgH28tff{8$pd)}~7wyPo z1TT!JFEt9kG)-hNCnHh0L^G|{(Pe7SK$p_`MFcCk@uIjEh1*dT158bsAk{+gFJ}cv zk+Kb5WjD368m*=dT&5zRXLl zAuf45K#pE?(6?VW?`NnLX%&GpIoms6V0+XZvk_+<_D={JPe1(?i%$U^I3~dd=QjA5 z1)OP${tl4moSuiua=hn1$CGl}&P$YPOo)^9u4xN1-(&r?WKY`>~E3(3t^6 z;UOhAf(634#2lRoDbrVYN1H^0Z0aM6d3Ay-Vozm|q_p0^fQOoH$ZL-_`%cn8!M`F8 zGttclUa~EX;$x|xni@?8%4g~*bzCc5FDT5N4Wl(9=44Gn!NVr2W7uz$@L@J%RpPJo z!laDMYr1AZalx@Nr6*|Alt-j%N7Cnsr?H>h04je)0NSa(lG5@05{^@bI1@|!Q5ShE zz-Z@X$hC)znHCTyVCE`924GQWI}9CZ<-F2>CU}0;sMv7@I>@yWO9R(I0M;N3>6wW} zGDXJN!yVVm^z;#Px~rbKt7gF{b0fp|FepRY#T{Du$8+2Mhv)Y7jDR2fR>U0sW1Pg^|7+7DHuF2H1b~doHk-(A4qUuRZ z^vk%E@hK4>A&w+@L`XUKrr<41xI$1a%YpC8BrKgqcaV$2Ob5o zR3l?OPrEEcXU>ySN=q(;U9zA!7Qacwu*KTHMKqW|qrSy)y~T#7S&I##V~GC~fS$l@ zfy9IkeMY)>RQ@5|>R{FXAl>x8TIpS?Y&+Xx*4tJJ>bpUw4$Rchr%0Hk`G67U^v9?`#vPZ_e&~2E}`_ zQ#;sM*E+j53`tklyLS-e zJ$u>2+af)O{yoPI1mCiI&ewZ>7``~W@3|EDaxGG({juhE_LsZPFBEuR9`3&YD0+AN zzL2x^q6YLLoqqv$^)}UMM8A zV8=_&sW+kMU@{nm6pWS_4#Bz6qY}V?5InyadcQ8^Cn$Q9=&);!YLxm2SPB=OFfyM% zw9q&*q%l;;j^0>}TWJIt;~vA_#m$6f;M0sZinfskkL&e~;_Oa5`j1u^7S2pS7SG## zR3Kvs;1yGFy9;iY3YZ)?5|w~%-+LgHl_}qEX3LhFsO}b zT~Pr)z^CoaC$@p;{sE$JDCW-uuw#RMI5&pJ1JzEo{$MquPdeFq(Xl~w^d6%rq(|Hg z2*y2ZIyFHRaETMnJqL$kWHX>QNKU2B%vMwnr6z!@5L!d4aKQt|DL8D(zM5)BW%gcj ziozV7pJQ&d7=v+=QQvhEqi=ykYEbTY0Zg-)WjGWD#jLEO$qSe{nHc{`F@;gXxOy<$ zY{YFPirF!NvATd$*@bIWO=XpXIh)VO)jd{9zWiMU%w;@-tT9yMG9scn*R_EW*fsLo z6dY1D-t{n2Qh?>4iN1(G5APih%g2p8U-Af?Z>}D)*c?t$UCnqLv%gG?JjeclHSE~H zXhAt&_&AkLIe)%0YF2~2TiqrjwTK$LPJpy1TfPq3T~F>@v`@mZqQLm>xB=_N>B_X^o}3Tj99Ku+s+Ru@-AD}4B6#??;xXb z-)FG9M?7-CSAflPmlb6pGC&QZNiNms=8})`c#-;eA#^iLeY*&-4pZHX+8Fvww*&i* z!!x-N`5k9E7u+1Pv9`HXXFN1dusjh!*vkQ-!@=vS@n?9q7i+k2_6z$PY*jI7H$x7* zJ~@-MxG_CHgkj8m0hww;+1WH6+72|7VeW7h+nxJ9{FI>jF;LVKYg?Uj^V)dWJ&jDC z9alIPlVWOI;N8$9?{+hLMwiMade1kwZ&*_!%HuCm3s0Jf% z>+g)Gm+gq`@2HPZC9!ch#SdXMF=0-~@rMhl&-&A<%RXBpl-(UZ zlTe5L%SFDW4%8)sRgjuPgEH*f0N@ zIessaxG&VWMNRyQyNgTUOJ0i@bQ}Lezjogw@zBQh071E5oWfgv^DyzHZHVjL2= z?S}>G&gq|DznJun1`RGEwjY-y9zTD2)aZI7tAE%EdLrU&6On{@yeG`XuW08=sbfxhh8{hE(8xgW?-2 z36_eim&fzEl_v0~z19iD%jU)!@ASv$M}13UN~(H!VX!Ns0PD&xv%x4r zF6)hz3yYCN2DQ?SMDB@k@pO!U(*-ka85oN6SXg4yT9tKo^p8&5xy|Mu#YAg}KWh3* z?QWE{3@Ja@9XJ1gzu&bkd0UNS8nY^FZTxjVo-I);d$)P#`DsGme!2ax$x$gz5uq@e zmxot88Ws7KPc~VzJjGYjROyBHhS<8mc-qThf3PA z9wc3 zBVEb@dZD&3@xE{Gpb&E;=tuj=r}deSmnE!Xr|$m?6kn)ANW4;BC}9(M5t$+VtM7^)uK^V@i4{(c=>lLMe5sS-EN$B8DqBS{mi| z`?s#?e?ak%0ylb=$=Y7}*4dsn`nLZ8#jBcc3>+I5y$qc?f8RWV;w5Rzg=B%1Z)B`p z74dsH8L)fyE3>}kecrt~#Ipt>}iU<6{<1?saP>O}waR zo;LB@kueB9Mq)mWfA|j+C-SvSLM|dHO4e==>Po75t)HK6nD!48Z)qRRu%NQD!gF@w zwD}ZDF%M!}=p$&rTb%B7XIEa7W}u9S57YFs|C%-A=TO^uV_;vCYK}4fS+%yq zv1wk%|9kiV>ZyH8kei58$63q$kD}=h{*DS4oSM#Gkck6a`th<2`Ff@~a!Ln?y&qgh z=z<_FgRkfeFVo0|1Kg)XsEw|2cWwgcXB1vOdMuQ2iZRW;{n^HtYn&eFwQy1|wY=zR zpX-&vqFX`2*o*aU0*qQhdlMdJgxeDrexU?lp> zBkh@mnh*fq{O&Y)I^_>`go56nh?*jR#N`qA)yQN>0BVml-50Z)p~&XUoqoLQ^a2etATp6?p+~r$Y%u!(=;<{~|AxzH(DkBM?BY>L9?4zaJ{EeSLj z_9Or#FcAA4v#c1j4~LwWhn^lPHM-Y^CuUk7MRFHH%Y>e*h;b16#}pt^ZQ5s(0(H9v z_X3pbq++x*p(KpNX3C zH#H@yd{7VoLEHT{xB#OIBf=<`Xd+887^}~Bgx`H}P~qRGjRzUd$5PuqB4HuPL*xN( zE^ti(pa8*M5IWE$*zlMJAPOA<(zitbC`_@De$kOsAEBg~4~B!vWf?hxM=1BEsdd3H zs4VP@t6-94`~p~bU5O@$>i4VTrU8z#lo_@z+BCzM4dT?k{up{fI)gz)tuo=)UJG*- zvox$KJ2w%4mA#W4LHCyN#YsXnC?Isz#1x4-Q)nEdXhhbvV zSvAbdJs~4cMLV@|`IpLb@WXQ)S^buIz_lqhCPY&2H$=~Q3AuE!kqwpX9+&$TuOpbl z0`O*s)n|dPtcm0tTjM@n7Lrzn3?#MwS#CJ}uB`DS6-!v@L`77^mGsL7iytOhBz{*B zsxHGD9S(3fVdN=BYfL!i(OKNx(*O>rco?|ymv5_Ks+G1O+z0uWRI9zWgo)6O$8<2# z3C;j&U@9j`d6h94hF9m*N?CP}D_&fJdpRCXl=Z41rQcRtcT#ov@BTYnAuTnOawDUJ zD)01|8N?Npe)$%r{eU_Yvt97d^Jqx0u0ABT;1<{^11P?WcYvBk(=vcW^c+JS0cn&o zlD%BR5P%x9%)|`GMbvxd%~LnxpbPe1K|eeIJ*YVcXVJ9)ds4u!2{sbU>-;*Uw7&}j zUe;mC_k>RZqa!Ku1Fir9+ts^){||F_`PEkRuL(ScTX2^k#oax)JG4N7LZNtz6pFjM zQ?vwkr^Vf^#i2kcUZ6M>hYa_3XYQK$4<_%DcW33vIV*eb@8`L(4hQkp%aUeq9vpyb zW_#e&q?}OlgsSO?68Gx&N6ZwJPJMIu&lX?q&TF*SOZ{J{@*^6gHYT%{#;rezrByeW zYMuX_Ecx`+M)-X)UAD*4w@=NTouVINaYG?R6t99Tr@;HWJa&twA&DX81@kULJzyMbNmIY=#Z7E2}J zPS)%>EGfkjFD}1ThIKov;qOX!{!H;pn~v%{xn}5%>~IL1ejjlE_za5w5&z@$!|&-M z0?l+!j@f%UE}k=OeEK(mmiI*N(%k$qwzyMIp1_iP&$#tc2sEVw=Z#&L4b@ z%w7K)NxvL9GkYs)`1$WvBO^#afDqc!U$lnWdy;*LGqmgpUbW$O0&UGe@gaAwNy5mR zB4*J8BRn6nX|sR%9)7WgdA@-Xv{Wu9w!a#+F4-JGQs;>qb-zQ%j1b4fo`?jgmVW_2 zD)Z%kJ>bxm$VWmt5FZ^xmk!mH4n11HsGb(_e9+W{E`kS+XIuuQ$fr4Izo^W(R1=#1 zh^kXT2pNG_Rz|2rhV~RhNDxG7CDXIt<(*aaX_LR59PkiECnFQ9T5|S}M}S6c=iPHP^{%fr_ENRJwe{uL_wB z?;^DOBKcC8jE&2X^~=?a*ttxM%{V#XSRw5!0&*31!3=@Se4uupy}+5WGPm`9uLe4w zK4!m7W+WSnoQaGg2Llk!5*EzYU@vRiD83XTk(o#)fevudZ5M~gL?HS~&htW}+qKvR zOI^`w`{X9-*{TlMujMIe*-LqiUAA2sK)d{c9eOAKBI`8 zy)b_9FS$mn^76{)PZfdP7%?@8sLG^>C>Heakw}lku=hQYMWOYBMv`A*$Ku;Zrz7!2 zGckk6h`U)JkiRkVH(0|#s^wJUVTGy@bg1_LoN2O{$FgW0DDEatd?~hSLzP+?|F}|X z%o$5UT^-~+n%$)g6QYyYimli#q2Ad)-r5pFV5i=Uh)@}UG)AJrFx1-Q)h8ZA1{uSL z8Dm`j8qktvq9VL# zrGZ>0YMJyMcQYdG0T9ZTg#xFsLSR(&*qVDpLW9^*arg`)Uf=g7G>x-0-38Q-9yDXN zH2+;_o^oh~5o+NvYF(K8@Riegp|5ontL64lOEgsLw&TZ#LM?NvoWj3a$OkO|jy8~5 z8^oy%mehtErT;c*j*@Rd8Pr18;C?JpzK_+$O8buXFLLgJ>aar_?&&i3%6Y4P9?XQ!|`>##Y7CLYZ@81P8;_dX!5sW_daF>+ok{W4`$$hPru1 z@YUm}ETMX}%(`josT9v`Cqaxd^f|ujd$s8L(uFfJp-OSiC`r!Y3+fxBQ8hB6k{auK z80ufvg{x$sF&M#znb;k(Y>cw*7d}X&%S(<=mINu?cb{;$bE_Bk=mw= z^!V3xMot~z%$hD+?DqI27AhU|JeylN;Npkzg`C(xB*MuPjr*TLP+chhyBXxan*jwu zEb(7b+|^6Vbm6Z9mvlsREhP;D)&W{Q5mM$owe4uwGl+mX>4#Zq06n~Pi}rT3;(ol_ zkF4jZ5DvMdk~I7ex@yajK8bKzqRV?kV8tp3r%sQ-+DjwDP23H<&GnTh!z%yb2+pS{ z{KL@+BNTTpiA$SxYgxLpn7i9Bw(*X5`;~m6BAmn%O9>**--k}DUq-T8U_>yN;6r~o z_L`&!h2n4pHlR3q3t}uoWr&9LiWSC*n7HcKG04YfuP!xG8Q7+U*3lW*hROV>hN#@= z8udaL{AN`WmjV)JMSn%mORh{;FBN18zFP+{D2uMf0nQC!$ttXcqXP}2Na9EwlxZE!g}K%c(uKUYo;A!H(^=y0^o4SLJYP42 zzMD_kF3w z!=}7b!nJERoW?HGYmaWwCRuY|l6QZY)i%xFj`86SUi}{$1-p!{eMSqr@g}>R<9)2@ z{W&7LJemVp;6a~@U4f>({F&|4#g^Sm`!Z{R5>2H5l7q6YgVe44#lt_BsdiOQ_Vw8Z z2RQqss1A(_(85pO!=xO(l~7dUMp=gcY5w5QCKcQCl=HR5q4V3p4q|P%akpX3p?ATu z%YQTByL`{WXs_AfpB9JTj6Z|u8@w|Dk5(4BEgdJmQ`J8?G`u`aLofiBr1Xf6UQRg9 zN=32#Lp5TFjJT;UOvPJ>uMBlIDNv8}6G0DkUab;{LM}>;6;;0vHH`3f9xKWvp8$bb z$iNs65z<&if9vC3{snruMtTE+l%X%Q>K0!506%4flc2{)A%HrpA?GQml#!uRS11-) zLB~(W0q7@ZTuZaowvAPo-OjKkcwC)wT3ww}6;F(JYqaqmX$XG&OeAU*Rm^!=7$5=5 zubi-oW51^`0-}tDS`!zY9OkhONGy_L=|L0PQ+6E;B!EU(uyA?90a`bxT!ukjJpj|C za*%U`w>jW2zYwGyW_2p>gaDC7xR95+Q06%$3ypu>Tha}}xmd@E9ZZW%!_xC2`jr^{ zWQ^CG7~Mn{u3d(C30Gsire*$o>hc%@hsLCN2%+Na8fsVS~~{jP-e-ohc3JebG+*% zBRLitzw%4&&uJ{L!sSn+8B#!iCf#ZQ*rg zZVv#$%B6E~5}Ff~tRoWh7af!b?Yfc0UE}23!vmj7_(QEFIGD{y+qP0R0-QJpb1yGD zuXGO{4tAT$pHW7=b1jc$b}4qhe4s=NAXC%{^7c;jPRP4zEort*iLUFz^M!?K{Y=$V z@z9Sr*IrL84ovk!pTBXA?9wLXc=NC0;WFp*b>9^_|1i3QGSF{|86|RC8qA3QBN_I` zefNb*5PCTI@A8#F^ytsTe)ItKC$tfzI`)i*8e!YU%Lqp_XQu1$R?-QcAD1q)VgCD* zE2lWi1NVb-_dHJIAGXkbeTqb`+GwZuJpLHA8^)z7dV1`{_3tM4->h}mTHNi>^q(+$ zYM1f}Wv}aEa&mb*1>gA!0iuYz>Pl-PQW8tWB>^5zd`X(Oj16_y;ImgBmuMT{{h7nABJ=g!wGn2 zI0M$_j6z9luNoZp35rG%x&IF+F6ME5xPQSsg^-OP7-adlHJ#0fQXpY;$vT&y!mk-; z|Br2<%DCC}=-?mwQk`g}8Kd~e{qB+%gAGjf-!@mix&E1{cDUwR>+rr7iWQ&cR%^1? zJLil=>RXBSN0ah@IK1KA9(hZs_KVfeRIm2KquABqa`VTN z<45tE)6HRSZZz?4JINWy+~Lkw&G$Fwe`af+L2>OHO1r`V^~RMT^i!LHuo#!b1n=*WmeSBQsIlV3KU+9`l6amThd(g+YE`yeN0Sg2F6}Y=}=Zy{1hx1 zWac{~^Jvi*neVz<-q{_@r)vwnuaJ#odv9$C%@SO&d-28Vp!H9Hn7bDg7KF*hlIweJ z%Tf@<)@EzwAvUo6`VIYdS!^obGbo;EuWI0}UQN26ko{y?URIptT~SiR2HCI3|4_kJ zQ9ma3H=|Cf+&TbzLr*0&a#@wVt{2l`s}}W9v^akdx1FPLQn8FfW>^>UK5S0Rhx6Od zHXBZ#7OuVRH(mDPT&+9dBb=4}t`1!7M{VOIZEGJ|J|tas`EYmLw$0la|K)w29RXrV zoT{IBx0NUWgv)q(al{{-Tl~k=GT^x`yGDa#SP-r}Y`F*C5g2WBN>i^l2j3X$U!;R` zH#)aZ!x-}6JDclJZkvmb^qAh z&O>w`wJS ziOc!d+~gOCH{Fug@$Z~muQy_97q5H5zY|J##&`Q~?aW5+N|Hf(z%t$tBwY^|`VoF0 zCi0;dDRZ^h9lTnI4WtVc=g>{yf*^u`b-hyhn+ZI;s|4??dR5rnS8(c-lkzqh;rakc~krh-Ehi!v{H z7A4})3xg;gh6O2FLPP7EVFrwm(mbA!n42w394e61c5fIeg$(1o2m&*qYzX&7{U_S| z2;Am9Y365PnGzldU_)RA=}(g}q6fnzl4P1WN$g z41MAXN>rglEcZVwUDI(qh_gCi zU=W*#(86?bc~xnf9y1;Sg-8)falW#lj3c@T;IW`XQkK30^C*a*2G)8Xm5S#XLcNX! zic{x?F`{^&ZG2bt$Ii!2%_2V`sKU*G2F%dcZT*BrNlj~m$#xn$Wq}_Es<}s=d$`G7 zw^Hzh-fi!jq9wob?@P(6b!L{pnwcs}Pt1zgseN^8v?40DP}-fl>9&Gl@HbtLq^leu z5m~?N@88_F{(kFN-&Ifjsjkk8sT?L;A#;S>yz03hSohIr!+M}8O3|1^lU|?d;asQ# zU^Io}{v?;BNaYDd3Fk0ju2d&Mrjz*N^sqwsu+gRhyFh33j~pEDSb=!7J3Ly0HC0_P zHIN+oSUO|89(3#jp&Dx`R{+s^4*~znYP6XO!tG?9fJm{4Qv;ca!eXbg8tQbV}HHdAg z50O^!Z75d-iBO}o5{5f*OLi=(-Ym%p~C#LIC4%I=pXhXkia zs6x9SxXES#{AN(jOy~K2C$b(af&tUPN{s2)Q4*kW^4II_BFI@qt8E$oC?&OJY?kjPd~)*cCi;z4 z>v?9M>m3vD@E!L@*??Tvc?>f7VTZH!Hpk-2PBv0vObpL`Dy7S!fb`YA-bvkT?dyLv zcqUtD$h)77G5@FwC6Dn*@4NqWU2io=8W{xRsGt|z41EqI@T+}b1HRF6=NlD1WPSXu z?sU5#t$T5yU#eb*PMZl=X859v$2~Pm(W*EiIh8nc>G7Gazvl{G!y6eENRZHz9w5_q z0=;_Ejl^A+yzvcXWElX^gi^CCN|zZJ{tT+39*|@VY?DN^?UOzv5n?mRla~Jn2rWwF zH(7_D20Kr`p=ioO=9+6*(SC8vllA>A!_$uv4aDeJBtD%NH|fjif$(~Q!HkL0&=9r} zIn)+8Z92p20^AJFW1pF!MI$e5WjxBioPK)81w^` zM5?yvTnN+lx-<{W`#lwA7t9-AHjYkn@;(%cet?=JR5E8)GVs|8?U6Fc7dO&@p5kD|JpSa>H-Lm|)WnoPVTD_GPc zu;0g@0ViVBBbAYPm`kUN2ZH$eMfZbTe-d-9_CpVP@vV}aHh`E`Nu21%3^%2W(8JVo#&Ai)h# zd>=@3(~IwGF2VT{?^qAdSjLa{Eyk)G4j=@dqY#Ue1cEuhKa>Di)#4_Rmz?3d!k_g2ixuS*k;A|q0G=1o zEttQNK}f61Fir(ZHUX#{Q$)VKg#wwt2)VnC5X!gP@Ejoi6r<#t75faKHdmnOu@&Cf zjwTmC;irrYNwK-+n2s^El1LGp&YJyd3I!id_qK=m0Zc_buZUSddkLjnO?-5mB_={H zXa@&LWolyu^}aHaF+7?DF%nC109YRwv8S0(LwAXxG7lp!-XHIvyxk_QkCb@fQvs*L-SFz0l8nU%#=^}(%+8oLnX9A1R-iysmO$Mv3a3TB zJB)HrutFS=V6QYJK2}#fmQqHUQ_-AB3_>HaOtLx^a=;vrz7X0GA``hMHwT7(+6(b# z`HNtQ(KWV^(u*0|YwomF94(7`dd;(-LA}P35FHsEjS+NJmKct5v?Hon2Rmjoo6l-WN zK7<#cpI(tIF=4VF$ofSpX2A#qiwx$2%F;i`2?&_NQt4-@sU*qzi2Mm&K%zO&2cAEq zCzIvskYlm3Lu?023$Vc?4y5JT5V{9&1SP`Sj!EEGAzMEUuW6}YmLJ6K%aDDt?XMn; z=iWwEn7%Axl`Z)xB>5#BFHxV^!#)>w4%;3$Ps(oKv7F;jt`3(SM#P>&=TIw~&&Vh% zYE@qMR4zVXmp&FOZ74gynNXEp8Ayg#?oXA+mNFF=oJ_M?JBIvR_7uVt3*v>?W9Zlq zPuiugnRKrGWuB~r59~{k2Mfr`Hpk1RN6Tii<@)wiv?^9QoRfR+NYU@Z={Lk@I; zxrin92lCY}d)5+vj$V@0Nt~)2d%IqyL+LvEuWM)nsvMK?3R?z;(k4|_SLMmL#KR;U zk}w#rXCHHv42sJw`3 zHfXpuU({@Jacv3JY)Nr#E7ojla_wk7n~g9fx1*^fqeC%IxGKIX2Wf2AY^aApzTYG<8cCyP2ARW6~mcMwb(?FsyM=|n*$^(|$L%KTM zzsv)hRckXk2XQ!q(RffBPpH`9_euIR(;T^0`~Q@LB(V_=_`OHT;@Usf!@z=IDM2f} zm&ad#O4q2Kr~bqf>k3H*&SFPsZ`VCm?Ly2VYf2uWcn=NJiLbYsQ#sE|sf zltQdX8OpLtyl;968N&%pjt-H42eTx;W-;M~9fnLvy0qftu#AB73J4KqE&~d3rSUFp z#nn>I>}0=Ph@_9c5r98r1=$5kf@DA@=Wl zJe`$Mzpt1E^uqIiSpiB#+9!a1DXz~uI32>q^S*ZyB>X!>Sc_`1Rc@Zbb?p42G+H)& zMo;W>9^B{0t)3wuQDd%o_fVa<&m z))ZFC(|xv2h(nzNR8^R7H9{V#tLXDl4J}%{#}NxF)PgYh!2bjL$!t;s7k!?)2I4h} zti^2ZL8djU>U;={s82%Kem1U;34Flm%*Eu!)i&v7UiiyAMjrSFMM!&Yv}DL7V8ECX z()M`y{?FCe_kZuv-o7~rQUA!x%4AQU_*#|JV_8yIiBZ@Lk!`B<&pzW?5s^*w=G-Z- z9Ig!dK@}&MZr z{d)}wT1_ACnUZ_^cap2U059=e_SuhZ^? z=>PyLkPy)uCi8wFbcq3_jsY!+!B-uFP7z%U9<5-n8vYa|tGj?9F(G-{u0Qv!CqB8B zqBZ09d|{!C*mQj#f2XH)ShR@C*R}n8=X>KB+GiPZeI_4Xgduzz(Rns9}bdN&X4|{ewBKXXc~Dx z^CVY1B)i3F9=iMzWc}pUC02que+{#&{f%D!>Sy-UCOddd$XD+(qPr~+sR*XPjcJx>GKz~20WY=TJD|Ss(;wMe+{!q z->kwrLe7sVoin_eR=WniJ;@|K?XXK_e18%?Og$1FIMhp(atuG_ran=sI-!i&Imz9V z-aEWN#h?zr_@^l9_UfE)z*;_W@MiUfaP~$TnWz{b1Caiw^KRsk3uR<<1s z>Al&A*Y$|5qQsozHdZAqyWka(XtbVE%xmAd=OJazwV5x!bP*HlUIn zZCpm9Lcm&DFJEVZ$)7urgho(mScKUsypxmiU5vUSk!~4R)w#yqel~`#(Kf}QY7KRA z{JT7{slE)Epld1I`76bvavYV8kJ znPuVLMyy{25--ABxm`0hBAG~pjjWyI_68()N%l5_p$$T?xba)h&14NJ^37;nnthYZ znZX*CPsn;5qFly%oi%Fml(2>Xx+L`)*AfnUic+)5G!8$1vk{u7yRAj@P^Gg{W-pGP zhgNCflUaXjI-e*G>jtfDccR8{%XbF1!*28T3C>ESbUkKDAMw7P2-$lcrkn!7z- zn=aUaFn#V&)Pswy&pxujU+83zHt*qll9bf9deYBs=E6Wt+V6TNFYoE@i2Lxox~@A< z;N})d8wey?2hgT>_t)W>LJnh)L`!fqDQNJNrTMEXQkfd{sbKQCbyQJX4(tQGAg;d% z11S+%!Y|M;R&@=GMqL@=tk5v-)D3JqLpd^vx-gi2HjWH|9L*CnQU+3hSG_44HN|Bf zocZ}8l0}|b3O|~{kzPNREXhY?l3&enji_)*f!n{{-{dk1i`cp?dumupur)z9x&T}2 zE2k8C!D#0(Sn1$0)FZ4V!3z>9fjqR4y2ezM8@p*&zo|)B7fnZ!^)4wZNzHtWRaZgD zzGM`xk5E%>*G=b`#tg-OODa`~A~!cs!XooFC3HzCd5H)!%Sb~?jCVG*s-H<{beJH2 z3e8*DPK^at1^t_$X?@Os>(ul;L?m>ZFZ1U_oyrU&u}PW<$JvlquRTkvwxT7(UK!M=C&o?Bus4L-8ury2{9%8J^eVEK~~?!hsP zwL@r#@-YndWXYGcBczB5@YD9>S&emK%!mrf=l2vvmvs{SiHcyv`^qZDx+!1g3dZ!~ zan-I>Wa&~o<%532xmpx@QOS~jX;Iuc-20M=i*Ek;ES1R~`7Lu3#lYO+fLiZT5R>z* zV$4_7U7TDagGw{^w^JM{C=pi)1)USrM?~|MbUIPm61apR18Va%s0c`>oE^L{f-Q0b zBm7~)1?_cK&Gr^S02P0fDd)2G0lIKca^}2g^7~gM^nJ%PC+5qJtG0eMvejVivS^vOS9wi#=Q5+kx0a(pJgy77EQnKLy>&tplomhNA@rFV6 zXHfh-nPp5zOOjB@S-h8oEVUkF*!;mIA*}JC1pe0&eLtxln-k=|2DA={y7hi5o zEVvVYJ{G_d1%^br0}z3DLXe)h%N{t!053MME`$dCbU?VJF4)T) zPWsd$3tZK~Q{XR}LeW;>10gV-w0nP@rVDo-#qC+qQf-hMUAcBmcM0QB&@1OtZ%%= z-_TryBB}P+LOca1H=Skl(iqNhduG5r-~dCJn&_ea$(=si@Tm|W<{28vOcGiN+WPFE zp$xz06dKDZ5Cg|TaUu^_Ai7)j5NRbWz8qra(f-P5@AZ2!_04P9TU9wg1Iq|EdR;tw zV1eQ^m#A6Mx=Yn>o4<^IdZquTvl7f&bOz!I#r*Bq4BE5_2bfy6=#n`FHvo7%dGw&~$7 z6cz)LPJ~GFK#(C05H)QS_EQKgJIX64YGW-5^2Sssf~n}~J7g++Ue(XNfHc8ZmN z+cE^j`OJfjXA9PND>nnhg`MIgSo*~l`m8ehk?`PNYXkmi|Ll4z`T`Vpi7uUv`6Y2z zuVSk-(WWhUOu9wQ{mb*#VhEYF17i^ZQWBBcG?5lQv7Qd` zt0ZFH3L|3(lwFSK(n9shLN$B<8eAa7;i5)V54{A^)yrQxBJpDJN|Pw03r;>%(T6h&(=nK{4BHUoiyboIrx)1VjJ<40qI5#BkbReHRSDzh zB|!EPfWpbp89R4Jq%f19fKk_qX`rqfmJWxCnf_C1xgxS0^b{YrF9^wQS#Bo}fdC6=s! za59N<)=w30KFD|QjPnKV>xrSjzXQd6E2;d37_#NLhRRJ_7`|lSKX)#&Ri06>(?c2P zbI(VM`SM@52l3Hakj7iT=cw1ODXU{V*P96uzd0-+Hiq|ZDSMI?=>{7)XiYn8=5cTBBxk6wum0UKm z`NHk3t0Ft8AeM`)gG+&~z~>8075-5USxF(3&bKzO;4#I8NUBFB_ceUxl8aOTldp}$W{4R)MRbcFGnb!UJ%zm_f1a+7_5oUTsx5`o!`LT$)|A-k zLWFoh-QShqz*L!gN14$H?&IFqL?8TVnq;^ICODcVm!Wdv`Z%m37?S$(oZ50o<~TVe zA_Z`rd?u&7-kgGwlLCf5+M86xP974iCdH4J>u;MB+~<^FaY`|b!LM>dUr)uVmVjsO$L_p z*sZdPq6ROWh_TK`)KXIzTrkU)evNQ$WJJ76gz9&bLD&+8$%Yhw+zc)yG5c2+1hk*QL(q6ue14v?z0Uy~WM2HG;C$dw0 z|H)8;UV4qC+PggK2S8MDb5yBKP{$k#o0uQ7;Q3|Gr2R*3%XCsr}~R0}?|Ghq`Up2Q`YFrYoPnQcqnJk4*6x_xME3pMLOJ4JiCv z)5Am_%;N-;w*KoI(Z|X+SQ+{}`SXs#JVK071YcSO)?fbyX~2bCe<2mA>y2{byCOst zz$l%S?0Ov*QhVjzS06^1B=!O*J`)s7E@Bo82?iSa{J7@j$-s|lW-?7+ z(W_~8XCd>}Q*x^p&RB1DKVDSa>|Z)eQ+8D##|UBpFZoV4OL@OlvxZ5_?z{i`96P^r zW2LCyG#i}z4Ef3s7rf#+U5fG{^>M%o`}{VLGQ>L0@KtpaqXdb#r)*R+P)t*Zzi27A zRUU3q?z5ViC(oIPfOP= z_*Pm5zOj*vzl{t^V|q&KyZHx0zoo@CmaexTmHX6oDwBUEtG-RI9RGt}KZ6?ehW=8f zQ)C%77h`Wo928b1K*2!6T|jd@ozE}phAa=~E^rz3DmFS#OnTOrghrjcOKAIm{c@%K zAy%Kfi;~<+V~oAS+s0#!%QMk4%iYWK?o7aKhWS|)g>5A$Z555n4vEVX&x5XuRppI> zx+3+&{?46U~FUz5&jKjrKOh4#k9(@L4wMUwa4mj(hR;$QcnU*D~mGQ`k6u|ls?6kfj_ z59TGix{$rNGv8q~fPUW1u8S3hbMrnVHA0+vUGlb|Tkt)suLpRrH-I5Azz^Q6Eh*e zAZaj`z$ES3dUp_lIl}_gJD3IzxZDMt9avyd1%j*=v8*g`S$bYxKF~Vm;ux>z#mdZ; z^ELF*p;Caz82j=3=?I=Em3QHM$Z!}w)ke2)KSdyb?4cd4>BBS`f zMLuW^(Fc@S%U z*#mrQPMIUAANoX_+J({pB%?AvN6!K2%aBXK7fGLJ8GX?^^0C;~Zz>QVtNa73oKZV! z`t{YVW}2?*ULfWMB{C;>>(?XnviETMsT(H;>-*D^U>sJ-7cwdUfSrCyZWJ$eodR1D z`=EC8-ItAd8njyp278Ghn;h7Z`S}gviR%OQhYuU~*-pk*6@AA%vbBQ{>U{S5o*yi^99oZxFg=JX$qYl3OA-xoqKP>EjgXTX-TJV7J zpq7yj`n~~)-8<8_<*?a|I~2A|PpWfXtu_go2|_@Z(`mXWudSEfNX5kvg}*zbAO znd^*WLe){13)kc6M+GL#*|cc zvDUZR?t{ejfAM1=)G1s#K}u5fockwUQO$esoC9&H=*aRV&Fe*sd+W8@71SsE0W@n+ z(DY~hb7$ly1x`!4fk6~v4Ej;V3q;AHYq=duW)O(@W1csCyz<+q{no`~pC=yBJiO0* zP{{zKvG7~k{}hVg)O8nPAVN%wWQn8fw&Zg`$S=tQbsrhxz{HH38pPjRh|+`Fb$Ie& z$$x1%ID~ZjyZ+LKV89>mg zBUuw0l7$?w_;cO~MM=dfQEX-5Sbc~I`N&_vrDkPlEMBvGOJJsWZuhwqg@mKKvN2BgAx6XebA61h*Ecz zdeYwr`jEfdv2diy>JWdktq41&B#`>-x2NYC~1O&KoW+e3E)_(^*87D9cgmXQ-~S zKjUFLv8w`N}e@VF06`Sq2YF{s-EC0g?x| zs7zCgPGIb;4sQfZT}9PaH*A(B9fz;f%Nc+2-KQfFDUi%ve?OH;+cslJJ}u=YLxpXw z@)iBKRb4f6?tY%34IJsXjK4I7Piv)b*(sL|mgNb+4M&=5tzKz|X_{bZ8>L91G$I(4 zP?Dcgx{J^ps_U2XD?K0_2+vRF?O8nE1F_}lzEdm__-=#$3l#StAR~}IvkZQ*(f=ns zG}*g_gUy=(U7Dnf0Kcs~l*BO~3+DoUf;bHmm@vn7_zx(~B0QinC3cRjkhv`?!GgAA z_?3{J;>UtGPPs~Xki$MH(C|{3RGcqX$8(!PMj5$rL;%b1&T)xx zblfDxI9E(luaCotErcH`4@(^AXn787(IC-B2o>rjf{M&(v7$!g?>;0(I~Flm4l4If zoFxf}Gcs{UjSegDrQ{qk;!%4N03uyei#Uo|wW3sYy$N1=atyP*!BER-ab<3dE#`Ex zOE%uMdQ*N_%~ zh(+&YjStbYnZHA=Rm!5i>&NRQN5VRkjV;{dDk{Ht6m0CNt(HdD+yxUU{(td~VHpDK%^ zu9b~BU#99_5iUQfqm-pr^47gvg^AT*@^-#1+P%suj85lcmO&Ez*Ggl~O0_Qs3oT>r zHEt+>mFKb+s+RT3O>*r_|NdL-!TeMgx>IK0USTk>nMxak^Q-gG~nzI7Z` zJ5hSPUcKX^1Hf(}09*h7z#$II2eJS#0panP#qn8H@i|}PbK6ogi*s^H5)f@kg|)fG zRY?U6>1EC7mE8zLNkKtbC8DIVtnAquFRcHDXl$!$Zfhth`BqceT3?e=HJH*ck=8Vw z(L7VoIbYEKyRv`2VQj3ur@we;qx{Ey_4I!IznB>6WUQ zuBMsZriG!_mC26%`L@HQ&fc+}zJ>YT`OTh<>$yMY(|>MekM8Er?^n<7kAC%>uJs+S zj~<=Q9iJ^BmsnB2x&(}$Hc}($JcL|(94tA3 zh5{hxLILN((OfBz)_9p4yO|s};eL!^JP88TtctM1NBr&Z`UW5%kCWEeJ{ERtSs^WFihX{V3J0<rGH^8?oL5~{+}4) zJ%0!Pi6K6a4iNtQMoCHOe}^&qzrvW3S)7zx`#*Wid&Ug^uSgbTmmu7K^tGY6y``n~e-fJ6Je}RS_#D#q?!Ka)#s7|KL^^fI8M>54=@OJK=^PrQQ;-hn&j0BB zd+y);#NPWk_HpcYn`2%8ZwA(^b$!n7xvpz{n%e4HG1%Ff|7W(A{Ksr98{e&;*=_kV zVf+3uVaM95XL`!9b9Q~CdSkq9XQHmTwFNtKdwP4jhknoBp6_D=L&Jk()8EIZXJ&u= zHJw|R&wk7=jI8W^Upe{y>uhxId}i-_bFy*w&!pbk8Q$KVJY4xbsrOdKj<<*RH>Zzx zhmZFrPY$L}PNskUTv%FJTUpy!TUlP;+}zyWT|PbkwX?UrbFzJUak#&Ac(QzQx^i;5 zxqoo5e{^zmdVX@ce|2^B|2W^l*GPxg^f&>;8V-L=!^b?2!eiclh>eR+NK8sj`S>X{ zE&Met4lWH@wssl<=WcpYaS3*GD@vtt@GOIbaReOn@^HBvobp%PXrT_i$LljPY@(cJ7$svp8&n^mhm$I4n{$5DmaWU^yZ7 zIkjB{)|3_$oHbey5=t8G?@&fFVDU)34(}XNa9Wi;0u{rTF&BzVCH6NVd)}4&U?{2y z9*jdpF(=!XOh7;7J&lT4jCjHc;@?ep3LpitSwBp9I6_aUt%av{@?s|-nI8h#)D|nt z&;)Y4hGMu;sB(7Q>xHhAsi5~_Ehhfsdy%lZ%Q`CKK)Ei!{z8*GPLc=d@9s&#B%SO zgfqd<2!YK73{TS=SyVXfj}FIT74^EabfE{Uc=jZh!t{dH1tB>fmmxO+Q=fh?^w)b& z@2w0vKH09XzeMijfo1U0TEl^j%=lr+Z1YQTW`SJG@!0eCmlG_r^Oh5B zE7q2i?Axu_$rOu_K46}Bq&eEDzzmPFYy-uh}rq$2lPX4qSB zN0t(LFqtM%Yke&zHIREfH#62c-%-wKrwRTtd42tJQ9JiW!TYxzd9?Ne`5RwqkJdkD z#$9o57PV5@Y!+kKKW~=w+}qeJ9Z=-?RW|HF_t!P#56YT>(LfIX55WJgYY6s2k(!>7 zm6KaiT3%gUQ`gYc)Y8_`*^TM$?H&03_mZ5PnVtDDhh2==CAGM`y1cr+zWEEgps=fH zcmMFOwR3%a{m+F1x=tMmRk!+Rng7Lhquw5BLmO-5_GQ~^`?@jJUYY*o?HfHydbZ-9 z1~}p56Smwcc`n_*OzD#vg{ST$_16(S$Av#nSgkV7e_7dq-NS(u;9l98d-?g(y?y8U zIv~UYh4yg|jW)*Ka1|5(_(QBg!bc4h&{a>5BI;A_{kK4}bPyB=L`Y7PSK)2*3<`1u zLrJM}DqEay;Nm?6;8T+Mw)BfWxdDPeV6{LRvhsl$x=Er27`XEWe0sK@mYTwV5(?KN zgRQQ$(4PDtBLJ0@9Rc`yJO`kuGPkJLX^k;OX}{Op!(`>+^tKQhLF;KuaYjc3lUy+U zgAz76T25__eB;i$xANlne=oYy?A|0%$MxyX(wzQJ2tUG`56f}~Gn8Yfh=KpUzLNk0 zfNyXG0Vp64NJK;ghr{XV=~-Al6Y;64O*)uC^n^*P@PR`D* zZtm_Lp8o#+At51AQBlds$^Qfcwo1W*A?bfARML{Mg-Ry2R>4xCAV2@_TIEYoaUr%` z`2&X9KVT>>DXFghPgF?$Lxrlkrt12^tiQp~-BsJzlHEREFt}FIH&={3t7~+(Y+|>5 z_TNZot*ZE5RX9{%Hq=yxrNV6QZz{|V)UJhi|s=El~}^4a<3 z?%u}k>Gs*h!NJxMmI?=3r)MjtXPbL_d%Fjxhgdco@1LISpI%)2bC&=A-~WFx0+4F} zIRU+LQEHPPgq+(rR|5zjgc79-uthyybEH&=G^fCl_x0Uf&afbhsUIt{iRq;ZV{~jC7ya+xsz_b=XqcK;!(x3WUFEhE11_01kfAlgNvvpdCbRHl+{bo`l-ZoY*!}FxCmNyO8n(P(OEIxHg9{Nn^M_=8y zSiAQB=W~|S& zW6Gj^7>6c+7`x8-Q(*ZPAWV7}h+_)z|L8$r`vw3dduI7Fh%@^nmch(v{$~h(JLf{E z(5U4?*j)!7T-TkSpF)|wfijcSj^hiYF&91eTPe}aW#|&f$Koc%^ z;~WCdwT$Zz-mHuRr-6zuy>@_sH^bHc;4Sz)bEc7eJ~k}nWA!o>fADsVrccnEwKjWRpcfL}*lHA+I7MeF-SNzR6coPB*rK^~~pd z@aH~8`H&n3-rg%v($VmfaWvNe5^`Th-X#vo3n~Dt|r`Yy@#JJF&br=Xb>C&*=g7QlC66XWS!;!t~#zArl58(M7MnTjtzZ>lcLL z1%RdX0rD*9_xy*QdPCDkqgoe}=gy#~1HHZ=Lme}}Ni@gS3hg%gU1fsnD@oUzH;fUb zPyq{j;gJN#Ii(+_tWRZVal~YbX@YaUoCU3Y32E*<&o2H#b!RTw0VIW}bstGQkK%(o zL92T#Q@Yik?P3@?m4D6pCMlCspc=RPNh6BHX6wGa*@rg67Mq7UQGC+gK69FPWY9aB z5Se$$*HQF3)0-D32V*eHdiJTW*H^FAr@+?$Xet1#+=xTBgM_GJPm{nj;*0P2z(Z5< zIFy?Rjdpx#dQ$O4Fij*LJAO>iG>DRNGuavUU#a>}oFM@svA7fczrdY{jEab?hKStb zd-5;u$=eDkdWq?HVHv0-tE#4^rYQed)#S03oT`?*rj~*+mWq!bKYp&D_FU1}!c@&k zN!>$L-BS371eJV+iwy#{3^EXRb2nudSg2c|IBp7#l_#gee+A{ z@+}znFR{+IbSa>2DX3-{oA0m~|Io4=+qwClQr@421UBO3^zRn*?_%2$|0U=(%pL!o z^{`;?D=q%JMe%py+vcg|@M^d3Xm<#k5U&o0E{-NHPG_)%05%?OY;4S}>|qOm zpZix!C%=0k*pT?^^kQdq^{2piT_JBVsY1x#a$#x zlOr|2Ozb$%2lZe@S$MS(LJ{PElY~L*HI0dd*S&?3t={(Kdn4J`XutgI!6!!zYx$%` z6(&ydLC&7NmulnXKB*7k@+_?H349cLFAaqDV|&T^*+r$O4-Azul;5Zi+=_e<=4aLt zd{d>OV4~D==wCLqf8*|No7ze^xx^QeCOu#usfKWjOr_({z1ss+#4Ra~7zW7C)u??6 z{D~ee%{hTCpZm*RY`L^U^rTcv&A&w7ghRp{e|ntIijspB&B?FKvaDsfw4pp*LHnc` z4tq~V~AHI>JkMl=zIcZOXfLqb2eB2DeYH;kWY(B&rAg;y8f8)-rNeg^aL(x#l6HoJb zqgWAALy2c4bYa%>WkSnn9B$O<$AqVE4!Xq_A(`w+FQ1l#Ae5#X7gOAp^Hx539bs`N z6OIcMUI8EgKqgTDfO~YBwihV8i_c}G&SVCHli=j9WhcA*!Clvk=%@iwG0iy?7vTkf zYBZ)ap|3?X3asupK42;d{u_56QHlTnnyFa~AA97289-wJz}@sG&go%smqutG&JBdZ zsnVzle126e#@cLEuV!zIiju$`)p-Cy46G;bnsNMy>9-F z+xtBa!yQ3*dns~7O;lw+0XKPvZXXQDQ@=VeDGDuGuN_4q0&10%?i>#5=&K0;aDm9f z@4BwPur@VMC?AByU=Dz1v_gM0X7f;62|g8?!tARkiX(V!6ajyKlP@%y+TVO8xp`7sK)OVy{PJ`(l4UiSP1YSpW6q z;kd=u%cE)6?aSji6yMd!V%+Pi)76}>S7)1*+gIm19emdp2V<|VFHcsmxVt#s#%A09 z7r0B@@#j=cBh<$BEtFg6CU*iwd(uc;F)a*dJ17J+9e#~cZpCgqpp{kA z$>K1r?BcsY8lmYFIm!wfQPwwfd(x>YF>U0*&q)j+3p5TgbuXB3s7+Ke=*BSZCqcL* zh6BwvzQdKCsBTjjBIR!!V>+bINIlcB?^?Di@z8vpbcqxHX1N*K0kJ@YX3*vtXgeTF+an~^6^R1@SH?HC^UtzlRYNEqFV44{MJ3@KQ(}*inTLo)U zQ4Yh=MD0Z{XzC+DQf{(PLx>;i?fD1y%+ugY{F!W~4|=VQhJt$JGk5Op_Be265H&8o z5OX02G_y;)vABuPz^X~|@@G?$2>@5LhaY1zx&QIxfLU-Ka9#VHSCA-}6D2kb?=y@R zjK5G_;Ut;pyFDPAYCq7-UDAm1!k&Oh3w5>fY+CCg8yJv@m_F6xj;6(@D2n#DP=TMpGGCC@W?=5&K(mm1V zaa5X0TxhAJGWk96s4Q2l&|1HHaD)nnGuR>pTb^Kxj=!1( z85tRcg@xD}p$gmeZD{${*oNgimg-n&V?o{8+S=IG)r{%w?(XjFAL>`x9EafGm0cOu<`BtQoinF}fGf zRy7e%dRsYNgp!6~fLPCq_~KRRov?*Mv8f0lKN5Cexs#}3gIF7Q{E4Ty#Q zZBih%1qGn|k1iXwQpDDOv9Yn4nVI?d`DJBg*meqbjN97UdV70EMn?WLzGtv?4|YTs z78cgm*RQX(4-O9g$FclpRRMaRst}anY+xCz?n{|A?3TZdkkUi+2_;TbA$glOWH>`p z2bwt#x$%7+Xg8Xok+(Q022EHwn2y^?H`fX{R@_nT-J_!EnU@6`v!;; zj-cVrwJJ#OYF?q`U{cF=c)Y^*wdvH9_i4-X&&*agQE!TGQg4M13g995=?7P9+IDoFA41zC9wI)6kRs(dPDr01AF?&s z@-mf?n(4U7(}fpQG$E^4sxgf}<8}I0gZy^s-WLd#T@<@XseVwbm0kO^#z)CPMfAoS zMS`DfGGVs7uFt3pU?k3f zA}Uf%7CR~soPwB$5JFX3XMqr7(Pnwr-ILk(omGKqxTkh(idVAX&g>5=vPOQ~Z_B;w ztZ@7hygFVAs=q#$JHJ1dEr2Ru4VUNNCTkrDO^tiT2u0(ld9#8mpfv8DKNkZ)3I6zm3)A`Y*g*=sP&N-+d7L+f}U>`o~qBEB-82 z^hLg?WvP@yzNAaFpce+~t=2S(Qh6En&^lJnGEmz*@wd0yDN)Cv0PC%`wn(sb4YG1h za&|+yVb6N_4}rCa@1S_>p`ve%u}_wfUyXghdkg<;tC(tMRIV$!!Z|wIC8k<4qDL|1 zP&ez;Hm=VidC&=KuTC6zlR4!0b>nY!b#B~5dH*k0b#f)vRUMgB`mrD(Jhdi1 zv*3MpWlB*^7CJgFF(5B44lAuLk42WnCFLY%SLR0Mr{`qlm*$j|SLEeZ6%^H!6jWAJ zV2#!2+^&Fvp|GNUzml1#&uy_Kogd1+2Uab9Ec`91&MxfEtZdJy87|7}uBdJ9>0Jy{jkT$qFPR<~D`{Rw;(3*SQ8>zgK9KlC)Eb+uMb zv}TRASBwvT`=harUmV41tg#U=WvM&&XK(q&P!3jOy*HY5FjaZ7@Y`YC+%wiW+|@BW zI@H}f*f%sf+WCEKy1D;n=fqO$%+C1C&+)b4&c%(+mD91+_2G?^nZ1qiy^HzY=GDoz z#mTX~nWmp(3o8p}CL1kZzhK(!c!$4)Y#4dl5i7 z%#?qUE5SOx`|0Qagw0+nL+$OzR?$;O4pT*II(EuX5mtQhw;eAn2ly8k1+xmFTdZX| za!|tyiaTKfEgcU`>AWbCYlN+9`BgqN*K}4CPW_|R_;>cgC1OymD#Dtq$!`d~$teC0 zlXWpc8{I~Ep_|}SWWWVGq0<|CeGHoVe!~Y=en6JrEJKmoAXvBEgOSQ0sNGcz+hMs?*Mj;rc<;i^M@c*5?+}Ti!_c~3` zJz-^OPW|`$Qr!znd+*H@P3TF_$Oo@}e6MG{mKFappDWw@YHf|!=h?lr zZ0t_jdfuN_qsW9=OHNVE_1Sc8!QZXMpjXeDKNp=@$q^^@bZz`=D=oh!h?rge_g32P z>@_;6QBd6Lvhk~OE|6!d%4P83@9gz?t7dal%u;03U`XxT!KlqPHhW3Lzu!Hw39AQy zZ|^kXWk|5pUR^!jY5tSF;=|+ZYvKB~yKOWU7pbk}Hh*QWyQcIU*kk!Pa|%k@Zk>Po zlf4{k?i@?(_lm9*I2HuVk`b&7=@w+=mhz=5acCojdu)wH^!gq^H#hIhk@Xa>y(Wy&XGLmeGQQ%dIAM>G3! z{bvLWLhmjXw*>2tJmX9IPpc=CSdJPc59cFz&xTrnpi-EPm!I-zw+bH2Pohzk-@AT* zffWac*4}yX)M!gw-G4g>VZ8DQ^;-n9@%q3d?>+No&;c{5=Ydrv9Y}NF z&sob*AFg+cNqv~oWJ)UQjl`dYzL0z_Uz-c&58h>KkVkQi9TVu@`ySLz6mdXCrBI`@ z??yW<$1O`r=w+_qSs=;^`+<>@;@9%rkYFOlZHf@CVDa;zX*=uNm3zI;%tHGfBvdAH ztwPSi_vzJQ&e6JlBs5wU>49lKbIAp3A);Y3F~9N>+%isQeC-}B-HZKDNDA3_5!NYP%8e}$t%Nh;;*a*6A2@c6+#^%{Xt<49yp0q zi&Xc~u4>gnA6$P-Gl<=_)E4Q|fi2B3i!EDpxa|PFp@yGCM=eO~GI1F9_|5eQ;$^(n znUg(elyHDSy&BjfW`VQ!6)lhH&T7t@3UCN6~fhUr6Bvwr%t= zH>AIija8l2tvKyJm}0_ur(m-ocAxayl8kqmXeEPR5Z$d`*rKimPvjio*(w{>>X)E; zn0SUgB3#W_vo(6Z=$$r&>%BA&!!^kf<2=_$B0IY2Wp6H36Gd$9GvI9_ui!hcLiDzE zhfL^T?vb#B+2e5GdKqB|Wa1bFWOc2-x2%NP=!_Vf)vhq{=fun4O1C=Wxo#HmDV^iB zja>89pln}#Ds{_f?vjD6_*i~bG@8_e0_QF}Ju015TC7~y}8+KmC^>U$R1@>;F z$fMB_M!XjE#PU(DMW4kpT^}9phowxaFB}5|3J})c`V;ORFajDjSNuXFQjiK9Ut3mm zeG=W?rKvI?j!AXZCiznKTC8|ppQwcd!Uj-tk24?AI&Z(xz2=b|VXm zpf(3JOM{OpiLkJW;TNWgcJTNc5BlhUXC~}D)M==TRlB4wGL~*8RjE3jTc)vt#CM%* z;B_9#{T|y|AEOS)1hnq0=#HEUxKtaP@VywTnH&qxFV4BiYZ1pZwW5Cfx_V||D8^;x zxbN6_=5j)%R|0dce$xDTefw2l#azm(lXeMdZ8Y`ApLu!59gnZ}oP%pqr>FUPpI>3m zWZj>;#pu=*A$^ehs4hVAYkbwh(y#o8x=k*xvsJaL-VdMZwp_RAM>*OLU45jsQIEWm zP8b9lQR%;8`!ALyu1^Od>JM@rU9LaAJ{#}9+H|<~?CaP#X@fOfpA7bSFM2k(l`}S+ zjlJ&O)84t5vuL+|kc z4iYZ<7Ah(X#<-EX`P7Q|Am@>eY42!Gd~`E?-ZlBCgM8U(JXzu&Q;xsk823$$^YxbT zeKYUFYv31%>*vMnSNXzE5+bk*z^(N4BdhQ&tE6sD#cM<1JH2pMvV?D%0f7TJ!c9c2 zO}FlrvH%ePJZJbrOSlyhNK*t*!N7EA0D8GBFiq)lO60MUzd|MTx;-Sn*z+6?eZdcp zqeeL@!w4e@P8&hQB~TnV(H;V5h9lUg0oVfIRv~UYzkZ5x91S%>~Dy!a%#B&|<(c z9Q0)sdIK)F3kTp90prTBzh?yw0DI)ZK~KXE%tAo(VK!*wvQpR&i?G*e5iJ~`X-oIB z+z8@9!YvGJhzW3)73R81cTXk~^c0-QjD1H^{NhMrE)pVyY#ru}g0csrg^xRPWUW$E zd``q1=Y2*lP?ko-HyXhP11NAOi2K?dUgHMm=ZZOAmF7%fPK&3`Sf!GseqR$8gP#!G zT@MHAv}w`h8uzsg;hNQ_ODZVxA9A z-Ol2}U$TJ9a-nz#BQ1?suIJzzsU&=nP~d?12y!6W0!j(XSF~9n1{#|>Vr%K!jVotRW-Zms8JL)GdIV3yeBoE{{_ZU(u5Ih}p zPf-#{(OXIWib|QK^|h$>nZBm=`eFF7Gb6=OGsRZMZ+YUQuHVO(A|EvtKOVS??$Bay z_OUpu{^aBM$)4lWX~!p=8j-70s#7a3+{9F8?NqxrsWLgK@Uwf+Nh*>=(oNblnzOs) zT~w4t?`Y4`o|mSH45sOT)7dA5S@IAYv@{B#+2#WRGk4kC{X(T8I5V!k|+ zJ{)Hm`Z4JVgBiCVnTmwMvXjp8;(kh#nJO`vMx~h&tC>3DLK>5fS`UMDYqAiISs=4@$BQDSr>q8bERx+Zo!wq+0SaS?Spw=C1xqo=D2v=bqr3B@W}Dv=65&psIo}# z7SAQx&$-p<>z|kld!8F|jmix^%MIG~lc~xPP|g|6qu$d10aJ0pU%H+1gV^L@#&7`s zob)4_fR+cY-vNQ-2s$DB04)Rf3%5XizW^gkaud$ay1AsK)^HvcfHh5+?_{8dc!8Y^ zj3N^6kRL3x>vph1q+=fkVg`xZ!(0&LUaKgiWuzpWYo6)8_X)~J6dmA(=8HjxjH7{g zL0{a0maKyo6N8e*gG9KZUqjqb;?XXH&=t=6;GH0E4p>Ag8gI(!`yE>avR_N^43wCsj`1QTruWpi$JPLc~Vv4evz!5^~hOQ9QXi>sAVd8KyW?g|@z^%E;J5-XRiuBt}^5J6=W>195Il@2oa z(&z5(5-`hd*y8wm(C+(p-LAX#ftnhGsok*j?qUJ$5BdooUVJMi_k=S@#9qKZG+S4* z>6e@(P>(Q?rN&kE(9rv$jez`d0aLC7PuZECk~nn2oI2xO#Ym%X-1SI1;tZr55k*?|OkIu|^P zRxl?aF-0t?s5%7i_WcT4K$TTJCaC_@<7*^cQy^(_UOv}*iOL$DCb|M%>VkUO+9oDR z-kSxn;dIUH$-Jz#*&Maa?$OPx-Oc>QJiN8_0>&*d4_kg37BJejNZxMYyB%B`k}4(H z+HtouNJI<}!sgJvDCk zyxTq!lVM%kZadv>chPQ7-{BzH5nI~IHq=UG-R@DqVL9FCdC}qcy`!H1;~&cAJDq}U zqbOWEU>5T*;mO~OroDA8+9HfQ$(k|yR-K8G%<=T8Nf({4@0~D6SElXF^v#T{Y?EVD+rJuj2Q_u6T6e#xfhxOkS4n2MlftNr@{YS*pU?y@G3RGm=NB0@ z4UPKKruAeQ!E@+7n^%37D236J0vI$99k&B%2S0#t71TJwRH$X*s z^rbi4qPyZWzLtfjjk{{-Z2>iL(`Z;uNOw`C!p-pQBlRB=&3Vl}C z>Ti-4cxRB=l>Y!g$blJ&oBSzMKm9b=Rb^^kxPBqQ_J>&L5AL3Yh}#S7Jd29zlj8N? zc)}NzW*4hB7qp>^_qG4EEz~IJWwyt`uNjOeL;`6^@;RyAMsMa%+gEsWoCwD z^@3&dzGe5#<=4_nyVZ+fw^yE!tQ;zJc+IZ7y;?ystoll?+N-XdOibUp4qkD$TfMeg zk@~W#^JOK7WG$+16+d`YM1AeU){@-n>c@gLHQu!Zl658Cb*qQ#S$1p0!D~6;>#}z1 zuh-WfK{raS*7McV3K%xZ)mzKzH-u+5>Sup8GHljJZnm0sx4+%|lDr8S#;Zyr-J1hE z&h0hI+q~Vg=?EmlDGHd!{PMH;#S{9=p%|nx2U@l!g86_eJ)k6mxQ?&jdq`k#;|PJ(MSX*g@O4AX6!-C02rK~h+Gq}$^;`qXfR!C0@4vsmu})mk$XHp z_V^h0p-(=MTvNH2#S`T9qBx1Cqz^cXVH6s_q750&k-$YJaG(`T`4Ne65#Bx$NXkz% z*a)mPngX=+IC!uK5_gURO)e$vosBS;KH z$rqWRER9e}Gq8#ocw+qhQ=MZd5SWEH35+-i{&8gYZi7B?!;O>}dlFD%01=)BiIy3G z9OQ{g|Etl12|FFttB_1{g_GA@3d+Bt0=xP`>Gtb231GkEtWS};Q98Zj#G z)U%96)^!UE%k7pXM>h0}p6au|c%a9j^Hw1!QMXfX^KsRirM|4kV_PP*?uWk4Athhc z%B)dW!VlcG|6#J$BaTVFEm$aUD{n|c|w5mu4&IgTIBs zQT1-O(7vkBkdC9;y(y=CHPMClj_TqYW&7%q`@@cpq|Xob|2A14Xk3f5G~HF9^fB*$ zsLcAoNvqZFAXo9B;E0p9`qz>&R#gc~XB{n-UqyrL)k4m?dXI$JL?mj5wXLm#Kodw+lI z&@JpLU=RL&Wb88K9QWA?WOQueu~8nE?RJ`QZ2I>6&^6QR_|nzPmx#n*+KWif?Wqw= zU05cNH8%bUs?y)>S*YN>%4Zzpqga!5*rLHmq{_XCu_!)i_ZP8`)x=t3pT`;w$N43n zzD#B=JRMB-JgUZ|bX>Yyrkg-(Zg@uPd01s9{bjQDu)fa!TybVyP&)d@WPN5+)I#NH zThe{+{Ex}{RmGIc`Kzjhx96+r8x@}NHQS?}+xYv-=dT-A_9g6_iQegThZF02?XKZl zU`^Jq93>sPco^YtqVJ4(?PJ(iE*uAr_avRZt3=p14QcCp^9<{|UOJ~3p}buty$c@9 zO*)Ry-9+PJwq7b0RRqH~A+%56D`&)zL5B~IFHLZ#bcaIJK^{48qKhY7%N zJDn8(v>eP02O#D;!Vd&xpInBlp87I7X+(oV0;r{ z7?E$eNIVh++Usnj$E^mjgW$Lh%9^oD32Dli@Fu@$Enf!%G(edKpth5NS|~Mxt5m^B z2-yNo$pPZIZ+ZZ?eHhhm&l7>K?@9w(9U>1Q!GH)_oVRX#06FXpIPI>g!1#sO(*=Z3 zxK;3W9e?C4Jm&kDA~@cG!-vwv6<2FovOCew84M^a6d=_t3`a$QKn&h}H=mx6)&)n0z^mQ+q7w+c|%Ddt(*-tND)X(oDku<_$>WSxfzT)zK6GLkcEeM<@h0U zqP(@ZI68|EpBbW*J&hm|xnN9Uq6if*6-H&u0EUe7g3#tJy z6NPTL=U9&!@QRjwf!F{ZjFLoo79s^NYPP@fX6*)iyDL}~6@+A>-=6cuOL}wS zGwfStPAxY!^Y%>@Ukbqme@Fku$0%P&CJ`O-3q^f?xRUXL^u-BCgi52q`$Cpt8x0Wm zDuLbVY@yehzeY(i%!dseOOvIee*k5bBgXF6GvrZY#7Vw~jbl%M8n_NP0DUL%_m^V` z*Qi5yeKO85o}EkJlN|~vddLDbVcoZ6m*Qt40ng!{uFk!HF%2L*A~gV?-7X=T{P=;Q zV8RpbqddktX1*f1=NXA$&62BUF4Sf??h3L2$?VR$kg z5P;JhpX30-caBq(n`d{wvS+GR3zBVs{?^}u_D16v#0SFWz+CYli#a5Ha8{53&USUd z>Ao+sQQ*sTzhDfveky9xv6%_yj@S;8$rt1^?%R6<;vWAAzz>j24D=wBeLLXG=?_Sc z_Pd7fd=$2A8DniZBWUKHmZkQR@$RmrH@KC{-*BT9{jC(&D&6l^5iW~ct&PLyF`}HY z5S)$m2I5o{H3q~o*F@yN)3ktMI$!`YF`kt`+ztHt@5;SJ$aA5a6>ck##NTg8y07IW z*+9h1(JJS|dY?WQ{81F}HuYPRAd-mxlNCRJ$UflZIMN4+t5ERiR8Xqu?3=eej)J|9 zyC_fy!p=d_1ov$N(V#XAQ9E+2J^)-6CIvxB1=3-5108^qaoZSchprCNyGFtYT9rv8 zPCvj87--AhkN}A?16cs4et?H_C?2gmh2;AZqRe-5b9M>Xxe%WXr*YUknTRHFuKj{> z(g`_0W_fNJ05!KZ=v^fU4Y0!DbJXnz`jV3J!#HfEMO%p-UbrHkh-%2@zyOTWTmHPT z0UY){U&$L~Y-aK=3hKO5OYm}YEP`)|tv0DZbLe6KMCo7%A%M6PBGt{P&Dv&#VG=rE z0H}UKUOa?HHcSq6LDRvvSdh>vx%f~Kdq1&+ZXkV8XVS1jzggSbLxqTw0B^14iXOR- zAp{?*I%{fG$fxsLE+At3f;_o74P_!8H&mNjJNpd4p+!BBk>CkW)ka&fAG=|lw^jS- z)oRhIHBhy0Y-%I#iG~VPx^&`3LVJrWdvSA7xB#T`YM=r}%_v6gM*-pW&~Td_8ZTKW zc=keVF*K#|AY8!!?`>7D@?7>}vic*#zFR^5X}RE^!)*(h>f7%LJX+f9=GblA)Byu= z+p3R}8%4@!9=WfnABOh7&#m$(3RG@XKY9P?l7gY%n1OCS`(pYLP$BFp^dnGephj5? z&txE4Lj&Ji11F1c+DC)%k^o$&0abu)^k|Tj4-o&-fR_gm5o;3O)FkuPAeR~hscBM5 zX;8h=1bS=Ij69-E89XV_yrG8GCunX<(p8^oG7)Pr-_&Bcqs1zv#ipip%S4O)l@^Eh z_s|axXNLSTEYY#bGTBGpyWuD&YaE*+)8hI zf7Mt1k4A7CGc=4T{WVX9RV_!F7r@Vz10u&!%E*yuWT2`^W>PA?RDA7AToJ1QTpdcZ zshh6v^oTYjM`2(@V+mis4bRIAEN$uUkdk3Cqw|PzOick_8hd6=z~~1XT`BY}4@A2Cq?n_)&$ZjI)J8NMCY^IOsl zL4>@TK_kLWB)e4W=Gp|DQs`XDNoC+l*`#@DT&J2sbth+{(fidLiSJufxF7<9>Py zx>hEW@pXEtsZ-u_fwpsCXHH``&gq0pztlF=tC8&FZ#o(#<1IIJdrbVLs>Th@rW%$| zHaGROq^7%xP2M)@Hcm|%T8`YGLuC@<*%RYALq@J=0w$X7OjnoBgnU5D&*@rajT#l| z#Eeh2Q$no9rwYA6K1?%uuck+IXWEwZ-k#_8Z}_9rd=? zJ$c1RP(SWxKdLuwv@bBFGWX=h?2phpvpxfJ{k?eY3TUMrf3{iFtw6(dsp&2gHUdS+ zcAegm+P%l#Mga=C#C`b2FJ|EQQ>1-5x{brvDooS&IZ;mr{C3040QCkXCQtN<{dG=; zr2zBYAI86f3>-#qjm9UX8Ur6WkBhz&6wk&_{mH|Q~F1i1t*8yVJom796Wtr6)39omu{;&TqFg@( z*HGskijrYw&}8xT%w#R`h#tvHe>5J#5^q8wBUCtZAtj)5WcVy^S)=fiuHv%d=&%BO z`H>>(dc<#~ZVsm~JuXrwSw;7Avff*>m5_0;&4~`!MZ)Bxpv5#Mj~H|o)+x~pa>SzvU{={sS%g#Oq&{QAR?)@bxaypGXg-77kR>ot5d z`*7IHVGT#W%S^8bJz! zb*8#?mZ^2N-MTE7byL||BqunczSe`YAU<_{ymmcTdL`3{VC|r{$R()Qw729X1%U!h zJb>wkxlOG7#)$t$MdbRZav#N@)|7yCxoI>{?}pH!P4~D>W|2+f%c15ivL-u%h_sHD zw?pmh8?A~qwaXiw47OkEH$pLB&fsWov)~6N6o94doo^}T6KLm?07EH;o>8=GQJ@Zh zDUtzVDiQe}1Ac|}#{{T-o!h+T9JKW&_(hO!9b@PZU1xn{WIHAEUgKjl$;? z4@cTzWzz(ffX((T#-boAOTe94#CAK{t!is?7P!D{$JFe*sVCrL?}>46Y~Kh-LSg^Ti*?zTDb6v&+TWuG3^*C&v#!deJ86hATVdjtrUz!XAAEIsUvw zu=?e>{m2}KCRERjl+ zVBwQ(qGLk7+=m`j0Ftjo*IRZe)8I3`q8;``ifht^dm4+gXlqNrezDzs`yFl$ls5#| z0V8h5RzLZ61V}34)6QDw)o#tcQn4banMe#OgaeY$p znO4*BSAEcj4sVrlb(#F`|JW5c*;mB)c7}jY88UAd8A5450zYz|SJ^4ZLS#6cg3!+3 z_(L3D$IXv;Lcxdla2&MVj$b@JSky1S3|H~K)5dHQ`~95`I|9&Go7SWqD{-J(JQAnb zNiQhBNh!teXoU_g*hZr~k%Hw&zu z2YkqYW7p^_`vc5r570%p2j?7JFzmTTxDsas;*a~;0S;ZjN77ZOq<;6!(Pkcdqz=Z( zss<9h^Syg)#Z<2*{^Kvo}n;Y_R9Q zh<6gR-#O$uD69d18*v-19UWHf@8$2<%7fl<=RDXN%?{1EcmcmWNdVM*Ixs=+c$*zx zGovm>snKKGTkv4-H&uXG4}8;Qv^Uc+55mnr`RePs9p%pX?HxBSrt@S0&pO5PuODr~ z;rNOciW2s~6&T0NC%~)3K=L_M6eD`1V+T9{IO*`yE%AH6h(3(NCHC{x(b(V7e+LFY zh;cZQQ$^A!8vF@!gppbN%yKB$*W2!vyDaUYbRrJeyHi;)kt|Blx2^Wry54hs%PYf_ zJePj;oUUr_|4??H;c&j~+VDpiMx8LOb{v>LG%pblxMZ~Pm^`j)rR?3s=decZ?9|l2Vnf>caip}KW*?6 z_=~ZV-f8>)s6V}%{hiwtL2_`V(p<2*>nT&vcAAH^gC^Qd`ZQSgB5wsY==$>|TY3HZ zznZKiM%WuT7IZ;n-9}mmbc3Jk@~CMnLbB-6<5tx(D>HwlVAph&!*03A-dE_`^5F?W zK+n}W8HnxoW>*58ypC(&LU#k726Vrl5aBY$OIpYCutGj*ziJI^UXb=M^JIv4Tq;QI z$&su0S~}I}=jsbS2X`qnwUauN7>VRieVw~F6b6ZJYQTB)S}_X?o0>1rWSwnq9J&r%v%xopXGToac{T+*i`3t^7&t934DBUIBt=Y+?_fiK9S_vmF zpmV%qCufEqUI~yA#3ATIeJX zn)2Jd64!f#;OoM_*nfsuLmh6*5K9|Q9Z|qC9|ww z7~_V7=BdQHa_N(0HabCUV0v~UmYC)={*@iMy^%ZpitTL9q2Lb#{NB@N3(ns-GskFa zyp?CgAq9?^cXR7#B#tGJ6&q+hCr-A={dKyi?yY)(+*iNzlqKZ@Y+{i_9D-)SX@Q5I zYkIHme`4vWyEdRzK=b8?%ZoP4dcPD_Tr4!q$Lx-?65iV^(wzI>DxUA-ik|dQ28=3n=ac@*Zn}{07j7yCYQ$^C_gr!bN8; zFn27DIVtVvKr%C_pvoP&FG)!14*4%D+fzhr2ZWP+5AS|_f#Hv zHWd}ITGD?0+HsY4ROuA+Y+r>mwxYS8d@37BO?BywkMX}_e6wp-(|1e|7bePdjp6;3 zA^ij%S)w4=$vpT%qc$O>jfv%1$)KuBZDQ6P6PwKAA@zjXq(V_4QWaxGDIs!4b%a0eoe4jV8dtV`_|-J}TEi8o~@N*nQG;rsMhRfFG^ zS6+0Pudd{~y-VFk>(Wj6)Sd6n33VBpqE>CkdVEfKb(x2LtfIaHBT?{YSr=`r;%DJ~ z-f!}=Zthqm(b(01r)LZgRBX~jrDLHN0x^HME%zH^|eeY?y(x-Hk0yio|WosqzPZ;z$#L3n06I`T0{)7a(3EaC`!1f1_2_s z%*CzL+l|R!O`qM}j$cOqpj06+7jutOt}F-+)!{}VwArSYaH%LZnD(CO%X&u}j;s&8 zA^?l;qtM=7g_B<*zqjwzU-73!i+0TK5(>Dn8I+5c<2j+~T{eTWlFjj1CRr z1CV`^Q!^!RM@sAS-rnhG$Dp~e>B~5|gC!@bNgiB>B=#IC*kbndi#~U&Z8SFR1AwPu zDWtrJpVQ1Le$jcqr><_S%ye;2Bd%7ro8%|0b5l1Q*+^C^OJDw^_U5%e;rIHwypY}G$rv)LuAQi}c(>cD5*^hRWZwj7K z6B4+dvs%b;7unmbSLEr@f82PYzJ4-OL19NgncivLb~3P)UR>1F6>?>!EA|R$uPnN!&%x)3U^eIz!nDZgg=fhZA+Ghf;j z_u0gbs5x&9yhNXEKenJoFk_MGK6=$! z>*$YG_=~ylN}H4CCA)#V_n{%CId z82&1ggI6yqyQ-aeEU4hCh$21K?@tFs5a+m~)0qcmgYc6!OZwH0(O;nt1U^!{<-|9M z)@Bk6X4C84b(cr;ledn-aDy&m)ecMp7Xc(j5DHD~Lxci&ABe*{Tc0U(#xcF!%m+5qg*=C#s zKbrY%-j(;N_)6}EI|Ca_60$m_)sBH8o`GH5fP*WZ9fOdg{Y}gG8^XRkj_-M#7eBc$ z2)G)dSQmNEy)$?kAx~T2eUEjX?h^HJu3_`9ePv#A6fzg3r{a$o>kfZ&xUZWcs;GK!Zjh;1@TC@qLzFiMWh zOJFcbRnAM2FiA(uOR+G?yq%X8V3L)emyu_ZJDii%VUpLGlY7ggfH5oY!KB#o!N9$T zFD(B>dzyh!#z-cUa_MWOw+h6WZ@Ct*M-^8m~y(0*=Tpp@F%lz`>fF>v&qGb@ddMKxp1#OMV2kQ$ zk*mBFnN*RR4l9Xzk^9>sLbD9k!P3{?srS3h63*_R-eKmpGsEW#v7)Q3uCah`Vxd8^_{Qh@x&AgU#|{GRz#^td;VQ{Fz#9N9@$DoF`LH#581 z(iSh^PxFICj-|8*dWutQoSkLZ4AF@7W!Tvggk^)-A${V|9uZk-fn&6?p+0dpG@GEQ z@+#;0(N$JG?cp!qRUdyg>DpdNgP=?C!mWMJrIWs4IRA`vfR_? zvDXx~*L;e`2eri}8zu!vH}4{%sq;&4_)1R|cQbV!hY!6g)G38we|L&U?1=@v zOp%Z+#~jKh<6d6$PFANLA}Bz7KnkFR`Wz{Q40Jz5@8no6A2}@_MYR{D>SS{3A%=E} z83qB0yGI(kh0C)H>#^E5%aEV7;DRG-u4Ig^2LouADW?~m8^RdJnWHlV>(iCau$QLm zVQvngY0fgYl%7o>>k{tfz$IOUq}Urtcc){}it72HgqWiA7o zQGz|qbQzN7oOaR<(|3Egf^`V?W7ZF46hn?t(OAeFt%=jP_bZOrtKyBi`%lK%kx@PIUK7`+lNTnA(Mu`f!spZ}+tt>Y@ zh&kjg3YP6I47QXErddEMW|8gQeQg1(lsVav^i>>(o~k&q1mB*{EVs@dN)pP8NrMO6>Tr(*f$<&p#%HlqR6Dybm=L8@Vlh4SmXs+);w$h;FDI$#xohLRxz zX>z384*asjp-A?W5lyoE_(0}&H|=mb4TO~0YUWkBejh%2jL}mGCyIAc+^bn;5M^XPK^UrPA{)cFOC^BLDKSuL$jB7wB{=lY)Meq(S@C(0!8NV~WsIs_;wRpjp1K zRk4Iat&};b#7&vB6P=tLz1%(B+!N!%Q}6OkB(VUk*^g{JifB8|YFjIA8vfXOQrWYP zjQ%67g~9LRlarHkb923O7vGl7CYF$YA~(w`8!MYfhlhuohc{R|(mH29aG3o@yejrh29&RB?Vw zE2cRaysvrD#PKO8;gl52Wcbvt(B!z;A>k415=`%3am$O+CBrFbBm@W{xUWPNB#0ms z^c1B05+oGG`ijU3BW8)mED~G`*M+C2#d>I74P94^J#Wj8)hl9p$gE@IMm)+W#T~y#5dYGD>nX zIxjSJ{u>dXYvG_{>5o(b%oKG0C;>YEMG1JT^Y*_g0g-=|fTDj>0?Lp|0Fnq$(~tW@ z1lay10?a@DLj)*$HfmZG=(?Bbc-EV##aQU3xT?edH!(oruNCk*q{R`MYy~Z_j&E@d zEks%Y9`VH_;)d2 zqTsI>kd*v?i2)z~T@3hNxqz|;q~%&v*Z3b|KuvjLL;W8ypyZDj5K_08P}ZAVJCxEe z5!Uo?TtMT$xPWFP7cllOE@1Z$7tr&E3ux;7+Vp?8fXzQ#!1y07py5BcfaO12z(4^U z$ps8I!2faq!E^QS**{!B@%N^(uYb9K@%EyA1hPKwG_fMuSwg-_`!0msv0(LHMPxm(eWd%I^B?98k{}2Jw=)8}; zxRFG_F8)m`LtGBcA0hyqu^QTMg;bNCu~c`8N1O8;KAzo8{boKl_m>Fx9x!{=8{Pvm zmbatiAOV6+B&bF!N;U0>%bsKLFFsdo#(GeA&rHUu#ayfCE<{zC+?i#=0Lp7{Sn z1a$pZBH+Xlw@B5XIe^%a1-JV6muwIh{sT7o3Byj4CpyM}TU=HTfCXWesG9dy$`%vd zN0>S%T;3NOJ-8cp+QejQ_&g(B`{D)@?@NRh}~N%7?sEN3XCqy zi^yv&**edBrP$UuXmuK5NT zt4+~5TL18DPfmJo1yueJ0p%zC1^UB(dA8F55+9YnM8N5gN80c|JX=54sNEkTz|Qfz z@Z~;|2$&vn{mZkBtKmogo=|yy@Y`KU;xEsZsXM7-RdN1P$NW2zXM^3>O~3hIe=*CJ z82yK5qpq2A_{w>?aM`VTx#+bOUB2jZi8#3YMXig&u?$7>Y{h=Gl~=1#wlhve|38U< zzdRew$Xd|*pI1knvv9XA_9G=eFG$|6uJGF`W|0CU_d)_Uk>X zU&9$DJ-_Oyf)=5ebo+(FA`$#@Nx_2Xav8DqKubWg?tg!IWA1+$s0Ndm+@cKNLxqg5 zy`sBPAVu5<1qGkL1o~I<_gDIY!#>lT%xsaExq%78*m~KoTslCDM{GMXbeOX)u?l3X z??au;Q1PT=C5p!=)|8hYuKL7e>Q@N_CciQw0PzHt_0n7q)#y6=8Zwk4$J`=zgct|B za^2Qr+}dtgnB)VvGS-ZcMr*T6*%~l{yqj=w4+DZn-w}+y=7;E9VM(|W=fQ^r4Fh`B zQ&IW@j!(dL7POahYhN$#&BD#!p+7vVbZOUrf-FAk6~EYO=Wb9-ctN#B6m8i~@L*1s z0AZjX^BM@ydP8)({E2DldAA4po8*AyUMAWa>}N`OzIx&Tbqs>=GJhg!4cBaQq?UQKMa!^?kTOvF{5jCvUx85k8vSpbZ3p-czY%W8l4&GP&x!4^PU!9k3Rjw@yb3 zUITyRQ5BxPhI#C2d=liRLv=5Sajs0H+<64#ud!0K({T-bPF{35w$ha`R8ttBhzS{A z5f__agzT9Q+zy|Jy9a(EzAc6^G(<>(PtU*`cRfN>iUXVHXSADsv_!wn zl}VdrE(zYym}zvKw!vGRD6%Gvp7RXM+@d2A`aO<>qOD&(s)k?xi;coM_tVMvg|d+&Dwj)`*m}Xr|QS#BsIt8Pa1PB!QOEbB-fM7 z?g*zxJ*!UPl1#Q%YadOjv!K3w@6G8=$s(I){CD9uKF>qOX-zs)1EG4sD@0xI&5c5A@?@F96NdG zuIG^_#9uCoO8>$S`iXL;CHrn^02^bJloV0C!r~+-o$K7((=`GB|9O*Q)QGV6IJjHb)Xcub=*-t_QJ!H19Aco#CM=9i}OUrM!)0Eu(+|Bvrwj__ zUpWLmobjtJf$Qe{*P_iYU#vQ1qSU*0GJfnuiTp{oDYH)Uh1%}aUL?@@w{iNf^f#2^ ztxZl2AL_Gr4O%5xLnsg@UyE`|UD~hA!?Pd@`3!y#Z?dxzZgqNWeYyIDvw*aB*R_V{JaxoAbO(TG#5i@Tua%Ma#UAu`~FZUtwgj_4fW~cBnOCb%DGK?co?cn!G|O=QTPe zb`lrcRzh-A+OKJRnmXE+!{sRUO~Uvr2mC%sFqW)gEA$}m)t6mjnVX)}hu|_K5g;__ zlN5Qko&ARhaLk+|-8}b{`bz{fT`fgqea$-jABlhimtWWOqhF5x5&>AQcU^$&h_zQ8 zH&PFqUA`tG3noY+;MLYutN8UnQOCojiQ6&d(S4{@z}@q}HC=z)kbp7yKy1MP3^KAU zWa(#9AfcWo9*7LANJ=0WL^0q_+-v|E@TVjTuA2_>cMh6k3T9*TWzsXF^)h>W6}MA25+B6l6%xf5;wu&MIW$Ck;OTEQw7$F$pRN!mDYyP(^p$B0_hj!E){rBoze)fK z?w~V^kR~Hi3Aj!qP_c$M#G#N^15~fTI%EJnMMiLtcoTDA$8@kk5$QoSsH)5NK@Hc2 z2a^6A=I#Z?9>cnWU=W|;qN?GXtD)GsJeyDhoT#C-A>t^_gJ3?^68P147M>8OH5`5g z_U=U4>14D7G01xHJ2iXwO5vt-05lDK=WTyqm@ld~ zDf$aP5-cC|*O>R#67=4{5~tWN@Mo6@I0Jb1(DV93 z^!$LYcz9gd748>na5EcH1dnC%Cp>us6!~o??D6b- z*6a7mLUF2}eP4xpqkoQZcEM~!UVE78>+*cysl%ii!+$o0ivqAT!-_PeL$!1R-Yeqe z9)pp|!*={SSn)JI}J5pJqKD z&;0#4Thlz-DJXlgKO5CX5J?08N(pX+a3At_ZUsY`J8@&mRqu zfYaTOM1cKYA^;;kht4ODn=wy7Do+=d$3-E)o=#2@5j3a!mk3DzB;4{zbncV*%_qqS zp-%6>pJbo7eexO2^D(>fo&@K=)aO^CaC_zx{7S#zB~byeE1$)tz>xi^-VIoPuHcP6 zp9w{wxlf_EW}&8ji1l2d(5FH<;d}>VW&^Fr5i7v{MUhW>zKcze?Ocd2Me)RsA{w$H zZ}wt%#8VH7IA=s!ag5K?$kHUNtKy_mGAThQR6jVt2kNVi)F1%tkauxgV7)-;O9%#v zDd3bSR5LZh!wT<>A`1C6xLhd|=p6RW>zV#QsK7~RlTRo`P#K0gBWh>Z53k}z&mt6f zxuY|fcp3dF5R)&+`;rIu_1FiXGf*rC>?=v+4}u57<0Qr&ZhcAzb3?jQ1nm`x26XP)jjR z!(K(OCFb3Dj<8WKyVgB5h}jaX7O0CkxQeN^jzt8rWM=$a6wF&eKSTH(!s3gCCvz!IcyHr8S#R2O&4YcQK^a@}a- zo!l%^+i6fs|E+53T|yK^i+emCgL(_^UR1vnyp$N=oz@!g0pg5GxEuHZk@F#8_5%?j zsP+kCD)e0{oII&oFm2@)9C!UC=^C6uZkhJ3ZEvS42PfFWES-L(1^yXUGPVG)ofhz=g!92$j{z{t+O9H2Fs_4%cp0Wl5e{Foii%+*|Q^y zXmGpP_PLqc%2_kIx$L+(7P^LRyZPFef3-T>VNk&kZK_PQ-3B_|N4usa8Wi7L{w7v z!azXn!2Rw(!V~5=zqUlb!QUL&0~{r9qXx6=`qcIV!!ok74Trobhx~{7Gwp`T_o^tKlz4SVyySeZEE{A6aS5D;9I95b-PMIm*H^g(_uTCVYeGxB}I+_++uGj zFd3i}9oNfDFzmp&w4|j}!@4Zs5=jSqFV%-M=!bSv@I7=Apd6!MxqY`tCFs_N^xBkX zDGv+_4WZn)5(i>kRb$4nH70w7&ka>9`Bbj>c=`!4&bCx63ctX}tV|!M6i>utKE{>i z!Jrz1pitwF%T!(MhUcUr0|tW}twS!(c&wc*#gyLDaZ!BG7Vv!J^+1OTf;Ccguo|BO zheYHDlkFFQGoZ2)-c|17f#N9gk14Di6CHLPEDQZ^UAV+?=r7qQe=F97wnj+YdghY1 z0iCDTK=qew_2M#wxW|m-^s&F2>!n0~WRy+z-UVo=3|u0$k+|`ASUkmR)DQDhCXrKS zzMckOrj2K(aS2e~MM5Cte3Qo|sAEtsBQT{m#M!p#cKZkA>2SszDc;lc_^*+plFb5? zi4Qn4s*kIw$>(6UpHmhqCFm+%$<`rq=04umJ7f+sz3*`GBOPC!s1Elw4^J-o_@jQl zMSn4=%Lq~`lB_M%R)+WNfd{xvho{Ul*YSM{=-k@tySS?Cdm)-xipZGvh{wC7m`G?! zjrK+#y9G~t`?6%PVBQ5nWde@RSMPuMuzdSLiV;IB5ckC~4#IAU=p;41r2UGzBXw{# z$FEmCqm6}=w7s*AN8}@l+D8Nj1mu?L0 z?z-sth_d{#0q?uh_vPh^VN!EUkTHM1>2yu-thVhMnJYLyE?B&>Ptt#V(J0SldJ->Y z{iXQC%gk~<S>X)?rIgdo!BEkh(tXE4;k%{hqLFMUj}NQx^w#6^DV+ z8P?c^vIf9~NP#f}u~s^P3_M^0r$4N~z8V;34B1`^C=A3!;lW;(1S&&eNGwO5PP6qsE=h52$!Ur{!i76)<@qzGr9Zb@jzI1VhafOiqW=q=rYmObLbK zKP)!@yV`tzT?Wuzg>YZ|esQ5FOHezG_FxL!mH}%9V3r9IIKPT13<7TFggy(x@8>}s zJ4W*b0DY^`Qw6U+#ERp^V;5!Ll>NGiqrKj3&)bhdLNS0!I>RX6zo#)ZB08FZ# zsBBvLe49(21n|Q#-mN4UKL;aA4exO$P!++JY-s`fN^1$Uy`QPNU&y{adwlI2k3oKa zkv>)t_6q~e5KjUDE<^ckhGg?&i3b4fR49<9ZMo&@qhDPCqrzkhGJzQ#e8Br4EIMTH z4NA`Mus$=srVvLj7xTXo0q%$ER*<#ODWs1LVtJ_PNv-5j%OP5D^N^WZs(Mh7B z?mq0)A{%8ULw=Lw+-`w!URR=^2cByOW_EDA;A7|8uCf8ZFz4H&IVO)xI)i{<7Q>n2 ze~18;gq?3+#lmT1efV6yedD~|m>)=6w@CU(8Ovfc_xs&siFVc7#T%#1B zQU8Ys;5(3l3i3Vf&S#nYO9Y(AKAI;Q=Z1*geeHW>p5!b~VQcqYj!ePES&q{8_lW{s z2o>JfPLHI=3iOFuE-zR@ms0_t6cSP>C~EKF6uPnCIk>baCjBK2bwp8h2Q z`WQ8fIq7Zx5&^DF&zYZ{wWbYy{!0XC@kqozaT!Hiy+yTGlc#k5J)TICOr#`>iS!fRqBImy~)nxt>0sQA$TAJE_hyeFker|~G*bVU2)O8wsoOaFLj*jZwUUVVO9bc+yNUfn1dtAR ziKPD}0(5))gyt?yf^h@{I|83mT$zSZdNj8{`Sq{NA~+iLn&2>Df!;`wi>tLsUU};` zNFw0cB2!izZjof*ac#NKeP1LHW7dcy0;m(y-X^;uE8kpw-;!JBMHcF9NBasOi2!;z z{RP>NDL%W1knF722BmdBTa3%Rmykrj_XCQ(>Td!Db2VSZeC->lRYi6i*HY$3nm99W z9okkF)ArkLFFp>o*nhJ^5&_TeoO+3L{ha$LJ&{BJ;|D(^5zut!GW=}X&viuP5=jKe zkiJI}0nhKEu;&j~w-E~d z-kV=F+r76x!4AE5%9^sC?^aFw-~OoGdhk6aI1~3f{dQ^VclJZKgXQr>TyWax)f*g zHXK2N3JDI_UkRZ)p#$-|fO(fgsX0m%NXy?OQ<}=MJb)B(1zcjWwU~lM@(IyYrQ=ae zducU5l2XECf#5rt5NbMl!somgWf0TQ$AkSS##h~RBTN)FX{%Vo5WwqWwJ7CNvlsqm z$p%zRlsaa?3ZkjKv2E&%4+FV`I;f;&WGKkNR|krffzL|Cu8L743-y zk-s4Tug1#xjiY=V%O@4c8457u#k@`J#{hKUVx!X~BlKi>(W--#EkcqjaRWL05NZ7Z z^*uN?pM!MpYa=bNJ25OCTL^J#^(PqS!ZFmXqz=c3IWRhj5OJR{5*5F4=mTRgXIF86 zo%nX^&j4yy3UpOu@=$9vztKC)Ql~Mdu8&H^kSxdf)C!$U-Lzy*0E~N5l^RWG`w^)PkjIN(e&biODF7gT&!p=ujqs z`g}`F?;=};$;z>o?-k{epA{!beN5v%7jXM{h!94N)K)#736r?dGpu5XXCM?C&`J|o z6wrs{lBk4A5eSnCOw?xHF5BrMq;zpuKE!`2C^i2P`7{2dF3G)NU!ffv*z7K)<=nF7 zy_r&C;jU9;y8Axzm4EONo_EHCvIY4@;9$Dur1?1zs|Is5JbbE}UQ`s*!j&P{Uqj_q z>3Xz7zlAEeT1Gu$=8{}G8rVG%JTn|B5gT|wxd3Z=al#FFU7%f+Nw zU!WkrRGs@0@9t@^^uzb0?Lf7`@t46bx^I{5_x3gZ2!mw=9?lh#2&fLGHC(w=LJ|Ro zm0?ICU?T!a1dLStAp(93A&G#>@;^jCH1;1Np!g3F;HGpvWK>z0(qXu15^+6j@1SUB zgy;2qOQ>ac(KV;_U`vYCC&$LvE&tp0_6w_)@RTLDVyo>P^&;WWLSy%G+U?!fTP^;L zOYYUvtZQ>#vb4kg7Yf#l`?k8T`s~-#n%5YqA=zRsV01U< zypqd-XB4BaSbWgA=-FVR-D+{xy)^Wnml5X*cg`4nwlq6l2+%K~ytoj!85(-Kw8gws zxc#vs*|J_I_We^_%>fzIeNco1wl>%uzDawY0~L&u@K;V zD^0LRXOKdw1W0s9BgQ8cx-9}a-QymGh^H}%$MUpCSHl8YV7NS(m@}A{<}gpxU=S$J zx0(UPD|EMv;gKX-n;r}s{)9k3mm7{M45;cr4gRIX@ESE3hbPaVG!Q}tivlsJMgl%p z2UpxM&`I(eHe=E~>h=WzJW^}Km!%R=QPo?Xpt}hH_dysLj2tg2m{HMFWGy)Pfh3 z*~UuS!%M|E^s2$@fxbCG#)`pDv>3+TddSUYbgtfr<6479dEpfA{RGxfZ}N0nHdH zAD`GC007u5wEoZxL_F!HN6qO34M4Yq11qHauops}D4``z4my zx2CfJx7mHv0I&4qSx^T+bV0Sv!OjbVSyW#`qP}R{p-R~D;*Pn%xuGn z%Ad2nhWhC?6^~hdP#a?j?n5h=;)zbV)4c9Wf>YEz=muw8xaKFwZ zQ*w1ePIV$N^+!k_z(^hG1CSzpfM|8{=wuhcPTQv>#V6Sxs>ks&)o9$qBkFQ#GS%og zQ+Nl}QM*U!Gsi?%!gI&dm@PHEg3j_QZY>F)(bDF z3bATpXPCtH7d5#$^#gpRzNpUXFbM#96evuhIy3-|se`1;Q;Q{Y@_oI~Wl~`ZdQ%cJ zlWztlCCGqpdC=`aP-zf)g*8l)?dR*hGX2nSjRSZVL70S>7%DDQA`aa>I@A{g%`SyW z0-)Y%({^IIZ`q&{Y*2lkX_aX7H}{w($y1KZ`A+Y{oq?pCJi4Y+pf?~rpVVoe`x1mF zGt_5eDq;~+PnFSiqX5o~9$<}b%>5cm`Q*f`^Cex`7TInD)O%tM)?o3Dq@kn2|J{ zjhfOn<=1sl(smHkP2ijr=htK^$Wa1Dd00=?nra*HOuy#&nYK|7kvWsTh-tJjBazDR zHclrDdrq2nHbrqJdYfEJTibnO%5z}SL2>G(*R+H+P^aN_1RlC{^_&$ort3M2_kBpq zxxOo^K?=kGvu09jO3QIhUzHyezzG5yrq zu1{eKz;K`DpAvwnZ;SMuMp#|n;qu?HjDT~KeTIB}>X{#DWtd||GZ$U-7ZHHjh5hBl z?%#_^)e~-sA4` zV;$p}gi@MNKmN5TX|kee5`Vl@?DnfA{n7We4p$_pD#W7x7I8-_Yf7X2G){V?fV`ieN1 zbo{1)&*qA@CDd|bO?yb!e_c)9Lh-?v-hMLxw59S$-I7G(9m%G>#~ZH32Kz z6w7HbEBmYt>rIQ#wp+<4+x{<&9mHp)NZ!D-ti&&fJ`?3RHFF}24!4y3Oq*s>Sz8Uhe(+vXf+KTkf&9YGnJlQK(j6uA<$xzVaP=sO`wc z9#Z)4$g=nnW80M?-C}IqiNDmVW7qLhqt$<3*>Hc`et)yTZa&IRqHq5;-gFG#ew@aB zg3JDgxc%fyd!w5Dz4QJ3sr>?rgTqX_8GprD7L#d#Uvn|`h!Gb3p2O8efth*ZUkeVu zmSZMYVoc`54SME1aGIrLPPVb9*j4 zjthXGMJZZKj4KFj$*ma!x!O5l{yL&6JbLsJizhJnDP3{MGPY_@ZGav|e79sZSqH8Y zI!8A&BnKm23B|oSj7Tq63?7ui5<*-RM(G3%oda^%1W|OHKqj0E^qq0DKVnv`$LC<8 zOTw&p@}B93dK3qiSBC|4VopMn5bX^6kFrOdIF~?HA$Py`D+Dn{4BN!XdO9c@$g@y9|Zef#x77y~B!f+)q zX13LOb27og%aZFDy(h-oo5J$DfnN zLlP@6P@F<3R)MIBFpe>3HT+bB=L`MKIX3Bq2v42gG0brW)5i(Ge+;!zMB!TIZ|QV* zJyHy+_Vk3JqAUDNn!?Ahm>Ej6$>(QJ6_gZv6;$YJWhv4 zT%AhgMM7La@HkLJHHd=ms!{4n=fN??37h!?c4;+s`B+5#aYPijr*0;q(iEpD5Jw~A zOuZ?RjREru=%(G&TXOoCw(t$e6YJy~oOa`Itk|cpgYpAnvv|};-`$6C$t?8Jhh+Z7 zC(OHc+M(X+4U_S0J;I>+!<(9;o2DY}I?Q*hRlW-?w_87Nk5+D*FK>a^cgOp_UDGt3 zp0_=*4t*vYpGR-|j*PkkR{CS_(3S3Ln*3HO{h$uF!_$6GyZurnEyq}yCOqxtLvN@# z@7ua>I>j|cW5XfZ_H$M5=R4jnjJ`)K{(8T(WicIa@9ppR^ObO!`uz&6c-qs4HP)8Z z>D7(rYwMm5TM7>unh!f$pEqA!?RoBQPd^+u?(KefIKo6sk|IvB_l_?g&ayx62V9>k zAWn4=m$3aSPsH`B&ci0eZBf8X)5AR`JOCAw@QL*?T{je)l-F+in7$WI$f{BP4-xP< zY@UrEyE}&FUqk@AZmr$UDf4hDuhm5PyEB%NGzRlvmF8!xV>!|=LQb3CY!mrPA9(F| zla@z6h!M!Yw>fA3S+3vYa~HvXJMxr+ zNt%WE_h)LYepITSoe%s(bZ_h(+&({E?uHR@JKPDLt`B{9=6HA~^!r~#z{UPtlk3sp zy~x$^>eobW37RH_#clgK$D;=^zxh4>(pX1?_`}`J)6r4A0Es{pY(cspqjT7J0Fb?z zE(A|_U?PZ=`HC)-Sl^32tn~$nMi{lv6+Qe=&Uze5pYDYu0(b@9$T62*F+@Eb0+B>M z`Ygy8BedJhsK)=&jWJdVTZk#1;`)jJCddAnDN!}OA@|iwB_ZZyAsTXmIBlEH%pdTL z5m@ReMiD|RX(#Wm)lw}>KeK!+$lOs&w;vK>&5ZamtCr!u`piwGTkadF z7uvbu>@C)s0bGyRKE*2uzf+1~N8gFPRck4cXt8H6F2FLoiIYgab1tRd^=sJ{i_N%! z(cdl*DYBwp{{YdY3-H-i5PiRaaXy*)5m8z;M8YopNnm}HsYq#cmv*1bz`72Wv1-HG zMv||>k*`m7Weg;LM18?ZC~QIWb2Sbg*Xm}V9;IHp!g9w zLpXBVR1;iZvb$$fI*d+eSGHalxmvZo&JoU5N6}qfnrzp--(M7S7Tbf42y!eddxF3% zD}CU35>7vXzkW*lFto5+k_UpG(F#xdI<`kgB^)t^1=`%WW*0Pfsb{i?_%F`(A`MlaEkN_ z-tt#@=-!XE(JLrJ#O$A)DLg@pQSq|Iwhm$ae6UfqZ4X-i^1N;M(WwG`L$5u>B=AK= z+^=QA_2=!st;KCCH(QL(TQe;1;S$SkXRk!kM?ZOQLX*CXwvoiryeX;5!fh=N0wF+$ zmHHXTsczdx&WdWx(L0InLr>yD*!~>lhv3m=y<@330dhgR$`mj-y##}jzC+@UNredoA=JS~V01e=x_bU@!@(n? z(jPf*e?Nyj&_nHEpVBxnyjp)vu?J22lC~dTh)Cv#gdTr0U41zv$m9XHKRJbUNa~f* zPpD|FMuh%yQm<-kaEczeow}nEgs`$#5jD6{G0UDP1fVC_phFjr2KZ&a3LP6=GMc|l zVuP^IKwk%h=ytxGihgTW6%o?9T4HEcs@fa_*&*wvWx0|&9k&aMYlBcA%%-q)QGz47 zTwnjb+Tb?4!hU=Nm$BODV2FO7Y@WB)CIxXn_VT6e$!a zlu{a`NYNIjK=IrCo{?9oY(jJ zKJV9u(|^g~E42TzL8cZM_vO++aBj0*)9}EkLgN81HFdEkwWam<#&Fg<*&emQ2pgaY zT|u%DSM{6GsPxC=kZhX*%gI-Xci@Ef<~K}lo75}{xtRu-LmvHjM{KxDW{Hh{I95)j z_3h&dY9dxYa%YOXQC6p3 zC2^|V4Sw+9fwbk5o+z~Jhx4?n{9`WhmAC>UzwirL%UzPxMR%cxnxn8qo3Y?=d4CP3 zg3zN$-GX;RX1#5chCHX^?BpGKnF0>RQtfw9K4gIb;A3U6R@aG2PP?LzOfK^i3DyQ_ z)$hKyh2fXplt|L*QZ`aYYr?|m4ny3sSab=HMIF)=q*NZ?#O=$zM-#K0Mdy0UZ70t) zJMy`@GFOV{ga8fH}quP~GAWfpq2&_j1}{e{nB7wVVM&ac-_%sz*UHezvpSFTt8{3zRlY2lg1uA32c&EHm9jP3c(dy;_`uzC@$hIa zTpDILg`48h@D?^SydTOhNQO-sgiS><>SXR-yh>*S>=;87BPTNF%YZeLER0W!^7jc>BQ0fFC&=pL zF%`CIMPa`f3WXdmhgF3OK1P_*{=Do;I&{x_thGXf zY#&TsL@@VPK{6)Ch3SykPB;zgRU(2sa$3`FS?yzAG(%*xcu@EI1AyDJ@;%4So7gV? z)Kr&(QZ&Q<&fCDXqPxgSs524Pd(#YzOfWW2q^F6*T131@5V|!p7@00Us~ktR(zF6Y;~8j>a%WxAzm7cRTr(t=l}#d*vh;l8tee{JV0NJ%%0pRAlr&`qg?`FR=qy3dtF zwOgt2gWvCoCp#Nv7d#Y8@09Az+Tq!<`BzIa2-)li+3y?-ST58%b@TM?PfOo1wpbuA zPyKK$=_D#=ZWYWqFXhQys4MH}M11I0iQ4Iq(91Zw6#8Xo?9*k7#e@8(kr`U49t%Hb zmSyxYZs@<@9NwAZF~HZ~02gmDDPw14rrWxzl8*P&Qt;XZz2LHm)Y#GieYgH(zXDDt zAoDuOP`JgHo_>mCOzhfO84Y=99))FBYRc@i(~Pukj1*jNSG0pvN)@^_v< z{@8i)kQs(X1jCc`W79S~XvTpi6XhlWmLw9}(ULK*m!WnZO14CA_msS{wcx<7x?_pW z8M>WBojF27j1M|EhLbR?lJJ5)2`_w=O^3R)+{30_u&`Wog*=d6p+D^B@XzG)er9x! z4ohK`RU%U0v?VEr5eqW=P=bZWZia0Y`6C0fQW(kTbzfFv_L^LQh7}{xM1xA9WxHyI z(-~T{e`i6FJlES2xFlsHS4t}?nbjx`6%M5^GKRunr}| zWHpx4r%+&KmKQq2AiR+i+D(Q0CTA)SVlr%pgBBT+pFG94f)OvuM9)JVE#xQy%??>x zEdVq(GxPvInaEX!2sz!>Ri&W$M?%nXj~3ndZ26RRTGBuvB>cgzOxelQlJ+F>-3?9V zJC?_>Y5nkwVmOp<)XJ2CmGU%s4UQ1*rMAn>_~MjNGLOl+EzexK@_(F3@T}v28ATa#;nHFqRj7WrGRw^Ems~m%7RNss%p}Q-+nEVU-nIh5bXl zdFUpljC%`SViL)EK6x?~A+;_D9nwmDtVfIeCz3xEnE0$kwt@Wc; zYw!^@GXEnhGcZ{k&@RNTW&Tu3atCs0CF^LGoUs!i{jIM_K9wBfYm$6CLwMS+teDIh zJYzx;N&8OOc3KyUoL&ug{BH@lCJ#{TuJsDis43m$w#djGQ=eVgn?(723?6(Nh4BEc z_4IIjkPL!S4p~t2IXhoOA!@TTN-Z$&kTW8ES1~W&T4_xlkwg+J|32PUm7S|X7g2%F z^_|oqoO&xz$Kl243wc1m1fhZm*bjZS*(8`+G*@y`VYPH_Re?fY3D*mkJFdoA)rL&k z>eaDo}ID-Sc_VDx!XjF+NAeeeevE=bK7b-Dj9Qk z$YFO1Kop=wUA{$K-U-FFj?dDkloGjnB(Qtqjl2Ad`kMEX;6}aDov-5p`vb0iEC^Ndgwk1+6zvK2c=a3@~Ik4p25D;1Ax@k~(gxVakj@$N%w_a`|W zWrd26t3}hClMZ}EPylk~#eqy7&uod)oOkgYr{i=a&qA`zWV2IiuG3;?@!~Geyukka zWbyK-!OZW2*IwF14{rm7(Rl2S5Z6g#JfVR$WBFQAo*0T;B&h z&0SeeLswoyS3yTt(bP&&(@M$IU0Lg`A^J~GKs7=@?X!S(DxXfixP6Iy*pT*zcHK`y z&r-&nQ-*z0dR=qJUB1o6Yrs-9VW~Q>tfxAa?z(;9CL^Doj3ii1q2-vl&R;V!(=)Sj zzU7sdS2Q*@`WFp1{b-46+bkM7&KeyIove+gRV+ z-rU~Z-9Om>dAxS{```$*^ZWPR@1MsfXD8>E=U3Nvzfb<#qv+9}&;QZ`=MG`$A7IE4 z7^p+{NR-r&flml5h9PUH!$6~iPi3ftrvM4|56bjsqI^JW$U^ggLhxPyD}@rSLMom- zeNJ|c0En31Py|H8D@da6&rFt9lP1rQsmqz;uY`jMGgKi2Y9(_SDq`~t)+#&*)|HW& zG&Eo&4}jeF7skQBpx!oACQ!)CrV@j7kZ}AY#h1$~&1ee-v#6!0lx22=Q3<}7?=H*g zih{_0q*FzuM#Zq}6`1yv=csY=S@oukwrVKb?bKDNj~ke5FBBE4gQg)phq3Y)6-cq_uKR|h~f zR~3@IG_QBLF260Tah}cc#rr8`Dpa;wuX;<7u5O37mf=Ofnv{|m97^^$Rz;R`$}x(} z-Q*NJx?T>eGt^3FCxBwbu=+$qq9uG?B;#1wtkkLcVo?(^#>3UXK(SE{?RbREC}v1H zD^7ye%%E^+q+dpAVaIRG3&TX?uOTF$zl!+8=q-vs?r zi%iOiOfHK2QWcq6ADfi(DfRo8l-#KF`cGNkQ*(+wWtPY1)x;P6$Vkb}%F4;i%qvRI zEzHX+`d)@En`f0(r&rV$mzEdT)R*Vv)|3=B7JaKPD?u-5%Bt(pM@&&iOnHA?O>>m&fCmr*l_V^J{BsE1Nr; zJG=WEtGnBqyZig=KT&&!$3KtuH;>LX&VFzHx;{Xi?wsBn{<=BZT0PlWKil8F{<(!h z?W3PJyE)sx`n7d)vww7Yjyk(KyZwEAe)8+$^7i)h=07IX|1bT?|DThiKLK>Xp9qgm zr8K=I0QWwpY4?BQx>KIr^RMepU&8Y|wnyRibZzUtz+8ke=+RP~yYg$A#a-G#oI?@K=rm;?+OwWTXEAQc2X>uk$Y!XQ2>e+VNRvJ11z%x*1047)QO7xTCj=?|=gt1yuU zsxXFPpb|4l`l{Fw_vK&kA;G}d=(RXwTaE;ZI%-rfsE?n0of;PmhU5OGhGmA>v%zs< zxF`7l6u=$8;{7L^`CDn01BPF)Knz`qP702&^mo8KxATbP0C3CG@k#V~J<3H^wn!@)lV|JQp5HOoQ&D)?{b79Q5`SMMD*{Hx&q zv*~iP@LvUg970M`&_4zLqgF!E{eKGnWJZqv6#VHt_x~yQvnDwHQ}CxC*#EoW-!C-v zSHZvNWKi<2fE8u^m50TD7yQRy%6}F7oz5nVpBD=ceyCj8gCanM!;qJ;w?WfS zzc~pqsBklNL!Z_Tfah?YW(?E3DlEQecGtec@La?%bHZXmAU}afU$c;1%)J%$eKe;D zVG4$Z(T;YlIO(ZJFN5fvgPH8e_Fr#;vwU*ogJg-34cpZ7U+nv={P3KMb~mIGAoM-m&kysnZts0i z>roAjOiv*eU8`{6jZ^Kk#k$e1g)y%=wFo_c3AMAIF$u&#^TeyutH-K*o5--Q8+uF$@lN zd&)Sw86-ki5-|PLpJvoWMm&~}_^nt9*&X4%Mj^ne2b9c`AYogshsZkURbN1hLWooV zkF1-!18vJXpM1NGE8bJ>MPIxYtm8#|nR4}>j)LOV^C)vSrEOvH1SM0Id03h)*#EI&g1V82g zAiX7pfe#2;O&au=brUEo%DyKF&r^d?VGw<9{05~KRF#Lqfw3R}?(A?7g7`EeBq#95wuw>@npvX9+yGv7GXUN@n4BEkBs zP;_F4mdd+2&!4=|Ota8vsMj#=aJoVItB_FFnJRLeSK|Z zk7vrZ&){(M3d2TK6RxUjV=XRc6UV^H@0vfSGCfTAE-^A=H zBwfEty4S&sK596}8n`6uduJJVR$94y@$p3{`!yT+)jJ2q`6B%F!aI#(2Tc>kY%|8* zXY{`Mw&+_r6RfW7XP_OY4NEeB#XYh6WMQ82Rxjg;PKKpUk)3X_t8Rs-Zr&?+0m85* z$e`eZT~&}pcZ_vkf@^<nGQZ^hD2yyENXW`U zvs+$nUICijiV89c^Yj0c-HK}J%l=}whQHXYva&L)urHu;=|9=+OVgBp`C4YfSbY<+ ztZDdb*KYQ|IIg5?uA=u3$~E=R<#euO_3Y+%t>^dc6c2Bg4=k6C?UYU&SIwR@ESz>_ zg$@+O4pm2u6(J@o!iO6Y{|$O0Xx3}4TyFe0hm7v*%$x7Z8~qFV7W)4{-)2wp`sCM@ z{@T5Q(^LK9V`J#oze%uT za;0P8=-)8dxq05c`Kxd9ynFu~jfA87d$Y?MXeu1tJRRM-96dN6J^1wp40q2bQP=3< zkPE2mow;^28y+vVE-x(~F884E@Zf0t=ke_EX3z2d0BURM)nd`@M86=emv z0L9<%viep&=i?WFs#FtG#SWdn;U)3o$2bq*BOUw7mo$f*{^xJTTAwe~2*8WtEMkH_ zCRl$_)4N;2?Cs;?HY;bHyC5V;UpZRq3yug?V+fcng_&gC!9=;e_G6aFC$_sjQ0Oo7 zt5NE^w5YJH=F2KVuGw*Ve9(3x3u`c%VA$>-1`ttzfVD&KpOV>qc+6hkHpg-ewF?e0 zcGS_P>T=3kiwU$qyAt;4r9Kk@x%X+_M!ae7 znTAvUe!viQpKNWn^s=3WqMsnIeP)b4GEtS>;*jN|*AI6zy!d<+e(K}^@iG-c&zDg4 zztfRb@#JVW$$H%J?o(gN9$wxO#o=lGPHu{p$52MD0nJA*I0Prd(^{xtJ!=Z$g_DEX zad*%1Tjk^n2c6UCHfq`5rCB7hr~5P`BE=Bno#Jk`LTMsrk)3X>_j~0)7F3NM0Veb|JaER&gWeI*ooYy zoc`E}iZ2#@{<0GxaCk5OvJ!Yqm zcYQmwdd=6O!QVAxuF?bgc=igDuDV5k0BMd8?F7#rIcG#B5FIg|Uw*xuWfHvY*nfX` zsVqh)(o96*NKLa2!MLZ=N}BBAv0{b8J17c$e-lMTJFkdsVJk}`z~|Ed?z)SWjr2cb zrWYG$0^Dha7Tw87Ov5MGw%EYFW!%{WZI`X-c=q)xDv9^ zyc~&SSj?ncMY3Gc;i)PDQJ)k0t!D=>qfR5f2NMM@^8|iUVSlab!`r_qQ(fCkQ34M4 z8PDc^uG&}RiekK@{VLV|Jo44eqgeg<4zYGuWshtD`qRs2{J%%!UDvHXbnDyld{Z5G zA#xDkAo)y^*j9~`!I6?o(x&CL4xh(9DPrgTGx6e{!PoVI_E#Z`L#tN;Z+gSi?n<{F zU-aA!`Tjcj3LwgZ;;0S#)10Q`YUasN_6`S0oMwO{@)RDbjeLA^nn^W~rzF}t66t-K z1tH2;QC1uMoP3(iu9>f9)H@nqf0~ovn56L!yoe3tYkBsLrTsen1|=%!hO3Qd(wya~ zXcnL`Wjt5nEFTt8p#M#6qTtC{f$>0rVNLHuiT7C{oT$+FWp$KK;#rZMX5o{m-pT6v zvtpNlF5E7)srS1qC0+xC<`)H%b(3e`57!IPqo1cMf#;=uJVln2v_|a`)yd%zMb<>u z)4hYQ$`d1sY(&4PRu2Z?u)~9&RJmfn)8iNvF6C{h`(`G8e=5#aK>~d;CY|qK$V$6g zzZWaLk@x^OexX^RL$JD1HH8I^GP1>l^CyA4oCfjO-D(4TxaEJ1mD&=fPUuj5REt7sS;9L{^`Czvl;! zwgl~TD?cFR3wiFIj?oEI1ik`Cva%wZY&(>&m7)pMxdGHu2mt*s%K==oh*X%&@|FpFGQEZLwF< znU*3=_k`Q=na&8MV5@72)IJB3mY4*+$SZ zOe0yw`)w_R|naO8Uc z1b`uizyLr3X-<>K9JEd|V{UM?Qqsu;5Us>%E|@F8Uz5jrdmI$-kSF_=q(oGmB)f1! zAZ8XG2OpP|7i4GdNqrwbmGUD_D7N+x6C(hL#VgGN5Xtgxl7^heF#$pyjNy21#X9i) zk8q!^{aRSiD@I7GA}R? zujWr|nC#@gj!1Yk%iZpG5|ljYlEuVTkX*e>Y?aAAiXxqA0$Ukz&tC9KR(*@3ufRoz zs)nnrKQsU}-ES?f2ECT9q>8s(ut0DO!5~^`BCt!YHSN%w1u5y`wP+y7JLXfk6#aL@Xw_XZL`7?R=D`s?fr>1noa^F9(8bzy^d;m++XGrfd! zcXhN@zsv=|z-3K29UhYAIbp)O=k=c04eUow)>v|jaww-;QTbugChL3B!1x;DZ;$C; z+o$vxTNru(+CSTz82AJP)c1*LY3Zrync1kASXh`Ja&U5R@$f$4f5b0%FR$yROy?{a1F@rf~FOWB6NFmyO+C%hoEwRfLesG z;TJLUFQVq@V%7zc4mlD|-z8nXYv>26+DB-(Cc<8PHg)){_ND^nQlR_hyUp83PhWqH zfX26hAKc=a-laBbhO`)lx0%FtTE%tQB@ek}cDZMbc;*cUYG{XQYJbqz4l~e>GSl`m zGyPy_6X#%-Xa)P?1WWMLPw+JR>ZAYF$Lx#G^K2iT7{rUj$TuZH&&qi+oZ ziO)5&arLuF%~Rj%`zxB-E1P>7fAlo9{V48Ps%h(~Z|f~Oy-s=$v00AKKiL|;?JfIlO<(^ z<%3No@$huC;P@Z+gBXZG0FL4hmVR286zK*PC)Q5{1;?iiD<-Um0}VfjsocR)+(x83 z(?`Rp zD4_xUxaNL}VIWEvFbwqB$FdFFmJ;0?NN!%+Yv2Lqj}UlhEs#V3JwVaZ%L{de6XqHO zgyZDvw`pKxoXUZOQiYBp1ZlV}a0%J$=!7_aJywWn`@7hC@a}zm7)#n{1jl1y>*naiiFyfd}~!)RE1BmaGzVh zE%8?Y5U(KHL`ftq6O{pW6&NfLB1+0w=|UCQ;9(6mSx!up19|wW;r(E6SKg;DxK{@9 zD$Zm8uZMNzT5U#r7!bSRbk0+q?`cl!L62ab`eG|&{=#m#uu)T+e#{x4F;Y>iH>U%{ zzEl$$ePw5k;UtV+)+Y>0>&F8s%42gUqw22Ztt6nTqlj@876|^B@qHT&7Fv)Xj98EH zc7T}<9CJ1!OU=@O^XQ#?0}n*q=+k{FBEpZ4m_PvVwuC zo(Wof4O1}G)6vk?(N{+|O;lg2=-a89c^N8O>zlpMGkdLX<%!-=f-60>HPU=;V&JB% z<*H%oZlL91VrXMv`@+)njpY+Z*Ea&Hp#thLVn(4NMhSw3S>o^n3Hy8j%VU^csJ4BS zmRE_5VdM*s2*=l1Do)25E+}0$)GH4ZEU@0=L#$g^sbWy8Zg{8hr*56kBPJmzvsjc( zNUMEJ_lv}lHwkSn(I}_%0jKm4&y4Ojc@tiR`vL0O2vsBhC))l`^kOt&iF&XIWBU)! zjgzc(zPOl2dAej6>g3w%=DfCxbPo^rL?!uo7a`2+{q^$$9rME8l|;X52(_vRdD|H8 zT>bg&UYfvOrf6rlQCoyXZ>;q|qRT+KV{fL{XrA{$nSM}6*vF{2(Ac#22>-P3xG%Ax zpJG!(<8nh2%M%mQqtnWwv#T@1gTBQF<;2ESCk8bn#OEZX*W|>Y!{n^I%5SAb`Bk-5 z-?GXI%NxrIYN~4zliC74qCO;`lEP0C;!)v+UBN{Yk)^#KD`!8KbSG5w#@CI97os8? zSHtU2i8-j4I#gctNyfLu$s?+(l_`#OKp01j{v4)xU zqN$#$+0oi<^k!CH{%U{a&S=rrSoP6l(eZrU@mf<$OH1#-aNkr{4?4%}@0}c&n3?LH zn4IeAIPIF>?N~sKb)2H3%&GOM-u11%&6D|+^@-h+x#N@d!M5$W&W(l1qoKj$`Oc&9 zvE%8fS zdV2N;KmQ8FuK#tn_#X?!h$|od*TZ-|duDVP|6hb+#he5GWhf?ElldQ^*i`Xs{r??` zO)V1rI}|JO;`?_fW)mOz$YHVnuYIL0TVl=n%AK)1y+T8A??0iKRbSe>I^l!4TDQH$ zfri3^MRX{}sMYAzv(y>G^=z>5&CB({zpU31*4vYRS+B2+_ZRz|F;W>{@?U+-)rj2Uojh8fw~Z-zWA31m)mtlr7B zx9a4uNP0fGW073c^k-iwmu>6o`H20uRIl7hHr1OOW-K5E2;4%q1Qv>7@V5S}Er)`A z>{Y%w(%H#*nA-LMI|Ba*_%I#cJu+AS*lhsf4Y-rjQogxl3Z|Qq`9-BPq`-v^Mi_m`ru;k~jqkdXtHAtml(sAnyD zuAQgdT686y9+xF^=rGJFWGXF|N99ax-U*0{0}q65CBvL$w>Hyx8xEP(N^1zaxx%2& zg?_c^4|dZYDWObZrAU45+weyGZrU(eMb9s-{r8{W=F(!-@dtMjZYYQMp>pmaIqBB6 zj)UW}cL%yPBn=f@ADc|6(5eTy#%-IpF;bv=7EkwH5 zqrILy6Lk-wvxb%^9yAHb-Uz*WEt4Ut2H;FURrHmLldOLjdeT+$a0+DLqbzTU!`CWy z)Y8VoVZT)KI#_ajjhI>R<_2$`KHhP(hjD=xN`$32=Jdn&!iq$4`51HQ1A3??;}$Qv zljcKgvc!IdrNe+6kA3PKb;TR`1MHLj{zvrXc{C&A)e7mX?BxaR4RyO)merFM>`8Vt zG6l-qwK?c!h7bkW~OGI**Pw`NUhcOz!koX0D9ZCxbliS2DQo3P(^&Msm z!VoOM*hzL#3Tw(hLL`2X4i*j+5QU{PkK1bj#uwSOiRA(cklJ@YbIq_J9nOUQrs{sK zAN}$M7qb<dPjGE)I1TW_^yIazVj|1py=*u3WEiqV7vlR$O3| zNc3n#iA4gp$|xBOpd!Zy;P6U5Wbe6W8?ua5v5G@s9^LPc9?r6{+Qp!N)OuwbNWl!Z z#o5A3A|Y*0J8K}}*8tpM(;y2y6?e9eG=;Q|DN^?^CUX2#o1Fv+t z0uA&aX)#GnG!Og(??I9ri*|HKbfX%Z_95HDK_cgC(phRQ3~$sESwYNFw1i=Rb$Ghg zhuJ8H-a>%UK*2b%+?ex0agoFUixKUH!I&&*USRCQ9fhe!&#?id%ksF|w73HxIS`El zRRGl_IKtmc4R6X8>!Yp!bvLh5}#B`mhc<;U^CZ+950{feua9u5p& zqxW+JawvJpFWr60B;-Iu@iNfpT*8E;5h~LJD7O*fmQ}fHSo^(deoTfyckI<^Wz_jS zg_lPN?4da31n0~F_@Ez+--2b0IUkV>;oghYDpP}(d=XMU!YP?!w2<5~tU@!+yqK^D z?;32xlgknJo4PrTN&J!d{MJp^9dO+l+GQoYssfC3HgSr1^FTa|{hk<#-pdn@9Ci7njy7Le|CE669UxKU*V>;0@1Wn844OCCRTW4e4Lv+b-d!AM$$WrJKEkj8Gl-rG!rU zC3?KLj5{vGYE{}j4#3-U*c`<6fxf=?mg(^ElkciE72FqD`MfD{*V|a*_Z~l`4~$I` zYkPX=@@S z5flyXswS<^ea4tLoW~1DE!9g|eCATwrq?5b;_Dw7!9M~RAzVb==K-r(kWNw2Yk!|W zrqyS6k@$*3dQv$wX!PH0`{9TW|{|lSXSu=AfRIg0SVA3B*JM^95A0X54U30&vY1 zG6PI^8WDf{9oR3t5fuKS-qXZh-QcVY&v`0nKNT|5&?%Jnso*))mzReP?n^zpFMhl& zX)DN0I|aGmn0}7*aaLX)O3p9$RWxVnYdqfi^(kC&Vti(Jac3}XHyT0vh7d%F!NTr~ z!yA1+4Xo$YV}I=biXfXpEr?qt-1Vcct$BKdVcMS60Nwoc7IcM z*Jow^HEC{*jsOA`dqo^YK-R)A1VwWC`fdm7W?(-ggpT-yon~KH?J%M2uS;w7uuAR^^doLg$6#9$U8kvIjeHnOfw zuvUbTfG;#x0ou!x)>lxUo_3O>Qbu^URxyImjmq^3>go@{5`}1~Q{gj%t-ju2`9|ka zy1fQd1U$!Q5_uaW&jVn5_gb!v6m$;54yq=QhLiLl*|EUDYf6?514RBRvCyyxu#A!Q zfdU;fD7~CSi}H1l9GLPlEI)^I(F!^cNXYV9cqYJzQ^lXk+8?#)nPU}Doa-sEEh?C& z!J+~WT!$7IiNEv=Tz#P5m90OT8*nW6!FS3~c!PH!T4nK-=l1loh}Hm1*T}69Z&P-E ztTvgI91=H5fbF`Ggbkbs!=+l(#buf#>g+8u!1w0sTCgb68|~o)vzm3 zuy5*fUMy*cHBb`5JYK9!(Vy>!B$xAE7P&<_bwjY{;wG!)M&? zX?E$f6yjyJTyz%2Y4n&xMRaFzr@}n>f{acj4EyHnxps0^AyvBHuzIQC%?fPCg7KYv)4mP2I z@f=9k1T=-30k^Uj8jOw6oB+Wt+(w}Y}(q(U2MlJw?uf4;-)UAkDKNT zBXIPNg?$%Zb96#0>{;I>I3&k7+yFcXNxmI+Jv=2)dySdkPq+_q2I`P}nb6ARvstQq zR|haj&?U*}(IUtq4w(M(VLF9+$}`J&76$sKyJX$ks~8!$1+euPU((+>8@ zqqrG1S=0mHu4ScrQ$aZ&c8O=ZR+!x)vbl9$JObbbAh2!(5+-+IcQ<&b#|T0L)s7Vb z$>~H@eBAVtIr|*u-d33G*h;!$VD5N}5`2va0qqkf(&6kl~q#!0cpZQwv1^(SM`^QjE zEI854FS%b-{)`k>KpkQKS(43VZxR4rGfOD}KgrarQrg1|fGYUaTaJ@qJs=pb=e!!{ zn1ErJo%{$tAc?c;C;=}MakjhXVwzA5=+@gw6XG4LXwn4xypjS z%}%qs>{XUG(8C_b$VpU*>sCQrvyHDwkJ7!UaHU|X65B3BQnsbk1thZwqW4elA@}0; zQR&w)M3iC%6c{AB8*jFejd(32lp$gmcOOe{VU4rV)W4w34+ENJkBCwyz`vkPVb5th zo;IxrH=OrDs-8a3y)Lc4zSpQ8tG5!qFefAua?jEuknFlj>i7}9psYgJhYQ*k(#CsN z4my~!EVW@QkNpcsX~}`y#-NlUN()0$7>;+e%0v76$8pJT_$;v`TlnbOnDkrtNsXy> zS*SIbIin$T^9?#H-|$bjN%(u6zwvp@pxV3=jn|2r$0oh2) zqzTCfhH>73Ut%8+);btwLF0cKEMg+(= ze_5|}j(_}7T$y$U5t8}egazLSu#M^E|(pIH)Jxs0->j&e4Q za=#m8TNve|9}|!o6S^}S6L~i#mO3WUG$y$)CY?&sw2V!iMKtL`B1=zjbwucl#C^Cx zkTZkh?n3etf}>blr{+Y@GWH86k}qaNA2ermG-uu5vqn;r9K{oEM>wzGlX*N7 z`c8B1;8_i#@s#4()#X`t&FMEpGtsxB&Q3&6`nv`#=bZ-T+i&NG=@&+&7DVXBLn1~? zipMn~NZuo74DTZ5E}};>ocP~2&E%!eu0+qs@(|d(o6O;u8RH`!ms&bCTRNAT$~>4; zHJj!vo}jSOkdq?LaGDN!hZA~$?GBxGM?M~ZyF^?vb_BsmdpG*z-DG~#%nr|_Gh%!T zGOoshcU3y&1|a^HI#Xaq)q&Ev*+%xxh1EG`c#tn+i|z_)i1Ym_ZjAcZ(XiKYR&6I^y6&nl~L6Hz#;zZ8UN0h_^Tv2r2GQypF7S51Ve)oOXlZzct@@FTI(* zx9N~JVSdMg`*v}Ts$?4UGigNgnFm`Qj@tqe>ry=HS!`f>({&e~z0&5r#>36Y)X|cKiDyk4eC9X?@8&q1 zNc?<9k+4wGw3Q1N;tKk?Od^uEhr+qTd$Y|47n)O7aFX8#*x%Dec_OEe5R>K=<9hUX zm*8yG6FeZOerzv=AI!qD*T#OiWulhv9m-;4Bnx_G)ci!8bp_ zH;#TUm^baDnup>I?H0m+e$e{Ko4VIS-_w`6M<;_~UD{kb8GHC+^b$_8lDdyFL-8@5 zxZK@J2@jxnQc>&?Cjv4Hb0;VPsmX`m$BWZXxQqAQhKaVMSJ;7(#E1&VYT;{s+*>&}gi)5Lx zl$Qc&jQn+sdo_$Vtui<5&u%(p7Je{}HQY%y-EsGjj19fN8I`#me|9_h@@iygwC|^` z+uhG!?EEBb10;50ztOQLO;Al(ml zGXQW((HV>JFnRWM-@Wx5t?=go1~iqL0_N}#WG_on)YSpD^P*4-T9 zMrKuR2L%eAdT7i+aVJJ)muWz(M|{Bm=C=0v%RHaHN6if^E$tNyq3 z+F($}{)TMm*Xh0uu}kF)Nvlk-=>rKbWD(cqebHOT6Z_1bOn&GWRk=U30u11P-hV3fXb&B39~ddhTHWzTid zW6G&3@A3+(f4wNGnDlliX*mDo(4KpqXUj-$i|<%DcBs4`(QSC`RJ#`c*13MK`r0{b zda~PzbU=&fCDLQ^F-tS%zpdAljFNd-+F@0$y^20JnXO#^wqBoz%oIMW(DZyl{G(4-&-3?9=RU?$x1P%Zl)hf8Z!S_BM&Gh7x~(O6{zhA`6U>h{ zRh573?{IyWetXz(fwo>_F`5mnw`u#lMO&}mzdN6MiF+&1=egv3xm9!Ldvh|?^qYTU z>dxu+tu_La6^^kZD*gCs2w_IB45Yt=;#O-hJVMZH&`j6t-SYUGG^F1txZevTY91s2 z;IFJoPp1%r5LisRUAz=v1Vq0y@D?Bs073!Itk!|0Gp#t%NQ4nx`v*R5LYY=D0K-wv zfu8IW@OhpPn*=Mh87`6}?NZ$LQVt&jvOQuv`|S|#4TSNZnIxFpxr+JH~bm4=2re2NA%by{$M72 zK@z!eOy-+(Aig!OGHuW($ler-;{lLoS@9Fo%{CTOdU}B9t4PKGs&=e;D)suZ(YVrm zWj+-c)f-kQ-IHz%*?3uh(PTf+v5Tzqu&eTu+0n#@-Ca`PJ2?%j&j3ah0GRq?sIUR^ z(5GIm7+%L|fB!@#0F%ImyqLYecCHTKQK>(fvrDA3OI9lQo*%Amk4jtO%9q-4I+5 zxM{M8Q5})XG2c%C94v`RJs<&%BU7T5gBc~kh&xI`IS@uEf@6FJD8ro&*btKk5SJ?6 zUk<<*1s!CMssNy1fAA9I0f!Hn7=#d|?ISpn?EC)&!b5HIz0aMQgd3#vkOv83E91QtEJE1t{Rabs%T! zvb&Jn_BL_6m2lj?I#FN>Qwza8<{Pze1myN(3eug8TKU0;Zjf|R8_wo7yE#y+JymWNB zCnUlZHXMbytTwYw(hI)~22Bmh%PXp31le$bGL|b>*>LiV^I$>^`hkp0VqYnvbdRPX}|K)wJx`;m(m(AUURKr$#jsoy6*nGyD| z$2F*-Re#!+uuj?Xm+|IhSA#9LxUeA(^^ye}nqWy@~T5ku{pISnDC)~>@9(uOv072-N)defb5!F`Vi=uh8{WOtY;l)RyWMlwVoKR ze_iZjC%ccr?i8<=U36Vld)wXqb~~NDG=_z{V&qMR|6TBd*E`=M z;&;Lq#PEq{eB-&i_=g~#@sM|X~lo-+1sA>yXXJ?@N{30*AM>py(fP0T{rxG1YhvROIY)r|9t32 zU;5Lhe)X+?ee7pn``hRKzXE?B<^LV|#wUOIHHZB07ykR^XMg*Pw|;SM9(%cmzx(Zf z|J~JJySSJA`0@XL0Q4I4*rSIQqlD4GcjMgqse`oeNyL5llf9WS|F}F#=RQ16)BFoWT-lLDERSyo*5^+(8~> zh!V8G0<^&%96}YJqV`1DcYDF)E`W%fK?I0d2SjZ7`HcG$S-pBQ|m)FN&i% zs-rv7qDcZJK@!EaT17%KBt%lA!2-cXV!%iGKooom4C@DaKmb|HKy~;7KM*-X5r7a8 zsa5c$3W{g07K!Q+egnr0Jd3dOiny!kvsEkSou|h@_ zgN=fmD3b!LlzKRJv>yLkY_KZyLxNz204RbH9LTRYCVR{Qvy!F^oCgkg1%9BlZYasL zk|?%%BOimSU^6kk3IM?3t-hkiz@o^PXsP|X$lbF#o4U3X1j*^LM^XSThuTLCL`J3* zu5chO|q}(g%g2?Kc$XU$ATC6~I3_@CT3N1*;qohZ9z)8J`s9g*u zr%b?eI0T36ujiu1Vd5~sx}pyYu@Pe~Z}iI*^UHD!$a7RcjeH6~ggc*$1_9s(f#bOd zM9O}&B4V(wx0H=BgTntCFfs8sap=r`_{=>!vo}&RHgmJA)Qh=F%|5%cJd;g712jSN zNzsTn6GTh0Gz$M(3nd*3L8J_h7Ycx^3Qk+wz~BskiBZlR>a|?kwJVa&U#m#~vCd^f zHtk%JW-}_#+`7g@J1P{tCB(m{`4P*MK!9_{f?zm;D!A|@2>3)efU^gq!>;k1JE61_ zZLo$V+r)XG2!qH5L!gF9$p(SAqVsG*2PL5Oq@MjOipPwI2(gN}h>GkC46+ywe&A5o zm`?#}&<8D12~5WZER$YX5Y})Ff@lUeP$a65lIOUNx_lrKHBlWsKoq@2J6TbJ$dCQ_ zib0@|WKadF=#UT5s13@|9evXK>rssK5g-K;EA4~4IEOzFg!Bpvv6z?=a#AQAQ}dJ3 zPXW@k;FJG3IF_`4hiNF5Oi4aYnISPHQ#&O-GxZc8eU@8+Q89ssV8NDt(3U}4pgO%% zM8(C5B%kuckrj=YiP?*O00yhLgOYifFrCmu-P9A+)Wd63m~k4Y5mg5DR8BqB0L)WG z{Yg}9RR>kob!1gnoz)?PRo`4xTFq4%v{e{1RbBnnq4ZUUs8F{%RA4>Uvg6f^WU20J zR%d-yXpL5BomOhCR%^XhY$X_B)jYFI(OykUWDQpy-ByMm*0wWNaZOjMQ&#gNS9N{Y z<#ShsFjuuhS9rbGeq-0rvsZlW*T<7r*8|ng<5zzz*s;=A&?8ubUD#Mc*ntIDhK<;! zb6Ecod4@k|s)J|-K!6&JozHUs%J5NGi5=MpqFDK;hd=lOO-P7dSXqN;S%??}F#R8q zC0Uy_Ad}^eUjT$;*jR$_g_IS9K?owC-O`~oh-64vKww5Tj)URa2SY$PUl^)nNU!YiIcG4qevk&Z)WBt+CWVs+V~opWlrsOi{6AfK zrGp^jV~nV2q|0&qOM)_}9ax4O;0JdABr(1wYt$xgGDqF~4&DSp5;@zKmBrnZEeDHj;rs4#^ElXvC zT4jfVD2bw|u`;IysDTPHWssVUhomlvBxQ6=U4o$3r>IZ*v`qX=zJ*{oe!vGq;NM=z z1oq*&dBDO8j=;LQtGt5cCLl>xHc3}LM{fq_xIn9$?5$+L!T>PfZN{qt)5!qvD~Y7z zVW#0}v*E2_TR>3TY97zCDpUxZC}P;l=!(i#{=Zi?XyQWX;rdEj)~)|#r~xpDN2l6L z*o5eaL@8lrOnk zC3%M9OwL+EUWI1m+!SmZB5XOlwdvHYVXL*QjBLOTtYmxa?|e3+hL1u%%WwTnr*KaZ zOt>5w)d&T^I!r#(J_uyiEnO%u*3QrOyieJ_XV9);rT*;nCEfqkn}?$IM|VLJH9_Bth=e}<4wx8^Vz3uL9@m`DFh*tM2rEZwFg%<8IfFhHv|RqVkT{`o3@eE?N2RRv%sJ-Ry4yFV+19KlaY+ z^Db}($Fl!kUjZlN2A^;oeemAYZKkGh4IiNV7QcnbRuB(y5g&09FL4t;aTHH+fw6Ey zKJMM#a2WS)7WZry&+r((an_r0Z>{kG$8jJ3=L46I=^i`x{&6GUnhsaLAU|>@_dOjC za18J9CZBTYN%9GW9r^l}|_R&RAXH+5Ji2uX)bN_TZz zAN5#=^;zG$TE}yE*nkws^LLm4Zn$$OAcb4U^;|FYT`$&NzjLS-fLOqDlPY#QX98qT z_E2ATW=C~0`4CR{27=HAac4FH?FV$&M7;=5P3njLgcfTchfMj;c83jZxFiDA2W`NI zXnFS~i_>*4X`6d?JEwvopaLDJ^Q8&^Hozf!_=W!$vVjZ8c6)e-5AXw=8nsQ4ITjcP zWSB2|ID-}-H7ZzzI!A^V@Po;u1)S>mj~|DSA9;Hyc|7O#O>cIHh!{SJ1WC0~+~|t0 zpo*+8izcy(Rp^Vi_!6q<6lB;IW}uZVDSDIP4Pe?9;W>0XKZgVehg}!}n5Q*U$c7ET zp=W?0Z5S<+C$)E2fDy2UTM&S7I0pn^gluSn6nKXVXa##{f&v%^lbUu?gX#j%1apdn zY3KkHz?_3gWFhoy(m)5e_7^m3t2piyod_8 z;DtM&3IG98%ij>YK0bmcH8cozyf=9$_yPY?dxpt00~8>&U#IwY@I`xohYyH_5{7wY zm`o}l0*hyWR+uO|-^^+6v)xam=70X^AAvlNe98BAA6W}kU^Z%CQ?StdK@bq*@ch>| ze;sBHuE4g}=Z6C`mOhXK)^C{wS&n?zhx`YKegX#)ENJi`!h{MJGHmGZVL@y8CQ__u z@gl~F)*jmH=n-C%03rjlu!n?H$9D<1dCB3C3Cff!J35JFW@G>Y+;pWN)&h(XGdeul zBQ~Pr$&?pJ@$?B)C{d3Pr&6tI^(xk^TDNlT>h&wwuwuuOEo=5H+O%rdvXz+eEnJOk z2ihAr?JnMFbNTgh<7Q4QetrDI|Q+)TgR?Fciq_P*RyZ${yqHo^5@g9Z~wl)*|qoI zo}0d3UU+AZ|#qnj4(8 znA(Ocx;AHgb=sK`o(e_v&Qe5qVS+tWh?IbjMg}0jkshhk+>&AHI%G#_6fk8II7HQ@ zJzIzbX0gZGlPr4wp?WR0*=oBjx7~WHt*WbD)M{FK?m1UIe-LJhV1@SM*)fR;G>;sD zoZ8PXb3ob}Bdq;}NorB->wy|xD}C$P_+?DJh4aaP<%1Q9Vxsq#~pk8 zF~}i*%W%VT!DeoNvFZO~t;j9sSMr@4Wjr&@HP7ra&N=J6GtWKyJP^qxKYSL-dHsC! zSV1>Dv_UpI{WR1pBRw_MRa<>E)?X`l6#0yd+jXwzNP`~N!`plS@{yOZj%YO9fF`qno%CqlW`&+5&{yXr&3qQO< zyt690Kzlk)yxcJN&OG$dOFupA#$)8WSB+E8vGwC_|2_EOi%)g;wjmE7>Enaz{PF6$ z|33WjUt7Mz=PUm&KdSUoggyTK`~N=xy`n#p`3HAK3t*cDm=FFTuz?PIU;`D%z^!Nx zf-jPw1v99@4I&VOw@Y67I5-~$2romj&{5w9`mTjJ@T=Se*7aK1F6O)V$pmb zL|^XK(nKXHu#k>?BqSp#$w^YOl9s$ACNrtYO>(l6p8O;zLn+Epl2UR|Ok|p@7{5lA zvX!oUB`p7ADa%>XvX-{IB`$NR%UMoPD>uAg2X`sVVG^^L#ylo6lc~&QGP9XNJLLiM zgq2>V(3#e}CN{IF&24hCo8J6pB&ms&U&=-y_xJ`C4Wf-;g0r3Od?!5PDbIP*vz|{p zx95R^_8}IR#7&;RZv%^c0_Cr%H3G)1C6Pr#=-XOR3^g zwzQ_GHx1xOf2!1_GPS8rJ!w#{%wX(IXZhb2##flrU;?1lNwdz0Ns@J{pwXc2+rCb{_RsR4&l@a_aViT*_#WL1* z1q2}~fr-?{Qns>|y=+$lTO+zIFHM?_omw#~+R>7>w9EXgt2jFshgt=-uM4edV=LR) z(w3C2g_vsf$;jIBwzt0hZ7y$nkimvUxZr~=aFeUt>1tIPdi_6^UQn$L+LPpa5U1DuE_lPcT<4xGw{y{A4}Ta$^-^w#hZQe;<163Nl9w*#jjmddJKz2Cx4#&z zuix&AU)lJ#zy>}rR{=~p0T0+L`b98=BP?NSDj2#A<_Zs4r{N8AxWgX)Fo;7e;t~Io zxWpztF^W^H;uW*F#UHLPgD*@~8PmANHm+WF>w4qj?zqQ3{_)#j4B2P`8N)?BGLn<5 zGa)0A$VzVQlcOxd{r@%xy)uh3z#E&W*Dux&2D~k zmUG-$IBOZscD{2G)9mCo*BQ@#{&NZStX(<-y3mHkvY>TL=tDEQ(M3-5ocZkNNmIJU zkoI$*E3N5G5AV`=&NQb(E$Y|G8PlUaHL4-#={tiu)vkWE+g5GoR>Qj1wkBVxKYi<6 z^BQ`xUNq12fev@1v)9HxHduZwX|KrR0s*K2L2hCtgq$G&D9A?|teu&HRQvzh1(}Bw zazYNQsG~|FdBM2Bq7O=K``a6E60+l6X=S@Ps{F830m>l|ejp(LBWO3b17L!D+=K)G z7f7`SUJzU5L>yOn1_E#*k^-dLE6Wgx!wn*j1;AV09%nSY+l*CQh~zcV5Xlb`lJI=2 ztk?(_IKcVw?i^r+A50L*4W?sm9DoHHInnoU4g2w-*E`p&21_&|PV;_b+e-YXg$5#C z0ZqJo;JXmP4Kg#2Dv0C`V1RjNJaBG(pF;{#2iUtr@B(l+>oo$ocmS5(p??3nANt?| z$0NW9txG`!rVz;0VUQ1EV7(X`2tWkb^@YO+0PD|CJKF~2gbkP zPelJbl|#N}tnwoy|1Q11%i#r)2q5ACXhc6&ev^UMra<&cxa+BRlTjJpe$w){be359v*{9il!~3CyTd_Xlpg(_- zMSo_oHeE4Fp9l2k9)OgueB~q$fFtms3z6VnAg~I6599;t6#zHrgRShI@Yw(%c%DG4 z9s!tNL9E`8@Pn>MLbJ`^%Mk!MR9gVtfIZybX%ItB{7C{5LN$0FzdhTDD8aMwLzO^V zJ@nfnpdSq$nfjTTSe;w|7{UHcn@40rEjSzf!Cb=OgRLmsy@CJTKwMzTT_7b0#Kt)Z z+{qn5jNk4Z1nNOshumBaFkuF6pt$uzJviG8UYrI7pGYj-1+D_zIl^7oij-g<3kZTX z99#|Fp^e>OnTb^j9>5c%9=Bz{4TN9uW#0K2(YGHJ}orA_lG@GD^ZJ8bl8w;uiWFK7<4!y5O_H9|kg=xP>Ak z3LzSvVKc5F+-br!T!S`bLmhSqI`qOH=He{AV}sSAn92WD?+qUs27tq1BO&I)$~E09 z^n*G$+ah{l?FB$Fs)0zvLNgXb3U(l-WI-AxA;tBBGen#bSYrzaV3mMk7EcL;z{HV567GuYapW0#Wb=h2yh&RGFdl}On+=594!)#W zB9T0P1$S-HH+%yZS<5`A%N#IZ2aSaU%3af0+aEe#weh7vW=1mzq96VxL3knHaU9NN zMmE_L;+4@ z-C4FK45g)4=ujB37Ktp1VK|U;@q^&thR_9_9WsQlRZ7sg+-{ClL+GYG9NfzErfW9m z1HoojkkJy}reH9p|InIqW~X*SCs)WO7_rtfaEM_1T?A>Td7dYo#H193(SL+zW_U<> zqNjY$r-P|yT6kv{vDUkoNQd+RdDbO;2B?5Wr+wb%7Zn6zI9zq&=72V+gH{E1#wHi( zr$E$09Yg}43`~4JD2H|^LPV&9S_6f4#=1PGhn^^k_5+A|#W%dX{yz!kKL)C4k}E(>7K!y$fq1#5`C*EIw;276dN99zi@qvm(UZMO@}#YrFBo7gQcY zNNcZ_>$XJdj$u`?Cd9fLgcfMx{u%#)K#)NSD16L&r zWCIlZ8^8kG9*FBg@B_4(E5y#vui9d;Dnz>$M8e*i2smHqJ>fMB0w=sDHrRtNR09L# zV=r*RIbc9IOhabq12tp@fe?s5oWmfX0x=j|KcEB10-QV`K*q_#$u0v4z{4P%g3R6n zKU@Pm_yQpS(b6{U({>0pu-rGC!yh1R&E70LxM;+FZK_P{JXS2bB7{8PV?BI8HatK% z2(37*o()_8#r>>EoWjW_9SejT0f55>s3aQTBR@=m5s(4T?Vk<&;lN$o3v|E;0G$|a z0Krnx#R&i#TtE%j94SQM3;h2fV{qK&TFKdp!{k;jv>EPXQX$x;u6v;Cjj5}}3M><_ z;R%$UD*)^>1b{58CxA=x6t#TEn^ z=l~iJLGcX%8sq@cZrk#@Eh933aJ_AWf4*YNMk$?v?@!O36 zmNc;!53LD*@w}=q3!iaW#IK%yg&_>9Atc1cJ!S1_V6y=q#983U4zM_&0mboy7M$Tt zJc7+#;qu;_^UVVin1B)1fB-T9NiyOBu;w!?z$0LB2RFg@UI523K@Bw9CU>$JXGRB4 zf%8EeG@>yor?Crn8CLC()U0Jfl%5tEGGHQR5a@9~%tP{4r2?E`?;T$mJaF;RoIKcG z1`M1$^czV4Twsnw5aa_EJA)QaK_*M3z#YZ~ShER`gD#h_VjA2$Y-9+uZz`9wSg0|L zVHI~7!XLD=I~)H(cXV__cA_HOs~ZwI&Ap~D~Cfi=j39O!m37zSL^3vdqt ze~Qg%r?z+J&uVuCYe2$e9=~IE;JFgEQiEQ)M3vjBPLV-(mQ?BnCh1>^Jnn z9qj*GRlBD=R7QKt!jBV(kQ2Fo$F+i{cxv!NfgFfdzj%yidFIS`V>sM{&_Ojo#$*4* zG(g5}_d}%QLp}6?Boda8QcUag1ehQMI zA3CBZx}q;Sqc^&vKRTpGx};A!rC0hJxmU71VM;cKu*Mv~ zd7VdwJeYcBp!&Tiwi|5rzzBwl`wND$jXF;lulKsIdy=a{#Ec)r$^e`_ob<7SbZ;j6 zKmhbYiS*Q9RUQ61wO6~f7gB;}#jxjDvR%8ke>=FNPNv`VrV3EFpF6sLdn;@Dl(qkI zy1zTT^ZL4zdy|@byx%*%_t(5XR+EuxPTPCF2fV<4*S@b%jQx9b4!puI{CJH!zh4=A z=z~pa4Z~Nw#nV>7i)z0&^m_1vx>zTB*!RBbO}AgX$)EgXWxNd?d~75reTaPFxI4DJ=hff<(%q z1UkXUJ>6@!H3Ukbzl>fcLhIqI@uRyWh`}TeD559LmdEwu{+P` z+;bdX;kMg$GYn}cuSL673z)ma$HAjU!vA$cTsuookj z2Oo;7coSz%ojZB<^!Zb#HK0TLS<816X;P(2nKpHr&)y)24WCv$dd~k4H>+E@cJ=xd zY*?{l$(A*H7HwL!YuUDS`xb6oxpV2(wR@MTP@+He?)9tF9>QsZ2~YcbxMHt4~9m{hg>mV)E$={~msP`R%J)uWub_;Ddz;<0s1Nj(p&$<1vwTn@5gF`Z>pqSQ2tWl8oH22_a{8 z>j#-R;7M@71{K3>kb&GV1;Ytx^C+KRcH?J|#rjaNo;rd{F2Mf*8Of-ihaka`oOuZJ z56B>Mx=%XnvTKH+@bZz0ymP+OM8G;wf~Su=2E2p2Il@usB*jFLVQUk3#5+Ke^cnB$H;{upGqw*6~lKD*WP-;`AbidI4XxNzl|_bPd2f!$yP zsbY@>4yrzYt@WLS6AqdVhL5?%Pv)+@&c+Z< zTJ@Ujow5c>*1H}O)1FdS892(H14P)3iW`o2VlneU1|nIi{u}VX1s|O7r_big>#Ykb zoAJgS@A`0`(za{6?!M!cp;M%SzzsGgoop=0fH~Tzzq+%5He0+iE4s!6}@{a#H7)FWcdz`%abflzOR`%?*-=6#K zWB)y<#05jS_wvm@zxII9vqzh9ld=c?_uc;r9z*KT+xz_W-=F{fp#^_P;@c1T&{seM zmJfh9nOwDy)HMG+5P}hu-~{QCz?)d`FSy&&0Xf(~#$k{;9E0EdC|E)ho)Cp8JPHV} zBfvZn(1S6Qp}$yI6cyeOhdI>Y4&zh98V*H+-9^O&|5{6 z;uN8C#3o)5i&@m73ZK}uAW{*GVMLq}w^&9qo)L|*>!QrQC`LEFkvi&2;~eQ&M>}$C zjWKH@9Qg=FE8Y>1ffVE*&6LNL?Xi!EB;x-c3E4ce^oZ%GbILTQ~bDk5O z=~U-B+1XBaz7wADl&3dA>BaGJ4Vn4;U_JHOPk;UspaB)=Kodz!a2b=J3Dp)q71~gT zJ`|!6mFPrUXv9$BlcE_7phY#>QICEUq#+e)*$m39doFII6fJ2=S=v&Uz7(brU8%`V zn!A`Pbf!1e=}vjtQ=iH(r$R#LPkH|tRH7agsYzApQUS(MHr8~5Of4!yrCL?1UKOiK zH7byXnpHP$)vI9@>sZP9Pq5;rt7R?XS=HKBx4spwK&2`rp(@0-hjXSi>Gxs`^+*IvCqn$37Oak(KOZAG;2H=o26Cc*kZr+gZyYhiXZg|OCUV^5>y6IJKZqtFxcWf8F z@O?*jovKIhnpbz@#qWOkyG#G{t{1=nZtpSQ8(#w#cfM%zZZYrMUy?4^!4Z~lKmQwG z3s-l*ye#m6ISkwckI_Fr%ujEf( zc6`AWml()#t*~r)ix9ooL7rR@d*s;5d3NiNE!z)${Q0s+M)G=<%##G# zqsJGlu{}hLlPSZ)UictwKdek#EH634F4Tr7_57+6$C)Q=uE?2zMCyusqt0lZaXwOg zV?1{n)?wxIW!o`ZKllInAd2nBK8&1eA{&|3vc0vDZChxwxww5P*3XT_m14%E`Oc`O z2B_85J~ZFi$vI|rjKwu$_Dy>zk3L9n`@xUn9wf7qMmLo)GTciWTFb5)7pK9csu`{A zIsbykDa@r4&QRze*-%A4Xd|2g$u!=hrglZL{f#>Z2GMCwar@F7uZUZN8rHzmw>3VF z7MmK%ss8q&;~ZssE&Lv+zQ@Duh3Hqu8s=7=wVwe^bDQ_09l7T1pKZ=_Ki@jgI=?k- zjUB!_YXd4XCiR`w6=sbWCCq0|7saVz@o7T^#%Er6)Oj2j7Uu)xJrOshfs1al_e0WW zhcw#xfp+1(``G{WJ>*R`J&lF`>o?Ac(TG%Lnx6c-BFZ6nqCUk9l_ne^VIMU$9KLN* z-&h;>VDp_B&*(beS>w|FIJHr1uW5hV+o{Gly|j_&gS;5WsiyOfW8V6t&b%V~SO>4$ z(T<=iHs`qic|U&5+dk*M)(5F=(F4fzgD5@n>Vmetgz|KCncl^9rnvEA?C?~NW5;#2 z#>&w==bwz7+z2TMjj?WsEnMM5D3NrtZG;2_D^zYd#F)bKPx@H?FD zc|D#ef3*%1->)t^BA=-M-Mn*3Wlb z=y9R}B93EiBt;g+gW&2W@aDi8l)()~VQo&~H&7uP%q(4M@CI}7r)I9!)*<(J%@=Ji_k>ON0!_An@8@dI&uZ__ju3Ge zE%E>QAtfG;;_Rg;pbYvnZsi`1`Vg%fy{&y9uH?8-xW>)=(9Rqojr_`1O)m9>eFBl)Y#0_J`fdEkHv6t6%!BCj;`tG4&t6H9BFdl z#sTuC&Gc|l7kg5tcu}_4q38On2z{^^jqxCAjn{Z@9g;HVWRK{OurHKu+2Ds73<4*w z@#O5RI%Evnq!GrRPSh~YAV82D!_OY@q3tM*w9KvT(yr{*F8zWF?!sptPm6bqV@3Z; z#U>DBAKic=`q4lvkRv1nB5q?P76Mfqat%i$ByLp z^ir}SU<}V*PVtsb^@^ee*@p$I(auop8&J*RDuO3{k~UomD1}Y-icHsx(iew~*!t|q ziVWwRG0T$B+b~WArOha`vgzWCHA!*WQmn@;j~ZrB#zM{ozpor`0=U+)+>R?Q$Hm>u z5LVi6cjQ41z#}6DrEVU=QRGl0CgdQJ!4wL!4@g8ntYJ7Bqakx-GAcs`Rl`6c(=tzl zBN-ty`e8H(?*b9;`0kDbV=U`DGx}ySGy}sLN{%$C&G@P_Cq}pzQ}Vr8qFtIuWaEMMKFUG=m0>XBqMu-Ll`6$RD>W~!~&ILOfID|8NotqB18I3Bpp=ZLQy|3 zZYC#m2?N6{5h5jPazo`s`l@s5L{0@^l3c(MCs0&H2eqSEbkGiUvD^zsIjk->iv6C7 zcMt?T$}KV7p#SQjRNMei6a*nk0$0M+AT(t+Kt)u}Aw4mtP&8#y5aKr;@KO#`R7s?v zFc8ONPsT-n9Wtnp6z4PFq#T^>rm{9|03^;zSUucB32lT1;s zHNLX-g0|H^d{kcjqFwO=1w-^-3zo0y6=9q5nDF($bhJp&&|nWEUU7vS6-rU6_9xh;u+}A@SedAq@w;9H(3tESZ*S4`=K7PBoGut zQ+frN@|JH?S9M(Gu9wHDmVo86a6u_ZM6wyUKLm^}#BV;uWIgvn^6n7bML>}=D zj3W`fv=T3|AR6%zUBnU<0^nd*5c{D;tl>9Mg%{>P6@FuJcd2z(SA56!tNb=Pv{q#l zvfTEiA~=Inz#}4M(%<58@p-0Z|MhM(R@|Z384I(jvpb zXTHHQ%td_}avqqYACzN)DFQ<#P3Bp;A#rP{iR;7Gf1V0vzf< zAPP=%8zO}r6N51_Ha0>`K>~wE!c%KyNlSPpEFy?&VuQ{1gO3=A%l9t7OLz9uF)AW5 z{?jrrqYpHLGdu${M1wR;13*(FH(KL0Vq-R56*mU7H}v5*(AJ5U134;~jhiFiz}JYA zn2zfhgy;A$&^KkO)JCBAK(e$!9wb8evLebfgEvG$wDdz*L_|o0Z%|lFQ)ES2BsE|} zMi7FJgV$%qq;7b`M?8^r@z{<>nUuv#l>I`F|AkZoWkBPwP~s3d26+D%RZcfnBu|-_nVJ8a*_odinxk2or_6$cJAIbq)A$(ReGK|`e##mrDOV{TUu{nTBdKhlxZ5JH5#XT+NX8eZEf18 zhx&tox^0D;sFPZJjXG?RTB)CUZ}Hd#F`wo&=X006Z$o3(Qrzg&B01NI(B8_GP+UP}8Qgd4X{kQ4gBwr`uX z9nRyP?YB2ux2M~ycw1-#Hd&kOxrN)ffgAg@A-R{Exl7NvA#NNHn!3~5t*rZ{c{;oA zq`Mg-zWbrH4MV(d+tj#w2GyIt--^A}+P#fiv*E|Mla;=QRlecJzVAD=&HKIk8^YV_ zzgKo*fqS?K9KjE~xD(tS7M#HcoV5S=Oz&FfsN)|_10 zygYd)LN+4!vOW+Fqu?5RClH9Uar**08rM zsPX)K*(V$`UDR6&(mRMB&^yoRxu+x@$}WA>Umc`9-F4G;m<^8~6k-ngZ$0DKM{;Bh z8|5Z4q7@be*g>~c`tKm-*C77}!FQ+QZexAZVO`o=tJJN-Mjr4J3}GizyQ9ilNMVuvph z+6O*57{Bq|wf6l9?4?85LAMTCAsbr7;1xbb1Yt59l0gZ7K>6X4-I(GHvf?uW-Zhx- zF}UIrbV0coH3Sqgw_f(4gZ6KKI=&zL6)E?lLml`|G0I^|^TA0oV&oxZG9^Q{*WDi{ zbr1@ILC|*h2Z0n$AL;?3U%x(#`aN^A%Gn%o{gBOpCnr+Bb8ce&TF7tE9C89Xdi)47 zq{xvZOPV~1vY-F8lqpxTJbCY>%$YQ6+PsM~r_P-`d;0tdRA9`YM2i|diZrRxrA(U| zb;%PdQ+rNH{&IuWRKIz3u-?hXug@xjZe$sxlkXtbtRBOT<%$(jK7j`rl63<~;2=pJ z)y}E2DkIi8TGhIdD0nc(s*F!c)%iH*(8iQ2TfU4rGtwwz z)E(`yw#kf6YtHb-wM{K=BgohNR)4fNx1&DJqnn<#dAug^;>?>ne-2$}^y$>ATfYu8 zIZf?Ed1EITHkQm@1;2~tE))IB<(OT2HxEC){Ppwe+rN*$s(P0DeZIdB4>vMt6I_0k z^@kFIFqQwL&1?2(LsEnNxR#QH9zCc{h89vd5{CwU2qI?eg-BwFCK{-qNh#{|--#}g z=F^HKjo6We0zF7lYBrj*V?Q>21L1^0iqzwaMjmMsjYuxZWRsN1I1-dMwdiD(L`fME zmLMtVqk};<>0_8eW;hg_R^CY>mw4{UXP*hiSQV9i z4*HUo9~tTqmpkGZr)wDs)F6g$W{4rAky82*rCv&?W~GwO>FK3I5=yFddX|c6sz@T* z5vwl=s%oqPxvG*+ih2oYYK%%~;iI{#DO8bUZuli@#addUqaA%CYqO)B>TI;qnnx?G zDZ&3bEuq!g${?;jwsvfGMVs+qZ3I&7TgW(#jq(8fz|y`OFC6t?!>i7!vL zCi*3~>x%21d!sJ8CbNu6x~qFc*hqg$rL>^=>(+>N^VXr*%! zE9cpM_w)7Nf@hpIYJ(eDc#?-N{$b#ZKb~#kMwtycc9PTNc;%XZmigwMlX`h~pQHas z_D-FTj(Sz6r_Oqlp$A2I>&(4QpX|1Kw)*Y5lSundvG0Cw={n^OeDR7Kk9?KA`g>LytVk&c)_%UW{kQo(bN^_d?apsMnxfAqJ zbDP{uiZv&MO(S-5oa7wMH-D+bZ=em4!QtpQWf440v(uom^ref;sZfuaN1`6m zs7P(<8kK5DraE=1T7+sLrApPT4zj28`{_;OsnxLh(W+zRs#woTP_xdErpZLBTV+Ys zK4SH)bZuc=`Pe&qjAO5S?Q36eTGzn3@2*L$rEN}f*e-e~C49AMNA5vInX#m?EOL$i zdRVZNxrQ_D8J}S5N!U8}&Nh4P2Wd@<+SATNuj9}wYsPWeE$KD3GimLO5^EFIy0#;> zrQU4m_t&NPH8p!>ZE##$+RtY3U9b8LHJT!mkd!bP&SV%;k)sT5?GQf?h zPz|2qgKM%M9J9B=Zxk;`yxbbwPR7M0`S6#`J0aVWIgnt+@QtZ5<~EO<-RD=6-`+0z zkOBb$hAJpX=pab%9YPoBy-DvS^sa%B5UQa{F9K49pdcOTU8RTuf+9^oM4Czw+5Fae zo^_sm&Wkhlesli=bBue;`JMB+K7*6j51->N1Xe%Hn@(Uc*BQ7-9oBBInzUrBgP+4;rLrOW=fMUXIZ#BD>?#pcLVzccp zfux7C?z3n9O|99&sh$e%5+wxf+`TbltkHG-X;2!46g}94 zaXvnjqY?k@hSo^D(eF~t3QzMDN~3`r>waRbHR&Gg+yZQ+Imf@$?v6}*{Z`Anc-ye> zOCIJlp%Qdgo1Ruj}%!NAwRAdjz%yc+6KSeWnKmu{*hN}sSt<7%r24(m>9f70GF5+eO3ok7U1osN>!1q!IaHV$5z_LlEbaJ4 zRYZ62dtV(n1t+EnrAhU*Z)1ED--+GQ_d%2y{183i!0WPZxleO*!>4$5%WYfv%LY7;1*<_?(Usgplko0Y2V zCW{R1E$vt&{P9JiewZy=+tWNCI6iZz>8FwWIb@xa>5OIn_2n2ur{J>>22 znhtz8cf6bnla?DE=UXl7)n?}L6&ECPC~EZCxfcLX(^Ll3!>iw|FGC;*;B}ldJG|30ujpwvscp5^&lnB^Z1!K4pwAW!^01 zb*|hoxdG(`2?Nlv~N1$!#ldZJ#6a3az8YMYlm+w&^cN&;K z9pgl}*utN-5!jm2jz&}Hw$o*u(BlGO0y@H*xoMm_8He-uTd^78 z4C#W2nRPSCGozW}%xSmBY&t!X-#*UN;3sHV(JIzt?dN8&>d<~hWVLE%Y3gKGlV)AE z@nuaj5f0wb8bu_Vk>_ZWoARe;>$Yb*Z!_6@COeMhz(cb|ta3(~;Qx~9|37$!khFq? z5>iT4Q%d!&f~uB0Qcqc1Pg2cP0%J45sBWjEV=k|6FQMTjsf&^`@{~3W zm3Mexgj7;TYN@H+)6mt^Q`6E#>giuGOLz6u@0#ft+n6A=%#qqAI$B10SG z;6OBt*K!MTPF!8tl2-{P1=D5#+fa=D+_S6#XzRE~+#& z&IcbKk%9Hi#G$g10y9%$a#I3xQ^OypM;DFXEtxQS`o_L)#-n*IY#$SaO~PYR3CWqs zI6@{Ss}P%8l$?>3lAV{5mz|tnl#v=sNF!vY$7f|FXXPd5W@2))lk)R$c?Bt%S()iM zd0F{c8F__yMVWcU1$bO(Y<4L&uQc&-X-fW+)Z*%_%(CpF(u|_&+?=x9;?n%m;=Izb zqN=9Ks+!9B=DO$Y&8_VXt-UQ>1D%WUUHzj6_}IhD)Wd?Dqtb$-s`BHeXFoey`Z@2yG{RiO~nwWV#JvZ}VX>s|>@^1g~myO@!qbE~uP8a7__r}-u z-|QSMeBIi_yevl7CZ6 z)zjtLnYZn{GB#gV>HWV&`5OI_#Xq|Ln<#&0An7OB{}kn41`hpY{STheB_(1y{2x)C zz`8d0Z#)B;d@IKI$a3Zi&#-@eg|c=%_3kOY*ZJ}vJfl42o<-}Ae?)mUp?v9swb6g! z8TAL7Q~$yA&y{kCj*` zt;ZCroy(UM3|y1%3eV7=A7T~S`1%=lg=etqkmLAP@f@_l35@m?|KJ%fw^oxyykgn! z-gxj2p0QaCPgMA&&7o@7%ePKYe?G5ayFd1HEkjT0wCs_gX3dI<6}{(1wxC52_LZmgoY3WrkBUsKnuBE6>4iy&hVSL+H%@je_QWfvVB7vNM) zMs5zL2&MRr9%yt3HFVxA5KI(oBw>l#!Ksvo-{@-~{Vsre1)$V37G)Z_+Y33Qox-bR zgm-9~S25WhX!g3S)Udx^6?v&*HxY&IOJq_{>Y_uW9xkO(8%>Q1i)SJDKy8=oD_kHj zt$3VxtA|z(kQF2T#5=H^cBS}DY@5J-WZ|TQ#x+#1+EDQ7xBwgETao~e;x0es6MYlC zzTcY#KLIw**|OjXCQfNh#}ePB1rWhEg}Rsn4Xu3>xO=Qp|2a}}c~aU-TJ<*P^wcMk z&%hNCPD-V=3R8**ocQbJFA&bz{ie1gxyQptx|G)dnyQ|^)7q!2Y3Wi#;LMyUB6!}4 zS0b%8_zQeG-07;enJV!# zRidjW9lK0}2DnTtfgKzNR@j{oRc*ZxoK&hVQzsG0^a zlLJXDEP_OXpypHT9WKxHMNnn7p*qbOg-f8kFEn zj(D1*lCb(NQG#2Yx(P^IIIC>71q(XYdW++IS0o(L+xbi!naUKl&Q_IYuwn)Ci% z%|5;M9tWZES462Z^rVV|it#-mM#Te4J}hAWMXr{*w0;(#xglrX^y@X+8EQ%TZfV@? zzLOblDA#+AK7bHo_C4@$cV3KPv!;{uQMNV26*)bo_K8L%kh1Ca(0kd1gu*!5M<_6N zq!B#2LxpN~rAnFR`P4(k8HmI_QrVNBnsh06?0xO^cURl8=NK3XdBsN~I42+(ycBo+ zhT)*DYAoP3DQ9AOE`U+A!x+#ap<=Q%52L+08HoY|rU?T#>BC5iBH5Xz_SHC_d>L{s z{6e`Ivt|T&k#Q2COQP=J?OC;*#ETO2JHoKO=i5%=SqUkz=&l!th6@Ay8O*3y093Z= zUGrEDdjWVn_h$YFOa*}mOWcna5G1VM3m^C$N9_C54x{@m?NN|?ANLHP8>^ZIP~Q^n zB?YX+?W#dx59;9hKcx(~5!XuFZnJYL02m8Quvun~PKt9Rk0HeCMLVeT9ca3V%<6;# z&vzBQ3Bx&i{p%OOBnYV26z&G{l3WO%D^ZOGy8}31OAsJRoTRW@la4n^N8P#2KD=c< zrfcoE*X&|C{9JSGUSz-G6fdH5MkSg9n7w&(5REo+ijM0L4Dk$IYq8r4JkW4&!z7J9 zwlAZoV3sN(WqChp64z_plWIbL_o<-pwLiCefsCVAP)=jDetB%>_o1}U1nW=SD9;jbqRKV719NUP7LKXjL;ujQgcm96PZfKIYah*>j{EuqAo(-x84|{$TuTz*w} z^qXFYFhWx~lO!dYgS`ZOS=v8xq(CrWq9>meBfVyej_2)td7W5xM?SvrhhgLwls3ma{|hQBcHN6C_1%0VJsw_suG|o-J$S!S1Hw^GI{(2->0gP ziXNVuY{ef(IzFAA2N@^^;H2iuo(jjUg{-$_*l{_IklqBv-wN3mrkD+fLVE>i1Q5Aa{ow~=+*$?R*Ka&Ht@Ka%3v>fsVO6Y9*_kE@- zd1^aD)3cL6^4iREfI#v9LkV$!T7C6o!h)EFq=g^|6L_eTG?mL&4h05#do49xH7D%oCzCJ@EQbK|Q#%Z5j9&`0*U#VbltiSdE?0O3&H$j%uh4wrZ>6Bp15$yW>KH)vP07r+Pr z>Mx^D)fE5B5&!4$Sc-HtSe4v>biy!^@}03{!%N|QB;^CB!r(9X+;7(p(rybDF!9F* zV=FO#)NP(!GDP&Lz-EY)QeS~d017rzaJm~J zlN2GRLSn}&Q%ZDxKu2Emi`-cS_Cf|gjsnunb1qkM#1aKw??XZn0;f-8CP_6t0ru_* z-ckKwyy-}}VAam>_`DagxDSrb#hx)e(!j$5+fX$SM2joT04|K=jPR38 zAWsjN8wtS4NVvSjS6Bw7RU3#`;DHAZ%C>;d0U6F7hOwpA?_W?}#fQE~Q%O}ld>Wn^ zbt!5DEXyPll6hrc1D%Cx1) z;r$y2P%cc;`7IF-BqP?VozC&u8g5Z{bE6d)#Rjg6o-#RTnZV980Z0V2Sp>bx_?Ykl zORSQ;*b(`?(;;Y|EOo)%U68vhV?%F!+*}FzX<9 zp%(A1qul#jttbqxHj2U03&%4&w$usFX^uaR5UzKTYvz@D=??RDjf^9ZU4RIT%nnUR z#%Aa060A&-pyeK9%M`bkJWu<1d3d{CWPp}1Ay zeG`~xjsX^s{#DDSQKNj?#Snpc;)^R(@M3;L&OgOmB$Vr|T}e9x(ETBW%r?>b*q&;` z?DOoy-C7e_8zc%VO?5L!YO5V6(I%&g&~OI#(@Wsa(q9Kav#_kh{r zAcud@0S0q~4H&A`U~BS*YGzbmEpz1+6wJzUd{^yVcYxWP?AZuWR{=Q00`B5ITMkrtd+x% zTF#6@1$+2hHqrIjyj*pMG+FZsg|4A5)Y0c*yLNe|0@Yfn9+N`dj8-v+KYB}4Tm)hW zc;;y4Vm>Q~_8?SR6MqNPzK!sz_2RC-P1|ro4$dnapOt!19)Tap{;RG1>ddrTz5WO< zqqiyQv?JBwB9bZj%y!P#j{!>E(Nx?oTHp+ON=G==G;_FAQQg(8X5}P76cElFF5=mGG?%n_;EQOj|&81@C>BdLyR3qxu z!6L@_@&Hmt}&Yi;!3V1gd?vdRBBI@;`%x;O3sT%rvMZrrEz~WVs zL`2?&33+Ne;33zYOfF$4>UK|9UiWRu0HOfqBfJydo9j_Gg`v2-Jp4&V$Ox8HCci#sFK1FMnpxH zQ_u_$&F3o2hrC6rEZ_s0#O`y7lcUm)AG;YY%gmb%DOs|VTPM0Hr#s7$ly5sb_Bz?0 z31m@FcFyQj9EUJ;ep7ZENMnxm3(U8!M-mlj@=K$1BF=lDg}tmaubhBf$2MGAPOn5f z7*6X{&y#VC>6X_F!3Ku9WaD(F9YDiUu>9~Vis*hm78;l!H%}bLH5N{B+SIflhVRaq zR0*O3>oj1bnUg&IZ5v6q{C+is!Po8moX-(d#_YOXgL={I%p9qvv6T8NU|M&04gm5Q zNZWl?sf5y2NB7BqDNN^wZmE>2M-O}aVKpoq_E{SC^I>Q{9}ZL)2`;1yupJ369Esc| zdUuUH_%nj;q6uU97oMR&g^3-8_g=Ktca*E}3`@!Uuobi70Mpu*hV%O`XD?H=R>lKzat5Oo|~Sczrr)@rj6^k z)}BnWD$c-tr-0PQ@6)t;MM`#aEL3yG%X5vYbNa96o}JC0 zf$z2MyoWdrR_)CBbkn&}z4K7)bh+U5FPaUw1NTZL`gVU1G5R1D^MS2t>hG5i0#x%6 z-S4A|<^@#e1uv$3Gv=)CP2*zb-_*?Kq|&A+&Y-{3#4WSsDb8L~UC54Es8FOW>7GlA z5vzJOTXts=W3ou3qOH5LP~$81g7w|Adx&{XJMeQ#Ruv6kzfprCqRDQFCEz1%_X6wm z!k^eB?V^t$j`$Bch%OXKFDt@cdTGvMX~~!7&86K;%QM>T>vxC*xuMegvqZ|KDb#Cu zxtiHeGRWI`S;@#98gxm_L9GaAbHXSSi zg3Q;66G*I^DR~g}K@RFp$a|#(;Cpd$K>)&>9#KjJ8mIuC8Dvx*4FrP)q_xL$lGV z9fp9Q6$%*_Uno; ziXg*v?fq?iIP{|D8}J8gdg@2k!Jg|a#4T>&Qc?s?h*AYXI&b&oJrzQ_6iV~nHd}hR8e#P{MOsOo`G_dC$+`m1c{^F5CV^m;0KJrTXG zO*}SIIu^`?H3-4al;9mIV2cMok*H(Sy&q1L$AWa5iG4>Jg}dOX%|=6VD4bFX5i*F{ zd=9r`W4o$}KYZ5%A>ml*m?BZyCoLxeWewGZFTZ;?9zY1th*!U3E`Q539;GP5o!-uN z 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 z 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≥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 z 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�)w4F-T2aw_U;@Nkr^7i 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 z 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

    %=tgLR(RkW{ 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

      B^kMhjWN0 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 literal 0 HcmV?d00001 diff --git a/erpnext/docs/assets/img/articles/shipping-charges-3.png b/erpnext/docs/assets/img/articles/shipping-charges-3.png new file mode 100644 index 0000000000000000000000000000000000000000..864c5b0f5c4155c979eb621a0c98139101e8cd52 GIT binary patch literal 63627 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
      RRk#?HcYL4a>UO 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 Uv$o$`8sJauy0!}9s&&|Z09Sfh{r~^~ literal 0 HcmV?d00001 diff --git a/erpnext/docs/assets/img/articles/shipping-charges-4.gif b/erpnext/docs/assets/img/articles/shipping-charges-4.gif new file mode 100644 index 0000000000000000000000000000000000000000..5890bb6b371664e3ed4e07636374446abfc8c091 GIT binary patch literal 951987 zcmV)1K+V5LNk%w1Vb=tA0(SraA^!_bMO0HmK~P09E-(WD0000X`2+wD0000i00000 z*93P0hX4Qo5e*I#4-gj<6d)WOA|4RZ3EBR%vu;NKI#0XnbK)X=Z0?Xm@UKZESUZbY*sVb$ByRl`~nW zIbxYQY_KwA`$|xaQ*V<_cdlYpm1}5-XJ?pgcZO?tmUnl6b$pd;dZSZz`*wKzU4f2I zg}82lmUx1Qb%vOHk)3UVrD}$?ZY#pwR)7Ob(FSKkj-3>{BN1fZG-$^ocwl* z{C<%9d8N&Dt>ThTPnTI~l4nl zxK-h|eu;;Mgo>4ol8cI#nwx`ykdBd=mW!8|mwjhUs5o3)jirIVbtouQhIp{0(X zyPBn_lcu?!u&tW0yrPAHr;M7Zm4&F8m9vY0xS52smzt=Xrmmogrlgp&q>a0%mAbQ= zsimlZG2=xSjo_tj3_N(4)A^q`KI)uhF%+!nVE9rlzu~O4{JyFEwY~hj+J?8o zyqCe+mdEU`$dEK$&hY));^x-r_Sf?3*z^48*~a7C+V;%L_Q=@t-NN_Q)$Y~r z>E+7l<=5%*)%fSf_UhI9@XY=8)#vEx>+bUC^6TjL`|;}L^y~Ng`04%r{s{j7{|OvO zu%N+%2oow?$grWqhY%x5oJg^v#fum-YTU@NqsNaRLy8r>fFh*r_Y~2g9;r=w5ZXeNRujE%Jd}7fj6U4Yf81M)vH*uYK@5x+_tY^ z!-^eCwyfE+Xw#})%eJlCw{YXiolEyExTjn5>g|cwrqro>0}CEZxUk`u_{<$%%($aD zyp1DEZix5q&6B5y1li2FvuDmkQcWIBy0q!h;7+SPoqDzF!<8+YJoUM@?I5CG>)y?~ zH_V*AgX;zUQjr4!0tO@>V8B3u<^~QJ7(hLM14zP4vfDKUiudo}!;Am-zU!UK*ndq9 zxy>GQ_V@7P%TGvrzWt*0Ste2*U^(*y00QVh0@G0^KmY+?cb`V=jOXBk;F-q~dQzFx z-i1LdsNsejMwVZPAiDISN)8B+Tyg|NcR+vv8bAPb10d)?h!pJt;f>?%(h`MHS%@Kf zGzKZ;kVlP3iY2SAetGLZW@3n@uD&8v4;vhm z+rvHw*~3B+>K5S-8#ka!?7Z|gH77q|os-cv`dWmKyn^vt&^oE%6P9BC;FBgn{Iuo} zzF;ZlkHc0$!a^E&q`^Wp^ufeza?QbbX8{Gg=;xmSD3l8auax8r2P%*wP%beKbWauK zmKz7a3%%SjP~x>SP%v2(w%uOHP_DZ�Lj)Jc0%XMWnlKyZ`6{ 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

      vt_+mwVst+m2OAZ<=(!syt(oEN9S%^(HO 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

      ZU3ms?<403ulY`B#TzpD=~W}PsHAJ>mWoXC9vR4 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

      bF}~x;`1k^$@vP)_Bm*&m;m}Kknx% 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

      -`q<8dH}mI7#TI^ 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 z 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%0DbV;Ug$rB zE}UZmUER7d+8kmSl(wA_-3N{a&X{SHBBl4Xx-}RbL;HFE;l9R`6Jem<{EaCCR~@6?R5`^=yOlOsS3<_xS+U}LrOh|_58eLmj(Iqp zm|lWnq^ahWEc{*@WN4|KJhQc7j!`z(=UT8ySdMdLM8*zf_TsEa$YeQeV&AFYaY~}D zR^S71xbKt4(u8bf>)VEXUt%ckxZJ%x-KV5RNGC_@qqE{K2$#1UmzxVuU_&`Y{3zc_)%!gTO5D%{bet< ztYCp;Bb{YA2og)8**Uq&d4|j+t)Im0JP=k=or-x@c2wFQc(S9fe*%>cbzmMW zt(Z4eHA+Xu0z3?((KofOO2^i|JTxnqw~b^yj#_;JBb<>q&L>%*6r$CY}y+ZGt#ffx8`!&UCCN1$yhGUn+oo!tG1Z`*tZ z_<0}U%fod0OIvx&^YQK2%`(i#t`+=puC4sEEzoX18uM~(r0{&?3v*Zj!|t2qUar~& zoQ`8)&oG>|Cm3wboD6`uetAa*M{4kHpA4QQ#}-76z;7VQMUE&(E+I*dq_^%#K#pu{ zP)JV>^jRkjehZ2=m~baY$y$F&AxHg{<6%LL)<%9@OpZR5gEY1dn9ad>A;a8Re>o-x zuV#Z^)}LBuP2S{Uky2pO!g8@$C~!D)arh~4#dC4xDBh@T=pf}n+Q{%sHy&&#-ezUL z_1U-!&c*j3Blx~?lSx6SmreL<BkCSRXf22k z0n?MlGObQ4nQK@slat z7QKQ;D;MU7^ozwsklqpGZ14vc^nPGAK>!hW@pb`O0YGLrjt|t6v=N-)q=RiI@yh^68VSKZ-8}J&qYulPwbNxRK+=8L9RzP zOL+ZClnvPkK?BxD${~S3Op6fPB~Sq8)&nR<+-mZobt9(YzMw$>plL6D*S5^FY5Ob2 zDWSJ&qNjzVS1QhG7|a$F`m;mYOiiR$qtBi;!sLMV+ufIUf;$LM5kA}~uEL#YEDEzzD~bicq)%-vtL;5htDDb2gJ2>2mO=&20_X)VN&1O`M{tuZ_b^P6mB^0zNr+qp5Y=jH=M=>Y?*~oclPqf&)#ceOt zaaWgr=p)qlbFq2UhYoEWny)V+EyP;_%QW9dcE4JivQlod@$NejTiDQ)#B*-?eclaY z5#k<+2*5OUiVU}y^~3!UEZ~Je^`+$VOLs19X_Sk3N}*9pLE4-x@%0UjPp&;P@%~`o$IV=BvIP0rc z{UogVU#j|9(@R|BACfAisQO=$s-$A0X5#&SC8;(FR_=xxuOyXS>i?9eT*f6_=GAyJ?fYL@u>2C6=MD^dO^i%0Zq062@V0#o`K;m z!Rh~}P>m~dN%%*ozVcM9gpvQvQ^SU=zmJ(`OgN_WI%P~6WIVY0) zxYUJeR7F^~<=9{6bM!=N_C%QdOH~I_od2b&BRN(>x!9|@V&|FYHMh}a*A!9}SF|COutCGr0+xmsKQuUxGvtE>Az z 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

      -_CpSb}$=pCCR*cyszv5Eq|Fz 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

        T}>W|5XI2<_?dL5 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�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%0A*%>==Gz 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 |7dy9X06n@pVtHo}t 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 KA8kWYnNI4j3ZtE~&t*S9 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%0DbEDu!^<@Xpcj-k7 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�_ZHboz3eWy;yf&SV)2kH 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 cUGHvJzIdDAB=O;)=*r4f3mF)!0kQNjLjV8( literal 0 HcmV?d00001 diff --git a/erpnext/docs/current/api/support/erpnext.support.html b/erpnext/docs/current/api/support/erpnext.support.html deleted file mode 100644 index d10ce6bf4f..0000000000 --- a/erpnext/docs/current/api/support/erpnext.support.html +++ /dev/null @@ -1,18 +0,0 @@ -

        - - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/api/support/index.html b/erpnext/docs/current/api/support/index.html deleted file mode 100644 index bcbe1c8fa0..0000000000 --- a/erpnext/docs/current/api/support/index.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - -

        Package Contents

        - -{index} - - \ No newline at end of file diff --git a/erpnext/docs/current/api/support/index.txt b/erpnext/docs/current/api/support/index.txt deleted file mode 100644 index 42739d16e9..0000000000 --- a/erpnext/docs/current/api/support/index.txt +++ /dev/null @@ -1 +0,0 @@ -erpnext.support \ No newline at end of file diff --git a/erpnext/docs/current/api/utilities/erpnext.utilities.address_and_contact.html b/erpnext/docs/current/api/utilities/erpnext.utilities.address_and_contact.html deleted file mode 100644 index 89c9c172e9..0000000000 --- a/erpnext/docs/current/api/utilities/erpnext.utilities.address_and_contact.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - - - - -

        - - - erpnext.utilities.address_and_contact.get_permission_query_conditions - (doctype) -

        -

        No docs

        -
        -
        - - - - - - - -

        - - - erpnext.utilities.address_and_contact.get_permission_query_conditions_for_address - (user) -

        -

        No docs

        -
        -
        - - - - - - - -

        - - - erpnext.utilities.address_and_contact.get_permission_query_conditions_for_contact - (user) -

        -

        No docs

        -
        -
        - - - - - - - -

        - - - erpnext.utilities.address_and_contact.get_permitted_and_not_permitted_links - (doctype) -

        -

        No docs

        -
        -
        - - - - - - - -

        - - - erpnext.utilities.address_and_contact.has_permission - (doc, ptype, user) -

        -

        No docs

        -
        -
        - - - - - - - -

        - - - erpnext.utilities.address_and_contact.load_address_and_contact - (doc, key) -

        -

        Loads address list and contact list in __onload

        -
        -
        - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/api/utilities/erpnext.utilities.html b/erpnext/docs/current/api/utilities/erpnext.utilities.html deleted file mode 100644 index f2a4dc8d0a..0000000000 --- a/erpnext/docs/current/api/utilities/erpnext.utilities.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - -

        - - - erpnext.utilities.update_doctypes - () -

        -

        No docs

        -
        -
        - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/api/utilities/erpnext.utilities.transaction_base.html b/erpnext/docs/current/api/utilities/erpnext.utilities.transaction_base.html deleted file mode 100644 index 216cec5d11..0000000000 --- a/erpnext/docs/current/api/utilities/erpnext.utilities.transaction_base.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - -

        Class TransactionBase

        - -

        Inherits from erpnext.controllers.status_updater.StatusUpdater - -

        -
        -
        - - - - -

        - - - _add_calendar_event - (self, opts) -

        -

        No docs

        -
        -
        - - - - - -

        - - - add_calendar_event - (self, opts, force=False) -

        -

        No docs

        -
        -
        - - - - - -

        - - - compare_values - (self, ref_doc, fields, doc=None) -

        -

        No docs

        -
        -
        - - - - - -

        - - - delete_events - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - load_notification_message - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_posting_time - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_rate_with_reference_doc - (self, ref_details) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_uom_is_integer - (self, uom_field, qty_fields) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_with_previous_doc - (self, ref) -

        -

        No docs

        -
        -
        - - -
        -
        - - - - - -

        Class UOMMustBeIntegerError

        - -

        Inherits from frappe.exceptions.ValidationError - -

        -
        -
        - -
        -
        - - - - - - - -

        - - - erpnext.utilities.transaction_base.delete_events - (ref_type, ref_name) -

        -

        No docs

        -
        -
        - - - - - - - -

        - - - erpnext.utilities.transaction_base.validate_uom_is_integer - (doc, uom_field, qty_fields, child_dt=None) -

        -

        No docs

        -
        -
        - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/api/utilities/index.html b/erpnext/docs/current/api/utilities/index.html deleted file mode 100644 index 12c76f3850..0000000000 --- a/erpnext/docs/current/api/utilities/index.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - -

        Package Contents

        - -{index} - - \ No newline at end of file diff --git a/erpnext/docs/current/api/utilities/index.txt b/erpnext/docs/current/api/utilities/index.txt deleted file mode 100644 index 86ae38fc1d..0000000000 --- a/erpnext/docs/current/api/utilities/index.txt +++ /dev/null @@ -1,3 +0,0 @@ -erpnext.utilities.address_and_contact -erpnext.utilities -erpnext.utilities.transaction_base \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/material_request.html b/erpnext/docs/current/models/stock/material_request.html deleted file mode 100644 index e1fc54335b..0000000000 --- a/erpnext/docs/current/models/stock/material_request.html +++ /dev/null @@ -1,723 +0,0 @@ - - - - - - - - - - - - -

        Table Name: tabMaterial Request

        - - - - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1type_section - Section Break - - - -
        icon-pushpin
        -
        2title - Data - Title - -
        3material_request_type - Select - Type - - -
        Purchase
        -Material Transfer
        -Material Issue
        -
        4column_break_2 - Column Break - - -
        5naming_series - Select - Series - - -
        MREQ-
        -
        6amended_from - Link - Amended From - - - - - - -Material Request - - - -
        7company - Link - Company - - - - - - -Company - - - -
        8items_section - Section Break - - - -
        icon-shopping-cart
        -
        9items - Table - Items - - - - - - -Material Request Item - - - -
        10more_info - Section Break - More Information - - -
        icon-file-text
        -
        11requested_by - Data - Requested For - -
        12transaction_date - Date - Transaction Date - -
        13column_break2 - Column Break - - -
        14status - Select - Status - - -
        -Draft
        -Submitted
        -Stopped
        -Cancelled
        -
        15per_ordered - Percent - % Ordered - -
        16printing_details - Section Break - Printing Details - -
        17letter_head - Link - Letter Head - - - - - - -Letter Head - - - -
        18select_print_heading - Link - Print Heading - - - - - - -Print Heading - - - -
        19terms_section_break - Section Break - Terms and Conditions - - -
        icon-legal
        -
        20tc_name - Link - Terms - - - - - - -Terms and Conditions - - - -
        21terms - Text Editor - Terms and Conditions Content - -
        - - -
        -

        Controller

        -

        erpnext.stock.doctype.material_request.material_request

        - - - - - - - -

        Class MaterialRequest

        - -

        Inherits from erpnext.controllers.buying_controller.BuyingController - -

        -
        -
        - - - - -

        - - - check_if_already_pulled - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - check_modified_date - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - get_feed - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - on_cancel - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - on_submit - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - update_completed_qty - (self, mr_items=None) -

        -

        No docs

        -
        -
        - - - - - -

        - - - update_requested_qty - (self, mr_item_rows=None) -

        -

        update requested qty (before ordered_qty is updated)

        -
        -
        - - - - - -

        - - - update_status - (self, status) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_qty_against_so - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_schedule_date - (self) -

        -

        No docs

        -
        -
        - - -
        -
        - - - - - - - -

        - - - erpnext.stock.doctype.material_request.material_request.get_material_requests_based_on_supplier - (supplier) -

        -

        No docs

        -
        -
        - - - - - - -

        Public API -
        /api/method/erpnext.stock.doctype.material_request.material_request.make_purchase_order -

        -

        - - - erpnext.stock.doctype.material_request.material_request.make_purchase_order - (source_name, target_doc=None) -

        -

        No docs

        -
        -
        - - - - - - -

        Public API -
        /api/method/erpnext.stock.doctype.material_request.material_request.make_purchase_order_based_on_supplier -

        -

        - - - erpnext.stock.doctype.material_request.material_request.make_purchase_order_based_on_supplier - (source_name, target_doc=None) -

        -

        No docs

        -
        -
        - - - - - - -

        Public API -
        /api/method/erpnext.stock.doctype.material_request.material_request.make_stock_entry -

        -

        - - - erpnext.stock.doctype.material_request.material_request.make_stock_entry - (source_name, target_doc=None) -

        -

        No docs

        -
        -
        - - - - - - -

        Public API -
        /api/method/erpnext.stock.doctype.material_request.material_request.make_supplier_quotation -

        -

        - - - erpnext.stock.doctype.material_request.material_request.make_supplier_quotation - (source_name, target_doc=None) -

        -

        No docs

        -
        -
        - - - - - - - -

        - - - erpnext.stock.doctype.material_request.material_request.set_missing_values - (source, target_doc) -

        -

        No docs

        -
        -
        - - - - - - - -

        - - - erpnext.stock.doctype.material_request.material_request.update_completed_and_requested_qty - (stock_entry, method) -

        -

        No docs

        -
        -
        - - - - - - - -

        - - - erpnext.stock.doctype.material_request.material_request.update_item - (obj, target, source_parent) -

        -

        No docs

        -
        -
        - - - - - - -

        Linked In:

        - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/material_request_item.html b/erpnext/docs/current/models/stock/material_request_item.html deleted file mode 100644 index 6cd1c81403..0000000000 --- a/erpnext/docs/current/models/stock/material_request_item.html +++ /dev/null @@ -1,407 +0,0 @@ - - - - - - - - - -Child Table - - -

        Table Name: tabMaterial Request Item

        - - - - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1item_code - Link - Item Code - - - - - - -Item - - - -
        2col_break1 - Column Break - - -
        3item_name - Data - Item Name - -
        4section_break_4 - Section Break - Description - -
        5description - Text Editor - Description - -
        6column_break_6 - Column Break - - -
        7image - Attach - Image - -
        8image_view - Image - Image View - - -
        image
        -
        9quantity_and_warehouse - Section Break - Quantity and Warehouse - -
        10qty - Float - Quantity - -
        11uom - Link - Stock UOM - - - - - - -UOM - - - -
        12warehouse - Link - For Warehouse - - - - - - -Warehouse - - - -
        13col_break2 - Column Break - - -
        14schedule_date - Date - Required Date - -
        15more_info - Section Break - More Information - -
        16item_group - Link - Item Group - - - - - - -Item Group - - - -
        17brand - Link - Brand - - - - - - -Brand - - - -
        18lead_time_date - Date - Lead Time Date - -
        19sales_order_no - Link - Sales Order No - - - - - - -Sales Order - - - -
        20col_break3 - Column Break - - -
        21min_order_qty - Float - Min Order Qty - -
        22projected_qty - Float - Projected Qty - -
        23ordered_qty - Float - Completed Qty - -
        24page_break - Check - Page Break - -
        - - - - -

        Child Table Of

        - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/packed_item.html b/erpnext/docs/current/models/stock/packed_item.html deleted file mode 100644 index ef20be60f1..0000000000 --- a/erpnext/docs/current/models/stock/packed_item.html +++ /dev/null @@ -1,395 +0,0 @@ - - - - - - - - - -Child Table - - -

        Table Name: tabPacked Item

        - - - - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1parent_item - Link - Parent Item - - - - - - -Item - - - -
        2item_code - Link - Item Code - - - - - - -Item - - - -
        3item_name - Data - Item Name - -
        4column_break_5 - Column Break - - -
        5description - Text Editor - Description - -
        6section_break_6 - Section Break - - -
        7warehouse - Link - From Warehouse - - - - - - -Warehouse - - - -
        8target_warehouse - Link - To Warehouse (Optional) - - - - - - -Warehouse - - - -
        9column_break_9 - Column Break - - -
        10qty - Float - Qty - -
        11section_break_9 - Section Break - - -
        12serial_no - Text - Serial No - -
        13column_break_11 - Column Break - - -
        14batch_no - Link - Batch No - - - - - - -Batch - - - -
        15section_break_13 - Section Break - - -
        16actual_qty - Float - Actual Qty - -
        17projected_qty - Float - Projected Qty - -
        18column_break_16 - Column Break - - -
        19uom - Link - UOM - - - - - - -UOM - - - -
        20page_break - Check - Page Break - -
        21prevdoc_doctype - Data - Prevdoc DocType - -
        22parent_detail_docname - Data - Parent Detail docname - -
        - - - - -

        Child Table Of

        - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/packing_slip.html b/erpnext/docs/current/models/stock/packing_slip.html deleted file mode 100644 index 88c92b21a8..0000000000 --- a/erpnext/docs/current/models/stock/packing_slip.html +++ /dev/null @@ -1,592 +0,0 @@ - - - - - - - - - - - - -

        Table Name: tabPacking Slip

        - - -Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight. - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1packing_slip_details - Section Break - - -
        2column_break0 - Column Break - - -
        3delivery_note - Link - Delivery Note -

        - Indicates that the package is a part of this delivery (Only Draft)

        -
        - - - - -Delivery Note - - - -
        4column_break1 - Column Break - - -
        5naming_series - Select - Series - - -
        PS-
        -
        6section_break0 - Section Break - - -
        7column_break2 - Column Break - - -
        8from_case_no - Data - From Package No. -

        - Identification of the package for the delivery (for print)

        -
        9column_break3 - Column Break - - -
        10to_case_no - Data - To Package No. -

        - If more than one package of the same type (for print)

        -
        11package_item_details - Section Break - - -
        12get_items - Button - Get Items - -
        13items - Table - Items - - - - - - -Packing Slip Item - - - -
        14package_weight_details - Section Break - Package Weight Details - -
        15net_weight_pkg - Float - Net Weight -

        - The net weight of this package. (calculated automatically as sum of net weight of items)

        -
        16net_weight_uom - Link - Net Weight UOM - - - - - - -UOM - - - -
        17column_break4 - Column Break - - -
        18gross_weight_pkg - Float - Gross Weight -

        - The gross weight of the package. Usually net weight + packaging material weight. (for print)

        -
        19gross_weight_uom - Link - Gross Weight UOM - - - - - - -UOM - - - -
        20letter_head_details - Section Break - Letter Head - -
        21letter_head - Link - Letter Head - - - - - - -Letter Head - - - -
        22misc_details - Section Break - - -
        23amended_from - Link - Amended From - - - - - - -Packing Slip - - - -
        - - -
        -

        Controller

        -

        erpnext.stock.doctype.packing_slip.packing_slip

        - - - - - - - -

        Class PackingSlip

        - -

        Inherits from frappe.model.document.Document - -

        -
        -
        - - - - -

        - - - get_details_for_packing - (self) -

        -

        Returns -* 'Delivery Note Items' query result as a list of dict -* Item Quantity dict of current packing slip doc -* No. of Cases of this packing slip

        -
        -
        - - - - - -

        - - - get_items - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - get_recommended_case_no - (self) -

        -

        Returns the next case no. for a new packing slip for a delivery -note

        -
        -
        - - - - - -

        - - - recommend_new_qty - (self, item, ps_item_qty, no_of_cases) -

        -

        Recommend a new quantity and raise a validation exception

        -
        -
        - - - - - -

        - - - update_item_details - (self) -

        -

        Fill empty columns in Packing Slip Item

        -
        -
        - - - - - -

        - - - validate - (self) -

        -
          -
        • Validate existence of submitted Delivery Note
        • -
        • Case nos do not overlap
        • -
        • Check if packed qty doesn't exceed actual qty of delivery note
        • -
        - -

        It is necessary to validate case nos before checking quantity

        -
        -
        - - - - - -

        - - - validate_case_nos - (self) -

        -

        Validate if case nos overlap. If they do, recommend next case no.

        -
        -
        - - - - - -

        - - - validate_delivery_note - (self) -

        -

        Validates if delivery note has status as draft

        -
        -
        - - - - - -

        - - - validate_items_mandatory - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_qty - (self) -

        -

        Check packed qty across packing slips and delivery note

        -
        -
        - - -
        -
        - - - - - - - -

        - - - erpnext.stock.doctype.packing_slip.packing_slip.item_details - (doctype, txt, searchfield, start, page_len, filters) -

        -

        No docs

        -
        -
        - - - - - - -

        Linked In:

        - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/packing_slip_item.html b/erpnext/docs/current/models/stock/packing_slip_item.html deleted file mode 100644 index a20375ce3d..0000000000 --- a/erpnext/docs/current/models/stock/packing_slip_item.html +++ /dev/null @@ -1,219 +0,0 @@ - - - - - - - - - -Child Table - - -

        Table Name: tabPacking Slip Item

        - - - - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1item_code - Link - Item Code - - - - - - -Item - - - -
        2item_name - Data - Item Name - -
        3batch_no - Link - Batch No - - - - - - -Batch - - - -
        4description - Text Editor - Description - -
        5qty - Float - Quantity - -
        6stock_uom - Link - UOM - - - - - - -UOM - - - -
        7net_weight - Float - Net Weight - -
        8weight_uom - Link - Weight UOM - - - - - - -UOM - - - -
        9page_break - Check - Page Break - -
        10dn_detail - Data - DN Detail - -
        - - - - -

        Child Table Of

        - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/price_list.html b/erpnext/docs/current/models/stock/price_list.html deleted file mode 100644 index 60d5b2eabe..0000000000 --- a/erpnext/docs/current/models/stock/price_list.html +++ /dev/null @@ -1,426 +0,0 @@ - - - - - - - - - - - - -

        Table Name: tabPrice List

        - - -Price List Master - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1enabled - Check - Enabled - -
        2sb_1 - Section Break - - -
        3price_list_name - Data - Price List Name - -
        4currency - Link - Currency - - - - - - -Currency - - - -
        5buying - Check - Buying - -
        6selling - Check - Selling - -
        7column_break_3 - Column Break - - -
        8countries - Table - Applicable for Countries - - - - - - -Price List Country - - - -
        - - -
        -

        Controller

        -

        erpnext.stock.doctype.price_list.price_list

        - - - - - - - -

        Class PriceList

        - -

        Inherits from frappe.model.document.Document - -

        -
        -
        - - - - -

        - - - on_trash - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - on_update - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - set_default_if_missing - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - update_item_price - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate - (self) -

        -

        No docs

        -
        -
        - - -
        -
        - - - - - - -

        Linked In:

        - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/price_list_country.html b/erpnext/docs/current/models/stock/price_list_country.html deleted file mode 100644 index 5e8f410d8d..0000000000 --- a/erpnext/docs/current/models/stock/price_list_country.html +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - -Child Table - - -

        Table Name: tabPrice List Country

        - - - - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1country - Link - Country - - - - - - -Country - - - -
        - - - - -

        Child Table Of

        - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/purchase_receipt_item.html b/erpnext/docs/current/models/stock/purchase_receipt_item.html deleted file mode 100644 index 2404597bdf..0000000000 --- a/erpnext/docs/current/models/stock/purchase_receipt_item.html +++ /dev/null @@ -1,999 +0,0 @@ - - - - - - - - - -Child Table - - -

        Table Name: tabPurchase Receipt Item

        - - - - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1barcode - Data - Barcode - -
        2section_break_2 - Section Break - - -
        3item_code - Link - Item Code - - - - - - -Item - - - -
        4column_break_2 - Column Break - - -
        5item_name - Data - Item Name - -
        6section_break_4 - Section Break - Description - -
        7description - Text Editor - Description - -
        8col_break1 - Column Break - - -
        9image - Attach - Image - -
        10image_view - Image - Image View - - -
        image
        -
        11received_and_accepted - Section Break - Received and Accepted - -
        12received_qty - Float - Recd Quantity - -
        13qty - Float - Accepted Quantity - -
        14rejected_qty - Float - Rejected Quantity - -
        15col_break2 - Column Break - - -
        16uom - Link - UOM - - - - - - -UOM - - - -
        17stock_uom - Link - Stock UOM - - - - - - -UOM - - - -
        18conversion_factor - Float - Conversion Factor - -
        19rate_and_amount - Section Break - Rate and Amount - -
        20price_list_rate - Currency - Price List Rate - - -
        currency
        -
        21discount_percentage - Percent - Discount on Price List Rate (%) - -
        22col_break3 - Column Break - - -
        23base_price_list_rate - Currency - Price List Rate (Company Currency) - - -
        Company:company:default_currency
        -
        24sec_break1 - Section Break - - -
        25rate - Currency - Rate - - -
        currency
        -
        26amount - Currency - Amount - - -
        currency
        -
        27col_break4 - Column Break - - -
        28base_rate - Currency - Rate (Company Currency) - - -
        Company:company:default_currency
        -
        29base_amount - Currency - Amount (Company Currency) - - -
        Company:company:default_currency
        -
        30pricing_rule - Link - Pricing Rule - - - - - - -Pricing Rule - - - -
        31section_break_29 - Section Break - - -
        32net_rate - Currency - Net Rate - - -
        currency
        -
        33net_amount - Currency - Net Amount - - -
        currency
        -
        34column_break_32 - Column Break - - -
        35base_net_rate - Currency - Net Rate (Company Currency) - - -
        Company:company:default_currency
        -
        36base_net_amount - Currency - Net Amount (Company Currency) - - -
        Company:company:default_currency
        -
        37warehouse_and_reference - Section Break - Warehouse and Reference - -
        38warehouse - Link - Accepted Warehouse - - - - - - -Warehouse - - - -
        39rejected_warehouse - Link - Rejected Warehouse - - - - - - -Warehouse - - - -
        40qa_no - Link - Quality Inspection - - - - - - -Quality Inspection - - - -
        41column_break_40 - Column Break - - -
        42prevdoc_docname - Link - Purchase Order - - - - - - -Purchase Order - - - -
        43schedule_date - Date - Required By - -
        44stock_qty - Float - Qty as per Stock UOM - -
        45section_break_45 - Section Break - - -
        46serial_no - Text - Serial No - -
        47batch_no - Link - Batch No - - - - - - -Batch - - - -
        48column_break_48 - Column Break - - -
        49rejected_serial_no - Text - Rejected Serial No - -
        50section_break_50 - Section Break - - -
        51project_name - Link - Project Name - - - - - - -Project - - - -
        52cost_center - Link - Cost Center - - - - - - -Cost Center - - - -
        53prevdoc_doctype - Data - Prevdoc Doctype - -
        54prevdoc_detail_docname - Data - Purchase Order Item No - -
        55col_break5 - Column Break - - -
        56bom - Link - BOM - - - - - - -BOM - - - -
        57billed_amt - Currency - Billed Amt - -
        58landed_cost_voucher_amount - Currency - Landed Cost Voucher Amount - -
        59brand - Link - Brand - - - - - - -Brand - - - -
        60item_group - Link - Item Group - - - - - - -Item Group - - - -
        61rm_supp_cost - Currency - Raw Materials Supplied Cost - - -
        Company:company:default_currency
        -
        62item_tax_amount - Currency - Item Tax Amount - - -
        Company:company:default_currency
        -
        63valuation_rate - Currency - Valuation Rate - - -
        Company:company:default_currency
        -
        64item_tax_rate - Small Text - Item Tax Rate -

        - Tax detail table fetched from item master as a string and stored in this field. -Used for Taxes and Charges

        -
        65page_break - Check - Page Break - -
        - - - - -

        Child Table Of

        - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/serial_no.html b/erpnext/docs/current/models/stock/serial_no.html deleted file mode 100644 index 2718310089..0000000000 --- a/erpnext/docs/current/models/stock/serial_no.html +++ /dev/null @@ -1,1110 +0,0 @@ - - - - - - - - - - - - -

        Table Name: tabSerial No

        - - -Distinct unit of an Item - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1details - Section Break - - -
        2column_break0 - Column Break - - -
        3serial_no - Data - Serial No - -
        4item_code - Link - Item Code - - - - - - -Item - - - -
        5warehouse - Link - Warehouse -

        - Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt

        -
        - - - - -Warehouse - - - -
        6column_break1 - Column Break - - -
        7item_name - Data - Item Name - -
        8description - Text - Description - -
        9item_group - Link - Item Group - - - - - - -Item Group - - - -
        10brand - Link - Brand - - - - - - -Brand - - - -
        11purchase_details - Section Break - Purchase / Manufacture Details - -
        12column_break2 - Column Break - - -
        13purchase_document_type - Link - Creation Document Type - - - - - - -DocType - - - -
        14purchase_document_no - Dynamic Link - Creation Document No - - -
        purchase_document_type
        -
        15purchase_date - Date - Creation Date - -
        16purchase_time - Time - Creation Time - -
        17purchase_rate - Currency - Incoming Rate - - -
        Company:company:default_currency
        -
        18column_break3 - Column Break - - -
        19supplier - Link - Supplier - - - - - - -Supplier - - - -
        20supplier_name - Data - Supplier Name - -
        21delivery_details - Section Break - Delivery Details - -
        22delivery_document_type - Link - Delivery Document Type - - - - - - -DocType - - - -
        23delivery_document_no - Dynamic Link - Delivery Document No - - -
        delivery_document_type
        -
        24delivery_date - Date - Delivery Date - -
        25delivery_time - Time - Delivery Time - -
        26is_cancelled - Select - Is Cancelled - - -
        -Yes
        -No
        -
        27column_break5 - Column Break - - -
        28customer - Link - Customer - - - - - - -Customer - - - -
        29customer_name - Data - Customer Name - -
        30warranty_amc_details - Section Break - Warranty / AMC Details - -
        31column_break6 - Column Break - - -
        32maintenance_status - Select - Maintenance Status - - -
        -Under Warranty
        -Out of Warranty
        -Under AMC
        -Out of AMC
        -
        33warranty_period - Int - Warranty Period (Days) - -
        34column_break7 - Column Break - - -
        35warranty_expiry_date - Date - Warranty Expiry Date - -
        36amc_expiry_date - Date - AMC Expiry Date - -
        37more_info - Section Break - More Information - -
        38serial_no_details - Text Editor - Serial No Details - -
        39company - Link - Company - - - - - - -Company - - - -
        - - -
        -

        Controller

        -

        erpnext.stock.doctype.serial_no.serial_no

        - - - - - - - -

        Class SerialNo

        - -

        Inherits from erpnext.controllers.stock_controller.StockController - -

        -
        -
        - - - - -

        - - - __init__ - (self, arg1, arg2=None) -

        -

        No docs

        -
        -
        - - - - - -

        - - - after_rename - (self, old, new, merge=False) -

        -

        rename serial_no text fields

        -
        -
        - - - - - -

        - - - before_rename - (self, old, new, merge=False) -

        -

        No docs

        -
        -
        - - - - - -

        - - - get_last_sle - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - get_stock_ledger_entries - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - on_stock_ledger_entry - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - on_trash - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - set_maintenance_status - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - set_purchase_details - (self, purchase_sle) -

        -

        No docs

        -
        -
        - - - - - -

        - - - set_sales_details - (self, delivery_sle) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_item - (self) -

        -

        Validate whether serial no is required for this item

        -
        -
        - - - - - -

        - - - validate_warehouse - (self) -

        -

        No docs

        -
        -
        - - -
        -
        - - - - - -

        Class SerialNoCannotCannotChangeError

        - -

        Inherits from frappe.exceptions.ValidationError - -

        -
        -
        - -
        -
        - - - - - -

        Class SerialNoCannotCreateDirectError

        - -

        Inherits from frappe.exceptions.ValidationError - -

        -
        -
        - -
        -
        - - - - - -

        Class SerialNoDuplicateError

        - -

        Inherits from frappe.exceptions.ValidationError - -

        -
        -
        - -
        -
        - - - - - -

        Class SerialNoItemError

        - -

        Inherits from frappe.exceptions.ValidationError - -

        -
        -
        - -
        -
        - - - - - -

        Class SerialNoNotExistsError

        - -

        Inherits from frappe.exceptions.ValidationError - -

        -
        -
        - -
        -
        - - - - - -

        Class SerialNoNotRequiredError

        - -

        Inherits from frappe.exceptions.ValidationError - -

        -
        -
        - -
        -
        - - - - - -

        Class SerialNoQtyError

        - -

        Inherits from frappe.exceptions.ValidationError - -

        -
        -
        - -
        -
        - - - - - -

        Class SerialNoRequiredError

        - -

        Inherits from frappe.exceptions.ValidationError - -

        -
        -
        - -
        -
        - - - - - -

        Class SerialNoWarehouseError

        - -

        Inherits from frappe.exceptions.ValidationError - -

        -
        -
        - -
        -
        - - - - - - - -

        - - - erpnext.stock.doctype.serial_no.serial_no.allow_serial_nos_with_different_item - (sle_serial_no, sle) -

        -

        Allows same serial nos for raw materials and finished goods -in Manufacture / Repack type Stock Entry

        -
        -
        - - - - - - - -

        - - - erpnext.stock.doctype.serial_no.serial_no.get_item_details - (item_code) -

        -

        No docs

        -
        -
        - - - - - - - -

        - - - erpnext.stock.doctype.serial_no.serial_no.get_serial_nos - (serial_no) -

        -

        No docs

        -
        -
        - - - - - - - -

        - - - erpnext.stock.doctype.serial_no.serial_no.make_serial_no - (serial_no, sle) -

        -

        No docs

        -
        -
        - - - - - - - -

        - - - erpnext.stock.doctype.serial_no.serial_no.process_serial_no - (sle) -

        -

        No docs

        -
        -
        - - - - - - - -

        - - - erpnext.stock.doctype.serial_no.serial_no.update_serial_nos - (sle, item_det) -

        -

        No docs

        -
        -
        - - - - - - - -

        - - - erpnext.stock.doctype.serial_no.serial_no.update_serial_nos_after_submit - (controller, parentfield) -

        -

        No docs

        -
        -
        - - - - - - - -

        - - - erpnext.stock.doctype.serial_no.serial_no.validate_serial_no - (sle, item_det) -

        -

        No docs

        -
        -
        - - - - - - -

        Linked In:

        - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/stock_entry.html b/erpnext/docs/current/models/stock/stock_entry.html deleted file mode 100644 index 29bc11e7bc..0000000000 --- a/erpnext/docs/current/models/stock/stock_entry.html +++ /dev/null @@ -1,1617 +0,0 @@ - - - - - - - - - - - - -

        Table Name: tabStock Entry

        - - - - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1items_section - Section Break - - -
        2title - Data - Title - -
        3naming_series - Select - Series - - -
        STE-
        -
        4purpose - Select - Purpose - - -
        Material Issue
        -Material Receipt
        -Material Transfer
        -Material Transfer for Manufacture
        -Manufacture
        -Repack
        -Subcontract
        -
        5production_order - Link - Production Order - - - - - - -Production Order - - - -
        6purchase_order - Link - Purchase Order - - - - - - -Purchase Order - - - -
        7delivery_note_no - Link - Delivery Note No - - - - - - -Delivery Note - - - -
        8sales_invoice_no - Link - Sales Invoice No - - - - - - -Sales Invoice - - - -
        9purchase_receipt_no - Link - Purchase Receipt No - - - - - - -Purchase Receipt - - - -
        10from_bom - Check - From BOM - -
        11col2 - Column Break - - -
        12posting_date - Date - Posting Date - -
        13posting_time - Time - Posting Time - -
        14sb1 - Section Break - - -
        15bom_no - Link - BOM No - - - - - - -BOM - - - -
        16fg_completed_qty - Float - For Quantity -

        - As per Stock UOM

        -
        17cb1 - Column Break - - -
        18use_multi_level_bom - Check - Use Multi-Level BOM -

        - Including items for sub assemblies

        -
        19get_items - Button - Get Items - -
        20section_break_12 - Section Break - - -
        21from_warehouse - Link - Default Source Warehouse - - - - - - -Warehouse - - - -
        22cb0 - Column Break - - -
        23to_warehouse - Link - Default Target Warehouse - - - - - - -Warehouse - - - -
        24sb0 - Section Break - - - -
        Simple
        -
        25items - Table - Items - - - - - - -Stock Entry Detail - - - -
        26get_stock_and_rate - Button - Update Rate and Availability - - -
        get_stock_and_rate
        -
        27section_break_19 - Section Break - - -
        28total_incoming_value - Currency - Total Incoming Value - - -
        Company:company:default_currency
        -
        29column_break_22 - Column Break - - -
        30total_outgoing_value - Currency - Total Outgoing Value - - -
        Company:company:default_currency
        -
        31value_difference - Currency - Total Value Difference (Out - In) - - -
        Company:company:default_currency
        -
        32difference_account - Link - Difference Account - - - - - - -Account - - - -
        33additional_costs_section - Section Break - Additional Costs - -
        34additional_costs - Table - Additional Costs - - - - - - -Landed Cost Taxes and Charges - - - -
        35total_additional_costs - Currency - Total Additional Costs - - -
        Company:company:default_currency
        -
        36contact_section - Section Break - Customer or Supplier Details - -
        37supplier - Link - Supplier - - - - - - -Supplier - - - -
        38supplier_name - Data - Supplier Name - -
        39supplier_address - Small Text - Supplier Address - -
        40column_break_39 - Column Break - - -
        41customer - Link - Customer - - - - - - -Customer - - - -
        42customer_name - Data - Customer Name - -
        43customer_address - Small Text - Customer Address - -
        44printing_settings - Section Break - Printing Settings - -
        45select_print_heading - Link - Print Heading - - - - - - -Print Heading - - - -
        46letter_head - Link - Letter Head - - - - - - -Letter Head - - - -
        47more_info - Section Break - More Information - -
        48project_name - Link - Project Name - - - - - - -Project - - - -
        49remarks - Text - Remarks - -
        50col5 - Column Break - - -
        51total_amount - Currency - Total Amount - - -
        Company:company:default_currency
        -
        52company - Link - Company - - - - - - -Company - - - -
        53fiscal_year - Link - Fiscal Year - - - - - - -Fiscal Year - - - -
        54amended_from - Link - Amended From - - - - - - -Stock Entry - - - -
        55credit_note - Link - Credit Note - - - - - - -Journal Entry - - - -
        - - -
        -

        Controller

        -

        erpnext.stock.doctype.stock_entry.stock_entry

        - - - - - - - -

        Class DuplicateEntryForProductionOrderError

        - -

        Inherits from frappe.exceptions.ValidationError - -

        -
        -
        - -
        -
        - - - - - -

        Class IncorrectValuationRateError

        - -

        Inherits from frappe.exceptions.ValidationError - -

        -
        -
        - -
        -
        - - - - - -

        Class OperationsNotCompleteError

        - -

        Inherits from frappe.exceptions.ValidationError - -

        -
        -
        - -
        -
        - - - - - -

        Class StockEntry

        - -

        Inherits from erpnext.controllers.stock_controller.StockController - -

        -
        -
        - - - - -

        - - - add_to_stock_entry_detail - (self, item_dict, bom_no=None) -

        -

        No docs

        -
        -
        - - - - - -

        - - - calculate_rate_and_amount - (self, force=False) -

        -

        No docs

        -
        -
        - - - - - -

        - - - check_duplicate_entry_for_production_order - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - check_if_operations_completed - (self) -

        -

        Check if Time Logs are completed against before manufacturing to capture operating costs.

        -
        -
        - - - - - -

        - - - distribute_additional_costs - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - get_bom_raw_materials - (self, qty) -

        -

        No docs

        -
        -
        - - - - - -

        - - - get_feed - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - get_gl_entries - (self, warehouse_account) -

        -

        No docs

        -
        -
        - - - - - -

        - - - get_issued_qty - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - get_item_details - (self, args=None, for_update=False) -

        -

        No docs

        -
        -
        - - - - - -

        - - - get_items - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - get_pending_raw_materials - (self) -

        -

        issue (item quantity) that is pending to issue or desire to transfer, -whichever is less

        -
        -
        - - - - - -

        - - - get_stock_and_rate - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - get_transfered_raw_materials - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - get_uom_details - (self, args) -

        -

        Returns dict {"conversion_factor": [value], "transfer_qty": qty * [value]}

        - -

        Parameters:

        - -
          -
        • args - dict with item_code, uom and qty
        • -
        -
        -
        - - - - - -

        - - - load_items_from_bom - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - on_cancel - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - on_submit - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - onload - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - set_actual_qty - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - set_basic_rate - (self, force=False) -

        -

        get stock and incoming rate on posting date

        -
        -
        - - - - - -

        - - - set_basic_rate_for_finished_goods - (self, raw_material_cost) -

        -

        No docs

        -
        -
        - - - - - -

        - - - set_total_amount - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - set_total_incoming_outgoing_value - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - set_transfer_qty - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - update_production_order - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - update_stock_ledger - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - update_valuation_rate - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_batch - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_bom - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_finished_goods - (self) -

        -

        validation: finished good quantity should be same as manufacturing quantity

        -
        -
        - - - - - -

        - - - validate_item - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_production_order - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_purchase_order - (self) -

        -

        Throw exception if more raw material is transferred against Purchase Order than in -the raw materials supplied table

        -
        -
        - - - - - -

        - - - validate_purpose - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_warehouse - (self) -

        -

        perform various (sometimes conditional) validations on warehouse

        -
        -
        - - - - - -

        - - - validate_with_material_request - (self) -

        -

        No docs

        -
        -
        - - -
        -
        - - - - - - - -

        - - - erpnext.stock.doctype.stock_entry.stock_entry.get_additional_costs - (production_order=None, bom_no=None, fg_qty=None) -

        -

        No docs

        -
        -
        - - - - - - - -

        - - - erpnext.stock.doctype.stock_entry.stock_entry.get_operating_cost_per_unit - (production_order=None, bom_no=None) -

        -

        No docs

        -
        -
        - - - - - - -

        Public API -
        /api/method/erpnext.stock.doctype.stock_entry.stock_entry.get_production_order_details -

        -

        - - - erpnext.stock.doctype.stock_entry.stock_entry.get_production_order_details - (production_order) -

        -

        No docs

        -
        -
        - - - - - - -

        Public API -
        /api/method/erpnext.stock.doctype.stock_entry.stock_entry.get_warehouse_details -

        -

        - - - erpnext.stock.doctype.stock_entry.stock_entry.get_warehouse_details - (args) -

        -

        No docs

        -
        -
        - - - - - - -

        Linked In:

        - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/stock_entry_detail.html b/erpnext/docs/current/models/stock/stock_entry_detail.html deleted file mode 100644 index a4ef6c0e5c..0000000000 --- a/erpnext/docs/current/models/stock/stock_entry_detail.html +++ /dev/null @@ -1,656 +0,0 @@ - - - - - - - - - -Child Table - - -

        Table Name: tabStock Entry Detail

        - - - - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1barcode - Data - Barcode - -
        2section_break_2 - Section Break - - -
        3s_warehouse - Link - Source Warehouse - - - - - - -Warehouse - - - -
        4col_break1 - Column Break - - -
        5t_warehouse - Link - Target Warehouse - - - - - - -Warehouse - - - -
        6sec_break1 - Section Break - - -
        7item_code - Link - Item Code - - - - - - -Item - - - -
        8col_break2 - Column Break - - -
        9item_name - Data - Item Name - -
        10section_break_8 - Section Break - Description - -
        11description - Text Editor - Description - -
        12column_break_10 - Column Break - - -
        13image - Attach - Image - -
        14image_view - Image - Image View - - -
        image
        -
        15quantity_and_rate - Section Break - Quantity and Rate - -
        16qty - Float - Qty - -
        17basic_rate - Currency - Basic Rate (as per Stock UOM) - - -
        Company:company:default_currency
        -
        18basic_amount - Currency - Basic Amount - - -
        Company:company:default_currency
        -
        19additional_cost - Currency - Additional Cost - - -
        Company:company:default_currency
        -
        20amount - Currency - Amount - - -
        Company:company:default_currency
        -
        21valuation_rate - Currency - Valuation Rate - - -
        Company:company:default_currency
        -
        22col_break3 - Column Break - - -
        23uom - Link - UOM - - - - - - -UOM - - - -
        24conversion_factor - Float - Conversion Factor - -
        25stock_uom - Link - Stock UOM - - - - - - -UOM - - - -
        26transfer_qty - Float - Qty as per Stock UOM - -
        27serial_no_batch - Section Break - Serial No / Batch - -
        28serial_no - Text - Serial No - -
        29col_break4 - Column Break - - -
        30batch_no - Link - Batch No - - - - - - -Batch - - - -
        31accounting - Section Break - Accounting - -
        32expense_account - Link - Difference Account - - - - - - -Account - - - -
        33col_break5 - Column Break - - -
        34cost_center - Link - Cost Center - - - - - - -Cost Center - - - -
        35more_info - Section Break - More Information - -
        36actual_qty - Float - Actual Qty (at source/target) - -
        37bom_no - Link - BOM No -

        - BOM No. for a Finished Good Item

        -
        - - - - -BOM - - - -
        38col_break6 - Column Break - - -
        39material_request - Link - Material Request -

        - Material Request used to make this Stock Entry

        -
        - - - - -Material Request - - - -
        40material_request_item - Link - Material Request Item - - - - - - -Material Request Item - - - -
        - - - - -

        Child Table Of

        - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/stock_ledger_entry.html b/erpnext/docs/current/models/stock/stock_ledger_entry.html deleted file mode 100644 index 0ddd997efc..0000000000 --- a/erpnext/docs/current/models/stock/stock_ledger_entry.html +++ /dev/null @@ -1,552 +0,0 @@ - - - - - - - - - - - - -

        Table Name: tabStock Ledger Entry

        - - - - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1item_code - Link - Item Code - - - - - - -Item - - - -
        2serial_no - Text - Serial No - -
        3batch_no - Data - Batch No - -
        4warehouse - Link - Warehouse - - - - - - -Warehouse - - - -
        5posting_date - Date - Posting Date - -
        6posting_time - Time - Posting Time - -
        7voucher_type - Link - Voucher Type - - - - - - -DocType - - - -
        8voucher_no - Dynamic Link - Voucher No - - -
        voucher_type
        -
        9voucher_detail_no - Data - Voucher Detail No - -
        10actual_qty - Float - Actual Quantity - -
        11incoming_rate - Currency - Incoming Rate - - -
        Company:company:default_currency
        -
        12outgoing_rate - Currency - Outgoing Rate - - -
        Company:company:default_currency
        -
        13stock_uom - Link - Stock UOM - - - - - - -UOM - - - -
        14qty_after_transaction - Float - Actual Qty After Transaction - -
        15valuation_rate - Currency - Valuation Rate - - -
        Company:company:default_currency
        -
        16stock_value - Currency - Stock Value - - -
        Company:company:default_currency
        -
        17stock_value_difference - Currency - Stock Value Difference - - -
        Company:company:default_currency
        -
        18stock_queue - Text - Stock Queue (FIFO) - -
        19project - Link - Project - - - - - - -Project - - - -
        20company - Link - Company - - - - - - -Company - - - -
        21fiscal_year - Data - Fiscal Year - -
        22is_cancelled - Select - Is Cancelled - - -
        -No
        -Yes
        -
        - - -
        -

        Controller

        -

        erpnext.stock.doctype.stock_ledger_entry.stock_ledger_entry

        - - - - - - - -

        Class StockFreezeError

        - -

        Inherits from frappe.exceptions.ValidationError - -

        -
        -
        - -
        -
        - - - - - -

        Class StockLedgerEntry

        - -

        Inherits from frappe.model.document.Document - -

        -
        -
        - - - - -

        - - - actual_amt_check - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - check_stock_frozen_date - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - on_submit - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - scrub_posting_time - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_batch - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_item - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_mandatory - (self) -

        -

        No docs

        -
        -
        - - -
        -
        - - - - - - - -

        - - - erpnext.stock.doctype.stock_ledger_entry.stock_ledger_entry.on_doctype_update - () -

        -

        No docs

        -
        -
        - - - - - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/stock_reconciliation.html b/erpnext/docs/current/models/stock/stock_reconciliation.html deleted file mode 100644 index 12be09c2eb..0000000000 --- a/erpnext/docs/current/models/stock/stock_reconciliation.html +++ /dev/null @@ -1,589 +0,0 @@ - - - - - - - - - - - - -

        Table Name: tabStock Reconciliation

        - - -This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses. - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1posting_date - Date - Posting Date - -
        2posting_time - Time - Posting Time - -
        3col1 - Column Break - - -
        4amended_from - Link - Amended From - - - - - - -Stock Reconciliation - - - -
        5company - Link - Company - - - - - - -Company - - - -
        6sb9 - Section Break - - -
        7items - Table - Items - - - - - - -Stock Reconciliation Item - - - -
        8section_break_9 - Section Break - - -
        9expense_account - Link - Difference Account - - - - - - -Account - - - -
        10cost_center - Link - Cost Center - - - - - - -Cost Center - - - -
        11reconciliation_json - Long Text - Reconciliation JSON - -
        12column_break_13 - Column Break - - -
        13difference_amount - Currency - Difference Amount - -
        14fold_15 - Fold - - -
        15section_break_16 - Section Break - - -
        16fiscal_year - Link - Fiscal Year - - - - - - -Fiscal Year - - - -
        - - -
        -

        Controller

        -

        erpnext.stock.doctype.stock_reconciliation.stock_reconciliation

        - - - - - - - -

        Class EmptyStockReconciliationItemsError

        - -

        Inherits from frappe.exceptions.ValidationError - -

        -
        -
        - -
        -
        - - - - - -

        Class OpeningEntryAccountError

        - -

        Inherits from frappe.exceptions.ValidationError - -

        -
        -
        - -
        -
        - - - - - -

        Class StockReconciliation

        - -

        Inherits from erpnext.controllers.stock_controller.StockController - -

        -
        -
        - - - - -

        - - - __init__ - (self, arg1, arg2=None) -

        -

        No docs

        -
        -
        - - - - - -

        - - - delete_and_repost_sle - (self) -

        -
        Delete Stock Ledger Entries related to this voucher
        -
        - -

        and repost future Stock Ledger Entries

        -
        -
        - - - - - -

        - - - get_gl_entries - (self, warehouse_account=None) -

        -

        No docs

        -
        -
        - - - - - -

        - - - get_items_for - (self, warehouse) -

        -

        No docs

        -
        -
        - - - - - -

        - - - insert_entries - (self, row) -

        -

        Insert Stock Ledger Entries

        -
        -
        - - - - - -

        - - - on_cancel - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - on_submit - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - remove_items_with_no_change - (self) -

        -

        Remove items if qty or rate is not changed

        -
        -
        - - - - - -

        - - - update_stock_ledger - (self) -

        -
        find difference between current and expected entries
        -
        - -

        and create stock ledger entries based on the difference

        -
        -
        - - - - - -

        - - - validate - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_data - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_expense_account - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_item - (self, item_code, row_num) -

        -

        No docs

        -
        -
        - - -
        -
        - - - - - - -

        Public API -
        /api/method/erpnext.stock.doctype.stock_reconciliation.stock_reconciliation.get_items -

        -

        - - - erpnext.stock.doctype.stock_reconciliation.stock_reconciliation.get_items - (warehouse, posting_date, posting_time) -

        -

        No docs

        -
        -
        - - - - - - -

        Public API -
        /api/method/erpnext.stock.doctype.stock_reconciliation.stock_reconciliation.get_stock_balance_for -

        -

        - - - erpnext.stock.doctype.stock_reconciliation.stock_reconciliation.get_stock_balance_for - (item_code, warehouse, posting_date, posting_time) -

        -

        No docs

        -
        -
        - - - - - - -

        Linked In:

        - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/stock_reconciliation_item.html b/erpnext/docs/current/models/stock/stock_reconciliation_item.html deleted file mode 100644 index 701bbde26f..0000000000 --- a/erpnext/docs/current/models/stock/stock_reconciliation_item.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - - - - -Child Table - - -

        Table Name: tabStock Reconciliation Item

        - - - - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1item_code - Link - Item Code - - - - - - -Item - - - -
        2warehouse - Link - Warehouse - - - - - - -Warehouse - - - -
        3section_break_3 - Section Break - - -
        4qty - Float - Quantity - -
        5valuation_rate - Currency - Valuation Rate - -
        6column_break_6 - Column Break - - -
        7current_qty - Float - Current Qty -

        - Before reconciliation

        -
        8current_valuation_rate - Read Only - Current Valuation Rate -

        - Before reconciliation

        -
        - - - - -

        Child Table Of

        - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/stock_settings.html b/erpnext/docs/current/models/stock/stock_settings.html deleted file mode 100644 index 548ef57685..0000000000 --- a/erpnext/docs/current/models/stock/stock_settings.html +++ /dev/null @@ -1,337 +0,0 @@ - - - - - - - - -Single - - - - -Settings - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1item_naming_by - Select - Item Naming By - - -
        Item Code
        -Naming Series
        -
        2item_group - Link - Default Item Group - - - - - - -Item Group - - - -
        3stock_uom - Link - Default Stock UOM - - - - - - -UOM - - - -
        4column_break_4 - Column Break - - -
        5valuation_method - Select - Default Valuation Method - - -
        FIFO
        -Moving Average
        -
        6tolerance - Float - Allowance Percent -

        - Percentage you are allowed to receive or deliver more against the quantity ordered. For example: If you have ordered 100 units. and your Allowance is 10% then you are allowed to receive 110 units.

        -
        7section_break_7 - Section Break - - -
        8auto_insert_price_list_rate_if_missing - Check - Auto insert Price List rate if missing - -
        9allow_negative_stock - Check - Allow Negative Stock - -
        10column_break_10 - Column Break - - -
        11automatically_set_serial_nos_based_on_fifo - Check - Automatically Set Serial Nos based on FIFO - -
        12auto_material_request - Section Break - Auto Material Request - -
        13auto_indent - Check - Raise Material Request when stock reaches re-order level - -
        14reorder_email_notify - Check - Notify by Email on creation of automatic Material Request - -
        15freeze_stock_entries - Section Break - Freeze Stock Entries - -
        16stock_frozen_upto - Date - Stock Frozen Upto - -
        17stock_frozen_upto_days - Int - Freeze Stocks Older Than [Days] - -
        18stock_auth_role - Link - Role Allowed to edit frozen stock - - - - - - -Role - - - -
        - - -
        -

        Controller

        -

        erpnext.stock.doctype.stock_settings.stock_settings

        - - - - - - - -

        Class StockSettings

        - -

        Inherits from frappe.model.document.Document - -

        -
        -
        - - - - -

        - - - validate - (self) -

        -

        No docs

        -
        -
        - - -
        -
        - - - - - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/uom_conversion_detail.html b/erpnext/docs/current/models/stock/uom_conversion_detail.html deleted file mode 100644 index f6c26f85b1..0000000000 --- a/erpnext/docs/current/models/stock/uom_conversion_detail.html +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - - - -Child Table - - -

        Table Name: tabUOM Conversion Detail

        - - - - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1uom - Link - UOM - - - - - - -UOM - - - -
        2conversion_factor - Float - Conversion Factor - -
        - - - - -

        Child Table Of

        -
          - -
        • - - -Item - -
        • - -
        - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/warehouse.html b/erpnext/docs/current/models/stock/warehouse.html deleted file mode 100644 index c0fa5d3d6b..0000000000 --- a/erpnext/docs/current/models/stock/warehouse.html +++ /dev/null @@ -1,682 +0,0 @@ - - - - - - - - - - - - -

        Table Name: tabWarehouse

        - - -A logical Warehouse against which stock entries are made. - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1warehouse_detail - Section Break - Warehouse Detail - -
        2warehouse_name - Data - Warehouse Name - -
        3company - Link - Company - - - - - - -Company - - - -
        4create_account_under - Link - Parent Account -

        - Account for the warehouse (Perpetual Inventory) will be created under this Account.

        -
        - - - - -Account - - - -
        5disabled - Check - Disabled - -
        6warehouse_contact_info - Section Break - Warehouse Contact Info -

        - For Reference Only.

        -
        7email_id - Data - Email Id - -
        8phone_no - Data - Phone No - - -
        Phone
        -
        9mobile_no - Data - Mobile No - - -
        Phone
        -
        10column_break0 - Column Break - - -
        11address_line_1 - Data - Address Line 1 - -
        12address_line_2 - Data - Address Line 2 - -
        13city - Data - City - -
        14state - Data - State - -
        15pin - Int - PIN - -
        - - -
        -

        Controller

        -

        erpnext.stock.doctype.warehouse.warehouse

        - - - - - - - -

        Class Warehouse

        - -

        Inherits from frappe.model.document.Document - -

        -
        -
        - - - - -

        - - - add_abbr_if_missing - (self, dn) -

        -

        No docs

        -
        -
        - - - - - -

        - - - after_rename - (self, olddn, newdn, merge=False) -

        -

        No docs

        -
        -
        - - - - - -

        - - - autoname - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - before_rename - (self, olddn, newdn, merge=False) -

        -

        No docs

        -
        -
        - - - - - -

        - - - create_account_head - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - get_account - (self, warehouse) -

        -

        No docs

        -
        -
        - - - - - -

        - - - on_trash - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - on_update - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - recalculate_bin_qty - (self, newdn) -

        -

        No docs

        -
        -
        - - - - - -

        - - - rename_account_for - (self, olddn, newdn, merge) -

        -

        No docs

        -
        -
        - - - - - -

        - - - update_parent_account - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_parent_account - (self) -

        -

        No docs

        -
        -
        - - -
        -
        - - - - - - -

        Linked In:

        - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/support/index.html b/erpnext/docs/current/models/support/index.html deleted file mode 100644 index c72134dab5..0000000000 --- a/erpnext/docs/current/models/support/index.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - -

        DocTypes for support

        - -{index} - - \ No newline at end of file diff --git a/erpnext/docs/current/models/support/index.txt b/erpnext/docs/current/models/support/index.txt deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/erpnext/docs/current/models/support/issue.html b/erpnext/docs/current/models/support/issue.html deleted file mode 100644 index 82f29b53b5..0000000000 --- a/erpnext/docs/current/models/support/issue.html +++ /dev/null @@ -1,592 +0,0 @@ - - - - - - - - - - - - -

        Table Name: tabIssue

        - - - - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1subject_section - Section Break - Subject - - -
        icon-flag
        -
        2naming_series - Select - Series - - -
        ISS-
        -
        3subject - Data - Subject - -
        4cb00 - Column Break - - -
        5status - Select - Status - - -
        Open
        -Replied
        -Hold
        -Closed
        -
        6raised_by - Data - Raised By (Email) - - -
        Email
        -
        7fold - Fold - - -
        8section_break_7 - Section Break - - -
        9description - Text - Description - -
        10column_break_9 - Column Break - - -
        11resolution_date - Datetime - Resolution Date - -
        12first_responded_on - Datetime - First Responded On - -
        13additional_info - Section Break - - - -
        icon-pushpin
        -
        14lead - Link - Lead - - - - - - -Lead - - - -
        15contact - Link - Contact - - - - - - -Contact - - - -
        16column_break_16 - Column Break - - -
        17customer - Link - Customer - - - - - - -Customer - - - -
        18customer_name - Data - Customer Name - -
        19section_break_19 - Section Break - - -
        20resolution_details - Small Text - Resolution Details - -
        21column_break1 - Column Break - - -
        22opening_date - Date - Opening Date - -
        23opening_time - Time - Opening Time - -
        24company - Link - Company - - - - - - -Company - - - -
        25content_type - Data - Content Type - -
        26attachment - Attach - Attachment - -
        - - -
        -

        Controller

        -

        erpnext.support.doctype.issue.issue

        - - - - - - - -

        Class Issue

        - -

        Inherits from frappe.model.document.Document - -

        -
        -
        - - - - -

        - - - get_feed - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - set_lead_contact - (self, email_id) -

        -

        No docs

        -
        -
        - - - - - -

        - - - update_status - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate - (self) -

        -

        No docs

        -
        -
        - - -
        -
        - - - - - - - -

        - - - erpnext.support.doctype.issue.issue.auto_close_tickets - () -

        -

        No docs

        -
        -
        - - - - - - - -

        - - - erpnext.support.doctype.issue.issue.get_issue_list - (doctype, txt, filters, limit_start, limit_page_length=20) -

        -

        No docs

        -
        -
        - - - - - - - -

        - - - erpnext.support.doctype.issue.issue.get_list_context - (context=None) -

        -

        No docs

        -
        -
        - - - - - - - -

        - - - erpnext.support.doctype.issue.issue.has_website_permission - (doc, ptype, user, verbose=False) -

        -

        No docs

        -
        -
        - - - - - - -

        Public API -
        /api/method/erpnext.support.doctype.issue.issue.set_multiple_status -

        -

        - - - erpnext.support.doctype.issue.issue.set_multiple_status - (names, status) -

        -

        No docs

        -
        -
        - - - - - - -

        Public API -
        /api/method/erpnext.support.doctype.issue.issue.set_status -

        -

        - - - erpnext.support.doctype.issue.issue.set_status - (name, status) -

        -

        No docs

        -
        -
        - - - - - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/support/maintenance_schedule.html b/erpnext/docs/current/models/support/maintenance_schedule.html deleted file mode 100644 index fd245b09e0..0000000000 --- a/erpnext/docs/current/models/support/maintenance_schedule.html +++ /dev/null @@ -1,685 +0,0 @@ - - - - - - - - - - - - -

        Table Name: tabMaintenance Schedule

        - - - - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1customer_details - Section Break - - - -
        icon-user
        -
        2customer - Link - Customer - - - - - - -Customer - - - -
        3column_break0 - Column Break - - -
        4status - Select - Status - - -
        -Draft
        -Submitted
        -Cancelled
        -
        5transaction_date - Date - Transaction Date - -
        6items_section - Section Break - - - -
        icon-shopping-cart
        -
        7items - Table - Items - - - - - - -Maintenance Schedule Item - - - -
        8schedule - Section Break - Schedule - - -
        icon-time
        -
        9generate_schedule - Button - Generate Schedule - -
        10schedules - Table - Schedules - - - - - - -Maintenance Schedule Detail - - - -
        11contact_info - Section Break - Contact Info - -
        12customer_name - Data - Customer Name - -
        13contact_person - Link - Contact Person - - - - - - -Contact - - - -
        14contact_mobile - Data - Mobile No - -
        15contact_email - Data - Contact Email - -
        16contact_display - Small Text - Contact - -
        17column_break_17 - Column Break - - -
        18customer_address - Link - Customer Address - - - - - - -Address - - - -
        19address_display - Small Text - Address - -
        20territory - Link - Territory - - - - - - -Territory - - - -
        21customer_group - Link - Customer Group - - - - - - -Customer Group - - - -
        22company - Link - Company - - - - - - -Company - - - -
        23amended_from - Link - Amended From - - - - - - -Maintenance Schedule - - - -
        - - -
        -

        Controller

        -

        erpnext.support.doctype.maintenance_schedule.maintenance_schedule

        - - - - - - - -

        Class MaintenanceSchedule

        - -

        Inherits from erpnext.utilities.transaction_base.TransactionBase - -

        -
        -
        - - - - -

        - - - check_serial_no_added - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - create_schedule_list - (self, start_date, end_date, no_of_visit, sales_person) -

        -

        No docs

        -
        -
        - - - - - -

        - - - generate_schedule - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - on_cancel - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - on_submit - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - on_trash - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - on_update - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - update_amc_date - (self, serial_nos, amc_expiry_date=None) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_dates_with_periodicity - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_maintenance_detail - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_sales_order - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_schedule - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_schedule_date_for_holiday_list - (self, schedule_date, sales_person) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_serial_no - (self, serial_nos, amc_start_date) -

        -

        No docs

        -
        -
        - - -
        -
        - - - - - - -

        Public API -
        /api/method/erpnext.support.doctype.maintenance_schedule.maintenance_schedule.make_maintenance_visit -

        -

        - - - erpnext.support.doctype.maintenance_schedule.maintenance_schedule.make_maintenance_visit - (source_name, target_doc=None) -

        -

        No docs

        -
        -
        - - - - - - -

        Linked In:

        - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/support/maintenance_schedule_detail.html b/erpnext/docs/current/models/support/maintenance_schedule_detail.html deleted file mode 100644 index 70402e1949..0000000000 --- a/erpnext/docs/current/models/support/maintenance_schedule_detail.html +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - - - -Child Table - - -

        Table Name: tabMaintenance Schedule Detail

        - - - - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1item_code - Link - Item Code - - - - - - -Item - - - -
        2item_name - Data - Item Name - -
        3scheduled_date - Date - Scheduled Date - -
        4actual_date - Date - Actual Date - -
        5sales_person - Link - Sales Person - - - - - - -Sales Person - - - -
        6serial_no - Small Text - Serial No - -
        - - - - -

        Child Table Of

        - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/support/maintenance_schedule_item.html b/erpnext/docs/current/models/support/maintenance_schedule_item.html deleted file mode 100644 index 714bc83286..0000000000 --- a/erpnext/docs/current/models/support/maintenance_schedule_item.html +++ /dev/null @@ -1,233 +0,0 @@ - - - - - - - - - -Child Table - - -

        Table Name: tabMaintenance Schedule Item

        - - - - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1item_code - Link - Item Code - - - - - - -Item - - - -
        2item_name - Data - Item Name - -
        3description - Data - Description - -
        4schedule_details - Section Break - - -
        5start_date - Date - Start Date - -
        6end_date - Date - End Date - -
        7periodicity - Select - Periodicity - - -
        -Weekly
        -Monthly
        -Quarterly
        -Half Yearly
        -Yearly
        -Random
        -
        8no_of_visits - Int - No of Visits - -
        9sales_person - Link - Sales Person - - - - - - -Sales Person - - - -
        10reference - Section Break - Reference - -
        11serial_no - Small Text - Serial No - -
        12prevdoc_docname - Data - Against Docname - -
        - - - - -

        Child Table Of

        - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/support/maintenance_visit.html b/erpnext/docs/current/models/support/maintenance_visit.html deleted file mode 100644 index d5c4aae28d..0000000000 --- a/erpnext/docs/current/models/support/maintenance_visit.html +++ /dev/null @@ -1,666 +0,0 @@ - - - - - - - - - - - - -

        Table Name: tabMaintenance Visit

        - - - - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1customer_details - Section Break - - - -
        icon-user
        -
        2column_break0 - Column Break - - -
        3customer - Link - Customer - - - - - - -Customer - - - -
        4customer_name - Data - Customer Name - -
        5address_display - Small Text - Address - -
        6contact_display - Small Text - Contact - -
        7contact_mobile - Data - Mobile No - -
        8contact_email - Data - Contact Email - -
        9column_break1 - Column Break - - -
        10mntc_date - Date - Maintenance Date - -
        11mntc_time - Time - Maintenance Time - -
        12maintenance_details - Section Break - - - -
        icon-wrench
        -
        13completion_status - Select - Completion Status - - -
        -Partially Completed
        -Fully Completed
        -
        14column_break_14 - Column Break - - -
        15maintenance_type - Select - Maintenance Type - - -
        -Scheduled
        -Unscheduled
        -Breakdown
        -
        16section_break0 - Section Break - - - -
        icon-wrench
        -
        17purposes - Table - Purposes - - - - - - -Maintenance Visit Purpose - - - -
        18more_info - Section Break - More Information - - -
        icon-file-text
        -
        19customer_feedback - Small Text - Customer Feedback - -
        20col_break3 - Column Break - - -
        21status - Data - Status - - -
        -Draft
        -Cancelled
        -Submitted
        -
        22amended_from - Link - Amended From - - - - - - -Maintenance Visit - - - -
        23company - Link - Company - - - - - - -Company - - - -
        24fiscal_year - Link - Fiscal Year - - - - - - -Fiscal Year - - - -
        25contact_info_section - Section Break - Contact Info - - -
        icon-bullhorn
        -
        26customer_address - Link - Customer Address - - - - - - -Address - - - -
        27contact_person - Link - Contact Person - - - - - - -Contact - - - -
        28col_break4 - Column Break - - -
        29territory - Link - Territory - - - - - - -Territory - - - -
        30customer_group - Link - Customer Group - - - - - - -Customer Group - - - -
        - - -
        -

        Controller

        -

        erpnext.support.doctype.maintenance_visit.maintenance_visit

        - - - - - - - -

        Class MaintenanceVisit

        - -

        Inherits from erpnext.utilities.transaction_base.TransactionBase - -

        -
        -
        - - - - -

        - - - check_if_last_visit - (self) -

        -

        check if last maintenance visit against same sales order/ Warranty Claim

        -
        -
        - - - - - -

        - - - get_feed - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - on_cancel - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - on_submit - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - on_update - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - update_customer_issue - (self, flag) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_serial_no - (self) -

        -

        No docs

        -
        -
        - - -
        -
        - - - - - - -

        Linked In:

        - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/support/maintenance_visit_purpose.html b/erpnext/docs/current/models/support/maintenance_visit_purpose.html deleted file mode 100644 index 0dbad3685c..0000000000 --- a/erpnext/docs/current/models/support/maintenance_visit_purpose.html +++ /dev/null @@ -1,212 +0,0 @@ - - - - - - - - - -Child Table - - -

        Table Name: tabMaintenance Visit Purpose

        - - - - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1item_code - Link - Item Code - - - - - - -Item - - - -
        2item_name - Data - Item Name - -
        3serial_no - Small Text - Serial No - -
        4description - Text Editor - Description - -
        5work_details - Section Break - - -
        6service_person - Link - Sales Person - - - - - - -Sales Person - - - -
        7work_done - Small Text - Work Done - -
        8prevdoc_doctype - Link - Document Type - - - - - - -DocType - - - -
        9prevdoc_docname - Dynamic Link - Against Document No - - -
        prevdoc_doctype
        -
        10prevdoc_detail_docname - Data - Against Document Detail No - -
        - - - - -

        Child Table Of

        - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/support/warranty_claim.html b/erpnext/docs/current/models/support/warranty_claim.html deleted file mode 100644 index d9c403ed56..0000000000 --- a/erpnext/docs/current/models/support/warranty_claim.html +++ /dev/null @@ -1,780 +0,0 @@ - - - - - - - - - - - - -

        Table Name: tabWarranty Claim

        - - - - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1customer_section - Section Break - - - -
        icon-user
        -
        2naming_series - Select - Series - - -
        CI-
        -
        3status - Select - Status - - -
        -Open
        -Closed
        -Work In Progress
        -Cancelled
        -
        4complaint_date - Date - Issue Date - -
        5column_break0 - Column Break - - -
        6serial_no - Link - Serial No - - - - - - -Serial No - - - -
        7customer - Link - Customer - - - - - - -Customer - - - -
        8customer_address - Link - Customer Address - - - - - - -Address - - - -
        9contact_person - Link - Contact Person - - - - - - -Contact - - - -
        10issue_details - Section Break - - - -
        icon-ticket
        -
        11complaint - Small Text - Issue - -
        12item_code - Link - Item Code - - - - - - -Item - - - -
        13column_break1 - Column Break - - -
        14item_name - Data - Item Name - -
        15description - Small Text - Description - -
        16warranty_amc_status - Select - Warranty / AMC Status - - -
        -Under Warranty
        -Out of Warranty
        -Under AMC
        -Out of AMC
        -
        17warranty_expiry_date - Date - Warranty Expiry Date - -
        18amc_expiry_date - Date - AMC Expiry Date - -
        19resolution_section - Section Break - Resolution -

        - To assign this issue, use the "Assign" button in the sidebar.

        -
        -
        icon-thumbs-up
        -
        20resolution_date - Datetime - Resolution Date - -
        21resolved_by - Link - Resolved By - - - - - - -User - - - -
        22resolution_details - Text - Resolution Details - -
        23contact_info - Section Break - Contact Info - - -
        icon-bullhorn
        -
        24col_break3 - Column Break - - -
        25customer_name - Data - Customer Name - -
        26customer_group - Link - Customer Group - - - - - - -Customer Group - - - -
        27territory - Link - Territory - - - - - - -Territory - - - -
        28contact_display - Small Text - Contact - -
        29contact_mobile - Data - Mobile No - -
        30contact_email - Data - Contact Email - -
        31col_break4 - Column Break - - -
        32service_address - Small Text - Service Address -

        - If different than customer address

        -
        33address_display - Small Text - Address - -
        34more_info - Section Break - More Information - - -
        icon-file-text
        -
        35col_break5 - Column Break - - -
        36company - Link - Company - - - - - - -Company - - - -
        37fiscal_year - Link - Fiscal Year - - - - - - -Fiscal Year - - - -
        38col_break6 - Column Break - - -
        39complaint_raised_by - Data - Raised By - -
        40from_company - Data - From Company - -
        41amended_from - Link - Amended From - - - - - - -Warranty Claim - - - -
        - - -
        -

        Controller

        -

        erpnext.support.doctype.warranty_claim.warranty_claim

        - - - - - - - -

        Class WarrantyClaim

        - -

        Inherits from erpnext.utilities.transaction_base.TransactionBase - -

        -
        -
        - - - - -

        - - - get_feed - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - on_cancel - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - on_update - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate - (self) -

        -

        No docs

        -
        -
        - - -
        -
        - - - - - - -

        Public API -
        /api/method/erpnext.support.doctype.warranty_claim.warranty_claim.make_maintenance_visit -

        -

        - - - erpnext.support.doctype.warranty_claim.warranty_claim.make_maintenance_visit - (source_name, target_doc=None) -

        -

        No docs

        -
        -
        - - - - - - -

        Linked In:

        - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/utilities/address.html b/erpnext/docs/current/models/utilities/address.html deleted file mode 100644 index 533be96b2c..0000000000 --- a/erpnext/docs/current/models/utilities/address.html +++ /dev/null @@ -1,738 +0,0 @@ - - - - - - - - - - - - -

        Table Name: tabAddress

        - - - - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1address_details - Section Break - - - -
        icon-map-marker
        -
        2address_title - Data - Address Title -

        - Name of person or organization that this address belongs to.

        -
        3address_type - Select - Address Type - - -
        Billing
        -Shipping
        -Office
        -Personal
        -Plant
        -Postal
        -Shop
        -Subsidiary
        -Warehouse
        -Other
        -
        4address_line1 - Data - Address Line 1 - -
        5address_line2 - Data - Address Line 2 - -
        6city - Data - City/Town - -
        7state - Data - State - -
        8pincode - Data - Postal Code - -
        9country - Link - Country - - - - - - -Country - - - -
        10column_break0 - Column Break - - -
        11email_id - Data - Email Id - -
        12phone - Data - Phone - -
        13fax - Data - Fax - -
        14is_primary_address - Check - Preferred Billing Address - -
        15is_shipping_address - Check - Preferred Shipping Address - -
        16linked_with - Section Break - Reference - - -
        icon-pushpin
        -
        17customer - Link - Customer - - - - - - -Customer - - - -
        18customer_name - Data - Customer Name - -
        19supplier - Link - Supplier - - - - - - -Supplier - - - -
        20supplier_name - Data - Supplier Name - -
        21sales_partner - Link - Sales Partner - - - - - - -Sales Partner - - - -
        22column_break_22 - Column Break - - -
        23lead - Link - Lead - - - - - - -Lead - - - -
        24lead_name - Data - Lead Name - -
        - - -
        -

        Controller

        -

        erpnext.utilities.doctype.address.address

        - - - - - - - -

        Class Address

        - -

        Inherits from frappe.model.document.Document - -

        -
        -
        - - - - -

        - - - __setup__ - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - _unset_other - (self, is_address_type) -

        -

        No docs

        -
        -
        - - - - - -

        - - - autoname - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - check_if_linked - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - get_display - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - link_address - (self) -

        -

        Link address based on owner

        -
        -
        - - - - - -

        - - - validate - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_primary_address - (self) -

        -

        Validate that there can only be one primary address for particular customer, supplier

        -
        -
        - - - - - -

        - - - validate_shipping_address - (self) -

        -

        Validate that there can only be one shipping address for particular customer, supplier

        -
        -
        - - -
        -
        - - - - - - -

        Public API -
        /api/method/erpnext.utilities.doctype.address.address.get_address_display -

        -

        - - - erpnext.utilities.doctype.address.address.get_address_display - (address_dict) -

        -

        No docs

        -
        -
        - - - - - - - -

        - - - erpnext.utilities.doctype.address.address.get_list_context - (context=None) -

        -

        No docs

        -
        -
        - - - - - - - -

        - - - erpnext.utilities.doctype.address.address.get_territory_from_address - (address) -

        -

        Tries to match city, state and country of address to existing territory

        -
        -
        - - - - - - - -

        - - - erpnext.utilities.doctype.address.address.has_website_permission - (doc, ptype, user, verbose=False) -

        -

        Returns true if customer or lead matches with user

        -
        -
        - - - - - - -

        Linked In:

        - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/utilities/address_template.html b/erpnext/docs/current/models/utilities/address_template.html deleted file mode 100644 index 629989b52b..0000000000 --- a/erpnext/docs/current/models/utilities/address_template.html +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - - - - - - - -

        Table Name: tabAddress Template

        - - - - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1country - Link - Country - - - - - - -Country - - - -
        2is_default - Check - Is Default -

        - This format is used if country specific format is not found

        -
        3template - Code - Template -

        -

        Default Template

        -

        Uses Jinja Templating and all the fields of Address (including Custom Fields if any) will be available

        -
        {{ address_line1 }}<br>
        -{% if address_line2 %}{{ address_line2 }}<br>{% endif -%}
        -{{ city }}<br>
        -{% if state %}{{ state }}<br>{% endif -%}
        -{% if pincode %} PIN:  {{ pincode }}<br>{% endif -%}
        -{{ country }}<br>
        -{% if phone %}Phone: {{ phone }}<br>{% endif -%}
        -{% if fax %}Fax: {{ fax }}<br>{% endif -%}
        -{% if email_id %}Email: {{ email_id }}<br>{% endif -%}
        -

        -
        - - -
        -

        Controller

        -

        erpnext.utilities.doctype.address_template.address_template

        - - - - - - - -

        Class AddressTemplate

        - -

        Inherits from frappe.model.document.Document - -

        -
        -
        - - - - -

        - - - on_trash - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - on_update - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate - (self) -

        -

        No docs

        -
        -
        - - -
        -
        - - - - - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/utilities/contact.html b/erpnext/docs/current/models/utilities/contact.html deleted file mode 100644 index 187da8037a..0000000000 --- a/erpnext/docs/current/models/utilities/contact.html +++ /dev/null @@ -1,614 +0,0 @@ - - - - - - - - - - - - -

        Table Name: tabContact

        - - - - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1contact_section - Section Break - - - -
        icon-user
        -
        2first_name - Data - First Name - -
        3last_name - Data - Last Name - -
        4email_id - Data - Email Id - - -
        Email
        -
        5cb00 - Column Break - - -
        6status - Select - Status - - -
        Passive
        -Open
        -Replied
        -
        7phone - Data - Phone - -
        8contact_details - Section Break - Reference - - -
        icon-pushpin
        -
        9user - Link - User Id - - - - - - -User - - - -
        10customer - Link - Customer - - - - - - -Customer - - - -
        11customer_name - Data - Customer Name - -
        12column_break1 - Column Break - - -
        13supplier - Link - Supplier - - - - - - -Supplier - - - -
        14supplier_name - Data - Supplier Name - -
        15sales_partner - Link - Sales Partner - - - - - - -Sales Partner - - - -
        16is_primary_contact - Check - Is Primary Contact - -
        17more_info - Section Break - More Information - - -
        icon-file-text
        -
        18mobile_no - Data - Mobile No - -
        19department - Data - Department -

        - Enter department to which this Contact belongs

        -
        20designation - Data - Designation -

        - Enter designation of this Contact

        -
        21unsubscribed - Check - Unsubscribed - -
        - - -
        -

        Controller

        -

        erpnext.utilities.doctype.contact.contact

        - - - - - - - -

        Class Contact

        - -

        Inherits from erpnext.controllers.status_updater.StatusUpdater - -

        -
        -
        - - - - -

        - - - autoname - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - on_trash - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - set_user - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate - (self) -

        -

        No docs

        -
        -
        - - - - - -

        - - - validate_primary_contact - (self) -

        -

        No docs

        -
        -
        - - -
        -
        - - - - - - -

        Public API -
        /api/method/erpnext.utilities.doctype.contact.contact.get_contact_details -

        -

        - - - erpnext.utilities.doctype.contact.contact.get_contact_details - (contact) -

        -

        No docs

        -
        -
        - - - - - - -

        Public API -
        /api/method/erpnext.utilities.doctype.contact.contact.invite_user -

        -

        - - - erpnext.utilities.doctype.contact.contact.invite_user - (contact) -

        -

        No docs

        -
        -
        - - - - - - -

        Linked In:

        - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/utilities/index.html b/erpnext/docs/current/models/utilities/index.html deleted file mode 100644 index 8c7f74a0f1..0000000000 --- a/erpnext/docs/current/models/utilities/index.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - -

        DocTypes for utilities

        - -{index} - - \ No newline at end of file diff --git a/erpnext/docs/current/models/utilities/index.txt b/erpnext/docs/current/models/utilities/index.txt deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/erpnext/docs/current/models/utilities/rename_tool.html b/erpnext/docs/current/models/utilities/rename_tool.html deleted file mode 100644 index 959c074178..0000000000 --- a/erpnext/docs/current/models/utilities/rename_tool.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - -Single - - - - - - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1select_doctype - Select - Select DocType -

        - Type of document to rename.

        -
        2file_to_rename - Attach - File to Rename -

        - Attach .csv file with two columns, one for the old name and one for the new name

        -
        3rename_log - HTML - Rename Log - -
        - - -
        -

        Controller

        -

        erpnext.utilities.doctype.rename_tool.rename_tool

        - - - - - - - -

        Class RenameTool

        - -

        Inherits from frappe.model.document.Document - -

        -
        -
        - -
        -
        - - - - - - -

        Public API -
        /api/method/erpnext.utilities.doctype.rename_tool.rename_tool.get_doctypes -

        -

        - - - erpnext.utilities.doctype.rename_tool.rename_tool.get_doctypes - () -

        -

        No docs

        -
        -
        - - - - - - -

        Public API -
        /api/method/erpnext.utilities.doctype.rename_tool.rename_tool.upload -

        -

        - - - erpnext.utilities.doctype.rename_tool.rename_tool.upload - (select_doctype=None, rows=None) -

        -

        No docs

        -
        -
        - - - - - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/current/models/utilities/sms_log.html b/erpnext/docs/current/models/utilities/sms_log.html deleted file mode 100644 index 99fc125666..0000000000 --- a/erpnext/docs/current/models/utilities/sms_log.html +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - - - - - - - -

        Table Name: tabSMS Log

        - - - - -

        Fields

        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        SrFieldnameTypeLabelOptions
        1sender_name - Data - Sender Name - -
        2sent_on - Date - Sent On - -
        3column_break0 - Column Break - - -
        4message - Small Text - Message - -
        5sec_break1 - Section Break - - - -
        Simple
        -
        6no_of_requested_sms - Int - No of Requested SMS - -
        7requested_numbers - Small Text - Requested Numbers - -
        8column_break1 - Column Break - - -
        9no_of_sent_sms - Int - No of Sent SMS - -
        10sent_to - Small Text - Sent To - -
        - - -
        -

        Controller

        -

        erpnext.utilities.doctype.sms_log.sms_log

        - - - - - - - -

        Class SMSLog

        - -

        Inherits from frappe.model.document.Document - -

        -
        -
        - -
        -
        - - - - - - - - - - - \ No newline at end of file diff --git a/erpnext/docs/user/manual/en/accounts/articles/changing-parent-account.md b/erpnext/docs/user/manual/en/accounts/articles/changing-parent-account.md index ccb89da45f..e4a33e040f 100644 --- a/erpnext/docs/user/manual/en/accounts/articles/changing-parent-account.md +++ b/erpnext/docs/user/manual/en/accounts/articles/changing-parent-account.md @@ -14,17 +14,17 @@ Click on Account for which Parent Account is to be changed. ####2. Edit Account -Project Default Cost Center +Project Default Cost Center ####3. Change Parent Account Search and select preferred Parent Account and save. -Project Default Cost Center +Project Default Cost Center Refresh system from Help menu to experience the change. -Project Default Cost Center +Project Default Cost Center
        Note: Parent cannot be customized for the Root Accounts, like Asset, Liability, Income, Expense, Equity.
        diff --git a/erpnext/docs/user/manual/en/selling/articles/applying-discount.md b/erpnext/docs/user/manual/en/selling/articles/applying-discount.md index 9dfc730cf2..64f19e9492 100644 --- a/erpnext/docs/user/manual/en/selling/articles/applying-discount.md +++ b/erpnext/docs/user/manual/en/selling/articles/applying-discount.md @@ -1,31 +1,25 @@ -

        Applying Discount

        +#Applying Discount -There are two ways Discount can be applied on an items in the sales transactions. +There are several ways Discount can be applied on an items in the sales transactions. #### 1. Discount on "Price List Rate" of an item -In the Item table of transaction, after Price List Rate field, you will find Discount (%) field. Discount Rate applied in this field will be applicable on the Price List Rate of an item. +In the Item table, after Price List Rate field, you will find Discount (%) field. Discount Rate applied will be applicable on the Price List Rate of an item. -Before applying Discount (%). +Discount Percentage -![Before discount]({{docs_base_url}}/assets/img/articles/Selection_00616c670.png) +The feature of % Discount is available in all the sales and purchase transactions. -After applying Discount (%) under Discount on Price List Rate (%) field. +You can also %Discount applied based on **Pricing Rule** as well. [Click here to learn how Pricing Rule functions.]({{docs_base_url}}/user/manual/en/accounts/pricing-rule.html) -![After discount]({{docs_base_url}}/assets/img/articles/Selection_007f81dc2.png) - -You can apply percent discount in all sales and purchase transactions. +#### 2. Discount on Net Total and Grand Total -#### 2. Discount on Grand Total +From the "Additional Discount" section, you can apply flat discount, as amount or as percentage. -In transactions, after Taxes and Charges table, you will find option to enter "Additional Discount Amount". Based on Amount entered in this field, item's Basic Rate and Taxes will be recalculated. +Discount Percentage -Before applying Additional Discount Amount, +If Discount Amount is applied based on the **Net Total**, then item's Net Rate and Net Amount is reduced as per the Discount Amount. -![Discount]({{docs_base_url}}/assets/img/articles/Selection_0085ca13e.png) - -After applying Additional Discount Amount. - -![Discount Amount]({{docs_base_url}}/assets/img/articles/Selection_010496ae2.png) +If Discount Amount is applied based on the **Grand Total**, then with item's Net Rate, Net Amount and taxes are also re-calculated as per Discount Amount. \ No newline at end of file diff --git a/erpnext/docs/user/manual/en/selling/articles/close-sales-order.md b/erpnext/docs/user/manual/en/selling/articles/close-sales-order.md new file mode 100644 index 0000000000..442be9f1c3 --- /dev/null +++ b/erpnext/docs/user/manual/en/selling/articles/close-sales-order.md @@ -0,0 +1,21 @@ +#Close Sales Order + +In the submitted Sales Orders, you will find **Stop** option. Stopping Sales Order will restrict user from creating Delivery Note and Sales Invoice against it. + +Close SO + +![stop Sales Order]({{docs_base_url}}/assets/img/articles/$SGrab_439.png) + +####Scenario + +An order is received for ten Wind Turbines. Sales Order is also created for ten units. Due to scarcity of stock, only seven units are delivered to the customer. Pending three units are to be delivered soon. Customer informs that they don't need to deliver pending item, as they have purchased it from other vendor. + +In this case, create Delivery Note and Sales Invoice will be created only for the seven units. And the Sales Order should be set as stopped. + +![Sales Order Stopped]({{docs_base_url}}/assets/img/articles/$SGrab_440.png) + +Once Sales Order is set as stopped, you will not have pending quantities (three in this case) reflecting in Pending to Deliver and Pending to Invoice reports. To make further transactions against Stopped Sales Order, you should first Unstop it. + +You will find same funtionality in the Purchase Order as well. + + \ No newline at end of file diff --git a/erpnext/docs/user/manual/en/selling/articles/drop-shipping.md b/erpnext/docs/user/manual/en/selling/articles/drop-shipping.md index 8c3af05c18..6d58e2c50b 100644 --- a/erpnext/docs/user/manual/en/selling/articles/drop-shipping.md +++ b/erpnext/docs/user/manual/en/selling/articles/drop-shipping.md @@ -1,3 +1,5 @@ +#Drop Ship + **Drop shipping** is a supply chain management technique in which the retailer does not keep goods in stock. Instead they transfer customer orders and shipment details to either the manufacturer, another retailer, or a wholesaler, who then ships the goods directly to the customer In ERPNext, you can create a Drop Shipping by creating Purchase Order against Sales Order. @@ -7,16 +9,19 @@ In ERPNext, you can create a Drop Shipping by creating Purchase Order against Sa #### Setup on Item Master Set **_Delivered by Supplier (Drop Ship)_** and **_Default Supplier_** in Item Master. + Setup Item Master #### Setup on Sales Order If Drop Shipping has set on Item master, it will automatically set **Supplier delivers to Customer** and **Supplier** on Salse Order Item. You can setup Drop Shipping, on Sales Order Item. Under **Drop Ship** section, set **Supplier delivers to Customer** and select **Supplier** agaist which Purchase Order will get created. + Setup Drop Shipping on Sales Order Item #### Create Purchase Order -After submitting a Sales Order, create Puchase Order.
        +After submitting a Sales Order, create Puchase Order. + Setup Drop Shipping on Sales Order Item From Sales Order, all items, having **Supplier delivers to Customer** checked or **Supplier**(matching with supplier selected on For Supplier popup) mentioned, will get mapped onto Purchase Order. @@ -24,11 +29,18 @@ From Sales Order, all items, having **Supplier delivers to Customer** checked o It will automatically set Customer, Customer Address and Contact Person. After submitting Purchase Order, to update delivery status, use **Mark as Delivered** button on Purchase Order. It will update delivery percetage and delivered quantity on Sales Order. + Purchase Order for Drop Shipping **_Close_**, is a new feature introduced on **Purchase Order** and **Sales Order**, to close or to mark fulfillment. + Close Sales Order ###Drop Shipping Print Format You can notify, Suppliers by sending a email after submitting Purchase Order by attaching Drop Shipping print format. -Drop Dhip Print Format \ No newline at end of file + +Drop Dhip Print Format + +###Video Help on Drop Ship + + \ No newline at end of file diff --git a/erpnext/docs/user/manual/en/selling/articles/erpnext-for-services-organization.md b/erpnext/docs/user/manual/en/selling/articles/erpnext-for-services-organization.md index 2fafa6826c..cd312ce00a 100644 --- a/erpnext/docs/user/manual/en/selling/articles/erpnext-for-services-organization.md +++ b/erpnext/docs/user/manual/en/selling/articles/erpnext-for-services-organization.md @@ -1,28 +1,45 @@ -

        ERPNext for Service Organizations

        +#ERPNext for Service Organizations -**Question:** At first look, ERPNext looks primarily designed for the traders and manufacturers. Is ERPNext used by service companies as well? +**Question:** ERPNext looks primarily designed for the traders and manufacturers. Is ERPNext used by companies offering servies? **Answer:** -About 30% of ERPNext customers comes from services background. These are companies into software development, certification services, individual consultants and many more. Being into services business ourselves, we use ERPNext to manage our sales, accounting, support and HR operations. -https://conf.erpnext.com/2014/videos/umair-sayyed +About 30% of ERPNext customers are companies into services. These are companies into software development, certification services, individual consultants and many more. Being into service business ourselves, we use ERPNext to manage our sales, accounting, support and HR operations. Check following video to learn how ERPNext uses ERPNext. + + ###Master Setup -Between the service and trading company, the most differentiating master is an item master. While trading and manufacturing business has stock item, with warehouse and other stock details, service items will have none of these details. +Between the service and trading company, the differentiating master is an **Item** master. Service companies items are non-stock and service items. They don't have stock and warehouse to them. -To create a services item, which will be non-stock item, in the Item master, you should set "Is Stock Item" field as "No". +To create a services (non-stock) Item, in the item master, uncheck "Maintain Stock" field. -![non-stock item]({{docs_base_url}}/assets/img/articles/Screen Shot 2015-04-01 at 5.32.57 pm.png) +Service Item + +When creating Sales Order for the services, select Order Type as **Maintenance**. Sales Order of Maintenance Type needs lesser details compared to stock item's order like Delivery Note, item warehouse etc. + +However, they can still add stock items to mantain their fixed assets etc. ###Hiding Non-required Features +Since many modules like Manufacturing and stock will not be required for the services company, you can hide those modules from: + +`Setup > Permissions > Show/Hide Modules` + +Modules uncheck here will be hidden from every user in the Commpany. + ####Feature Setup -In Feature Setup, you can activate specific functionalities, and disable others. Based on this setting, forms and fields not required for your business will be hidden. [More on feature setup here](https://manual.erpnext.com/customize-erpnext/hiding-modules-and-features). +Within the form, there are many fields only needed for companies into trading and manufacturing business. These fields can be hidden for the service Companies. Feature Setup is a tool where you can enable/disable specific feature. If specific feature is disabled, then fields relevant to that feature is hidden from all the forms. For example, if Serial No. feature is disabled from the Featue Setup, then Serial. No. field from Item master and all the sales and purchase transaction will be hidden. + +[To learn more about Feature Setup, click here.]({{docs_base_url}}/user/manual/en/customize-erpnext/hiding-modules-and-features.html). ####Permissions -ERPNext is the permission driven system. User will be able to access system based on permissions assigned to him/her. So, if user is not assigned Role related to Stock and Manufacturing module, it will be hidden from user. [More on permission management in ERPNext here](https://manual.erpnext.com/setting-up/users-and-permissions). +ERPNext is the permission driven system. Users access system based on permissions assigned to them. So, if user is not assigned Role related to Stock and Manufacturing module, it will be hidden from user. [Click here to learn more about permission management.]({{docs_base_url}}/user/manual/en/setting-up/users-and-permissions.html). + +You can also refer to help video on User and Permissions setting in ERPNext. + + \ No newline at end of file diff --git a/erpnext/docs/user/manual/en/selling/articles/index.txt b/erpnext/docs/user/manual/en/selling/articles/index.txt index 70b4ac2c2a..5d51607979 100644 --- a/erpnext/docs/user/manual/en/selling/articles/index.txt +++ b/erpnext/docs/user/manual/en/selling/articles/index.txt @@ -1,6 +1,6 @@ applying-discount drop-shipping erpnext-for-services-organization -manage-shipping-rule -managing-sales-persons-in-sales-transactions -stopping-sales-order \ No newline at end of file +shipping-rule +sales-persons-in-the-sales-transactions +close-sales-order \ No newline at end of file diff --git a/erpnext/docs/user/manual/en/selling/articles/manage-shipping-rule.md b/erpnext/docs/user/manual/en/selling/articles/manage-shipping-rule.md deleted file mode 100644 index c9c4f91613..0000000000 --- a/erpnext/docs/user/manual/en/selling/articles/manage-shipping-rule.md +++ /dev/null @@ -1,25 +0,0 @@ -

        Manage Shipping Rule

        - -Shipping Rule master help you define rules based on which shipping charge will be applied on sales transactions. - -Most of the companies (mainly retail) have shipping charge applied based on invoice total. If invoice value is above certain range, then shipping charge applied will be lesser. If invoice total is less, then shipping charges applied will be higher. You can setup Shipping Rule to address the requirement of varying shipping charge based on total. - -To setup Shipping Rule, go to: - -Selling/Accounts >> Setup >> Shipping Rule - -Here is an example of Shipping Rule master: - -![Shipping Rule Master]({{docs_base_url}}/assets/img/articles/$SGrab_258.png) - -Referring above, you will notice that shipping charges are reducing as range of total is increasing. This shipping charge will only be applied if transaction total falls under one of the above range, else not. - -If shipping charges are applied based on Shipping Rule, then more values like Shipping Account, Cost Center will be needed as well to add row in the Taxes and Other Charges table of sales transaction. Hence these details are tracked as well in the Shipping Rule itself. - -![Shipping Rule Filters]({{docs_base_url}}/assets/img/articles/$SGrab_260.png) - -Apart from price range, Shipping Rule will also validate if its territory and company matches with that of Customer's territory and company. - -Following is an example of how shipping charges are auto-applied on sales order based on Shipping Rule. - -![Shipping Rule Application]({{docs_base_url}}/assets/img/articles/$SGrab_261.png) \ No newline at end of file diff --git a/erpnext/docs/user/manual/en/selling/articles/managing-sales-persons-in-sales-transactions.md b/erpnext/docs/user/manual/en/selling/articles/managing-sales-persons-in-sales-transactions.md deleted file mode 100644 index ae92e63443..0000000000 --- a/erpnext/docs/user/manual/en/selling/articles/managing-sales-persons-in-sales-transactions.md +++ /dev/null @@ -1,43 +0,0 @@ -

        Managing Sales Persons In Sales Transactions

        - -In ERPNext, Sales Person master is maintained in [tree structure](https://erpnext.com/kb/setup/managing-tree-structure-masters). Sales Person table is available in all the Sales transactions, at the bottom of transactions form. - -If you have specific Sales Person attached to Customer, you can mention Sales Person details in the Customer master itself. On selection of Customer in the transactions, you will have Sales Person details auto-fetched in that transaction. - -####Sales Person Contribution - -If you have more than one sales person working together on an order, then with listing all the sales person for that order, you will also need to define contribution based on their effort. For example, Sales Person Aasif, Harish and Jivan are working on order. While Aasif and Harish followed this order throughout, Jivan got involved just in the end. Accordingly you should define % Contribution in the sales transaction as: - -![Sales Person]({{docs_base_url}}/assets/img/articles/Selection_01087d575.png) - -Where Sales Order Net Total is 30,000. - -
        Total % Contribution for all Sales Person must be 100%. If only one Sales Person is selected, then enter % Contribution as 100% for him/her.
        - -####Sales Person Transaction Report - -You can check Sales Person Transaction Report from - -`Selling > Standard Reports > Sales Person-wise Transaction Summary` - -This report will be generated based on Sales Order, Delivery Note and Sales Invoice. This report will give you total amount of sales made by an employee over a period. Based on data provided from this report, you can determine incentives and plan appraisal for an employee. - -![SP Report]({{docs_base_url}}/assets/img/articles/Selection_011.png) - -####Sales Person wise Commission - -ERPNext doesn't calculate commission payable to an Employee, but only provide total amount of sales made by him/her. As a work around, you can add your Sales Person as Sales Partner, as commission calculation feature is readily available in ERPNext. You can check Sales Partner's Commission report from - -`Accounts > Standard Reports > Sales Partners Commission` - -####Disable Sales Person Feature - -If you don't track sales person wise performance, and doesn't wish to use this feature, you can disable it from: - -`Setup > Customize > Features Setup` - -![Feature Setup]({{docs_base_url}}/assets/img/articles/Selection_01244aec7.png) - -After uncheck Sales Extras from Sales and Purchase section, refresh your ERPNext account's tab, so that forms will take effect based on your setting. - - \ No newline at end of file diff --git a/erpnext/docs/user/manual/en/selling/articles/sales-persons-in-the-sales-transactions.md b/erpnext/docs/user/manual/en/selling/articles/sales-persons-in-the-sales-transactions.md new file mode 100644 index 0000000000..1acf7f019b --- /dev/null +++ b/erpnext/docs/user/manual/en/selling/articles/sales-persons-in-the-sales-transactions.md @@ -0,0 +1,43 @@ +#Sales Persons in the Sale Transactions + +In ERPNext, Sales Person master is maintained in [tree structure]({{docs_base_url}}/user/manual/en/setting-up/articles/managing-tree-structure-masters.html). Sales Person table is available in all the Sales transactions where you can select Sales Person who worked on that specific sales transaction. + +Sales Persons can be updated in the Customer master as well. On selection of Customer in the transactions, default Sales Persons for that Customer will be auto-fetched. + +Sales Person Customer + +####Sales Person Contribution + +If more than one sales persons are working together on an order, then contribution % should also for each Sales Person, based on their effort. + +Sales Person Order + +On saving transaction, based on the Net Total and %Contriution, Contribution to Net Total will be calculated for each Sales Person. + +
        Total % Contribution for all Sales Person must be 100%. If only one Sales Person is selected, then % Contribution will be 100.
        + +####Sales Person Transaction Report + +You can check Sales Person Transaction Report from: + +`Selling > Standard Reports > Sales Personwise Transaction Summary` + +This report can be generated based on Sales Order, Delivery Note and Sales Invoice. It will give you total amount of sales made by an employee over a period. + +Sales Person Report + +####Sales Person wise Commission + +ERPNext doesn't calculate commission payable to an Employee, but only provide total amount of sales made by him/her. As a work around, you can add your Sales Person as Sales Partner, as commission calculation feature is readily available in ERPNext. You can check Sales Partner's Commission report from + +`Accounts > Standard Reports > Sales Partners Commission` + +####Disable Sales Person Feature + +If you don't track sales person wise performance, and doesn't wish to use this feature, you can disable it from: + +`Setup > Customize > Features Setup` + +Disable Sales Person + + \ No newline at end of file diff --git a/erpnext/docs/user/manual/en/selling/articles/shipping-rule.md b/erpnext/docs/user/manual/en/selling/articles/shipping-rule.md new file mode 100644 index 0000000000..086294b70d --- /dev/null +++ b/erpnext/docs/user/manual/en/selling/articles/shipping-rule.md @@ -0,0 +1,33 @@ +#Shipping Rule + +Shipping Rule master helps in defining a rule based on which shipping charge is applied on a sales transactions. + +Most of the companies (mainly retail) have shipping charge applied based on the invoice total. If invoice value is above certain value, then shipping charge applied are lesser. If invoice value is less, then shipping charges applied are bit more than high shipping charges applied on a high value invoice. You can setup Shipping Rule to address the requirement of varying shipping charge based on the Net Total of sales transaction. + +To setup Shipping Rule, go to: + +`Selling > Setup > Shipping Rule` or `Accounts > Setup > Shipping Rule` + +####Shipping Rule Conditions + +Shipping Rule Prices + +Referring above, you will notice that shipping charges are reducing as valye is increasing. This shipping charge will only be applied if transaction total falls under one of the above range. + +####Valid for Countries + +You can set Shipping Charges valid for all the countries, or specify specific Country. If specific countries mentioned, then Shipping Charges will be applied only if Customer's country matches Country mentioned in the Shipping Rule. + +Shipping Rule + +####Shipping Account + +If shipping charges are applied based on Shipping Rule, then more values like Shipping Account, Cost Center will be needed as well to add row in the Taxes and Other Charges table of transaction. Hence these details are tracked as well in the Shipping Rule. + +Shipping Account + +####Shipping Rule Application + +Following is an example of how shipping charges is auto-applied on Sales Order based on Shipping Rule. + +Shipping Rule Application \ No newline at end of file diff --git a/erpnext/docs/user/manual/en/selling/articles/stopping-sales-order.md b/erpnext/docs/user/manual/en/selling/articles/stopping-sales-order.md deleted file mode 100644 index 96a15def96..0000000000 --- a/erpnext/docs/user/manual/en/selling/articles/stopping-sales-order.md +++ /dev/null @@ -1,17 +0,0 @@ -

        Stopping a Sales Order

        - -In the submitted Sales Orders, you will find **Stop** option. Stopping Sales Order will restrict user from creating Delivery Note and Sales Invoice against it. - -![stop Sales Order]({{docs_base_url}}/assets/img/articles/$SGrab_439.png) - -####Scenario - -East Wind receives an order for ten laptops. Sales Order is also created for ten units. Due to scarcity of stock, only seven units are delivered to customer. Pending three units are to be delivered soon. Customer inform East Wind need not deliver pending item, as they have purchased it from other vendor. - -In this case, after East Wind will create Delivery Note and Sales Invoice only for the seven units of Laptop, and set Sales Order as stopped. - -![Sales Order Stopped]({{docs_base_url}}/assets/img/articles/$SGrab_440.png) - -Once Sales Order is set as stopped, you will not have pending quantities (three in this case) reflecting in Pending to Deliver and Pending to Invoice reports. To make further transactions against Stopped Sales Order, you should first Unstop it. - - \ No newline at end of file From 2901e14c59343377183bfe4d135ae7f00e5bcfb8 Mon Sep 17 00:00:00 2001 From: Umair Sayyed Date: Wed, 27 Jan 2016 12:22:27 +0530 Subject: [PATCH 07/46] articles --- .../api/accounts/erpnext.accounts.party.html | 16 + ...pnext.controllers.accounts_controller.html | 14 - ...rpnext.controllers.recurring_document.html | 2 +- .../docs/current/api/erpnext.exceptions.html | 45 +- .../current/api/support/erpnext.support.html | 18 + erpnext/docs/current/api/support/index.html | 19 + erpnext/docs/current/api/support/index.txt | 1 + ...erpnext.utilities.address_and_contact.html | 114 ++ .../api/utilities/erpnext.utilities.html | 34 + .../erpnext.utilities.transaction_base.html | 206 +++ erpnext/docs/current/api/utilities/index.html | 19 + erpnext/docs/current/api/utilities/index.txt | 3 + erpnext/docs/current/index.html | 2 +- .../accounts/period_closing_voucher.html | 2 +- .../models/accounts/purchase_invoice.html | 14 + .../models/accounts/sales_invoice.html | 14 + .../current/models/buying/purchase_order.html | 14 - .../docs/current/models/buying/supplier.html | 66 +- .../docs/current/models/selling/customer.html | 28 +- .../current/models/selling/sales_order.html | 14 + .../current/models/setup/supplier_type.html | 34 +- .../models/stock/material_request.html | 723 ++++++++ .../models/stock/material_request_item.html | 407 +++++ .../current/models/stock/packed_item.html | 395 ++++ .../current/models/stock/packing_slip.html | 592 ++++++ .../models/stock/packing_slip_item.html | 219 +++ .../docs/current/models/stock/price_list.html | 426 +++++ .../models/stock/price_list_country.html | 84 + .../models/stock/purchase_receipt_item.html | 999 ++++++++++ .../docs/current/models/stock/serial_no.html | 1110 +++++++++++ .../current/models/stock/stock_entry.html | 1617 +++++++++++++++++ .../models/stock/stock_entry_detail.html | 656 +++++++ .../models/stock/stock_ledger_entry.html | 552 ++++++ .../models/stock/stock_reconciliation.html | 589 ++++++ .../stock/stock_reconciliation_item.html | 179 ++ .../current/models/stock/stock_settings.html | 337 ++++ .../models/stock/uom_conversion_detail.html | 96 + .../docs/current/models/stock/warehouse.html | 682 +++++++ .../docs/current/models/support/index.html | 19 + erpnext/docs/current/models/support/index.txt | 0 .../docs/current/models/support/issue.html | 592 ++++++ .../models/support/maintenance_schedule.html | 685 +++++++ .../support/maintenance_schedule_detail.html | 153 ++ .../support/maintenance_schedule_item.html | 233 +++ .../models/support/maintenance_visit.html | 666 +++++++ .../support/maintenance_visit_purpose.html | 212 +++ .../models/support/warranty_claim.html | 780 ++++++++ .../current/models/utilities/address.html | 738 ++++++++ .../models/utilities/address_template.html | 175 ++ .../current/models/utilities/contact.html | 614 +++++++ .../docs/current/models/utilities/index.html | 19 + .../docs/current/models/utilities/index.txt | 0 .../current/models/utilities/rename_tool.html | 147 ++ .../current/models/utilities/sms_log.html | 197 ++ 54 files changed, 15502 insertions(+), 70 deletions(-) create mode 100644 erpnext/docs/current/api/support/erpnext.support.html create mode 100644 erpnext/docs/current/api/support/index.html create mode 100644 erpnext/docs/current/api/support/index.txt create mode 100644 erpnext/docs/current/api/utilities/erpnext.utilities.address_and_contact.html create mode 100644 erpnext/docs/current/api/utilities/erpnext.utilities.html create mode 100644 erpnext/docs/current/api/utilities/erpnext.utilities.transaction_base.html create mode 100644 erpnext/docs/current/api/utilities/index.html create mode 100644 erpnext/docs/current/api/utilities/index.txt create mode 100644 erpnext/docs/current/models/stock/material_request.html create mode 100644 erpnext/docs/current/models/stock/material_request_item.html create mode 100644 erpnext/docs/current/models/stock/packed_item.html create mode 100644 erpnext/docs/current/models/stock/packing_slip.html create mode 100644 erpnext/docs/current/models/stock/packing_slip_item.html create mode 100644 erpnext/docs/current/models/stock/price_list.html create mode 100644 erpnext/docs/current/models/stock/price_list_country.html create mode 100644 erpnext/docs/current/models/stock/purchase_receipt_item.html create mode 100644 erpnext/docs/current/models/stock/serial_no.html create mode 100644 erpnext/docs/current/models/stock/stock_entry.html create mode 100644 erpnext/docs/current/models/stock/stock_entry_detail.html create mode 100644 erpnext/docs/current/models/stock/stock_ledger_entry.html create mode 100644 erpnext/docs/current/models/stock/stock_reconciliation.html create mode 100644 erpnext/docs/current/models/stock/stock_reconciliation_item.html create mode 100644 erpnext/docs/current/models/stock/stock_settings.html create mode 100644 erpnext/docs/current/models/stock/uom_conversion_detail.html create mode 100644 erpnext/docs/current/models/stock/warehouse.html create mode 100644 erpnext/docs/current/models/support/index.html create mode 100644 erpnext/docs/current/models/support/index.txt create mode 100644 erpnext/docs/current/models/support/issue.html create mode 100644 erpnext/docs/current/models/support/maintenance_schedule.html create mode 100644 erpnext/docs/current/models/support/maintenance_schedule_detail.html create mode 100644 erpnext/docs/current/models/support/maintenance_schedule_item.html create mode 100644 erpnext/docs/current/models/support/maintenance_visit.html create mode 100644 erpnext/docs/current/models/support/maintenance_visit_purpose.html create mode 100644 erpnext/docs/current/models/support/warranty_claim.html create mode 100644 erpnext/docs/current/models/utilities/address.html create mode 100644 erpnext/docs/current/models/utilities/address_template.html create mode 100644 erpnext/docs/current/models/utilities/contact.html create mode 100644 erpnext/docs/current/models/utilities/index.html create mode 100644 erpnext/docs/current/models/utilities/index.txt create mode 100644 erpnext/docs/current/models/utilities/rename_tool.html create mode 100644 erpnext/docs/current/models/utilities/sms_log.html diff --git a/erpnext/docs/current/api/accounts/erpnext.accounts.party.html b/erpnext/docs/current/api/accounts/erpnext.accounts.party.html index e5c8d31928..3ad5432e77 100644 --- a/erpnext/docs/current/api/accounts/erpnext.accounts.party.html +++ b/erpnext/docs/current/api/accounts/erpnext.accounts.party.html @@ -315,6 +315,22 @@ finally will return default.

        +

        + + + erpnext.accounts.party.validate_party_frozen_disabled + (party_type, party_name) +

        +

        No docs

        +
        +
        + + + + + + +

        diff --git a/erpnext/docs/current/api/controllers/erpnext.controllers.accounts_controller.html b/erpnext/docs/current/api/controllers/erpnext.controllers.accounts_controller.html index 78705e3ea8..79e4c046d2 100644 --- a/erpnext/docs/current/api/controllers/erpnext.controllers.accounts_controller.html +++ b/erpnext/docs/current/api/controllers/erpnext.controllers.accounts_controller.html @@ -54,20 +54,6 @@ -

        - - - before_recurring - (self) -

        -

        No docs

        -
        -
        - - - - -

        diff --git a/erpnext/docs/current/api/controllers/erpnext.controllers.recurring_document.html b/erpnext/docs/current/api/controllers/erpnext.controllers.recurring_document.html index b6ac163f05..172e191f05 100644 --- a/erpnext/docs/current/api/controllers/erpnext.controllers.recurring_document.html +++ b/erpnext/docs/current/api/controllers/erpnext.controllers.recurring_document.html @@ -85,7 +85,7 @@ erpnext.controllers.recurring_document.make_new_document - (ref_wrapper, date_field, posting_date) + (reference_doc, date_field, posting_date)

        No docs

        diff --git a/erpnext/docs/current/api/erpnext.exceptions.html b/erpnext/docs/current/api/erpnext.exceptions.html index 7c91646495..e8f5ee120d 100644 --- a/erpnext/docs/current/api/erpnext.exceptions.html +++ b/erpnext/docs/current/api/erpnext.exceptions.html @@ -15,21 +15,6 @@ -

        Class CustomerFrozen

        - -

        Inherits from frappe.exceptions.ValidationError - -

        -
        -
        - -
        -
        - - - - -

        Class InvalidAccountCurrency

        Inherits from frappe.exceptions.ValidationError @@ -58,6 +43,36 @@ + + +

        Class PartyDisabled

        + +

        Inherits from frappe.exceptions.ValidationError + +

        +
        +
        + +
        +
        + + + + + +

        Class PartyFrozen

        + +

        Inherits from frappe.exceptions.ValidationError + +

        +
        +
        + +
        +
        + + + \ No newline at end of file diff --git a/erpnext/docs/current/api/support/erpnext.support.html b/erpnext/docs/current/api/support/erpnext.support.html new file mode 100644 index 0000000000..d10ce6bf4f --- /dev/null +++ b/erpnext/docs/current/api/support/erpnext.support.html @@ -0,0 +1,18 @@ + + + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/api/support/index.html b/erpnext/docs/current/api/support/index.html new file mode 100644 index 0000000000..bcbe1c8fa0 --- /dev/null +++ b/erpnext/docs/current/api/support/index.html @@ -0,0 +1,19 @@ + + + + + +

        Package Contents

        + +{index} + + \ No newline at end of file diff --git a/erpnext/docs/current/api/support/index.txt b/erpnext/docs/current/api/support/index.txt new file mode 100644 index 0000000000..42739d16e9 --- /dev/null +++ b/erpnext/docs/current/api/support/index.txt @@ -0,0 +1 @@ +erpnext.support \ No newline at end of file diff --git a/erpnext/docs/current/api/utilities/erpnext.utilities.address_and_contact.html b/erpnext/docs/current/api/utilities/erpnext.utilities.address_and_contact.html new file mode 100644 index 0000000000..89c9c172e9 --- /dev/null +++ b/erpnext/docs/current/api/utilities/erpnext.utilities.address_and_contact.html @@ -0,0 +1,114 @@ + + + + + + + + + + +

        + + + erpnext.utilities.address_and_contact.get_permission_query_conditions + (doctype) +

        +

        No docs

        +
        +
        + + + + + + + +

        + + + erpnext.utilities.address_and_contact.get_permission_query_conditions_for_address + (user) +

        +

        No docs

        +
        +
        + + + + + + + +

        + + + erpnext.utilities.address_and_contact.get_permission_query_conditions_for_contact + (user) +

        +

        No docs

        +
        +
        + + + + + + + +

        + + + erpnext.utilities.address_and_contact.get_permitted_and_not_permitted_links + (doctype) +

        +

        No docs

        +
        +
        + + + + + + + +

        + + + erpnext.utilities.address_and_contact.has_permission + (doc, ptype, user) +

        +

        No docs

        +
        +
        + + + + + + + +

        + + + erpnext.utilities.address_and_contact.load_address_and_contact + (doc, key) +

        +

        Loads address list and contact list in __onload

        +
        +
        + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/api/utilities/erpnext.utilities.html b/erpnext/docs/current/api/utilities/erpnext.utilities.html new file mode 100644 index 0000000000..f2a4dc8d0a --- /dev/null +++ b/erpnext/docs/current/api/utilities/erpnext.utilities.html @@ -0,0 +1,34 @@ + + + + + + + + + + +

        + + + erpnext.utilities.update_doctypes + () +

        +

        No docs

        +
        +
        + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/api/utilities/erpnext.utilities.transaction_base.html b/erpnext/docs/current/api/utilities/erpnext.utilities.transaction_base.html new file mode 100644 index 0000000000..216cec5d11 --- /dev/null +++ b/erpnext/docs/current/api/utilities/erpnext.utilities.transaction_base.html @@ -0,0 +1,206 @@ + + + + + + + + +

        Class TransactionBase

        + +

        Inherits from erpnext.controllers.status_updater.StatusUpdater + +

        +
        +
        + + + + +

        + + + _add_calendar_event + (self, opts) +

        +

        No docs

        +
        +
        + + + + + +

        + + + add_calendar_event + (self, opts, force=False) +

        +

        No docs

        +
        +
        + + + + + +

        + + + compare_values + (self, ref_doc, fields, doc=None) +

        +

        No docs

        +
        +
        + + + + + +

        + + + delete_events + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + load_notification_message + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_posting_time + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_rate_with_reference_doc + (self, ref_details) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_uom_is_integer + (self, uom_field, qty_fields) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_with_previous_doc + (self, ref) +

        +

        No docs

        +
        +
        + + +
        +
        + + + + + +

        Class UOMMustBeIntegerError

        + +

        Inherits from frappe.exceptions.ValidationError + +

        +
        +
        + +
        +
        + + + + + + + +

        + + + erpnext.utilities.transaction_base.delete_events + (ref_type, ref_name) +

        +

        No docs

        +
        +
        + + + + + + + +

        + + + erpnext.utilities.transaction_base.validate_uom_is_integer + (doc, uom_field, qty_fields, child_dt=None) +

        +

        No docs

        +
        +
        + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/api/utilities/index.html b/erpnext/docs/current/api/utilities/index.html new file mode 100644 index 0000000000..12c76f3850 --- /dev/null +++ b/erpnext/docs/current/api/utilities/index.html @@ -0,0 +1,19 @@ + + + + + +

        Package Contents

        + +{index} + + \ No newline at end of file diff --git a/erpnext/docs/current/api/utilities/index.txt b/erpnext/docs/current/api/utilities/index.txt new file mode 100644 index 0000000000..86ae38fc1d --- /dev/null +++ b/erpnext/docs/current/api/utilities/index.txt @@ -0,0 +1,3 @@ +erpnext.utilities.address_and_contact +erpnext.utilities +erpnext.utilities.transaction_base \ No newline at end of file diff --git a/erpnext/docs/current/index.html b/erpnext/docs/current/index.html index 01071ee1e0..ec8d9545cd 100644 --- a/erpnext/docs/current/index.html +++ b/erpnext/docs/current/index.html @@ -35,7 +35,7 @@ Version - 6.17.0 + 6.18.4 diff --git a/erpnext/docs/current/models/accounts/period_closing_voucher.html b/erpnext/docs/current/models/accounts/period_closing_voucher.html index 1a3aac1fc8..c14226eed0 100644 --- a/erpnext/docs/current/models/accounts/period_closing_voucher.html +++ b/erpnext/docs/current/models/accounts/period_closing_voucher.html @@ -157,7 +157,7 @@ Closing Account Head

        - The account head under Liability or Equity, in which Profit/Loss will be booked

        + The account head under Liability, in which Profit/Loss will be booked

        diff --git a/erpnext/docs/current/models/accounts/purchase_invoice.html b/erpnext/docs/current/models/accounts/purchase_invoice.html index 1bdbcbf029..b75f10ab5e 100644 --- a/erpnext/docs/current/models/accounts/purchase_invoice.html +++ b/erpnext/docs/current/models/accounts/purchase_invoice.html @@ -1663,6 +1663,20 @@ Yearly +

        + + + on_recurring + (self, reference_doc) +

        +

        No docs

        +
        +
        + + + + +

        diff --git a/erpnext/docs/current/models/accounts/sales_invoice.html b/erpnext/docs/current/models/accounts/sales_invoice.html index 07e32122ec..8e62c404a9 100644 --- a/erpnext/docs/current/models/accounts/sales_invoice.html +++ b/erpnext/docs/current/models/accounts/sales_invoice.html @@ -2246,6 +2246,20 @@ Yearly +

        + + + on_recurring + (self, reference_doc) +

        +

        No docs

        +
        +
        + + + + +

        diff --git a/erpnext/docs/current/models/buying/purchase_order.html b/erpnext/docs/current/models/buying/purchase_order.html index c627191b0a..bafaa2e306 100644 --- a/erpnext/docs/current/models/buying/purchase_order.html +++ b/erpnext/docs/current/models/buying/purchase_order.html @@ -1537,20 +1537,6 @@ Yearly -

        - - - before_recurring - (self) -

        -

        No docs

        -
        -
        - - - - -

        diff --git a/erpnext/docs/current/models/buying/supplier.html b/erpnext/docs/current/models/buying/supplier.html index a4e2cd47de..9cabf70511 100644 --- a/erpnext/docs/current/models/buying/supplier.html +++ b/erpnext/docs/current/models/buying/supplier.html @@ -113,11 +113,11 @@ Supplier of Goods or Services. 6 - is_frozen + disabled Check - Is Frozen + Disabled @@ -177,8 +177,36 @@ Supplier of Goods or Services. - + 10 + section_credit_limit + + Section Break + + Credit Limit + + + + + + + 11 + credit_days_based_on + + Select + + Credit Days Based On + + + +

        +Fixed Days
        +Last Day of the Next Month
        + + + + + 12 credit_days Int @@ -190,7 +218,7 @@ Supplier of Goods or Services. - 11 + 13 address_contacts Section Break @@ -204,7 +232,7 @@ Supplier of Goods or Services. - 12 + 14 address_html HTML @@ -216,7 +244,7 @@ Supplier of Goods or Services. - 13 + 15 column_break1 Column Break @@ -228,7 +256,7 @@ Supplier of Goods or Services. - 14 + 16 contact_html HTML @@ -240,7 +268,7 @@ Supplier of Goods or Services. - 15 + 17 default_payable_accounts Section Break @@ -252,7 +280,7 @@ Supplier of Goods or Services. - 16 + 18 accounts Table @@ -274,19 +302,19 @@ Supplier of Goods or Services. - 17 + 19 column_break2 Section Break - Supplier Details + More Information - 18 + 20 website Data @@ -298,7 +326,7 @@ Supplier of Goods or Services. - 19 + 21 supplier_details Text @@ -310,6 +338,18 @@ Supplier of Goods or Services. + + 22 + is_frozen + + Check + + Is Frozen + + + + + diff --git a/erpnext/docs/current/models/selling/customer.html b/erpnext/docs/current/models/selling/customer.html index d1717968cc..c73547ad98 100644 --- a/erpnext/docs/current/models/selling/customer.html +++ b/erpnext/docs/current/models/selling/customer.html @@ -183,11 +183,11 @@ Individual 10 - is_frozen + disabled Check - Is Frozen + Disabled @@ -389,7 +389,7 @@ Last Day of the Next Month Section Break - Customer Details + More Information @@ -422,8 +422,20 @@ Last Day of the Next Month - + 27 + is_frozen + + Check + + Is Frozen + + + + + + + 28 sales_team_section_break Section Break @@ -437,7 +449,7 @@ Last Day of the Next Month - 28 + 29 default_sales_partner Link @@ -458,7 +470,7 @@ Last Day of the Next Month - 29 + 30 default_commission_rate Float @@ -470,7 +482,7 @@ Last Day of the Next Month - 30 + 31 sales_team_section Section Break @@ -482,7 +494,7 @@ Last Day of the Next Month - 31 + 32 sales_team Table diff --git a/erpnext/docs/current/models/selling/sales_order.html b/erpnext/docs/current/models/selling/sales_order.html index aadc66430f..229e8473cf 100644 --- a/erpnext/docs/current/models/selling/sales_order.html +++ b/erpnext/docs/current/models/selling/sales_order.html @@ -1803,6 +1803,20 @@ Yearly +

        + + + on_recurring + (self, reference_doc) +

        +

        No docs

        +
        +
        + + + + +

        diff --git a/erpnext/docs/current/models/setup/supplier_type.html b/erpnext/docs/current/models/setup/supplier_type.html index ee53252036..fc7bf9c125 100644 --- a/erpnext/docs/current/models/setup/supplier_type.html +++ b/erpnext/docs/current/models/setup/supplier_type.html @@ -50,8 +50,36 @@ - + 2 + section_credit_limit + + Section Break + + Credit Limit + + + + + + + 3 + credit_days_based_on + + Select + + Credit Days Based On + + + +

        +Fixed Days
        +Last Day of the Next Month
        + + + + + 4 credit_days Int @@ -63,7 +91,7 @@ - 3 + 5 default_payable_account Section Break @@ -75,7 +103,7 @@ - 4 + 6 accounts Table diff --git a/erpnext/docs/current/models/stock/material_request.html b/erpnext/docs/current/models/stock/material_request.html new file mode 100644 index 0000000000..e1fc54335b --- /dev/null +++ b/erpnext/docs/current/models/stock/material_request.html @@ -0,0 +1,723 @@ + + + + + + + + + + + + +

        Table Name: tabMaterial Request

        + + + + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1type_section + Section Break + + + +
        icon-pushpin
        +
        2title + Data + Title + +
        3material_request_type + Select + Type + + +
        Purchase
        +Material Transfer
        +Material Issue
        +
        4column_break_2 + Column Break + + +
        5naming_series + Select + Series + + +
        MREQ-
        +
        6amended_from + Link + Amended From + + + + + + +Material Request + + + +
        7company + Link + Company + + + + + + +Company + + + +
        8items_section + Section Break + + + +
        icon-shopping-cart
        +
        9items + Table + Items + + + + + + +Material Request Item + + + +
        10more_info + Section Break + More Information + + +
        icon-file-text
        +
        11requested_by + Data + Requested For + +
        12transaction_date + Date + Transaction Date + +
        13column_break2 + Column Break + + +
        14status + Select + Status + + +
        +Draft
        +Submitted
        +Stopped
        +Cancelled
        +
        15per_ordered + Percent + % Ordered + +
        16printing_details + Section Break + Printing Details + +
        17letter_head + Link + Letter Head + + + + + + +Letter Head + + + +
        18select_print_heading + Link + Print Heading + + + + + + +Print Heading + + + +
        19terms_section_break + Section Break + Terms and Conditions + + +
        icon-legal
        +
        20tc_name + Link + Terms + + + + + + +Terms and Conditions + + + +
        21terms + Text Editor + Terms and Conditions Content + +
        + + +
        +

        Controller

        +

        erpnext.stock.doctype.material_request.material_request

        + + + + + + + +

        Class MaterialRequest

        + +

        Inherits from erpnext.controllers.buying_controller.BuyingController + +

        +
        +
        + + + + +

        + + + check_if_already_pulled + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + check_modified_date + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + get_feed + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + on_cancel + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + on_submit + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + update_completed_qty + (self, mr_items=None) +

        +

        No docs

        +
        +
        + + + + + +

        + + + update_requested_qty + (self, mr_item_rows=None) +

        +

        update requested qty (before ordered_qty is updated)

        +
        +
        + + + + + +

        + + + update_status + (self, status) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_qty_against_so + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_schedule_date + (self) +

        +

        No docs

        +
        +
        + + +
        +
        + + + + + + + +

        + + + erpnext.stock.doctype.material_request.material_request.get_material_requests_based_on_supplier + (supplier) +

        +

        No docs

        +
        +
        + + + + + + +

        Public API +
        /api/method/erpnext.stock.doctype.material_request.material_request.make_purchase_order +

        +

        + + + erpnext.stock.doctype.material_request.material_request.make_purchase_order + (source_name, target_doc=None) +

        +

        No docs

        +
        +
        + + + + + + +

        Public API +
        /api/method/erpnext.stock.doctype.material_request.material_request.make_purchase_order_based_on_supplier +

        +

        + + + erpnext.stock.doctype.material_request.material_request.make_purchase_order_based_on_supplier + (source_name, target_doc=None) +

        +

        No docs

        +
        +
        + + + + + + +

        Public API +
        /api/method/erpnext.stock.doctype.material_request.material_request.make_stock_entry +

        +

        + + + erpnext.stock.doctype.material_request.material_request.make_stock_entry + (source_name, target_doc=None) +

        +

        No docs

        +
        +
        + + + + + + +

        Public API +
        /api/method/erpnext.stock.doctype.material_request.material_request.make_supplier_quotation +

        +

        + + + erpnext.stock.doctype.material_request.material_request.make_supplier_quotation + (source_name, target_doc=None) +

        +

        No docs

        +
        +
        + + + + + + + +

        + + + erpnext.stock.doctype.material_request.material_request.set_missing_values + (source, target_doc) +

        +

        No docs

        +
        +
        + + + + + + + +

        + + + erpnext.stock.doctype.material_request.material_request.update_completed_and_requested_qty + (stock_entry, method) +

        +

        No docs

        +
        +
        + + + + + + + +

        + + + erpnext.stock.doctype.material_request.material_request.update_item + (obj, target, source_parent) +

        +

        No docs

        +
        +
        + + + + + + +

        Linked In:

        + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/material_request_item.html b/erpnext/docs/current/models/stock/material_request_item.html new file mode 100644 index 0000000000..6cd1c81403 --- /dev/null +++ b/erpnext/docs/current/models/stock/material_request_item.html @@ -0,0 +1,407 @@ + + + + + + + + + +Child Table + + +

        Table Name: tabMaterial Request Item

        + + + + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1item_code + Link + Item Code + + + + + + +Item + + + +
        2col_break1 + Column Break + + +
        3item_name + Data + Item Name + +
        4section_break_4 + Section Break + Description + +
        5description + Text Editor + Description + +
        6column_break_6 + Column Break + + +
        7image + Attach + Image + +
        8image_view + Image + Image View + + +
        image
        +
        9quantity_and_warehouse + Section Break + Quantity and Warehouse + +
        10qty + Float + Quantity + +
        11uom + Link + Stock UOM + + + + + + +UOM + + + +
        12warehouse + Link + For Warehouse + + + + + + +Warehouse + + + +
        13col_break2 + Column Break + + +
        14schedule_date + Date + Required Date + +
        15more_info + Section Break + More Information + +
        16item_group + Link + Item Group + + + + + + +Item Group + + + +
        17brand + Link + Brand + + + + + + +Brand + + + +
        18lead_time_date + Date + Lead Time Date + +
        19sales_order_no + Link + Sales Order No + + + + + + +Sales Order + + + +
        20col_break3 + Column Break + + +
        21min_order_qty + Float + Min Order Qty + +
        22projected_qty + Float + Projected Qty + +
        23ordered_qty + Float + Completed Qty + +
        24page_break + Check + Page Break + +
        + + + + +

        Child Table Of

        + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/packed_item.html b/erpnext/docs/current/models/stock/packed_item.html new file mode 100644 index 0000000000..ef20be60f1 --- /dev/null +++ b/erpnext/docs/current/models/stock/packed_item.html @@ -0,0 +1,395 @@ + + + + + + + + + +Child Table + + +

        Table Name: tabPacked Item

        + + + + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1parent_item + Link + Parent Item + + + + + + +Item + + + +
        2item_code + Link + Item Code + + + + + + +Item + + + +
        3item_name + Data + Item Name + +
        4column_break_5 + Column Break + + +
        5description + Text Editor + Description + +
        6section_break_6 + Section Break + + +
        7warehouse + Link + From Warehouse + + + + + + +Warehouse + + + +
        8target_warehouse + Link + To Warehouse (Optional) + + + + + + +Warehouse + + + +
        9column_break_9 + Column Break + + +
        10qty + Float + Qty + +
        11section_break_9 + Section Break + + +
        12serial_no + Text + Serial No + +
        13column_break_11 + Column Break + + +
        14batch_no + Link + Batch No + + + + + + +Batch + + + +
        15section_break_13 + Section Break + + +
        16actual_qty + Float + Actual Qty + +
        17projected_qty + Float + Projected Qty + +
        18column_break_16 + Column Break + + +
        19uom + Link + UOM + + + + + + +UOM + + + +
        20page_break + Check + Page Break + +
        21prevdoc_doctype + Data + Prevdoc DocType + +
        22parent_detail_docname + Data + Parent Detail docname + +
        + + + + +

        Child Table Of

        + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/packing_slip.html b/erpnext/docs/current/models/stock/packing_slip.html new file mode 100644 index 0000000000..88c92b21a8 --- /dev/null +++ b/erpnext/docs/current/models/stock/packing_slip.html @@ -0,0 +1,592 @@ + + + + + + + + + + + + +

        Table Name: tabPacking Slip

        + + +Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight. + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1packing_slip_details + Section Break + + +
        2column_break0 + Column Break + + +
        3delivery_note + Link + Delivery Note +

        + Indicates that the package is a part of this delivery (Only Draft)

        +
        + + + + +Delivery Note + + + +
        4column_break1 + Column Break + + +
        5naming_series + Select + Series + + +
        PS-
        +
        6section_break0 + Section Break + + +
        7column_break2 + Column Break + + +
        8from_case_no + Data + From Package No. +

        + Identification of the package for the delivery (for print)

        +
        9column_break3 + Column Break + + +
        10to_case_no + Data + To Package No. +

        + If more than one package of the same type (for print)

        +
        11package_item_details + Section Break + + +
        12get_items + Button + Get Items + +
        13items + Table + Items + + + + + + +Packing Slip Item + + + +
        14package_weight_details + Section Break + Package Weight Details + +
        15net_weight_pkg + Float + Net Weight +

        + The net weight of this package. (calculated automatically as sum of net weight of items)

        +
        16net_weight_uom + Link + Net Weight UOM + + + + + + +UOM + + + +
        17column_break4 + Column Break + + +
        18gross_weight_pkg + Float + Gross Weight +

        + The gross weight of the package. Usually net weight + packaging material weight. (for print)

        +
        19gross_weight_uom + Link + Gross Weight UOM + + + + + + +UOM + + + +
        20letter_head_details + Section Break + Letter Head + +
        21letter_head + Link + Letter Head + + + + + + +Letter Head + + + +
        22misc_details + Section Break + + +
        23amended_from + Link + Amended From + + + + + + +Packing Slip + + + +
        + + +
        +

        Controller

        +

        erpnext.stock.doctype.packing_slip.packing_slip

        + + + + + + + +

        Class PackingSlip

        + +

        Inherits from frappe.model.document.Document + +

        +
        +
        + + + + +

        + + + get_details_for_packing + (self) +

        +

        Returns +* 'Delivery Note Items' query result as a list of dict +* Item Quantity dict of current packing slip doc +* No. of Cases of this packing slip

        +
        +
        + + + + + +

        + + + get_items + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + get_recommended_case_no + (self) +

        +

        Returns the next case no. for a new packing slip for a delivery +note

        +
        +
        + + + + + +

        + + + recommend_new_qty + (self, item, ps_item_qty, no_of_cases) +

        +

        Recommend a new quantity and raise a validation exception

        +
        +
        + + + + + +

        + + + update_item_details + (self) +

        +

        Fill empty columns in Packing Slip Item

        +
        +
        + + + + + +

        + + + validate + (self) +

        +
          +
        • Validate existence of submitted Delivery Note
        • +
        • Case nos do not overlap
        • +
        • Check if packed qty doesn't exceed actual qty of delivery note
        • +
        + +

        It is necessary to validate case nos before checking quantity

        +
        +
        + + + + + +

        + + + validate_case_nos + (self) +

        +

        Validate if case nos overlap. If they do, recommend next case no.

        +
        +
        + + + + + +

        + + + validate_delivery_note + (self) +

        +

        Validates if delivery note has status as draft

        +
        +
        + + + + + +

        + + + validate_items_mandatory + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_qty + (self) +

        +

        Check packed qty across packing slips and delivery note

        +
        +
        + + +
        +
        + + + + + + + +

        + + + erpnext.stock.doctype.packing_slip.packing_slip.item_details + (doctype, txt, searchfield, start, page_len, filters) +

        +

        No docs

        +
        +
        + + + + + + +

        Linked In:

        + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/packing_slip_item.html b/erpnext/docs/current/models/stock/packing_slip_item.html new file mode 100644 index 0000000000..a20375ce3d --- /dev/null +++ b/erpnext/docs/current/models/stock/packing_slip_item.html @@ -0,0 +1,219 @@ + + + + + + + + + +Child Table + + +

        Table Name: tabPacking Slip Item

        + + + + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1item_code + Link + Item Code + + + + + + +Item + + + +
        2item_name + Data + Item Name + +
        3batch_no + Link + Batch No + + + + + + +Batch + + + +
        4description + Text Editor + Description + +
        5qty + Float + Quantity + +
        6stock_uom + Link + UOM + + + + + + +UOM + + + +
        7net_weight + Float + Net Weight + +
        8weight_uom + Link + Weight UOM + + + + + + +UOM + + + +
        9page_break + Check + Page Break + +
        10dn_detail + Data + DN Detail + +
        + + + + +

        Child Table Of

        + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/price_list.html b/erpnext/docs/current/models/stock/price_list.html new file mode 100644 index 0000000000..60d5b2eabe --- /dev/null +++ b/erpnext/docs/current/models/stock/price_list.html @@ -0,0 +1,426 @@ + + + + + + + + + + + + +

        Table Name: tabPrice List

        + + +Price List Master + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1enabled + Check + Enabled + +
        2sb_1 + Section Break + + +
        3price_list_name + Data + Price List Name + +
        4currency + Link + Currency + + + + + + +Currency + + + +
        5buying + Check + Buying + +
        6selling + Check + Selling + +
        7column_break_3 + Column Break + + +
        8countries + Table + Applicable for Countries + + + + + + +Price List Country + + + +
        + + +
        +

        Controller

        +

        erpnext.stock.doctype.price_list.price_list

        + + + + + + + +

        Class PriceList

        + +

        Inherits from frappe.model.document.Document + +

        +
        +
        + + + + +

        + + + on_trash + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + on_update + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + set_default_if_missing + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + update_item_price + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate + (self) +

        +

        No docs

        +
        +
        + + +
        +
        + + + + + + +

        Linked In:

        + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/price_list_country.html b/erpnext/docs/current/models/stock/price_list_country.html new file mode 100644 index 0000000000..5e8f410d8d --- /dev/null +++ b/erpnext/docs/current/models/stock/price_list_country.html @@ -0,0 +1,84 @@ + + + + + + + + + +Child Table + + +

        Table Name: tabPrice List Country

        + + + + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1country + Link + Country + + + + + + +Country + + + +
        + + + + +

        Child Table Of

        + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/purchase_receipt_item.html b/erpnext/docs/current/models/stock/purchase_receipt_item.html new file mode 100644 index 0000000000..2404597bdf --- /dev/null +++ b/erpnext/docs/current/models/stock/purchase_receipt_item.html @@ -0,0 +1,999 @@ + + + + + + + + + +Child Table + + +

        Table Name: tabPurchase Receipt Item

        + + + + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1barcode + Data + Barcode + +
        2section_break_2 + Section Break + + +
        3item_code + Link + Item Code + + + + + + +Item + + + +
        4column_break_2 + Column Break + + +
        5item_name + Data + Item Name + +
        6section_break_4 + Section Break + Description + +
        7description + Text Editor + Description + +
        8col_break1 + Column Break + + +
        9image + Attach + Image + +
        10image_view + Image + Image View + + +
        image
        +
        11received_and_accepted + Section Break + Received and Accepted + +
        12received_qty + Float + Recd Quantity + +
        13qty + Float + Accepted Quantity + +
        14rejected_qty + Float + Rejected Quantity + +
        15col_break2 + Column Break + + +
        16uom + Link + UOM + + + + + + +UOM + + + +
        17stock_uom + Link + Stock UOM + + + + + + +UOM + + + +
        18conversion_factor + Float + Conversion Factor + +
        19rate_and_amount + Section Break + Rate and Amount + +
        20price_list_rate + Currency + Price List Rate + + +
        currency
        +
        21discount_percentage + Percent + Discount on Price List Rate (%) + +
        22col_break3 + Column Break + + +
        23base_price_list_rate + Currency + Price List Rate (Company Currency) + + +
        Company:company:default_currency
        +
        24sec_break1 + Section Break + + +
        25rate + Currency + Rate + + +
        currency
        +
        26amount + Currency + Amount + + +
        currency
        +
        27col_break4 + Column Break + + +
        28base_rate + Currency + Rate (Company Currency) + + +
        Company:company:default_currency
        +
        29base_amount + Currency + Amount (Company Currency) + + +
        Company:company:default_currency
        +
        30pricing_rule + Link + Pricing Rule + + + + + + +Pricing Rule + + + +
        31section_break_29 + Section Break + + +
        32net_rate + Currency + Net Rate + + +
        currency
        +
        33net_amount + Currency + Net Amount + + +
        currency
        +
        34column_break_32 + Column Break + + +
        35base_net_rate + Currency + Net Rate (Company Currency) + + +
        Company:company:default_currency
        +
        36base_net_amount + Currency + Net Amount (Company Currency) + + +
        Company:company:default_currency
        +
        37warehouse_and_reference + Section Break + Warehouse and Reference + +
        38warehouse + Link + Accepted Warehouse + + + + + + +Warehouse + + + +
        39rejected_warehouse + Link + Rejected Warehouse + + + + + + +Warehouse + + + +
        40qa_no + Link + Quality Inspection + + + + + + +Quality Inspection + + + +
        41column_break_40 + Column Break + + +
        42prevdoc_docname + Link + Purchase Order + + + + + + +Purchase Order + + + +
        43schedule_date + Date + Required By + +
        44stock_qty + Float + Qty as per Stock UOM + +
        45section_break_45 + Section Break + + +
        46serial_no + Text + Serial No + +
        47batch_no + Link + Batch No + + + + + + +Batch + + + +
        48column_break_48 + Column Break + + +
        49rejected_serial_no + Text + Rejected Serial No + +
        50section_break_50 + Section Break + + +
        51project_name + Link + Project Name + + + + + + +Project + + + +
        52cost_center + Link + Cost Center + + + + + + +Cost Center + + + +
        53prevdoc_doctype + Data + Prevdoc Doctype + +
        54prevdoc_detail_docname + Data + Purchase Order Item No + +
        55col_break5 + Column Break + + +
        56bom + Link + BOM + + + + + + +BOM + + + +
        57billed_amt + Currency + Billed Amt + +
        58landed_cost_voucher_amount + Currency + Landed Cost Voucher Amount + +
        59brand + Link + Brand + + + + + + +Brand + + + +
        60item_group + Link + Item Group + + + + + + +Item Group + + + +
        61rm_supp_cost + Currency + Raw Materials Supplied Cost + + +
        Company:company:default_currency
        +
        62item_tax_amount + Currency + Item Tax Amount + + +
        Company:company:default_currency
        +
        63valuation_rate + Currency + Valuation Rate + + +
        Company:company:default_currency
        +
        64item_tax_rate + Small Text + Item Tax Rate +

        + Tax detail table fetched from item master as a string and stored in this field. +Used for Taxes and Charges

        +
        65page_break + Check + Page Break + +
        + + + + +

        Child Table Of

        + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/serial_no.html b/erpnext/docs/current/models/stock/serial_no.html new file mode 100644 index 0000000000..2718310089 --- /dev/null +++ b/erpnext/docs/current/models/stock/serial_no.html @@ -0,0 +1,1110 @@ + + + + + + + + + + + + +

        Table Name: tabSerial No

        + + +Distinct unit of an Item + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1details + Section Break + + +
        2column_break0 + Column Break + + +
        3serial_no + Data + Serial No + +
        4item_code + Link + Item Code + + + + + + +Item + + + +
        5warehouse + Link + Warehouse +

        + Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt

        +
        + + + + +Warehouse + + + +
        6column_break1 + Column Break + + +
        7item_name + Data + Item Name + +
        8description + Text + Description + +
        9item_group + Link + Item Group + + + + + + +Item Group + + + +
        10brand + Link + Brand + + + + + + +Brand + + + +
        11purchase_details + Section Break + Purchase / Manufacture Details + +
        12column_break2 + Column Break + + +
        13purchase_document_type + Link + Creation Document Type + + + + + + +DocType + + + +
        14purchase_document_no + Dynamic Link + Creation Document No + + +
        purchase_document_type
        +
        15purchase_date + Date + Creation Date + +
        16purchase_time + Time + Creation Time + +
        17purchase_rate + Currency + Incoming Rate + + +
        Company:company:default_currency
        +
        18column_break3 + Column Break + + +
        19supplier + Link + Supplier + + + + + + +Supplier + + + +
        20supplier_name + Data + Supplier Name + +
        21delivery_details + Section Break + Delivery Details + +
        22delivery_document_type + Link + Delivery Document Type + + + + + + +DocType + + + +
        23delivery_document_no + Dynamic Link + Delivery Document No + + +
        delivery_document_type
        +
        24delivery_date + Date + Delivery Date + +
        25delivery_time + Time + Delivery Time + +
        26is_cancelled + Select + Is Cancelled + + +
        +Yes
        +No
        +
        27column_break5 + Column Break + + +
        28customer + Link + Customer + + + + + + +Customer + + + +
        29customer_name + Data + Customer Name + +
        30warranty_amc_details + Section Break + Warranty / AMC Details + +
        31column_break6 + Column Break + + +
        32maintenance_status + Select + Maintenance Status + + +
        +Under Warranty
        +Out of Warranty
        +Under AMC
        +Out of AMC
        +
        33warranty_period + Int + Warranty Period (Days) + +
        34column_break7 + Column Break + + +
        35warranty_expiry_date + Date + Warranty Expiry Date + +
        36amc_expiry_date + Date + AMC Expiry Date + +
        37more_info + Section Break + More Information + +
        38serial_no_details + Text Editor + Serial No Details + +
        39company + Link + Company + + + + + + +Company + + + +
        + + +
        +

        Controller

        +

        erpnext.stock.doctype.serial_no.serial_no

        + + + + + + + +

        Class SerialNo

        + +

        Inherits from erpnext.controllers.stock_controller.StockController + +

        +
        +
        + + + + +

        + + + __init__ + (self, arg1, arg2=None) +

        +

        No docs

        +
        +
        + + + + + +

        + + + after_rename + (self, old, new, merge=False) +

        +

        rename serial_no text fields

        +
        +
        + + + + + +

        + + + before_rename + (self, old, new, merge=False) +

        +

        No docs

        +
        +
        + + + + + +

        + + + get_last_sle + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + get_stock_ledger_entries + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + on_stock_ledger_entry + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + on_trash + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + set_maintenance_status + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + set_purchase_details + (self, purchase_sle) +

        +

        No docs

        +
        +
        + + + + + +

        + + + set_sales_details + (self, delivery_sle) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_item + (self) +

        +

        Validate whether serial no is required for this item

        +
        +
        + + + + + +

        + + + validate_warehouse + (self) +

        +

        No docs

        +
        +
        + + +
        +
        + + + + + +

        Class SerialNoCannotCannotChangeError

        + +

        Inherits from frappe.exceptions.ValidationError + +

        +
        +
        + +
        +
        + + + + + +

        Class SerialNoCannotCreateDirectError

        + +

        Inherits from frappe.exceptions.ValidationError + +

        +
        +
        + +
        +
        + + + + + +

        Class SerialNoDuplicateError

        + +

        Inherits from frappe.exceptions.ValidationError + +

        +
        +
        + +
        +
        + + + + + +

        Class SerialNoItemError

        + +

        Inherits from frappe.exceptions.ValidationError + +

        +
        +
        + +
        +
        + + + + + +

        Class SerialNoNotExistsError

        + +

        Inherits from frappe.exceptions.ValidationError + +

        +
        +
        + +
        +
        + + + + + +

        Class SerialNoNotRequiredError

        + +

        Inherits from frappe.exceptions.ValidationError + +

        +
        +
        + +
        +
        + + + + + +

        Class SerialNoQtyError

        + +

        Inherits from frappe.exceptions.ValidationError + +

        +
        +
        + +
        +
        + + + + + +

        Class SerialNoRequiredError

        + +

        Inherits from frappe.exceptions.ValidationError + +

        +
        +
        + +
        +
        + + + + + +

        Class SerialNoWarehouseError

        + +

        Inherits from frappe.exceptions.ValidationError + +

        +
        +
        + +
        +
        + + + + + + + +

        + + + erpnext.stock.doctype.serial_no.serial_no.allow_serial_nos_with_different_item + (sle_serial_no, sle) +

        +

        Allows same serial nos for raw materials and finished goods +in Manufacture / Repack type Stock Entry

        +
        +
        + + + + + + + +

        + + + erpnext.stock.doctype.serial_no.serial_no.get_item_details + (item_code) +

        +

        No docs

        +
        +
        + + + + + + + +

        + + + erpnext.stock.doctype.serial_no.serial_no.get_serial_nos + (serial_no) +

        +

        No docs

        +
        +
        + + + + + + + +

        + + + erpnext.stock.doctype.serial_no.serial_no.make_serial_no + (serial_no, sle) +

        +

        No docs

        +
        +
        + + + + + + + +

        + + + erpnext.stock.doctype.serial_no.serial_no.process_serial_no + (sle) +

        +

        No docs

        +
        +
        + + + + + + + +

        + + + erpnext.stock.doctype.serial_no.serial_no.update_serial_nos + (sle, item_det) +

        +

        No docs

        +
        +
        + + + + + + + +

        + + + erpnext.stock.doctype.serial_no.serial_no.update_serial_nos_after_submit + (controller, parentfield) +

        +

        No docs

        +
        +
        + + + + + + + +

        + + + erpnext.stock.doctype.serial_no.serial_no.validate_serial_no + (sle, item_det) +

        +

        No docs

        +
        +
        + + + + + + +

        Linked In:

        + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/stock_entry.html b/erpnext/docs/current/models/stock/stock_entry.html new file mode 100644 index 0000000000..29bc11e7bc --- /dev/null +++ b/erpnext/docs/current/models/stock/stock_entry.html @@ -0,0 +1,1617 @@ + + + + + + + + + + + + +

        Table Name: tabStock Entry

        + + + + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1items_section + Section Break + + +
        2title + Data + Title + +
        3naming_series + Select + Series + + +
        STE-
        +
        4purpose + Select + Purpose + + +
        Material Issue
        +Material Receipt
        +Material Transfer
        +Material Transfer for Manufacture
        +Manufacture
        +Repack
        +Subcontract
        +
        5production_order + Link + Production Order + + + + + + +Production Order + + + +
        6purchase_order + Link + Purchase Order + + + + + + +Purchase Order + + + +
        7delivery_note_no + Link + Delivery Note No + + + + + + +Delivery Note + + + +
        8sales_invoice_no + Link + Sales Invoice No + + + + + + +Sales Invoice + + + +
        9purchase_receipt_no + Link + Purchase Receipt No + + + + + + +Purchase Receipt + + + +
        10from_bom + Check + From BOM + +
        11col2 + Column Break + + +
        12posting_date + Date + Posting Date + +
        13posting_time + Time + Posting Time + +
        14sb1 + Section Break + + +
        15bom_no + Link + BOM No + + + + + + +BOM + + + +
        16fg_completed_qty + Float + For Quantity +

        + As per Stock UOM

        +
        17cb1 + Column Break + + +
        18use_multi_level_bom + Check + Use Multi-Level BOM +

        + Including items for sub assemblies

        +
        19get_items + Button + Get Items + +
        20section_break_12 + Section Break + + +
        21from_warehouse + Link + Default Source Warehouse + + + + + + +Warehouse + + + +
        22cb0 + Column Break + + +
        23to_warehouse + Link + Default Target Warehouse + + + + + + +Warehouse + + + +
        24sb0 + Section Break + + + +
        Simple
        +
        25items + Table + Items + + + + + + +Stock Entry Detail + + + +
        26get_stock_and_rate + Button + Update Rate and Availability + + +
        get_stock_and_rate
        +
        27section_break_19 + Section Break + + +
        28total_incoming_value + Currency + Total Incoming Value + + +
        Company:company:default_currency
        +
        29column_break_22 + Column Break + + +
        30total_outgoing_value + Currency + Total Outgoing Value + + +
        Company:company:default_currency
        +
        31value_difference + Currency + Total Value Difference (Out - In) + + +
        Company:company:default_currency
        +
        32difference_account + Link + Difference Account + + + + + + +Account + + + +
        33additional_costs_section + Section Break + Additional Costs + +
        34additional_costs + Table + Additional Costs + + + + + + +Landed Cost Taxes and Charges + + + +
        35total_additional_costs + Currency + Total Additional Costs + + +
        Company:company:default_currency
        +
        36contact_section + Section Break + Customer or Supplier Details + +
        37supplier + Link + Supplier + + + + + + +Supplier + + + +
        38supplier_name + Data + Supplier Name + +
        39supplier_address + Small Text + Supplier Address + +
        40column_break_39 + Column Break + + +
        41customer + Link + Customer + + + + + + +Customer + + + +
        42customer_name + Data + Customer Name + +
        43customer_address + Small Text + Customer Address + +
        44printing_settings + Section Break + Printing Settings + +
        45select_print_heading + Link + Print Heading + + + + + + +Print Heading + + + +
        46letter_head + Link + Letter Head + + + + + + +Letter Head + + + +
        47more_info + Section Break + More Information + +
        48project_name + Link + Project Name + + + + + + +Project + + + +
        49remarks + Text + Remarks + +
        50col5 + Column Break + + +
        51total_amount + Currency + Total Amount + + +
        Company:company:default_currency
        +
        52company + Link + Company + + + + + + +Company + + + +
        53fiscal_year + Link + Fiscal Year + + + + + + +Fiscal Year + + + +
        54amended_from + Link + Amended From + + + + + + +Stock Entry + + + +
        55credit_note + Link + Credit Note + + + + + + +Journal Entry + + + +
        + + +
        +

        Controller

        +

        erpnext.stock.doctype.stock_entry.stock_entry

        + + + + + + + +

        Class DuplicateEntryForProductionOrderError

        + +

        Inherits from frappe.exceptions.ValidationError + +

        +
        +
        + +
        +
        + + + + + +

        Class IncorrectValuationRateError

        + +

        Inherits from frappe.exceptions.ValidationError + +

        +
        +
        + +
        +
        + + + + + +

        Class OperationsNotCompleteError

        + +

        Inherits from frappe.exceptions.ValidationError + +

        +
        +
        + +
        +
        + + + + + +

        Class StockEntry

        + +

        Inherits from erpnext.controllers.stock_controller.StockController + +

        +
        +
        + + + + +

        + + + add_to_stock_entry_detail + (self, item_dict, bom_no=None) +

        +

        No docs

        +
        +
        + + + + + +

        + + + calculate_rate_and_amount + (self, force=False) +

        +

        No docs

        +
        +
        + + + + + +

        + + + check_duplicate_entry_for_production_order + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + check_if_operations_completed + (self) +

        +

        Check if Time Logs are completed against before manufacturing to capture operating costs.

        +
        +
        + + + + + +

        + + + distribute_additional_costs + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + get_bom_raw_materials + (self, qty) +

        +

        No docs

        +
        +
        + + + + + +

        + + + get_feed + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + get_gl_entries + (self, warehouse_account) +

        +

        No docs

        +
        +
        + + + + + +

        + + + get_issued_qty + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + get_item_details + (self, args=None, for_update=False) +

        +

        No docs

        +
        +
        + + + + + +

        + + + get_items + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + get_pending_raw_materials + (self) +

        +

        issue (item quantity) that is pending to issue or desire to transfer, +whichever is less

        +
        +
        + + + + + +

        + + + get_stock_and_rate + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + get_transfered_raw_materials + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + get_uom_details + (self, args) +

        +

        Returns dict {"conversion_factor": [value], "transfer_qty": qty * [value]}

        + +

        Parameters:

        + +
          +
        • args - dict with item_code, uom and qty
        • +
        +
        +
        + + + + + +

        + + + load_items_from_bom + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + on_cancel + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + on_submit + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + onload + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + set_actual_qty + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + set_basic_rate + (self, force=False) +

        +

        get stock and incoming rate on posting date

        +
        +
        + + + + + +

        + + + set_basic_rate_for_finished_goods + (self, raw_material_cost) +

        +

        No docs

        +
        +
        + + + + + +

        + + + set_total_amount + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + set_total_incoming_outgoing_value + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + set_transfer_qty + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + update_production_order + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + update_stock_ledger + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + update_valuation_rate + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_batch + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_bom + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_finished_goods + (self) +

        +

        validation: finished good quantity should be same as manufacturing quantity

        +
        +
        + + + + + +

        + + + validate_item + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_production_order + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_purchase_order + (self) +

        +

        Throw exception if more raw material is transferred against Purchase Order than in +the raw materials supplied table

        +
        +
        + + + + + +

        + + + validate_purpose + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_warehouse + (self) +

        +

        perform various (sometimes conditional) validations on warehouse

        +
        +
        + + + + + +

        + + + validate_with_material_request + (self) +

        +

        No docs

        +
        +
        + + +
        +
        + + + + + + + +

        + + + erpnext.stock.doctype.stock_entry.stock_entry.get_additional_costs + (production_order=None, bom_no=None, fg_qty=None) +

        +

        No docs

        +
        +
        + + + + + + + +

        + + + erpnext.stock.doctype.stock_entry.stock_entry.get_operating_cost_per_unit + (production_order=None, bom_no=None) +

        +

        No docs

        +
        +
        + + + + + + +

        Public API +
        /api/method/erpnext.stock.doctype.stock_entry.stock_entry.get_production_order_details +

        +

        + + + erpnext.stock.doctype.stock_entry.stock_entry.get_production_order_details + (production_order) +

        +

        No docs

        +
        +
        + + + + + + +

        Public API +
        /api/method/erpnext.stock.doctype.stock_entry.stock_entry.get_warehouse_details +

        +

        + + + erpnext.stock.doctype.stock_entry.stock_entry.get_warehouse_details + (args) +

        +

        No docs

        +
        +
        + + + + + + +

        Linked In:

        + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/stock_entry_detail.html b/erpnext/docs/current/models/stock/stock_entry_detail.html new file mode 100644 index 0000000000..a4ef6c0e5c --- /dev/null +++ b/erpnext/docs/current/models/stock/stock_entry_detail.html @@ -0,0 +1,656 @@ + + + + + + + + + +Child Table + + +

        Table Name: tabStock Entry Detail

        + + + + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1barcode + Data + Barcode + +
        2section_break_2 + Section Break + + +
        3s_warehouse + Link + Source Warehouse + + + + + + +Warehouse + + + +
        4col_break1 + Column Break + + +
        5t_warehouse + Link + Target Warehouse + + + + + + +Warehouse + + + +
        6sec_break1 + Section Break + + +
        7item_code + Link + Item Code + + + + + + +Item + + + +
        8col_break2 + Column Break + + +
        9item_name + Data + Item Name + +
        10section_break_8 + Section Break + Description + +
        11description + Text Editor + Description + +
        12column_break_10 + Column Break + + +
        13image + Attach + Image + +
        14image_view + Image + Image View + + +
        image
        +
        15quantity_and_rate + Section Break + Quantity and Rate + +
        16qty + Float + Qty + +
        17basic_rate + Currency + Basic Rate (as per Stock UOM) + + +
        Company:company:default_currency
        +
        18basic_amount + Currency + Basic Amount + + +
        Company:company:default_currency
        +
        19additional_cost + Currency + Additional Cost + + +
        Company:company:default_currency
        +
        20amount + Currency + Amount + + +
        Company:company:default_currency
        +
        21valuation_rate + Currency + Valuation Rate + + +
        Company:company:default_currency
        +
        22col_break3 + Column Break + + +
        23uom + Link + UOM + + + + + + +UOM + + + +
        24conversion_factor + Float + Conversion Factor + +
        25stock_uom + Link + Stock UOM + + + + + + +UOM + + + +
        26transfer_qty + Float + Qty as per Stock UOM + +
        27serial_no_batch + Section Break + Serial No / Batch + +
        28serial_no + Text + Serial No + +
        29col_break4 + Column Break + + +
        30batch_no + Link + Batch No + + + + + + +Batch + + + +
        31accounting + Section Break + Accounting + +
        32expense_account + Link + Difference Account + + + + + + +Account + + + +
        33col_break5 + Column Break + + +
        34cost_center + Link + Cost Center + + + + + + +Cost Center + + + +
        35more_info + Section Break + More Information + +
        36actual_qty + Float + Actual Qty (at source/target) + +
        37bom_no + Link + BOM No +

        + BOM No. for a Finished Good Item

        +
        + + + + +BOM + + + +
        38col_break6 + Column Break + + +
        39material_request + Link + Material Request +

        + Material Request used to make this Stock Entry

        +
        + + + + +Material Request + + + +
        40material_request_item + Link + Material Request Item + + + + + + +Material Request Item + + + +
        + + + + +

        Child Table Of

        + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/stock_ledger_entry.html b/erpnext/docs/current/models/stock/stock_ledger_entry.html new file mode 100644 index 0000000000..0ddd997efc --- /dev/null +++ b/erpnext/docs/current/models/stock/stock_ledger_entry.html @@ -0,0 +1,552 @@ + + + + + + + + + + + + +

        Table Name: tabStock Ledger Entry

        + + + + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1item_code + Link + Item Code + + + + + + +Item + + + +
        2serial_no + Text + Serial No + +
        3batch_no + Data + Batch No + +
        4warehouse + Link + Warehouse + + + + + + +Warehouse + + + +
        5posting_date + Date + Posting Date + +
        6posting_time + Time + Posting Time + +
        7voucher_type + Link + Voucher Type + + + + + + +DocType + + + +
        8voucher_no + Dynamic Link + Voucher No + + +
        voucher_type
        +
        9voucher_detail_no + Data + Voucher Detail No + +
        10actual_qty + Float + Actual Quantity + +
        11incoming_rate + Currency + Incoming Rate + + +
        Company:company:default_currency
        +
        12outgoing_rate + Currency + Outgoing Rate + + +
        Company:company:default_currency
        +
        13stock_uom + Link + Stock UOM + + + + + + +UOM + + + +
        14qty_after_transaction + Float + Actual Qty After Transaction + +
        15valuation_rate + Currency + Valuation Rate + + +
        Company:company:default_currency
        +
        16stock_value + Currency + Stock Value + + +
        Company:company:default_currency
        +
        17stock_value_difference + Currency + Stock Value Difference + + +
        Company:company:default_currency
        +
        18stock_queue + Text + Stock Queue (FIFO) + +
        19project + Link + Project + + + + + + +Project + + + +
        20company + Link + Company + + + + + + +Company + + + +
        21fiscal_year + Data + Fiscal Year + +
        22is_cancelled + Select + Is Cancelled + + +
        +No
        +Yes
        +
        + + +
        +

        Controller

        +

        erpnext.stock.doctype.stock_ledger_entry.stock_ledger_entry

        + + + + + + + +

        Class StockFreezeError

        + +

        Inherits from frappe.exceptions.ValidationError + +

        +
        +
        + +
        +
        + + + + + +

        Class StockLedgerEntry

        + +

        Inherits from frappe.model.document.Document + +

        +
        +
        + + + + +

        + + + actual_amt_check + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + check_stock_frozen_date + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + on_submit + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + scrub_posting_time + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_batch + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_item + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_mandatory + (self) +

        +

        No docs

        +
        +
        + + +
        +
        + + + + + + + +

        + + + erpnext.stock.doctype.stock_ledger_entry.stock_ledger_entry.on_doctype_update + () +

        +

        No docs

        +
        +
        + + + + + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/stock_reconciliation.html b/erpnext/docs/current/models/stock/stock_reconciliation.html new file mode 100644 index 0000000000..12be09c2eb --- /dev/null +++ b/erpnext/docs/current/models/stock/stock_reconciliation.html @@ -0,0 +1,589 @@ + + + + + + + + + + + + +

        Table Name: tabStock Reconciliation

        + + +This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses. + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1posting_date + Date + Posting Date + +
        2posting_time + Time + Posting Time + +
        3col1 + Column Break + + +
        4amended_from + Link + Amended From + + + + + + +Stock Reconciliation + + + +
        5company + Link + Company + + + + + + +Company + + + +
        6sb9 + Section Break + + +
        7items + Table + Items + + + + + + +Stock Reconciliation Item + + + +
        8section_break_9 + Section Break + + +
        9expense_account + Link + Difference Account + + + + + + +Account + + + +
        10cost_center + Link + Cost Center + + + + + + +Cost Center + + + +
        11reconciliation_json + Long Text + Reconciliation JSON + +
        12column_break_13 + Column Break + + +
        13difference_amount + Currency + Difference Amount + +
        14fold_15 + Fold + + +
        15section_break_16 + Section Break + + +
        16fiscal_year + Link + Fiscal Year + + + + + + +Fiscal Year + + + +
        + + +
        +

        Controller

        +

        erpnext.stock.doctype.stock_reconciliation.stock_reconciliation

        + + + + + + + +

        Class EmptyStockReconciliationItemsError

        + +

        Inherits from frappe.exceptions.ValidationError + +

        +
        +
        + +
        +
        + + + + + +

        Class OpeningEntryAccountError

        + +

        Inherits from frappe.exceptions.ValidationError + +

        +
        +
        + +
        +
        + + + + + +

        Class StockReconciliation

        + +

        Inherits from erpnext.controllers.stock_controller.StockController + +

        +
        +
        + + + + +

        + + + __init__ + (self, arg1, arg2=None) +

        +

        No docs

        +
        +
        + + + + + +

        + + + delete_and_repost_sle + (self) +

        +
        Delete Stock Ledger Entries related to this voucher
        +
        + +

        and repost future Stock Ledger Entries

        +
        +
        + + + + + +

        + + + get_gl_entries + (self, warehouse_account=None) +

        +

        No docs

        +
        +
        + + + + + +

        + + + get_items_for + (self, warehouse) +

        +

        No docs

        +
        +
        + + + + + +

        + + + insert_entries + (self, row) +

        +

        Insert Stock Ledger Entries

        +
        +
        + + + + + +

        + + + on_cancel + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + on_submit + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + remove_items_with_no_change + (self) +

        +

        Remove items if qty or rate is not changed

        +
        +
        + + + + + +

        + + + update_stock_ledger + (self) +

        +
        find difference between current and expected entries
        +
        + +

        and create stock ledger entries based on the difference

        +
        +
        + + + + + +

        + + + validate + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_data + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_expense_account + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_item + (self, item_code, row_num) +

        +

        No docs

        +
        +
        + + +
        +
        + + + + + + +

        Public API +
        /api/method/erpnext.stock.doctype.stock_reconciliation.stock_reconciliation.get_items +

        +

        + + + erpnext.stock.doctype.stock_reconciliation.stock_reconciliation.get_items + (warehouse, posting_date, posting_time) +

        +

        No docs

        +
        +
        + + + + + + +

        Public API +
        /api/method/erpnext.stock.doctype.stock_reconciliation.stock_reconciliation.get_stock_balance_for +

        +

        + + + erpnext.stock.doctype.stock_reconciliation.stock_reconciliation.get_stock_balance_for + (item_code, warehouse, posting_date, posting_time) +

        +

        No docs

        +
        +
        + + + + + + +

        Linked In:

        + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/stock_reconciliation_item.html b/erpnext/docs/current/models/stock/stock_reconciliation_item.html new file mode 100644 index 0000000000..701bbde26f --- /dev/null +++ b/erpnext/docs/current/models/stock/stock_reconciliation_item.html @@ -0,0 +1,179 @@ + + + + + + + + + +Child Table + + +

        Table Name: tabStock Reconciliation Item

        + + + + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1item_code + Link + Item Code + + + + + + +Item + + + +
        2warehouse + Link + Warehouse + + + + + + +Warehouse + + + +
        3section_break_3 + Section Break + + +
        4qty + Float + Quantity + +
        5valuation_rate + Currency + Valuation Rate + +
        6column_break_6 + Column Break + + +
        7current_qty + Float + Current Qty +

        + Before reconciliation

        +
        8current_valuation_rate + Read Only + Current Valuation Rate +

        + Before reconciliation

        +
        + + + + +

        Child Table Of

        + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/stock_settings.html b/erpnext/docs/current/models/stock/stock_settings.html new file mode 100644 index 0000000000..548ef57685 --- /dev/null +++ b/erpnext/docs/current/models/stock/stock_settings.html @@ -0,0 +1,337 @@ + + + + + + + + +Single + + + + +Settings + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1item_naming_by + Select + Item Naming By + + +
        Item Code
        +Naming Series
        +
        2item_group + Link + Default Item Group + + + + + + +Item Group + + + +
        3stock_uom + Link + Default Stock UOM + + + + + + +UOM + + + +
        4column_break_4 + Column Break + + +
        5valuation_method + Select + Default Valuation Method + + +
        FIFO
        +Moving Average
        +
        6tolerance + Float + Allowance Percent +

        + Percentage you are allowed to receive or deliver more against the quantity ordered. For example: If you have ordered 100 units. and your Allowance is 10% then you are allowed to receive 110 units.

        +
        7section_break_7 + Section Break + + +
        8auto_insert_price_list_rate_if_missing + Check + Auto insert Price List rate if missing + +
        9allow_negative_stock + Check + Allow Negative Stock + +
        10column_break_10 + Column Break + + +
        11automatically_set_serial_nos_based_on_fifo + Check + Automatically Set Serial Nos based on FIFO + +
        12auto_material_request + Section Break + Auto Material Request + +
        13auto_indent + Check + Raise Material Request when stock reaches re-order level + +
        14reorder_email_notify + Check + Notify by Email on creation of automatic Material Request + +
        15freeze_stock_entries + Section Break + Freeze Stock Entries + +
        16stock_frozen_upto + Date + Stock Frozen Upto + +
        17stock_frozen_upto_days + Int + Freeze Stocks Older Than [Days] + +
        18stock_auth_role + Link + Role Allowed to edit frozen stock + + + + + + +Role + + + +
        + + +
        +

        Controller

        +

        erpnext.stock.doctype.stock_settings.stock_settings

        + + + + + + + +

        Class StockSettings

        + +

        Inherits from frappe.model.document.Document + +

        +
        +
        + + + + +

        + + + validate + (self) +

        +

        No docs

        +
        +
        + + +
        +
        + + + + + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/uom_conversion_detail.html b/erpnext/docs/current/models/stock/uom_conversion_detail.html new file mode 100644 index 0000000000..f6c26f85b1 --- /dev/null +++ b/erpnext/docs/current/models/stock/uom_conversion_detail.html @@ -0,0 +1,96 @@ + + + + + + + + + +Child Table + + +

        Table Name: tabUOM Conversion Detail

        + + + + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1uom + Link + UOM + + + + + + +UOM + + + +
        2conversion_factor + Float + Conversion Factor + +
        + + + + +

        Child Table Of

        +
          + +
        • + + +Item + +
        • + +
        + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/stock/warehouse.html b/erpnext/docs/current/models/stock/warehouse.html new file mode 100644 index 0000000000..c0fa5d3d6b --- /dev/null +++ b/erpnext/docs/current/models/stock/warehouse.html @@ -0,0 +1,682 @@ + + + + + + + + + + + + +

        Table Name: tabWarehouse

        + + +A logical Warehouse against which stock entries are made. + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1warehouse_detail + Section Break + Warehouse Detail + +
        2warehouse_name + Data + Warehouse Name + +
        3company + Link + Company + + + + + + +Company + + + +
        4create_account_under + Link + Parent Account +

        + Account for the warehouse (Perpetual Inventory) will be created under this Account.

        +
        + + + + +Account + + + +
        5disabled + Check + Disabled + +
        6warehouse_contact_info + Section Break + Warehouse Contact Info +

        + For Reference Only.

        +
        7email_id + Data + Email Id + +
        8phone_no + Data + Phone No + + +
        Phone
        +
        9mobile_no + Data + Mobile No + + +
        Phone
        +
        10column_break0 + Column Break + + +
        11address_line_1 + Data + Address Line 1 + +
        12address_line_2 + Data + Address Line 2 + +
        13city + Data + City + +
        14state + Data + State + +
        15pin + Int + PIN + +
        + + +
        +

        Controller

        +

        erpnext.stock.doctype.warehouse.warehouse

        + + + + + + + +

        Class Warehouse

        + +

        Inherits from frappe.model.document.Document + +

        +
        +
        + + + + +

        + + + add_abbr_if_missing + (self, dn) +

        +

        No docs

        +
        +
        + + + + + +

        + + + after_rename + (self, olddn, newdn, merge=False) +

        +

        No docs

        +
        +
        + + + + + +

        + + + autoname + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + before_rename + (self, olddn, newdn, merge=False) +

        +

        No docs

        +
        +
        + + + + + +

        + + + create_account_head + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + get_account + (self, warehouse) +

        +

        No docs

        +
        +
        + + + + + +

        + + + on_trash + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + on_update + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + recalculate_bin_qty + (self, newdn) +

        +

        No docs

        +
        +
        + + + + + +

        + + + rename_account_for + (self, olddn, newdn, merge) +

        +

        No docs

        +
        +
        + + + + + +

        + + + update_parent_account + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_parent_account + (self) +

        +

        No docs

        +
        +
        + + +
        +
        + + + + + + +

        Linked In:

        + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/support/index.html b/erpnext/docs/current/models/support/index.html new file mode 100644 index 0000000000..c72134dab5 --- /dev/null +++ b/erpnext/docs/current/models/support/index.html @@ -0,0 +1,19 @@ + + + + + +

        DocTypes for support

        + +{index} + + \ No newline at end of file diff --git a/erpnext/docs/current/models/support/index.txt b/erpnext/docs/current/models/support/index.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/erpnext/docs/current/models/support/issue.html b/erpnext/docs/current/models/support/issue.html new file mode 100644 index 0000000000..82f29b53b5 --- /dev/null +++ b/erpnext/docs/current/models/support/issue.html @@ -0,0 +1,592 @@ + + + + + + + + + + + + +

        Table Name: tabIssue

        + + + + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1subject_section + Section Break + Subject + + +
        icon-flag
        +
        2naming_series + Select + Series + + +
        ISS-
        +
        3subject + Data + Subject + +
        4cb00 + Column Break + + +
        5status + Select + Status + + +
        Open
        +Replied
        +Hold
        +Closed
        +
        6raised_by + Data + Raised By (Email) + + +
        Email
        +
        7fold + Fold + + +
        8section_break_7 + Section Break + + +
        9description + Text + Description + +
        10column_break_9 + Column Break + + +
        11resolution_date + Datetime + Resolution Date + +
        12first_responded_on + Datetime + First Responded On + +
        13additional_info + Section Break + + + +
        icon-pushpin
        +
        14lead + Link + Lead + + + + + + +Lead + + + +
        15contact + Link + Contact + + + + + + +Contact + + + +
        16column_break_16 + Column Break + + +
        17customer + Link + Customer + + + + + + +Customer + + + +
        18customer_name + Data + Customer Name + +
        19section_break_19 + Section Break + + +
        20resolution_details + Small Text + Resolution Details + +
        21column_break1 + Column Break + + +
        22opening_date + Date + Opening Date + +
        23opening_time + Time + Opening Time + +
        24company + Link + Company + + + + + + +Company + + + +
        25content_type + Data + Content Type + +
        26attachment + Attach + Attachment + +
        + + +
        +

        Controller

        +

        erpnext.support.doctype.issue.issue

        + + + + + + + +

        Class Issue

        + +

        Inherits from frappe.model.document.Document + +

        +
        +
        + + + + +

        + + + get_feed + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + set_lead_contact + (self, email_id) +

        +

        No docs

        +
        +
        + + + + + +

        + + + update_status + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate + (self) +

        +

        No docs

        +
        +
        + + +
        +
        + + + + + + + +

        + + + erpnext.support.doctype.issue.issue.auto_close_tickets + () +

        +

        No docs

        +
        +
        + + + + + + + +

        + + + erpnext.support.doctype.issue.issue.get_issue_list + (doctype, txt, filters, limit_start, limit_page_length=20) +

        +

        No docs

        +
        +
        + + + + + + + +

        + + + erpnext.support.doctype.issue.issue.get_list_context + (context=None) +

        +

        No docs

        +
        +
        + + + + + + + +

        + + + erpnext.support.doctype.issue.issue.has_website_permission + (doc, ptype, user, verbose=False) +

        +

        No docs

        +
        +
        + + + + + + +

        Public API +
        /api/method/erpnext.support.doctype.issue.issue.set_multiple_status +

        +

        + + + erpnext.support.doctype.issue.issue.set_multiple_status + (names, status) +

        +

        No docs

        +
        +
        + + + + + + +

        Public API +
        /api/method/erpnext.support.doctype.issue.issue.set_status +

        +

        + + + erpnext.support.doctype.issue.issue.set_status + (name, status) +

        +

        No docs

        +
        +
        + + + + + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/support/maintenance_schedule.html b/erpnext/docs/current/models/support/maintenance_schedule.html new file mode 100644 index 0000000000..fd245b09e0 --- /dev/null +++ b/erpnext/docs/current/models/support/maintenance_schedule.html @@ -0,0 +1,685 @@ + + + + + + + + + + + + +

        Table Name: tabMaintenance Schedule

        + + + + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1customer_details + Section Break + + + +
        icon-user
        +
        2customer + Link + Customer + + + + + + +Customer + + + +
        3column_break0 + Column Break + + +
        4status + Select + Status + + +
        +Draft
        +Submitted
        +Cancelled
        +
        5transaction_date + Date + Transaction Date + +
        6items_section + Section Break + + + +
        icon-shopping-cart
        +
        7items + Table + Items + + + + + + +Maintenance Schedule Item + + + +
        8schedule + Section Break + Schedule + + +
        icon-time
        +
        9generate_schedule + Button + Generate Schedule + +
        10schedules + Table + Schedules + + + + + + +Maintenance Schedule Detail + + + +
        11contact_info + Section Break + Contact Info + +
        12customer_name + Data + Customer Name + +
        13contact_person + Link + Contact Person + + + + + + +Contact + + + +
        14contact_mobile + Data + Mobile No + +
        15contact_email + Data + Contact Email + +
        16contact_display + Small Text + Contact + +
        17column_break_17 + Column Break + + +
        18customer_address + Link + Customer Address + + + + + + +Address + + + +
        19address_display + Small Text + Address + +
        20territory + Link + Territory + + + + + + +Territory + + + +
        21customer_group + Link + Customer Group + + + + + + +Customer Group + + + +
        22company + Link + Company + + + + + + +Company + + + +
        23amended_from + Link + Amended From + + + + + + +Maintenance Schedule + + + +
        + + +
        +

        Controller

        +

        erpnext.support.doctype.maintenance_schedule.maintenance_schedule

        + + + + + + + +

        Class MaintenanceSchedule

        + +

        Inherits from erpnext.utilities.transaction_base.TransactionBase + +

        +
        +
        + + + + +

        + + + check_serial_no_added + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + create_schedule_list + (self, start_date, end_date, no_of_visit, sales_person) +

        +

        No docs

        +
        +
        + + + + + +

        + + + generate_schedule + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + on_cancel + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + on_submit + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + on_trash + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + on_update + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + update_amc_date + (self, serial_nos, amc_expiry_date=None) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_dates_with_periodicity + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_maintenance_detail + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_sales_order + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_schedule + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_schedule_date_for_holiday_list + (self, schedule_date, sales_person) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_serial_no + (self, serial_nos, amc_start_date) +

        +

        No docs

        +
        +
        + + +
        +
        + + + + + + +

        Public API +
        /api/method/erpnext.support.doctype.maintenance_schedule.maintenance_schedule.make_maintenance_visit +

        +

        + + + erpnext.support.doctype.maintenance_schedule.maintenance_schedule.make_maintenance_visit + (source_name, target_doc=None) +

        +

        No docs

        +
        +
        + + + + + + +

        Linked In:

        + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/support/maintenance_schedule_detail.html b/erpnext/docs/current/models/support/maintenance_schedule_detail.html new file mode 100644 index 0000000000..70402e1949 --- /dev/null +++ b/erpnext/docs/current/models/support/maintenance_schedule_detail.html @@ -0,0 +1,153 @@ + + + + + + + + + +Child Table + + +

        Table Name: tabMaintenance Schedule Detail

        + + + + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1item_code + Link + Item Code + + + + + + +Item + + + +
        2item_name + Data + Item Name + +
        3scheduled_date + Date + Scheduled Date + +
        4actual_date + Date + Actual Date + +
        5sales_person + Link + Sales Person + + + + + + +Sales Person + + + +
        6serial_no + Small Text + Serial No + +
        + + + + +

        Child Table Of

        + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/support/maintenance_schedule_item.html b/erpnext/docs/current/models/support/maintenance_schedule_item.html new file mode 100644 index 0000000000..714bc83286 --- /dev/null +++ b/erpnext/docs/current/models/support/maintenance_schedule_item.html @@ -0,0 +1,233 @@ + + + + + + + + + +Child Table + + +

        Table Name: tabMaintenance Schedule Item

        + + + + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1item_code + Link + Item Code + + + + + + +Item + + + +
        2item_name + Data + Item Name + +
        3description + Data + Description + +
        4schedule_details + Section Break + + +
        5start_date + Date + Start Date + +
        6end_date + Date + End Date + +
        7periodicity + Select + Periodicity + + +
        +Weekly
        +Monthly
        +Quarterly
        +Half Yearly
        +Yearly
        +Random
        +
        8no_of_visits + Int + No of Visits + +
        9sales_person + Link + Sales Person + + + + + + +Sales Person + + + +
        10reference + Section Break + Reference + +
        11serial_no + Small Text + Serial No + +
        12prevdoc_docname + Data + Against Docname + +
        + + + + +

        Child Table Of

        + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/support/maintenance_visit.html b/erpnext/docs/current/models/support/maintenance_visit.html new file mode 100644 index 0000000000..d5c4aae28d --- /dev/null +++ b/erpnext/docs/current/models/support/maintenance_visit.html @@ -0,0 +1,666 @@ + + + + + + + + + + + + +

        Table Name: tabMaintenance Visit

        + + + + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1customer_details + Section Break + + + +
        icon-user
        +
        2column_break0 + Column Break + + +
        3customer + Link + Customer + + + + + + +Customer + + + +
        4customer_name + Data + Customer Name + +
        5address_display + Small Text + Address + +
        6contact_display + Small Text + Contact + +
        7contact_mobile + Data + Mobile No + +
        8contact_email + Data + Contact Email + +
        9column_break1 + Column Break + + +
        10mntc_date + Date + Maintenance Date + +
        11mntc_time + Time + Maintenance Time + +
        12maintenance_details + Section Break + + + +
        icon-wrench
        +
        13completion_status + Select + Completion Status + + +
        +Partially Completed
        +Fully Completed
        +
        14column_break_14 + Column Break + + +
        15maintenance_type + Select + Maintenance Type + + +
        +Scheduled
        +Unscheduled
        +Breakdown
        +
        16section_break0 + Section Break + + + +
        icon-wrench
        +
        17purposes + Table + Purposes + + + + + + +Maintenance Visit Purpose + + + +
        18more_info + Section Break + More Information + + +
        icon-file-text
        +
        19customer_feedback + Small Text + Customer Feedback + +
        20col_break3 + Column Break + + +
        21status + Data + Status + + +
        +Draft
        +Cancelled
        +Submitted
        +
        22amended_from + Link + Amended From + + + + + + +Maintenance Visit + + + +
        23company + Link + Company + + + + + + +Company + + + +
        24fiscal_year + Link + Fiscal Year + + + + + + +Fiscal Year + + + +
        25contact_info_section + Section Break + Contact Info + + +
        icon-bullhorn
        +
        26customer_address + Link + Customer Address + + + + + + +Address + + + +
        27contact_person + Link + Contact Person + + + + + + +Contact + + + +
        28col_break4 + Column Break + + +
        29territory + Link + Territory + + + + + + +Territory + + + +
        30customer_group + Link + Customer Group + + + + + + +Customer Group + + + +
        + + +
        +

        Controller

        +

        erpnext.support.doctype.maintenance_visit.maintenance_visit

        + + + + + + + +

        Class MaintenanceVisit

        + +

        Inherits from erpnext.utilities.transaction_base.TransactionBase + +

        +
        +
        + + + + +

        + + + check_if_last_visit + (self) +

        +

        check if last maintenance visit against same sales order/ Warranty Claim

        +
        +
        + + + + + +

        + + + get_feed + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + on_cancel + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + on_submit + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + on_update + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + update_customer_issue + (self, flag) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_serial_no + (self) +

        +

        No docs

        +
        +
        + + +
        +
        + + + + + + +

        Linked In:

        + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/support/maintenance_visit_purpose.html b/erpnext/docs/current/models/support/maintenance_visit_purpose.html new file mode 100644 index 0000000000..0dbad3685c --- /dev/null +++ b/erpnext/docs/current/models/support/maintenance_visit_purpose.html @@ -0,0 +1,212 @@ + + + + + + + + + +Child Table + + +

        Table Name: tabMaintenance Visit Purpose

        + + + + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1item_code + Link + Item Code + + + + + + +Item + + + +
        2item_name + Data + Item Name + +
        3serial_no + Small Text + Serial No + +
        4description + Text Editor + Description + +
        5work_details + Section Break + + +
        6service_person + Link + Sales Person + + + + + + +Sales Person + + + +
        7work_done + Small Text + Work Done + +
        8prevdoc_doctype + Link + Document Type + + + + + + +DocType + + + +
        9prevdoc_docname + Dynamic Link + Against Document No + + +
        prevdoc_doctype
        +
        10prevdoc_detail_docname + Data + Against Document Detail No + +
        + + + + +

        Child Table Of

        + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/support/warranty_claim.html b/erpnext/docs/current/models/support/warranty_claim.html new file mode 100644 index 0000000000..d9c403ed56 --- /dev/null +++ b/erpnext/docs/current/models/support/warranty_claim.html @@ -0,0 +1,780 @@ + + + + + + + + + + + + +

        Table Name: tabWarranty Claim

        + + + + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1customer_section + Section Break + + + +
        icon-user
        +
        2naming_series + Select + Series + + +
        CI-
        +
        3status + Select + Status + + +
        +Open
        +Closed
        +Work In Progress
        +Cancelled
        +
        4complaint_date + Date + Issue Date + +
        5column_break0 + Column Break + + +
        6serial_no + Link + Serial No + + + + + + +Serial No + + + +
        7customer + Link + Customer + + + + + + +Customer + + + +
        8customer_address + Link + Customer Address + + + + + + +Address + + + +
        9contact_person + Link + Contact Person + + + + + + +Contact + + + +
        10issue_details + Section Break + + + +
        icon-ticket
        +
        11complaint + Small Text + Issue + +
        12item_code + Link + Item Code + + + + + + +Item + + + +
        13column_break1 + Column Break + + +
        14item_name + Data + Item Name + +
        15description + Small Text + Description + +
        16warranty_amc_status + Select + Warranty / AMC Status + + +
        +Under Warranty
        +Out of Warranty
        +Under AMC
        +Out of AMC
        +
        17warranty_expiry_date + Date + Warranty Expiry Date + +
        18amc_expiry_date + Date + AMC Expiry Date + +
        19resolution_section + Section Break + Resolution +

        + To assign this issue, use the "Assign" button in the sidebar.

        +
        +
        icon-thumbs-up
        +
        20resolution_date + Datetime + Resolution Date + +
        21resolved_by + Link + Resolved By + + + + + + +User + + + +
        22resolution_details + Text + Resolution Details + +
        23contact_info + Section Break + Contact Info + + +
        icon-bullhorn
        +
        24col_break3 + Column Break + + +
        25customer_name + Data + Customer Name + +
        26customer_group + Link + Customer Group + + + + + + +Customer Group + + + +
        27territory + Link + Territory + + + + + + +Territory + + + +
        28contact_display + Small Text + Contact + +
        29contact_mobile + Data + Mobile No + +
        30contact_email + Data + Contact Email + +
        31col_break4 + Column Break + + +
        32service_address + Small Text + Service Address +

        + If different than customer address

        +
        33address_display + Small Text + Address + +
        34more_info + Section Break + More Information + + +
        icon-file-text
        +
        35col_break5 + Column Break + + +
        36company + Link + Company + + + + + + +Company + + + +
        37fiscal_year + Link + Fiscal Year + + + + + + +Fiscal Year + + + +
        38col_break6 + Column Break + + +
        39complaint_raised_by + Data + Raised By + +
        40from_company + Data + From Company + +
        41amended_from + Link + Amended From + + + + + + +Warranty Claim + + + +
        + + +
        +

        Controller

        +

        erpnext.support.doctype.warranty_claim.warranty_claim

        + + + + + + + +

        Class WarrantyClaim

        + +

        Inherits from erpnext.utilities.transaction_base.TransactionBase + +

        +
        +
        + + + + +

        + + + get_feed + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + on_cancel + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + on_update + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate + (self) +

        +

        No docs

        +
        +
        + + +
        +
        + + + + + + +

        Public API +
        /api/method/erpnext.support.doctype.warranty_claim.warranty_claim.make_maintenance_visit +

        +

        + + + erpnext.support.doctype.warranty_claim.warranty_claim.make_maintenance_visit + (source_name, target_doc=None) +

        +

        No docs

        +
        +
        + + + + + + +

        Linked In:

        + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/utilities/address.html b/erpnext/docs/current/models/utilities/address.html new file mode 100644 index 0000000000..533be96b2c --- /dev/null +++ b/erpnext/docs/current/models/utilities/address.html @@ -0,0 +1,738 @@ + + + + + + + + + + + + +

        Table Name: tabAddress

        + + + + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1address_details + Section Break + + + +
        icon-map-marker
        +
        2address_title + Data + Address Title +

        + Name of person or organization that this address belongs to.

        +
        3address_type + Select + Address Type + + +
        Billing
        +Shipping
        +Office
        +Personal
        +Plant
        +Postal
        +Shop
        +Subsidiary
        +Warehouse
        +Other
        +
        4address_line1 + Data + Address Line 1 + +
        5address_line2 + Data + Address Line 2 + +
        6city + Data + City/Town + +
        7state + Data + State + +
        8pincode + Data + Postal Code + +
        9country + Link + Country + + + + + + +Country + + + +
        10column_break0 + Column Break + + +
        11email_id + Data + Email Id + +
        12phone + Data + Phone + +
        13fax + Data + Fax + +
        14is_primary_address + Check + Preferred Billing Address + +
        15is_shipping_address + Check + Preferred Shipping Address + +
        16linked_with + Section Break + Reference + + +
        icon-pushpin
        +
        17customer + Link + Customer + + + + + + +Customer + + + +
        18customer_name + Data + Customer Name + +
        19supplier + Link + Supplier + + + + + + +Supplier + + + +
        20supplier_name + Data + Supplier Name + +
        21sales_partner + Link + Sales Partner + + + + + + +Sales Partner + + + +
        22column_break_22 + Column Break + + +
        23lead + Link + Lead + + + + + + +Lead + + + +
        24lead_name + Data + Lead Name + +
        + + +
        +

        Controller

        +

        erpnext.utilities.doctype.address.address

        + + + + + + + +

        Class Address

        + +

        Inherits from frappe.model.document.Document + +

        +
        +
        + + + + +

        + + + __setup__ + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + _unset_other + (self, is_address_type) +

        +

        No docs

        +
        +
        + + + + + +

        + + + autoname + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + check_if_linked + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + get_display + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + link_address + (self) +

        +

        Link address based on owner

        +
        +
        + + + + + +

        + + + validate + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_primary_address + (self) +

        +

        Validate that there can only be one primary address for particular customer, supplier

        +
        +
        + + + + + +

        + + + validate_shipping_address + (self) +

        +

        Validate that there can only be one shipping address for particular customer, supplier

        +
        +
        + + +
        +
        + + + + + + +

        Public API +
        /api/method/erpnext.utilities.doctype.address.address.get_address_display +

        +

        + + + erpnext.utilities.doctype.address.address.get_address_display + (address_dict) +

        +

        No docs

        +
        +
        + + + + + + + +

        + + + erpnext.utilities.doctype.address.address.get_list_context + (context=None) +

        +

        No docs

        +
        +
        + + + + + + + +

        + + + erpnext.utilities.doctype.address.address.get_territory_from_address + (address) +

        +

        Tries to match city, state and country of address to existing territory

        +
        +
        + + + + + + + +

        + + + erpnext.utilities.doctype.address.address.has_website_permission + (doc, ptype, user, verbose=False) +

        +

        Returns true if customer or lead matches with user

        +
        +
        + + + + + + +

        Linked In:

        + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/utilities/address_template.html b/erpnext/docs/current/models/utilities/address_template.html new file mode 100644 index 0000000000..629989b52b --- /dev/null +++ b/erpnext/docs/current/models/utilities/address_template.html @@ -0,0 +1,175 @@ + + + + + + + + + + + + +

        Table Name: tabAddress Template

        + + + + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1country + Link + Country + + + + + + +Country + + + +
        2is_default + Check + Is Default +

        + This format is used if country specific format is not found

        +
        3template + Code + Template +

        +

        Default Template

        +

        Uses Jinja Templating and all the fields of Address (including Custom Fields if any) will be available

        +
        {{ address_line1 }}<br>
        +{% if address_line2 %}{{ address_line2 }}<br>{% endif -%}
        +{{ city }}<br>
        +{% if state %}{{ state }}<br>{% endif -%}
        +{% if pincode %} PIN:  {{ pincode }}<br>{% endif -%}
        +{{ country }}<br>
        +{% if phone %}Phone: {{ phone }}<br>{% endif -%}
        +{% if fax %}Fax: {{ fax }}<br>{% endif -%}
        +{% if email_id %}Email: {{ email_id }}<br>{% endif -%}
        +

        +
        + + +
        +

        Controller

        +

        erpnext.utilities.doctype.address_template.address_template

        + + + + + + + +

        Class AddressTemplate

        + +

        Inherits from frappe.model.document.Document + +

        +
        +
        + + + + +

        + + + on_trash + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + on_update + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate + (self) +

        +

        No docs

        +
        +
        + + +
        +
        + + + + + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/utilities/contact.html b/erpnext/docs/current/models/utilities/contact.html new file mode 100644 index 0000000000..187da8037a --- /dev/null +++ b/erpnext/docs/current/models/utilities/contact.html @@ -0,0 +1,614 @@ + + + + + + + + + + + + +

        Table Name: tabContact

        + + + + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1contact_section + Section Break + + + +
        icon-user
        +
        2first_name + Data + First Name + +
        3last_name + Data + Last Name + +
        4email_id + Data + Email Id + + +
        Email
        +
        5cb00 + Column Break + + +
        6status + Select + Status + + +
        Passive
        +Open
        +Replied
        +
        7phone + Data + Phone + +
        8contact_details + Section Break + Reference + + +
        icon-pushpin
        +
        9user + Link + User Id + + + + + + +User + + + +
        10customer + Link + Customer + + + + + + +Customer + + + +
        11customer_name + Data + Customer Name + +
        12column_break1 + Column Break + + +
        13supplier + Link + Supplier + + + + + + +Supplier + + + +
        14supplier_name + Data + Supplier Name + +
        15sales_partner + Link + Sales Partner + + + + + + +Sales Partner + + + +
        16is_primary_contact + Check + Is Primary Contact + +
        17more_info + Section Break + More Information + + +
        icon-file-text
        +
        18mobile_no + Data + Mobile No + +
        19department + Data + Department +

        + Enter department to which this Contact belongs

        +
        20designation + Data + Designation +

        + Enter designation of this Contact

        +
        21unsubscribed + Check + Unsubscribed + +
        + + +
        +

        Controller

        +

        erpnext.utilities.doctype.contact.contact

        + + + + + + + +

        Class Contact

        + +

        Inherits from erpnext.controllers.status_updater.StatusUpdater + +

        +
        +
        + + + + +

        + + + autoname + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + on_trash + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + set_user + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate + (self) +

        +

        No docs

        +
        +
        + + + + + +

        + + + validate_primary_contact + (self) +

        +

        No docs

        +
        +
        + + +
        +
        + + + + + + +

        Public API +
        /api/method/erpnext.utilities.doctype.contact.contact.get_contact_details +

        +

        + + + erpnext.utilities.doctype.contact.contact.get_contact_details + (contact) +

        +

        No docs

        +
        +
        + + + + + + +

        Public API +
        /api/method/erpnext.utilities.doctype.contact.contact.invite_user +

        +

        + + + erpnext.utilities.doctype.contact.contact.invite_user + (contact) +

        +

        No docs

        +
        +
        + + + + + + +

        Linked In:

        + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/utilities/index.html b/erpnext/docs/current/models/utilities/index.html new file mode 100644 index 0000000000..8c7f74a0f1 --- /dev/null +++ b/erpnext/docs/current/models/utilities/index.html @@ -0,0 +1,19 @@ + + + + + +

        DocTypes for utilities

        + +{index} + + \ No newline at end of file diff --git a/erpnext/docs/current/models/utilities/index.txt b/erpnext/docs/current/models/utilities/index.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/erpnext/docs/current/models/utilities/rename_tool.html b/erpnext/docs/current/models/utilities/rename_tool.html new file mode 100644 index 0000000000..959c074178 --- /dev/null +++ b/erpnext/docs/current/models/utilities/rename_tool.html @@ -0,0 +1,147 @@ + + + + + + + + +Single + + + + + + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1select_doctype + Select + Select DocType +

        + Type of document to rename.

        +
        2file_to_rename + Attach + File to Rename +

        + Attach .csv file with two columns, one for the old name and one for the new name

        +
        3rename_log + HTML + Rename Log + +
        + + +
        +

        Controller

        +

        erpnext.utilities.doctype.rename_tool.rename_tool

        + + + + + + + +

        Class RenameTool

        + +

        Inherits from frappe.model.document.Document + +

        +
        +
        + +
        +
        + + + + + + +

        Public API +
        /api/method/erpnext.utilities.doctype.rename_tool.rename_tool.get_doctypes +

        +

        + + + erpnext.utilities.doctype.rename_tool.rename_tool.get_doctypes + () +

        +

        No docs

        +
        +
        + + + + + + +

        Public API +
        /api/method/erpnext.utilities.doctype.rename_tool.rename_tool.upload +

        +

        + + + erpnext.utilities.doctype.rename_tool.rename_tool.upload + (select_doctype=None, rows=None) +

        +

        No docs

        +
        +
        + + + + + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/utilities/sms_log.html b/erpnext/docs/current/models/utilities/sms_log.html new file mode 100644 index 0000000000..99fc125666 --- /dev/null +++ b/erpnext/docs/current/models/utilities/sms_log.html @@ -0,0 +1,197 @@ + + + + + + + + + + + + +

        Table Name: tabSMS Log

        + + + + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1sender_name + Data + Sender Name + +
        2sent_on + Date + Sent On + +
        3column_break0 + Column Break + + +
        4message + Small Text + Message + +
        5sec_break1 + Section Break + + + +
        Simple
        +
        6no_of_requested_sms + Int + No of Requested SMS + +
        7requested_numbers + Small Text + Requested Numbers + +
        8column_break1 + Column Break + + +
        9no_of_sent_sms + Int + No of Sent SMS + +
        10sent_to + Small Text + Sent To + +
        + + +
        +

        Controller

        +

        erpnext.utilities.doctype.sms_log.sms_log

        + + + + + + + +

        Class SMSLog

        + +

        Inherits from frappe.model.document.Document + +

        +
        +
        + +
        +
        + + + + + + + + + + + \ No newline at end of file From 6406f8bda0ecac2c4d6ac698070e5d6b6c08bf76 Mon Sep 17 00:00:00 2001 From: Umair Sayyed Date: Wed, 27 Jan 2016 12:45:30 +0530 Subject: [PATCH 08/46] discount article --- .../docs/user/manual/en/selling/articles/applying-discount.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/docs/user/manual/en/selling/articles/applying-discount.md b/erpnext/docs/user/manual/en/selling/articles/applying-discount.md index 64f19e9492..a023e87604 100644 --- a/erpnext/docs/user/manual/en/selling/articles/applying-discount.md +++ b/erpnext/docs/user/manual/en/selling/articles/applying-discount.md @@ -4,7 +4,7 @@ There are several ways Discount can be applied on an items in the sales transact #### 1. Discount on "Price List Rate" of an item -In the Item table, after Price List Rate field, you will find Discount (%) field. Discount Rate applied will be applicable on the Price List Rate of an item. +You can find the Discount (%) field in the Item table. Discount is applied on the Price List Rate to get the selling Rate of the Item. Discount Percentage From 694edbc89a0e9bcfeda59e38669141e8905bbc58 Mon Sep 17 00:00:00 2001 From: Umair Sayyed Date: Wed, 27 Jan 2016 15:11:58 +0530 Subject: [PATCH 09/46] updated articles --- .../img/articles/discount-on-grand-total.png | Bin 0 -> 80569 bytes .../img/articles/discount-on-net-total.png | Bin 0 -> 69428 bytes .../docs/assets/img/articles/services-1.gif | Bin 310435 -> 0 bytes .../docs/assets/img/articles/services-1.png | Bin 0 -> 79827 bytes .../en/selling/articles/applying-discount.md | 16 ++++++++------ .../erpnext-for-services-organization.md | 16 +++++++------- ...sales-persons-in-the-sales-transactions.md | 20 ++++++++++-------- 7 files changed, 29 insertions(+), 23 deletions(-) create mode 100644 erpnext/docs/assets/img/articles/discount-on-grand-total.png create mode 100644 erpnext/docs/assets/img/articles/discount-on-net-total.png delete mode 100644 erpnext/docs/assets/img/articles/services-1.gif create mode 100644 erpnext/docs/assets/img/articles/services-1.png diff --git a/erpnext/docs/assets/img/articles/discount-on-grand-total.png b/erpnext/docs/assets/img/articles/discount-on-grand-total.png new file mode 100644 index 0000000000000000000000000000000000000000..8c93145bfe79488d3c40225f51f7587f1853eadc GIT binary patch literal 80569 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

        f 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 literal 0 HcmV?d00001 diff --git a/erpnext/docs/assets/img/articles/discount-on-net-total.png b/erpnext/docs/assets/img/articles/discount-on-net-total.png new file mode 100644 index 0000000000000000000000000000000000000000..406d7535ace8f9f91a178d317a2ea51ce128a19e GIT binary patch literal 69428 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

        oA+a#H=%xYTTJVI`(1$=JZO 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%0D@lC&LV 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

        5AnBk)Q|WUNS{=MuU0Y^jT@`2$n}2_mmO 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 E8i! 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%0AXs$<&fan)SZNk!-J3aRck1C^U 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�wad=R1eudAfF7Jwtuo8n{z-K~V?U;#CG0^24YI+du#+trl-7 zn2lDFjV4%wbLwdIchEiX{9eJIWU7mvh?$Z|bXht8rLFC8i@eb@0bj4BW!5nvl!{Lt z8=emHZe#=p(xXl&D$8c?$I`PwQ*c&6?ZJ&GxHgsp=}>wC5q3)&Pf;){Vk4aGwh-6q zUWpnRY9s_FaiBgtms#pfj1IgEGs_tXT{0Jn^>TbGdd#n(_VfwBJeELzHL5ogOW}ZZe_)P$c<}bij)Hcl6G_ z0QofzX&_G{$%AaeH=8(($e`1#+}Nd5IB1l|#*iJ8c@&DT+)2q$ZI)3)1zO6v0*7j5 zUg#${E)R1u(}CgFCHexAsfiGGw}f6SA(+%-nQPF4Ha!(;yqen|;w@2xptBY#Re&~q z2YXK(WTTt-nY&SHi=fwGhbg}6V?-FqNVxhYV5P|6Re=>zXQl~3_0|MkI1w*`D3JXO z1Zc#(l)Z9QgUWnSld)(X@OWYf*ACbN%`fu zVw~csJKd8Jl;KwxM2g;;I53J97ZidMoUh`MdpQ3G4uu%L;#ZslJiqr{uO*iRqa1)= z0JW@Q_ZR?SBuoo3su(I3Fg+s1EW=J67EmSsIo+T}U-iY8ZSJ}L(^zUtceN$&y+jz*t==+mXo)?ut_-Ymeum#nk zl2#sPE=sQ+&|*))Gk9X0HIZkv!tU-^b4v;qK$4$8?xynKFiu%GN}2z0M>N-n@`{oO%YMm{^u0RpHdbbwX^J>!Dvsyl;C|78Fg8snxU{7MG)ejp)}Bb2 z$hDJiY^dOoTMU~#^v^hdW zN-W!V$F-A`tm{5eo!KBAE1)$v|k0mB|${C1;3F zkXr!G6V;85u~Nv?i1LgZAv3xTLeBL%smg1TlSzf^1@hLRN4#$Pz+{VQRE0hs%_BZ! z%;tu=q3*E(vsUpwA?YhI!|ZKg6xq}``Os~kh#wa|4#_H;&rhTz6^{#yaDAh5dP12+ zsy>%`bF9|P+RCvG#WNK$PK@`BFd`nU;9e^pG}DK{D6fdU>F6LIqt%u%(dbe&y3gw9 zL+9^+LLuBUX^Y^nSXRdTjBdS3r-+}6ju|Mx8307)_hYwO#|L$Mcvp|*w$QIw zV@HLW&^CaY%HRU0Dbp|(!+#|S}FhhUepgS!124*?)k8b;kv-7cym9gMFu(rZzcp2{x8QqUz z)R+4x(M_i>AD{blB5ZrG8C9SsxG18e%ACLT_+#1n>3$$j;R!mR{6O;lHQEx=K8vF| zg$1Jt7J+lHpLQs5(c#5HK2M}723{m7`_?x9ze(%>u`Nw25E&wL}|Sbe>XI5 z@hOTJYBp<0=)*HKk|&?9%ba2U$?8Lg%1%fAQY9qQR7qE}ReUe%?s=mS%A}QfqZpfv zkVoI4wcOim!hBDnA@@=+ZO~al-ba&FBYKwLD5P{9(O;r*wVU>n$HXf(m_iAbnOUkQ zL$?`>T)^_?dt}gbpAO7aFDt9cjS%K-s%!X(P!F{lh5;>+X;%`mzJY-DC^S4kFN}x~ z>#vYtj5$^nt3Etm8&|hTyx2ZhB_IZY0})yi5FJ1Q-~|97C>ZlNU?Tb)MjYclQXN5% z)2Z*+HP3`M$sj}|bS5A(-Cd;jbDi~T%RjU`Zj7#%tgq@`yLx-O&G@liSP@+^$&l;M z*n>9yD4L7a0QHq$6j;0|f<_4BazX91(3`Z~e^SlWgV z#!ClDa$!{;rgJd}V;= zGuu1K23yL%`HM(6!+J%4lrgoiGDYpdW6@$9eh=K4`ji7VTY%!SXkqPHLXZ##VK)Mu zcKnoNmMlT`ezLv6J1EDDC zo$G)$ie0K?6Q330%LqV+wQC}(wD+xwiy%|LZPZw#9r^~rGA}=-mH+h3M~=Ra>3#T{ zknrjmtX@G7l@jO*j=#4a0c&(aKl687utJxy!h|utFpgZcQ=t?wLO;v=Hk{~sn`Q3p zQ44fO)qd^GpNVUe*P>mNNzXeqRuH1Hc7iaN;0#$s`Uh29R7@hZ39H zHj3018vk?%#PG2Vd-)|uC=f(uexM9`@^-1Rdw+TR{tBiNMEah7QItspRPj%wbkR;A z^jj&m$~E}Sk-a*FG8cAMlnpU&btbfyBTEFe0LW0#oSC$qZj8g=j#a1rWU1~7{l>89 zzIq*qPV`5?!aothe9=NdtEMo*C6FYZq2VmTy|xg*k1(8NEu2pi*{s8NoMZi%3aF+h z{K3nrd0p^}LLb(clp9T$Z^EUx6bbz&6;6+Bv8_#ZigiUKQ(c&a1;I&+F2^Z{<`hA5 zMU=#CD;u}CqAJQ_qq7XNs(-arWAd@Et^?4gG2i|pB&G)uz|!Wl^BCOoI78HU3#9dK znefummr4|YXK5B!gigeT^3f5skPM)E36reLCHoiY3oGkwwo-Bx>;CN9J4T?&`zKf= zW2igH8%6?PB`HUx&v~6YF}=u#qDx*iEQY$*Gq0_R!lUeq(A_P$+Unn@)G_jFqTsTj zAxEo4v%l+$vxoxH(6np7Tp%C}c&SqIZiaaLRF$b$40o$Wpswy-ClCo!Syn8P!%$^- zo+i)?Q+1fbZC%mN@V*S8!7|1H63(G-%>sEHodQTKrrK0@y)1x;HU4+ zudTs{!p&~Q--}G!3><|-wE!-_lI>q@@mhd4T8)xr3cMSHdujOT<)B*#!H;a>=HD5> z9zysisCN|KqJrq0K8N(IeaMM#Z=GO@qv8qHF`Z2`=1+VMbM1=(4gYRuOzc=j)uU+R$A%TPCHmk{F-jf?fN2K2HA zkn-2R-~j+Av``7a05otcPu&aQfESWyFBk$EImSTn_2-u2K3R!=`3I8U#;7MosDa=v z?VcKihkh;U0Uf*-w^{>^+5;XN{kk0kX3GQSv6Lnc1J)9Qwq}FgM1yuYgC9BuodZZ5 zmIvLahdd;PUY-ql1q}J-41IPU@>?DXdKj`E8+yLcftn%Mxe*aLh-hR7q9g_p`+$H^ z4;$_ylFWwF0*0p)hBG>bbC!oA3x;#4M+ziHexr;O1&oyCjI>ydR4k9wJd7mwjMPbt zHkyrkF^o3njJ9=*YJ`k-JdDDr$9C)cD!Il61I7?laK@amvE{LeDx$83u^EYR#F%ie z@Ay*A_^*!f<>m3!hw*jliA{-#ZL^7;fQh}FiGz-bqveU?hlx|_$#aRxOS8%AfXUmO z$-9ophvmtqhe-g<6sqJD+PkTr)Z=p8@VSmDJQpGy$+7Y0YMF;A{CCr2ogk7S<5Mi-X-q4F9Dy@Df5%>R)^Lpv@*y8*gk8pj9*MAC^@|10 zN_CD(t`NOh>63Y!Rg@f6=p>T++N%;cr}1^`-x5Tlkn(gs^qV% zW=`!bT#rqRH#2xuN#c{wTgp&Or)$C8a-stKJl*QSmbbq;@ZWuLu`z;c#;0IU&7xk^ zp)}E}i0Ba#)zwkg|3*jog@?D&`EG>?iYKzIv<}z2Z6y4MJjIh#z%a5TWP+nKt>aO! zgBk|SNo7`mIlo`HtejVWuO!ADT7UH*kLmjx`U-|83&AvU!_)#f9j&Y?nvUs7uHj5n ze|fcj9qL@;90cJe!yk(;Qt}2me@J!A;`gaD!h6b-2kT$!F5KZ_bQ&vrTMixU#F` z5v!VSzF*$f4Em!l{)cG14?F&kdDno+aTu}7riJ;AHuX;9=!{+0j(qIS71f$E?XKC^ zE#_Cd-WrQuH9J0CyR%<+1;=+GHQlaVaP~x%@>$|Rq!xagwqOlS`YZu`S=+05Bk01_E{X zbPxdaIU@zYW`qDzLC_&i&Q8wqtq6mbe!X`eD^!nMor&V#5P^GD)ds8A#ZK?OBgo3XOK3}+IHhnzDk+)_RzPj)fy;gW_ ztvJale=g9QO`smk#F}@WC?E6JQm~(c@)EvjlK&Uf^VewYX7bw==QP`u>rsra;G&zj zZXKtL=Jl%GIf#x!0FGb!;`}X=&>D1@$cUC}dh^Xn_j%qs6($NexhblphMcrVnA7+0 zvMRt;aguFt1h}bA0t!PfCx&3h+N|DFekg@&!bvL1`IOAQfE2E~e{K(myoZtQhq1MX z3FN~R-Q$e(|I1ky*fOM-tK0R|cXavkg|2KDo>yd0k#LyKoC+OO^G`*z+V^D}^ z{+DR2lER^1WBYUFk6H%b`-%VJZgRvv9dG}f-5SoKKzH5Vo88kcq7Pwx|7&hvw@kZO zqu6BrK)*^aeS+jJp=_|qY9M-9eBsEr(Q&@!{qKdprp@ndydPEZk5{TZ&W`{5UOcgY zhoBQ`l;5zd)Iv$O1Ur__Y!Hbonk8m0t+&#mzL@M(HD1_HeN#waeb>fnmzEWiW%mm7 z$!V$n{bUL9-J8EosTDoH2;#E;hr5{;QC;zl(Uj`?4|g+NtmLY}|L<~OzW(Fx>dO61 z$u9+S%oD?a&zJl2we}~c63XX)SGv+I)}8_%diVWf^N>eDNK_IxFe(jjs^AHy;{c3K z<#j59Rc)jN?AmAw*V9t>LYh0&dSDy9*&oH)5W-iQ~6M0 z%5@km-*ZKW97{VjBNSK$KUWpqN=Y8!CjZq?%tJVJ0T3i~`$K0zfWbJ4(#Xp7=;4y^ydo{u1^(Ne(|Uu70Rlgz=$n|e zUtOD4c}Ygiq=u5D%GnZRgiwhPl!a@dnK+8{DSSg`h8fl?{Gqc!lWCH(!OP<1-qvI1&J^mkB=q)J+bSGTZGX zzEtn|X|EP7Y^mqyxMQw-{5Z5OTcMG%(n9~Asx`;d!7nC_fAutVb zAVr~($5*HdZ_!p0iJ&lcx@JS`(cxiG8aa<3|AryM8vIZPr36^tJXq&K~%Kb zPAPjMi|ipV%O%KXWNSD+C3&TwSt3I>JWKZBTNDO8JQ{UlNUr1zlLa+0%AC)dQej(B zRJET7Cv!^%8Xg|96sD<55+yyCKM>3fM8}d*Bq!P=d|d~oKBw=)=9v#S5|w`$7R%(a zV3e+!^*T9Q9r5DL7m$_qIi3GfVFe^4IsgleHiKA6l2IF9eS;AN>wZX>8D-SEScjTW zPGReK8lbbngnH;Ogc<8r9;sabttgOx4OAKSGYd;D`C&`7fz0T4TpdZq`e`R~poR7d zIznf%2aL>chcG~U-rb18#knH^0%BH_RH9&_r+Nl~_gDn#w=Ci+>xhusEg*M(G5A+1 z#AFJHif7q}B7BzMg)gIf2-=pO7>;&MD#;S4Vip#_DR-r0E&`SVNv`40V0j?=AQ&$0 zD}xi_wL#h&@G^?CVn*)$8C|ma%nMMsSQc>+t^L#spe+N4PksjPQdSZ5@*8@_Qy+ej zQ3Q^WcymIiU18;yLZ$D&$`Xm0t5iZmC5h_@MQyDpUp*RU@F>kjAA7+h^i!!M+#uxh zJ*9mTBo_EO3Eoz7xEaqs#Cuf&O!ay-9Kg0A$M<<8z4v^54s|7XuwpSd>Klk&R7udp z1cS^{9#4SA&Wy`s+L1b+6hu>G9!9AbGNn)N0N%GmPNT=tj-W)b=)dVAibKmU#JkMm zwx>Uo9VTl@N_`x9p9j#!D{d@)r?ntJ2{wt=Nh%$2WA=GHAF*)UBv&U%f`)fR7|uD0 zOEDgXYBGbz3b4Za4|lWU7D>Y$&zfWlmzcq|JJDWC$rYkdKnJ2CdP0tH&`K|rNf@sL(Xawk zJ0e5*WO8LRCG}s(}o`|hY$C{w$-PUY;Y%Zd7s*!tAG%)`#u-Hu+G1TtRa z2P?gQ>2a0iFWeZ6v*OTjB{H4(&g;26*Ky1Gt~-f`Q3)uSq~_!|QV_vV`g3nz71xj9 zX$gb3V%jK_LXB0bUx`z0GlBaAO1A_K7yS3aUT2G7svP4=7RG>L%S7dhjg8S@(}Sns z#_On}jPNeGshcsg* zMeaT^5%R;X^PU(8MN;mWkke%?Z?PtZ9F*Z}SL>+w;=TArTVgBCRM$UV#(^A_;dK?n zX#7B)5GFIub&3obCRkjE0kmh$tB%djsg58xU>QS2F@iXk=p&Nh5+Hcc;v`scf(Lh}6ev)v#oZ~iSRujPrD$<4t}V1! zkpe{v61>lQSWTArhbM+-DIL?UD~T5aT4~JRJ7aD_{!A zfRpl3j6+`lfk2Z{9!Cnxt{g|q4Fa1byGvFC?(T6|-_eqPd-Os+!VQ9D9rwbVJ&Hd! zIZ(zm1=NE;2Kwi0%rs9}G>>B%PxkGsA#XWamIq3X?k>Q*5^AMC@=OZhoe?1# z`y3%X^p2XIDR$!>0R{A}%8A@Ml`?s3RAeh2{W#KpRGDF35zF_e4`wdu)`EE91`c!v zb=5`5aQCD1`%f(TWv3N=MF|{=QBuXYVaG^UpBT+9>6kg7P-LeN4izDy@fY#i2zEI* z56+aR(qcw*kWQB_Kg##rP@jb|Ia~!bI!G;6?>s#S0DaVDQWKh&gQh0{M(dI<;r;h?KR%fU&;~`mtX6zB8gZ@NMY9LgxOx)= zj4)(U2{@B_$)^Oj{zxC9Mz}K)=Kc{itzNrcX6f96bx8x50)RnAFpYr7K)OMcB7P|l z=s>9GCI(KbABlBSceK}1-4|2KP%(}ub!P|Ds7AkK9FW&lli*OIh>Z%S!;yez-lvY0 z^G5hng9S&!QE+@WnGZ>IiYmE4iIA9=TK$|W;hMFIM(7w#&6o%`pq%UnbEKpLj(Uua zCcVX|@Wv<9)hB0t^|%7%aLBmJJffBfTu0LP_Y9y(hdN;xw61;^F|LDZ(gwL|z3~~A zeAg9$?EHEoxwbw)uSgIG?IlYaC7nRJb!8H%4pN`@Mh-G`u)i%AQzA4Ka8&I7HHho^ z6+Z(wnK)P$06~Sgb+Cr?l3d-jY4qmQbYc@l!$X`2&eoMlptM#HM7u6eM6rb`zjbv#CNd#Z#dG;3 zqD*@-&Lo4rNwD@W z-iN%S7l1K7(aH&#O17C`3Rf2}ODt~d%;{@aZ>6B#(@0hogc*0{$hN=AlpQ%B@qIMQ z^AeFc4Q4474*{_892(w04de1vu+vakLGed%`V?GmW1EShbq|2%dH5X8vDR=76oNfk z6IAc}XiV`@_Hj(bF+oys?sI26nL2`rANcBr?8T`uCaWyCHj2pWhEgoTQI^oJUsPHWS@Wmvv^*$NE%&1m_C&3Z9V}}o-+{N zB`vEYuH(@zo4O`L7)73cF=L5K&!cN5Q@DwZaT$N_7fmI?t+)K#$bKLuC zz+o5pFg2^n-c+}l!HN=uHH0nbjJ;MYOwwSEazxNXv|yKf=Nw`S8CP^RTkTjGmU(w zoY9iS)AkbpLLjlfUg9FSe+0=r8CWsPEGBTTdHvEmMkkFx0~{HAw{R0cWA1I)CB>q2 z1^VXrHLq^!EEEQd4gp4KEj(I;yjq=GteU$W9#9tc>(@*Vm`fL_IrSBHlb z*GLDTP<;YzNl4!nf)MYRkZNFNe9ea^%YE=)>Cgoh*O+%Ukq6hgileNyHpP2#Uro}i z53^_o$CgZvOTqwO!-9Xsy)mU+%c)gcUV^~M6Kv>FPb9hLz=604*tL+RXt?epbw_`8RXwTS`kLlU0>xRXoDu-0Q=>#g zEw>9|f0P5!$C0xJKz~dty(JKsrXo%J3F;D*KeFu?m@DfmQK`+*eV;Bw)e8TyuD?Yr z^nB{kQwI~hv~Cdm$FMPrtQVtSr^W}h9NNF+b@?0kZ8u-;00y3lGZ=xC?62@-R3 zSa7g^I_wbYXy)noTiC(5VXHCS(WceWgUrEQu-yZ*b#dqz4|MXyxAci-ausy)7o4@h zwE2f_^T=%{BZOZB#uA&YB=>P1X*vZQIXN{rykfG<)yx5Q4HMXdeClG|5CE$m$t_x0 z##+wUID}=1l3m#Qo%%GV1UeuHiKM&63u*z_b`z8;BV`MtDHSP$xYPYw?n^eIR1iqQ zQM+){ooI>HGpYQ*%N*rmP?(feBAKh#jB^~6>OPqIm9_vaJo>&FfhYoCWc`J!YuiWp zzC>V}@Cuc`VP-_r?$LAs>GzyUEz3{}x^Q8-t9P^sTt)r?1WL|$5*Yd-{8wwM_u_=3 zm5`ut3fK2s6s5^vIRv0M63Hf!>$SqNCCTIh3WvzyPTYzsSNsE)#$Urcc^zS-P2=f&k3{I0->Ea%mczqTXD=$ zB~i`>OoWAp#l4Kg%CFyi^tk+-@*y-fJkfLORswYzG& z;ULd(r}6XdwF|R5Vc}+T5vqxy%O&PJ?Qi!IR?k(YZ|c9_8suFbdH?Zr%8iWxj=pjE z`rD5p{MA{8pd!*M03W>ad%R|ksL#xrJ_6^lVdF0+5G#v%_5QjR3z4rk>h7;9%tXYx z3$R_?^T^-o&gM{gT72o9Z_SvO?K>LqI~vina)KP@AUo$}PQSulft|aio?AH>c&vWz- zT?8T>N%NxOXkCx*S$w5eJZ9Q0$=5i};f=YxoA12(%JP>A@_;;U5B4W7^|>P50#Rpi zP%(aciEoGS`a3BavFsJo7cZ*eFH+22q#hHz1YEsXesQGdMf}%KHn|WRS;6e76mWM5 z3085ng8T#ie&yz}^lt3WmQ>bDoA#!U0hLVw$*_Qo*F;HPMO+^kMOY54dh7a|a14o?5`oo6ZlhAWbAs=6(hm9UhbP`to z4#_nQvG`^>O@2EYc5as7XH_{h_d0IM>*eDH!{_Xd=Fzt~0WW|25y4J6Iek_rHwhL` z;b#9ja=X+R@@o2v`_an?M28EXRorp7m&eOBA zb@Rc`_Rig~SH~88EHr%e+tI}!#ubcO2Kg=Bx!8XhxEJYQO0YTLbyv!^iE&TI8q zS8s?qasmNs@VL|6q$WN)J373PJT81^MugFzb2{Gm#7wsMRkox@ouz&)O}{jfl#+4+ z<&vQPFfnWvo`@I0$#5NYH#1#6GR7_T8sDC4WIgM?MgRSC_He27%4hyuve@cs3}hhM z#_5*=Hd;X`u~HDNX-aQ#s!lx*1fx;|cb;TVM^Ib}+el;Q*$YAD6kTiyxAdmzLIl(4 z5SbPzNH>mZa`j1q+~2EpZJ|8SijN}0SVk%}>Age;B9xMvBSFRGs5~tfXqeJ+XaGh# zr-^NHaAg^yTENiO`O&`uWpoL z1hQEnQa-2SR3a%dGpi(M_Q^Hxpqsc#=>$db{p$RoCnMCWJ?mGcVD5gJB4a;&JSoA- z5BtnS1n9xx!-P!ZO21_SkTDb3D<|K3I3FxL>}R}B(KhO!`+Io8z-VcNGylMFl^x7i{O87ap|xCdER*`q~!N^X}HQ_l|X?t?~tlmp?!!f;C= z${eNl(fwdW%Po2pYFj=`KlmY3l|lD>^*+RwToJU!Dz92f)5@*(FeEK@FIJTTr=<8^ z9*9|D2*z|4kwP@woV+s!QwgBUfD+jzC7Rw-#+ZJDsT;%*DX+`Z!PNO024hf&SmF4c zkAhr7@yO#uwmQwRV88(FTDSc#{cv)h>ZZ&}Sx(+ZHJ^-ITCy5KIQg-5JmY4wE!iDC zoPy74#-DsQWb$fbhfBqbMD0*;O@cvEujn)twSAtXtwaj5Xp!sZ#ZtzVm+m(phUyUE z2^mJQGHiO4H7%QGK`rWKA<7U?(bht0`;vImNtPk*fDFyW6?Lx2MbE+uCUB`ReKW_yC2J>@v zc=dbOgoT3U>V5@!cJ}Q1e-B>gTfSxi*R~onyreSxi9YT85XkA}d-l!>OWD=OhzHlg zb6>#|y?P6-6bRdO)M6{eWlJuPB_9b-a)q4N-Ywy((9L`d!nU!Qk#}oIDlHif;2Wfq zh6*R{o>`;Szj9=UsKTPVhNE;_A&Y%YB5F&k{!ufq;n-4|M#?ltY6E#mhBZX%?j+r# z?oYkB!YIyzHQK2iW^OzJIrtvAHF%~08@pwiX!Dpgy{s5@r7s!BZ$zz9njb|+3@_HQ ziJC4eHgM+=mr8KrW>=k5Vi#nYyex+=m;Zy6)O;sC4*r#?|2AkQe8i2q&X9afY&T>;iW+e~2kqHl;v&GM{AJ0;%Uv=| z`{-}X@a3vX+!disRlwZk`%bl{C8|1RMKx?S5O;Xi6<%SESC4POItz(boR6T`b-v)^ z_bs&e5%7uBAFpSMe}=6yg5k!wUV`8Ov7HRtV${X)eFcgkL42PAPAtcpm!kr~;P5xD z#-&YOfafUCN?7cQ0&)5Pc5pmr0wLdlN@f#E zqs8o0uFCBwOCognuIv8wu{F=OG5))Mg4eu*bI<|Spj537KdY8f)hM<4vJtMBG+~!b#{i2)@WwCn=;dLLR zOnVC3iD>dM+*g~$k6)b)G&OG@kl=t4s+VTvLUj|DAx%m@vNV~!nU}u|F3xL{diMR~ z9HO&crb9y=m=YNKRd}PVuDThB_*G$Dd39>^Pt%5E3RqTf%%f=NiwS3>Bfmj%8R^OL zL^wgkQs#_o#p6kjp7>`g0~qczfmr0fB^J-zeN76*GYr18^ElrN3E80#_U(#jyY?cE zO1ngZH62Z$01Lp#eT_I8`&}Ux2lwkJPx>If^|H{{KC(PE-j46J4y;#71tLs}--J_% z1yujqB!Z86++8#^(GP55-7+7pf0u|)VEY8<20a6`J(hyXK9c$Z?a%M{1Ry; zhx|?j0xkp~KVL;OGu@SIM%RvU@V;GF{I%gay)Npm_-0yho>Nuj>4XaHo$h8cie}kzW>bJF^N9OPkr0} zxzV%I#b=J&)In9x*&vc#_nckt1%z$~ewy=v-7}nh{Gzhz>A*G$mTI*Ma@4ExR|d%! z=V^{rr7Ts2{bG9nuCm>#QsMs;!>^J7;!Xf?N2HU#l=vDf2#V0`iw4-#%2wOCa=WN; zM?AP&9KeTZ_Td<+2L%u*^)M^91yfQx%!Fjf&S|v5${yh$zqm@B$(T zhWbVV0TkX5Y?|1LO# zs9UNobB?1_tX{-|UnJqWm05!-vZT1?P= zysqsK#OA!)(s=i|&bQdj-?OgwvqtX`pZ7{#cvhtEUp{XV{{9xyzPI;DnB9HRT!U*5 z2C|(PDRu@K)ICiOJp1dqiXxrgR*r<;?Go1C=}yM7`T6>}h8^9VTA&bleBQe zjBy+6eqcI{INzN7n?;7I;ZqPic1D3IC`&+Jk)ckjlq^ZDv>wZ4RAKF<{R6aaS&>m$TFY`l)AZ{3MHN z602#qni=!u%acjSik{%Ep5A7|&{s0r)*1X_r2#}%n$xZOu7t6CA|+2;gwV&bI% z&x^dpUs27x+EOf2J}n?fB!L<5333x z7rx4C8p3!3=)LgvkI~=ZBz(eFBEmRQ!ni6v)Qi98PQ9OBH_-@v|Cw#k*9#=fyxOE{eJt4d`yoIjs>D>H#fL_2K(@Fwz*6*>7E2?=r^?jY zC@hN`|3*i4Ur)kK)Qhf3QbQHe*tBBUqR!pQRn@|%qa|v2DlXKfTz{ez^E7G($VVUo z*U^%<6IJ*zg{jrYhED&b6jOI+=S>Alb^+O@&J^X(k*Bc=YDXTH9G!5#ZHbs>ox0QLf;a0yg`TbxDR ze}v2XOkj&!!cnw?m-IqW=echeP~2z`tDWrf`qE=w@Tk`N2y^Tty68UF;r08YC*NZ) ztb~sniJOquo$JG$wey0v^I7Ku?|X~h3X=ZI1kVz@{GB8>EhRCooiFU1to6V7g-HhP zyXjU-cw~15P3ibiEe147h6Lvz@?Ap~J2QMc0Y5rJGj>Bh+^vwkD8GEsgNr~(a)-)z zqwaU1h_8luyCNd?QRBxE4-viU0pyPm(Pwp0VLs6>0$SY>&wD##>Rtqs=ftKU0&}{& z3lZ_bo$)!=2_pd>Jzbv7U5Sq*leV*ymb;#9BRmfgDfc^5ma(*{1X4cafgUv7X*Uw- zgW2gq*DjLRZgNtYLLHg!XtN%7KeP&TbLh@K6U`al%1Mz*M|MS|N#zZyzDmf>sp_U_ z40LYq&fo9IeRk*iQsJAP!H20%8tN-Y7B4&NgAND5cyIA0BMJSd3C0dUi-Q2v`Pk@n zK^Z(pfe~s%_u%EMX*o?PGX+d5O{qWJA&~a|Bshb)n2M8%A1rY1fpKoY)AEOJ>+AS@ zCZcEz?92qxMa>@zO;7)8v1GIj>Xi!$4}{)HIv9jmuz(ZfV?8v7pay+pubdZjm%& z8Uzk+AG{G06EB2v=hivBZ8{5VdX!H|gWGfllTVm2V#W@&jQnjIxlxb2zK0hc0)M)G zO{FMjkvs{0znr;>qLYJCK{=>)9olmPDc-$iX(O)gQIK^y0tM9#66%&RJkoR_Wn4dSz5gP@$2^KX78_Hf#vI;Gt2n?5vlyzyZSXrnsv$0PxA7Q)ZTAA#`13pWo=r?4?4<+`eNFG<$c0K zdlKGjc*yVmuG@`q+MAMIUT!%d!Uv@tFL%7(fBf#*Q1{`ubk0Lr*%HiA{{G%G>SF?I zCz(QsfAvX~)M@AKXF-Ltb$N9$0@Q5iqOwBnvup1aAoMB}heqL2hA+n=?13M4CkC6N zApa*=p{6wKuMSqjC<0wJP%-|2TKdE3JB3UF%r5;r8h1zm1tg>u3xL=tM-kIY_+3G4 zRpXX8Oxgk{?9`JOrJkQ(QP^vyv1?_E1yVX_XYrYJ_+3+Osl*GOd=x`a!Q>UiDc0Jq zsdm&}E5*@@2T{8iR_NqP`2VH8D_{i1)NatXVR@AbA6Gs1$o=B>kM1U0JebzQyxq+# zTyE^5>PMKxw}nFIdtOg_gRd_yZti(M?&e$-{76vaz4A7KM)EnD&ewh{g9qp!E7H6; zo|WRcg{Jp&o+;DHSwM@lTF>doH9r3j-HlBr=GAvj>BJ6~jE$d+0p6>FarYkn&1XMq z9IjwlsJrSVAb)rXX7te z!$NOwuK)bOvi1S+m{R{&-3@aHWB|;0r@J8%=z$E9h%coMlF6Z)RQ~d&dvS(z^^d7~ z256t~{#+W@9J=RFkT#5E@Ic=mj@9g;c*7KkrWl1r6-QP+CZR;I@#)LktXfOdo7hF0B)QA^$7#K8-y92H zX2TpxlAhn`ZahrByOHyn{P66Z6#3zWw`OvuyTKE&^cj=O`T6{(&YvItKMQl7{$9CQ z7zvg@AeTYEL9qY}xJJEA15F+g?`{ znlRkyZu(djBy4%{!|&F2G1qwEz@Le`E=MkoPs|Dh~BZs*lE=Owl$6KQdL_ z(M|$k^BO_M&5;8vsCKf#*QZz~>?0p7|4oZ_DaV1nRk~vBCH}UFq$QI_;@QdT+rWIf zuFauSO84{6XCFylo3|18Mjs0EV@Gm8iD^=-p~o}#h*6=0s>_Rni;q{r&K04|FBR13 z0#G5a_sLig_2;t9&)qYmg;Nhcu-v5ScbfR4mMR@cLa#Y7*(V0w1h}T)*&J$A=yD$o zssP4vdzJRks@VB!L&RAGRbRK;{g$VfU{giQ+(Szq#!))zCURl05)=)IQE*)&lY}Cf zAmFGYUX=XB?fT1qY-Bqz3XxxcxcSE{xDz;1SR6RAOmv0BWheE}n9r69s17DeeJ2f7 zq(ws`aN~WD5780#hU|)^if~Z(=cisiTms;}H%K90A&tuYO0Y59B+j=s88sPEqHJlT zB3k5QF<^L4^PKZNC_ovCK>$BcTPKH2D~0gZkI-Iy#C_c_6#th&d4f_gA?%7hL~mso ztFUL&44gl)zMWG!pElLf`L3UIVyh)jG@uoJKA1tEv^=7mn;Lq)o?c_bsp^Rk2ox`8 zA+`R<>td!u=Rj#?=o2&G{!Pb9qC9IlXj3T8Y~tan2-nr|_xSAHN*e~Mycr`+_@fqb zoLX+R`@EZSOgOQMUk!AoGPe+8S`RXfe&_8n6)Mp66TSohA%ehrQoCkTUC=q>-T7_B z9g2r2_(1Ae+qNQMkaWnF`s+phGBI3Xi2BgOV!W&!RR!D68K$Bo-}V{z z{NQWWi(Nx2-nq=;vvN>i4D{}f4Kw$#3f(WRy#;xcA$_h|WFZ(rMm+4r`l- z@=Q7_Ki4;e>|2&~FW9taH3X_gf-GnD?Tm4>rgFK`8T(WChC-0$)SwhXcZ%2D`?=LsEcJpt) zp6j<&WO?}fu#nr8FzLBC^j-xmnGoi5jTvY7sMT3+=OuL4DIYznsWYm}Y=8Srj!%DF z{K;YHJ*^qztQY+jzgXiW&9;oatk!uaF5c&~9loRuT(z*eD9$lDZ~qQl zp`o!4;?HielRc=3CDaXTyqldNY$Wfu8FNSd@!&`2lX!6o{TCI_p4>S89U z0`!KDTHvQZj82xQF^4F!8FlgXl|o-}_%AgId;GEy{PI^aODG6Y&dogq?Qa?Pg9U4Y z7Q~)jg;>+Et}s4DTFVVURJYys&Mz8Lf zH>Ef#D&n05Jcq)H2{~9+;`Wmzz%Hre2q=IF0|$06wYSKRGpf_wE6S7kJi!M^%9T~ z!!Q13btWa^KUE;7)L^)*c6laiuR5m?*f4llPf;^{p6!Mh5D7w4XVx!ArpcrvTm~Lq;+s%k* zwK-U6dX2dN5M=D)^QVV6^0zDYMscO)d9g}(Et}}@hwrP;y&JYRY!`c6L7o|*CNz+( zSScvfzy+Ut{xYEe3Lp)*lo#uVcGmcJKc}g)ppXS0MO8=;()M)I0ltAjOXl zF^KT69g9wOnMG8HQh+V%T?M9d5$j7VU(^AS?XhKLz9s%n8~MdsFDO3w`S8>Yfao?n z8K>?O4zufe+tJNN9L3)6Sl*Q5r)5~oLr?-6U@@i^3!Z-ccZ|wbFqB#!iXuo3btSu8#KNJ$%0nejAhutkXM6JT}PGCyR?9w3;TwmYe{T z?9nCp)a1k#4Yfo{HnU{so~h(kWRNeO5T)OLAX6t@df=2;2u{fn+>1a z@I(8Vdod?f<^#)X33M4V>($A@4 z?MSq+uWJ6We0X7a%GjX>szn@OTh9R#JR`-dSC*wE-j=^W6G-)z(tRG}P9L zFdRNCx=a^lrji^BC-k3kC|YHoYZS!V=Kee)$_;*6%Q0&bH0AV~NE_ zDkb5B+YPmqO@vQ|fqd!mSQT<|DbeJKBcO&K+YKCYL~-6gBxBIZNAJU|?#GHZpn_vV zw3((6Jh4fAA}f)pxm_mb5W(P$599>$C7e^Dngv$~DNpBY3g)%baJBabn2m7$_?>8f z$mDKm)61jQRnyl^sMDRJ=K6g8VASYANy>x5-3Qx7oNH|lmNNAQKkI!1Jv=+#x%BHs z8|hPRY6`pQlZ)#SeQAYc8IX_CHP;!iXPL2xqd2}8nrRuN&9HxW4hev>4MRPo*+Pc5 zrAWiAhj;K`EBrXShKt1d;~X*7{d9hg5p1^KWy4WxhE8bBOj&#w5q`Y6aqrVCUFw}L zMT!i9eGcU|AotJsSS}^w*QgkNYr7#Rn19QWu4Wzr7=1eINK%TAg@{I5EJRT;dE~a5KQJAE;lCUPykHtf-#-F2nn4HE% z`p5Nm_>KMTWK6dE9FZ6$KMakvsB!yOXRD!@sI3ue%4~mMr*z9omf00XOATlNE#ojs zo<7MxzWDhu%AbU1K>5PuX4~{a5r-t&)4D$(vXz0XW_sSkktX}OdkhSI$XdI-ACTRE zdr5_Qj*n%7QR<^IVrgx@Mf)FAlbIAlJug@jCznhPZ8IlAXiY-8F1>rRS)c&o1I3Ul z2aonI^LqsGpPZbYio%?Eopvu94Bx!~BB`P^FIQbl{Ar?D+hDA+&Rn#t)R}K?ViUr&` zR*H#MvI6WEzi!~*x~ASk4|^nY$Bo(m_dGmYFI<#p>9i+(O{?%vRsa*QgiF-Y1nJND zj?meAam6{XORu2i+Ms44XW>fd)((JW1z_DzkI{gB&auL%g$QVnLG{*VaZ;|-qCO{C zVQY(_>i$lt$Q*t;oHc?p^wvFy-s*~m)!KFhxndOAt1e1Jfe~&Nb?IzK0F?JIhTb+7 zZy+Q7iZzuk#!e^ZjawXhd)$k?I1BOk#`1?%0sXbF^qZ~>+pn}5UL^o05(+_ygRede zcWHh4ns`W@l&hMwNca9bqJHI-!6u?-htA+IK=T(}%A`(8RAkBxT@MDKiEEbHo{&1T znR+XhHszLf)&|0%*s>So+=EF;MepMeZ0i%LogA~TAE#|+66OkGEy?!uaAjz08Obv; zhzIrygfi8xVE|;d+qY~l`kZHGIUd)X6J&?;$%jj1N3>o?PpR0jQP8Y(h}y*Se?}Np60|c>Z8+2_pkntq@vQ>}FPq z_i%bZF`DSfa5ZRv4p#}@n_l+y^u`$`FTW)rX#5U*w9vE`t?6ULb1nZYl5gh(hFX_}tNkZUmw%}H8FA?_+Tu-#|nDbDJT z9_^!Tq;iGo+W+cwGXRFn>jSS@-%2;TTsINFYo_?Y8O}gdalC0O2&q4=b~(LiXuX#H z?lAgW$$~7|@RNcur4m+2X|5@&^;rcDNSuSIizZVz*CeYZyMo6IIsnVxZrPOqEyG{Nt-@-+#6H2-0IKh9VW zT&javG@x%jIDM;P4C&mo=$EAKV_vFSxl10={{$JO6Ytb z?tl4Fy+8JUI< z9H2P~P+kJ)EC6(W03NOYv@QTTHvoezz@tNe@j1ZgFTnIKgXaxb$c=kYzM}b!iN%eE z*Ny8F^oyrx8y~boD4G{_BOHGtn|EWFaAT5v^P~dplr&`%f%eQt`$nQeGtkfK(B3U* z)H8IlA3Dn)osf`_o}OM&QCVG6*WBFP)zua83Z0RHew~Ug>P44@-`1tw*5}`r*W5PN z-gea9eki&9@ZmOk1pR(+@XhDjx^K75c@PWzznb44(;Dg?PF$7F+WZ)ziu%r%PU*6CkH<< zXTPv(Yis*==Mb~@2XkCcX&ah_~?Cm)ggTdTMnf~wjKl=vm z{HOwI-+ao7`y;?qyq4A88q_GsyGlvT=F*P|bfUH#2>sIG6sU^cl9GP;SOzU|silh{ z=XegolYs&=1Fi>o5?%unxif^+P-)@QHtwkOin5UK%AS*Ef(jM2fcj<*b)JtU)G4N= zDn2RnEFQ_`45A+mv*HrF@TK<%I85Rr_#e!!JJ_1ZKcQ3GvvDCy;m95sYBu7kFG%qU zR0SND&CF;UWf!l`sOWRBAO%}%HU`rRSQPo$9rJ|M0XhUvj{$aslqm|ftS8(uk@~D} zYz4-Wwf?Rp-(%zV(1M*jD3{EBf2{c|m!Lv6yWUTJPGyuzq)havxTKGg1tOSdiWS+Y zG=y*_=M6T`Tk2Q9pbnowLIKs?^GC6-f5c=emACgPNi;`~Xb3K^Mw z8tc7u0Fr$qGC^KeB{Y0?TH31l8dOX%e45=TqAG0l}pvxyAH4`A|l$Yxox=_itI)0$NmGqScx zkB{`mC6i90R#T!_|92)T{tJle69DZ6fX)wq-U>kP2B5zMFgyepodZn% z-t)MTGrQq@dE*w8Z)AR>=5^y@iGKbBZS9S=e~A`~yOGYl(T~4*ib5M@-B^^P9TTVA z^U*%xXwN3JZ!Oxp9gXxwCp|-F`u#r;@XooMo{TO^K^OL*OYaDndRw1&TULGBSaaK6 zbNiwA_QU(zsNsJISpWI9_Upe1*!1ha2sqhuJKyo&2srWScKrM8eBVF#`#Sy){s#B{ zcl>S6oE$7+PJjLze|ra*)&GmX|1-Aze}2~;9BroQG@Jedj?~pnC4(^#cI|?H!_jqV zwAoGrrr{ot`AU_dEW=k_zP_aTAvuFBorA%*V|;dT(7IoV(iR81fF_+VJvVr}FvCw| z%O(@7mxWT=)Ti*P#xD~WL&68bqbYKVTmSB0As#q5s6-a}7ibE*u zJv6N(+6KV^$m0OG00PeRkbhx|`R=FYZv;8va^Kk*k#{e!SS+q=WJ=BWA$eIr+b|OL z%gHI{zX?1~pcX4z=B%t7}Wtlwu$rRs>`O9d9VS&pt@4IHeGr}b8DkE2%|Dxf4 zM8*Dpq9Wj5;(UEc6$=Sf2MJX-aWy|N^&kxmjXQn5zKX#^4S!p;2M$^fthEdsbR0!B z<3;r{C2eaF&W#A?R$Q|iGV>c2uNy9#8-Cjxo{$?6ha3IJ@w%Rw#xL4b%x@lB-dI_p z)jV&sy>FiQpxvLK1D~Speb7!}Xnxd&?)}tY=3lRyw`ZP-FUY9c#h9RiTh~D-D6OBd3kMZZCz8x-RbV`j(Ua8 zOhqTwe+q9|&#U<-8({JD8-&WMzw$|Rpj-VSxH)V|IbvSIzV+m`X$ z_SwD8rHhv3+jl=N?h@krjoZn}xVd`dN>6-$>22SK+o=}JOebch2lJyZbz|Z6>O|M! zO!3iT<^# zIemcnad4kEJp5OvJUCrE-WokQm^?n1Jw2IRUtizb+do>v+{xqblIF(Q zF^|#H^LTX{Mq67n?DB98_xlFC&c%M(e5Xcbhxxd{S+V zt&dgq?>8bw@~aTJ)Uk_f8FfJjjic1Fr`l#${tU!?ipzKHv5s1! zeO$#0XKA}2T+par9kLnUp@*%AiZ+L42vFpaIQ*KE2&VFX2N(L`c@>Gi| z3nzb^z0`(FQD$@^(GahJbv0g7=Fyo^%46Q=0i`q-Tk;gHz9@}1Ob%RT(OSokix&r} zsp!+qAj37|pJWw<^K*`_=y%EO7)DaEY1%{)+g@dZSzW3Pw9HjEY}A?L#2_l%mDOwb zWHVc93GiX=^+d4+=k+ASR`q(a?B&jSiXuMGMye{U%f_8bzh)y{S7LV~LtmX|GtZ`0pwmd6ALfW4PM(B^m@O)y?mF*r$eITednV;j@C{mA7MkXXPg>eo@&}C++KZ-5R$)Mwg{8Q{XDlYX1d1S zM|fidqEx&69kcxM7^T13!-`so{2Tj6=CP_0Q6Er|Mw;S(w0B-nO||(R4pk5dy(ozE zrZS315kv_A5s)rY6bT?;C_-Tyz>PEdrOE^atI%YjI&8aj~fLT9t?oxabC4awD!V^0YSPG@}GpoOfE4 zf7)1Z`mz2rvKbfO{Ri?ghfdFHRer&)5q%E3#+iSRuIa;RYyD|o^?$%PLPtsq=CpbI zbhPhmqV4Sa*R!$FbIi3YoHMS6a9ugY%$=b(&tXR(-Neq>T>sh3C}F?kUto^FI0E3X zduOvJ=ZxFjK3hIM+nvMjF5^$u|6ttCFUH~a|9@MBpnL!8kAOmXsd0@zQE2BIt?@@N zcu2)2X-NnM*&X4W4{Qgv2C}-M*+l)Hca`V1#|W6}7XK(meGOwWTM1FxMXAS2Ij^i8 zRS0%wfK2J{c02G4=J3ahzdB}I=`GMJGDsC<;-%xcTIMla7b~D5n9lu^F1Vt&t%Uut zd$$CNr;orS6m0m2+`RdA3Vr6Px<0$021GyY_#|d;37#t61|3Y7Ep8+z6M|QkGm{)

        wUaya!V!^&N5Wah9XR!?%F7OQ>-l#2~#CrccT07K1kG?e&1&Z#}2 zKgv-P;#;OymAvO28GAicM=Or>Ht#}$*}Y+Gq9v+eA<4RWc_G=ZU1%}IVdVAVA1M5} zyqNAqF1(b1V1^P}W%vv84IRZ+ma-!hg_m<;bfE>gt|K2TRg-L?T6t-@q|khZP-Q3> zm3BqBFt1#>u;`T|o_n>pas;~izM_wxvDk2CWwo?wrI4Xim&j_Z^wUrHT6r~pFi*um z_sR_<8YFFlz=*o7zZ)0%bQ6|ZhJFZOW!-5f3vd{eCy%oeC1F8(^sw+y@? zC&+!d!nqaE4CEP3y4_LJy{Zem=D*5V zMkl%@pF?QL=Fj_>aO5v|!DJ(O zGXg}8mvZ85kC!vuHu6^9mG|YXx;3X26y^?!M6S8ahUINI@7U&TIufhrZ4urx$lJE( zrpeoRBf5#&wE^{`_N=r@QTwk=!cjjhVAI(Ll0NELhjdY%=|`QJ{qe^k6JdoXv>#r^ z;SAAlVox<@(j{?4JEi#PpyTN&OM!f^w`P%KqCG5P)N?B!_rk zKsbrX93CMl#jV>H7%y+K5K}9~@6?C%Y=+=11LcIFv_VBJCaaZ)_e9$Jf-5SxDcS@< zqEWOVALX$d!(-CoXMLexe6d?|dNTJo`op?fuseHWGP1J$;b@Y%JyQMqAfx_>arwEQ zjN|teJ^CYOeCG~%^<|aQ`lFUx=8nb2W$#o+MDLQkIt9Bt&|2t^IoUP4q)FMtQMlt@ z%>IMv&zm`Um~1I2(2UZfh|C^eD(%@-ad2m%nal-1je+4R&P_E`XB z5qAcI=6$Ftr(A&aLt=V+S}Q?TSKW~EC%XE6oi9w2Vw5_$C_oYN&vP%S4j1=ZO3HC5pMM!i>S<=lX>tDfuHNhUGOFzsM{MgJIu z`!MmK*BQ^FjUs}hk}4{zqEn)QuVD5%QbBpzlCP~9VOqc|FbO@FqIySJWc4s6rWO_? z|0ddAgk25D_}m(3Fb}q8>R_aq8!R8$sTgCF43>k<>&I9D^SF8)wspF$6~lMw4Vo9^ z!vYm_$MhnzTZkfHz#m|_stpQ1DlvGIwo*C0xVpWOWIop;>NrVS@un|uzj*FD_8<+V zY;&`&sIfC9QaWGyBz2%M_-zD{T1~(OPvYFlK)*{&AqFybO(v^6%r|p{K!Q(=G(K1k zMcp)9x1Okpz>kzy%`=xw>b+gWG*~^eHFDKC+Sxym7&7_-rK+J0VHJV2QC*f${FXsv zRu?7E0&OyGpEnqz5Byyom&XP_Q>9{C9nFCB*xvsn&OcghgYCQTCh=yh(X#?5f)m}I z4GQPM7r7sOU+C)rg`d5>=NL6oD$rXpY3gW33XyH@nqYt*QJ?ZL% zeeaXQ-5&MQ2&CN^<ooa-V^}#!=_yjsGn7O*1?Hrj9$j<1yvDbh zNv~ynyLpOhqLABo#ctOpKk90|GdSuV{ zYF+Z4jaM647ygzo$$Y)EZoQ96zhQlTb**Npq~~u9XTs#S3>Q!acAqcclkFf>D$bku zBl1)4(FM-*Nn7gM;z``Ee78_tDG{6PLr4pdjypF5k+X5z{IhINzEojlODsJ?p&`M z3ylw}+YHa^J6?&dF*;g((~)+xmOMI@zDoppnXyNyHJ!1aL-+vq@)wfQx~(>b%{u&c z8IOAHPUW39(mxlIJf)7m7UAo0=%EJhf!`b+1<9#fOw z%t05>V-@@IgcUA(L4?LRf0>M{SNw1UHIgl_KA5g#_lK9hjQ|TBV z2_DK)q0|u!F%Xj1hY#7>X##+|5K?bRQ4S-Gz{}uS^4Kvsevbhp7h;y8CsvyNjK=S} z4unYm5X8by>wjk$LKX^_7h0eVk!Ccd?mCpeLmn9_?_f%Y8IzafM~A7jnlkJkf@Kxa z;o9!cC{LY1Q%r*hq1IXEsxgp=2RisR7|Xg02R}@si-N?=T@lh(RB4RFN89YpvES8y zq|vS!V`Mrl@L2z`_7pnS1u@U@YW$JG89L6pa+LEuTnWTK81Wfw#>_OXr09f>jBGW# zqCfulxexv60M}oj~ zn0MiJ=#i48$WZcooy9xLiK=dD4C!Bo7w?`XKJn7k&Y0v~lAx}8fyTx~hethO$@9^q2~2Ridi36Sff+x99cMkyFuGL}bgd`V;E$XAGzdv9H0e z?`bA8Gv-laUW4A%X=E4;=U-M>QH-6?M0pGsa8>C&CUenx*~pN49shJ$#^qQmOP8_m z4hE`{?)1Jqsmh?HrB}yM|EUrAP@z!Uif)^McFELm(QUF-wdD!zPiKs!QkYeZQv;nQ z@~34qd?qIIwR$=pYO%iaR?jF;p0;pc${)9_Y2E#%(gkz*Gr&YV$(>*O%?Ub@5j>JfZ^YBQuLTFo}s-z*TJeNDU;zSXl*7J-#W4zi6B9Gl=yl!0r z00i|wl*$361jR5)tKr2AWn>8+DUc&jXMX>BG>ynHY z%c6cSFJ%jT60QF&UZMe*MsxPQjJeQTOG;^=FUqBug)f7XOj)lPwJpse5tunx%5mGl z!sh0(IjDmN_?O<|W>Q{aMu0rPhu~fW>lz&$CD_St$=KW5!{Klwp71(%%&mKmF-1Ej z`4X#XOyb6Ru8VOdRv4`};vT#7k0hQ2yQytNa|}FUxMBtVX6KT^=b~g@DdkF@r79|^{aEgl{xrW=9fJ7bj9v9{o9T>@pF91A%!i!?8*!blBpI3GeY_lSIsvOCD zd>Rt#Qi&>sbcPCw>H4ejpD;#WO&uAhlL7;M@8~R$Hj8SCna7){X{zDJ=UGmY1(Laz<+jz1kiQB{h0&o(U+Z}lNJ0JnFGt4AN3yJXa}!%4j9S1)9fqESqw~ry;#W1d6&xYJm7G8 zIj!&TG80fVm4b;*K_p*C_$~Q%_T_Tk$H8~)`<{QSc-0>->N|*geP^*N`B5l}w@_P9 zJx?~1_^NP~;84!9cwHOis#Wb$%`a-F%Hr1JAIyicURXI^*R3&VtB&p2Uwi(^5i^BJ zj<=a^@R%NC3W>ksaWMT! zwk_hgas^YM@F|X3T6}4|#tQqh{?psdfl3J8{M2=SYw%0xs*y;_$DM_Nbd@*jDXtEy zL&2ugB@J${jp>HPMv*k<{hh}CfR_(srQLStrt`w5Io#jvHEs6v(@Zy<;hRp!SvWmf z*Pn5E?H);Fcz1GjzVsmmDH;1x-GdwZu_||F*j$!fn(@10pacoL>T@^~C;(HM4HDwW zGYMWn9%doMvh=Va;tPS;Fp;0ErpSB8O4lM}&N^p9LBepe2*qZ}xhMtM<(w#OMZI~1 zrWVpH+E95sH%`^{GJk@;!BK9aX_h{J+~dM={^aK<%DedH#ZZ` zWgQgdnV#pAw%Gnz{m16s4T z167+jsL5NmC>Vd=`Bzo>KaXu?|Btb47DsKLl>BG6_bOw$na|(sQ60;)CeNRbZHEgT bHGkju*F5;oB@=q62`A9Dx3~YxB}@Mug1SHg diff --git a/erpnext/docs/assets/img/articles/services-1.png b/erpnext/docs/assets/img/articles/services-1.png new file mode 100644 index 0000000000000000000000000000000000000000..974bcf65ea37280d75c0d86b1d0a04e93cfd5372 GIT binary patch literal 79827 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

        w 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%0D4e=*fz2fNPu+n9_vEa_U}`pK?cv!wokN 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 UEdA_82Kq-w!{BO>x=r~10E67mO#lD@ literal 0 HcmV?d00001 diff --git a/erpnext/docs/user/manual/en/selling/articles/applying-discount.md b/erpnext/docs/user/manual/en/selling/articles/applying-discount.md index a023e87604..31a12661f8 100644 --- a/erpnext/docs/user/manual/en/selling/articles/applying-discount.md +++ b/erpnext/docs/user/manual/en/selling/articles/applying-discount.md @@ -1,25 +1,29 @@ #Applying Discount -There are several ways Discount can be applied on an items in the sales transactions. +There are several ways Discount can be applied on an item in the sales transactions. #### 1. Discount on "Price List Rate" of an item -You can find the Discount (%) field in the Item table. Discount is applied on the Price List Rate to get the selling Rate of the Item. +You can find the Discount (%) field in the Item table. Discount (%) is applied on the Price List Rate to get the selling Rate of the Item. Discount Percentage -The feature of % Discount is available in all the sales and purchase transactions. +The feature of Discount (%) is available in all sales and purchase transactions. -You can also %Discount applied based on **Pricing Rule** as well. [Click here to learn how Pricing Rule functions.]({{docs_base_url}}/user/manual/en/accounts/pricing-rule.html) +You can use Pricing Rule to automatically apply Discount (%). [Click here to learn how Pricing Rule functions.]({{docs_base_url}}/user/manual/en/accounts/pricing-rule.html) #### 2. Discount on Net Total and Grand Total -From the "Additional Discount" section, you can apply flat discount, as amount or as percentage. +In the "Additional Discount" section, you can apply flat discount, as amount or as percentage. Discount Percentage If Discount Amount is applied based on the **Net Total**, then item's Net Rate and Net Amount is reduced as per the Discount Amount. -If Discount Amount is applied based on the **Grand Total**, then with item's Net Rate, Net Amount and taxes are also re-calculated as per Discount Amount. +Discount Percentage + +If Discount Amount is applied based on the **Grand Total**, then with item's Net Rate, Net Amount as well as taxes are also re-calculated as per Discount Amount. + +Discount Percentage \ No newline at end of file diff --git a/erpnext/docs/user/manual/en/selling/articles/erpnext-for-services-organization.md b/erpnext/docs/user/manual/en/selling/articles/erpnext-for-services-organization.md index cd312ce00a..4b69334d5d 100644 --- a/erpnext/docs/user/manual/en/selling/articles/erpnext-for-services-organization.md +++ b/erpnext/docs/user/manual/en/selling/articles/erpnext-for-services-organization.md @@ -10,33 +10,33 @@ About 30% of ERPNext customers are companies into services. These are companies ###Master Setup -Between the service and trading company, the differentiating master is an **Item** master. Service companies items are non-stock and service items. They don't have stock and warehouse to them. +The setup for a Service company differs primarily for Items. They don't maintain the Stock for Items and thus, don't have Warehouses. -To create a services (non-stock) Item, in the item master, uncheck "Maintain Stock" field. +To create a Service (non-stock) Item, in the item master, uncheck "Maintain Stock" field. -Service Item +Service Item When creating Sales Order for the services, select Order Type as **Maintenance**. Sales Order of Maintenance Type needs lesser details compared to stock item's order like Delivery Note, item warehouse etc. -However, they can still add stock items to mantain their fixed assets etc. +Service company can still add stock items to mantain their fixed assets like computers, furniture and other office equipments. ###Hiding Non-required Features -Since many modules like Manufacturing and stock will not be required for the services company, you can hide those modules from: +Since many modules like Manufacturing and Stock will not be required for the services company, you can hide those modules from: `Setup > Permissions > Show/Hide Modules` -Modules uncheck here will be hidden from every user in the Commpany. +Modules unchecked here will be hidden from all the User. ####Feature Setup -Within the form, there are many fields only needed for companies into trading and manufacturing business. These fields can be hidden for the service Companies. Feature Setup is a tool where you can enable/disable specific feature. If specific feature is disabled, then fields relevant to that feature is hidden from all the forms. For example, if Serial No. feature is disabled from the Featue Setup, then Serial. No. field from Item master and all the sales and purchase transaction will be hidden. +Within the form, there are many fields only needed for companies into trading and manufacturing businesses. These fields can be hidden for the service company. Feature Setup is a tool where you can enable/disable specific feature. If a feature is disabled, then fields relevant to that feature is hidden from all the forms. For example, if Serial No. feature is disabled, then Serial. No. field from Item as well as from all the sales and purchase transaction will be hidden. [To learn more about Feature Setup, click here.]({{docs_base_url}}/user/manual/en/customize-erpnext/hiding-modules-and-features.html). ####Permissions -ERPNext is the permission driven system. Users access system based on permissions assigned to them. So, if user is not assigned Role related to Stock and Manufacturing module, it will be hidden from user. [Click here to learn more about permission management.]({{docs_base_url}}/user/manual/en/setting-up/users-and-permissions.html). +ERPNext is the permission controlled system. Users access system based on permissions assigned to them. So, if user is not assigned Role related to Stock and Manufacturing module, it will be hidden from that User. [Click here to learn more about permission management.]({{docs_base_url}}/user/manual/en/setting-up/users-and-permissions.html). You can also refer to help video on User and Permissions setting in ERPNext. diff --git a/erpnext/docs/user/manual/en/selling/articles/sales-persons-in-the-sales-transactions.md b/erpnext/docs/user/manual/en/selling/articles/sales-persons-in-the-sales-transactions.md index 1acf7f019b..eda09375f1 100644 --- a/erpnext/docs/user/manual/en/selling/articles/sales-persons-in-the-sales-transactions.md +++ b/erpnext/docs/user/manual/en/selling/articles/sales-persons-in-the-sales-transactions.md @@ -1,43 +1,45 @@ #Sales Persons in the Sale Transactions -In ERPNext, Sales Person master is maintained in [tree structure]({{docs_base_url}}/user/manual/en/setting-up/articles/managing-tree-structure-masters.html). Sales Person table is available in all the Sales transactions where you can select Sales Person who worked on that specific sales transaction. +In ERPNext, Sales Person master is maintained in [tree structure]({{docs_base_url}}/user/manual/en/setting-up/articles/managing-tree-structure-masters.html). Sales Person is selectable in all the sales transactions. -Sales Persons can be updated in the Customer master as well. On selection of Customer in the transactions, default Sales Persons for that Customer will be auto-fetched. +Sales Persons can be updated in the Customer master as well. On selection of Customer in the transactions, Sales Persons as updated in the Customer will fetch into sales transaction. Sales Person Customer ####Sales Person Contribution -If more than one sales persons are working together on an order, then contribution % should also for each Sales Person, based on their effort. +If more than one sales persons are working together on an order, then contribution (%) should be set for each Sales Person. Sales Person Order -On saving transaction, based on the Net Total and %Contriution, Contribution to Net Total will be calculated for each Sales Person. +On saving transaction, based on the Net Total and Contriution (%), `Contribution to Net Total` will be calculated for each Sales Person.

        ####Sales Person Transaction Report -You can check Sales Person Transaction Report from: +Check Sales Person's Transaction report from: `Selling > Standard Reports > Sales Personwise Transaction Summary` -This report can be generated based on Sales Order, Delivery Note and Sales Invoice. It will give you total amount of sales made by an employee over a period. +This report can be generated based on Sales Order, Delivery Note and Sales Invoice. It will give you total amount of sale made by an employe. Sales Person Report ####Sales Person wise Commission -ERPNext doesn't calculate commission payable to an Employee, but only provide total amount of sales made by him/her. As a work around, you can add your Sales Person as Sales Partner, as commission calculation feature is readily available in ERPNext. You can check Sales Partner's Commission report from +ERPNext only provide total amount of sale made by a Sales Person. If you offer commission to Sales Person, you should add Sales Person as Sales Partners in ERPNext. For Sales Partners, you can define Commission (%). On selected on Sales Partner in a sales transction, based on Net Total, Commission Amount is calculated as well. You can check Sales Partner's commission report from: `Accounts > Standard Reports > Sales Partners Commission` ####Disable Sales Person Feature -If you don't track sales person wise performance, and doesn't wish to use this feature, you can disable it from: +If you don't track Sales Person wise performance, and doesn't wish to use this feature, you can disable it from: -`Setup > Customize > Features Setup` +`Setup > Customize > Features Setup` Disable Sales Person +On disabling this feature, fields and tables related to Sales Person will become hidden from masters and transcations. + \ No newline at end of file From bf225c11b46d3239209941e76e5d13b937629668 Mon Sep 17 00:00:00 2001 From: Umair Sayyed Date: Wed, 27 Jan 2016 18:19:06 +0530 Subject: [PATCH 10/46] fixed articles --- .../en/selling/articles/applying-discount.md | 18 +++++++++++------- .../en/selling/articles/close-sales-order.md | 6 ++---- .../erpnext-for-services-organization.md | 4 ++-- .../sales-persons-in-the-sales-transactions.md | 10 +++++----- .../en/selling/articles/shipping-rule.md | 8 ++++---- 5 files changed, 24 insertions(+), 22 deletions(-) diff --git a/erpnext/docs/user/manual/en/selling/articles/applying-discount.md b/erpnext/docs/user/manual/en/selling/articles/applying-discount.md index 31a12661f8..ad66ccc97c 100644 --- a/erpnext/docs/user/manual/en/selling/articles/applying-discount.md +++ b/erpnext/docs/user/manual/en/selling/articles/applying-discount.md @@ -6,24 +6,28 @@ There are several ways Discount can be applied on an item in the sales transacti You can find the Discount (%) field in the Item table. Discount (%) is applied on the Price List Rate to get the selling Rate of the Item. -Discount Percentage +Discount Percentage The feature of Discount (%) is available in all sales and purchase transactions. -You can use Pricing Rule to automatically apply Discount (%). [Click here to learn how Pricing Rule functions.]({{docs_base_url}}/user/manual/en/accounts/pricing-rule.html) +You can use Pricing Rule for auto-application of Discount (%). [Click here to learn how Pricing Rule functions.]({{docs_base_url}}/user/manual/en/accounts/pricing-rule.html) #### 2. Discount on Net Total and Grand Total -In the "Additional Discount" section, you can apply flat discount, as amount or as percentage. +In the "Additional Discount" section, you can apply discount as amount or as percentage. -Discount Percentage +Discount Percentage -If Discount Amount is applied based on the **Net Total**, then item's Net Rate and Net Amount is reduced as per the Discount Amount. +##### Discount on Net Total -Discount Percentage +If Discount Amount is applied on **Net Total**, then item's Net Rate and Net Amount is calculated as per the Discount Amount. Net Rate and Amount field will be visible only if Discount is applied using this feature. + +Discount Percentage + +##### Discount on Grand Total If Discount Amount is applied based on the **Grand Total**, then with item's Net Rate, Net Amount as well as taxes are also re-calculated as per Discount Amount. -Discount Percentage +Discount Percentage \ No newline at end of file diff --git a/erpnext/docs/user/manual/en/selling/articles/close-sales-order.md b/erpnext/docs/user/manual/en/selling/articles/close-sales-order.md index 442be9f1c3..3990e7d309 100644 --- a/erpnext/docs/user/manual/en/selling/articles/close-sales-order.md +++ b/erpnext/docs/user/manual/en/selling/articles/close-sales-order.md @@ -2,9 +2,7 @@ In the submitted Sales Orders, you will find **Stop** option. Stopping Sales Order will restrict user from creating Delivery Note and Sales Invoice against it. -Close SO - -![stop Sales Order]({{docs_base_url}}/assets/img/articles/$SGrab_439.png) +Close SO ####Scenario @@ -12,7 +10,7 @@ An order is received for ten Wind Turbines. Sales Order is also created for ten In this case, create Delivery Note and Sales Invoice will be created only for the seven units. And the Sales Order should be set as stopped. -![Sales Order Stopped]({{docs_base_url}}/assets/img/articles/$SGrab_440.png) +Closed SO Once Sales Order is set as stopped, you will not have pending quantities (three in this case) reflecting in Pending to Deliver and Pending to Invoice reports. To make further transactions against Stopped Sales Order, you should first Unstop it. diff --git a/erpnext/docs/user/manual/en/selling/articles/erpnext-for-services-organization.md b/erpnext/docs/user/manual/en/selling/articles/erpnext-for-services-organization.md index 4b69334d5d..f905dfd511 100644 --- a/erpnext/docs/user/manual/en/selling/articles/erpnext-for-services-organization.md +++ b/erpnext/docs/user/manual/en/selling/articles/erpnext-for-services-organization.md @@ -1,4 +1,4 @@ -#ERPNext for Service Organizations +#ERPNext for Service Organization **Question:** ERPNext looks primarily designed for the traders and manufacturers. Is ERPNext used by companies offering servies? @@ -14,7 +14,7 @@ The setup for a Service company differs primarily for Items. They don't maintain To create a Service (non-stock) Item, in the item master, uncheck "Maintain Stock" field. -Service Item +Service Item When creating Sales Order for the services, select Order Type as **Maintenance**. Sales Order of Maintenance Type needs lesser details compared to stock item's order like Delivery Note, item warehouse etc. diff --git a/erpnext/docs/user/manual/en/selling/articles/sales-persons-in-the-sales-transactions.md b/erpnext/docs/user/manual/en/selling/articles/sales-persons-in-the-sales-transactions.md index eda09375f1..c270e13657 100644 --- a/erpnext/docs/user/manual/en/selling/articles/sales-persons-in-the-sales-transactions.md +++ b/erpnext/docs/user/manual/en/selling/articles/sales-persons-in-the-sales-transactions.md @@ -1,16 +1,16 @@ -#Sales Persons in the Sale Transactions +#Sales Persons in the Sales Transactions In ERPNext, Sales Person master is maintained in [tree structure]({{docs_base_url}}/user/manual/en/setting-up/articles/managing-tree-structure-masters.html). Sales Person is selectable in all the sales transactions. Sales Persons can be updated in the Customer master as well. On selection of Customer in the transactions, Sales Persons as updated in the Customer will fetch into sales transaction. -Sales Person Customer +Sales Person Customer ####Sales Person Contribution If more than one sales persons are working together on an order, then contribution (%) should be set for each Sales Person. -Sales Person Order +Sales Person Order On saving transaction, based on the Net Total and Contriution (%), `Contribution to Net Total` will be calculated for each Sales Person. @@ -24,7 +24,7 @@ Check Sales Person's Transaction report from: This report can be generated based on Sales Order, Delivery Note and Sales Invoice. It will give you total amount of sale made by an employe. -Sales Person Report +Sales Person Report ####Sales Person wise Commission @@ -38,7 +38,7 @@ If you don't track Sales Person wise performance, and doesn't wish to use this f `Setup > Customize > Features Setup` -Disable Sales Person +Disable Sales Person On disabling this feature, fields and tables related to Sales Person will become hidden from masters and transcations. diff --git a/erpnext/docs/user/manual/en/selling/articles/shipping-rule.md b/erpnext/docs/user/manual/en/selling/articles/shipping-rule.md index 086294b70d..d87ba36c4c 100644 --- a/erpnext/docs/user/manual/en/selling/articles/shipping-rule.md +++ b/erpnext/docs/user/manual/en/selling/articles/shipping-rule.md @@ -10,7 +10,7 @@ To setup Shipping Rule, go to: ####Shipping Rule Conditions -Shipping Rule Prices +Shipping Rule Prices Referring above, you will notice that shipping charges are reducing as valye is increasing. This shipping charge will only be applied if transaction total falls under one of the above range. @@ -18,16 +18,16 @@ Referring above, you will notice that shipping charges are reducing as valye is You can set Shipping Charges valid for all the countries, or specify specific Country. If specific countries mentioned, then Shipping Charges will be applied only if Customer's country matches Country mentioned in the Shipping Rule. -Shipping Rule +Shipping Rule ####Shipping Account If shipping charges are applied based on Shipping Rule, then more values like Shipping Account, Cost Center will be needed as well to add row in the Taxes and Other Charges table of transaction. Hence these details are tracked as well in the Shipping Rule. -Shipping Account +Shipping Account ####Shipping Rule Application Following is an example of how shipping charges is auto-applied on Sales Order based on Shipping Rule. -Shipping Rule Application \ No newline at end of file +Shipping Rule Application \ No newline at end of file From bad13369d44df55ca6474ca6cd57e56ead6111bf Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Wed, 27 Jan 2016 18:58:21 +0530 Subject: [PATCH 11/46] [minor] added abbreviate function in company --- erpnext/setup/doctype/company/company.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/erpnext/setup/doctype/company/company.py b/erpnext/setup/doctype/company/company.py index 29dee1e30a..01e5742c2a 100644 --- a/erpnext/setup/doctype/company/company.py +++ b/erpnext/setup/doctype/company/company.py @@ -166,6 +166,9 @@ class Company(Document): frappe.defaults.clear_cache() + def abbreviate(self): + self.abbr = ''.join([c[0].upper() for c in self.name.split()]) + def on_trash(self): """ Trash accounts and cost centers for this company if no gl entry exists From c118fc9343b283a5f3d03ff0acd8bfdb57e0c3a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chao-Yee=20Hsu=20=E8=A8=B1=E6=9C=9D=E7=9B=8A?= Date: Fri, 29 Jan 2016 10:38:33 +0800 Subject: [PATCH 12/46] Update material_request.py Add "order by mr_item.item_code ASC" to 'get_material_requests_based_on_supplier(supplier)' in order to get material request item sorted by ascending order. --- erpnext/stock/doctype/material_request/material_request.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/erpnext/stock/doctype/material_request/material_request.py b/erpnext/stock/doctype/material_request/material_request.py index 74a8fa146c..034745f8c1 100644 --- a/erpnext/stock/doctype/material_request/material_request.py +++ b/erpnext/stock/doctype/material_request/material_request.py @@ -258,7 +258,8 @@ def get_material_requests_based_on_supplier(supplier): and mr.material_request_type = 'Purchase' and mr.per_ordered < 99.99 and mr.docstatus = 1 - and mr.status != 'Stopped'""" % ', '.join(['%s']*len(supplier_items)), + and mr.status != 'Stopped'""" % ', '.join(['%s']*len(supplier_items) + order by mr_item.item_code ASC), tuple(supplier_items)) else: material_requests = [] From 77e4f6b774a046d455b5ee1f5c1bfb32e483092c Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Fri, 29 Jan 2016 11:29:05 +0530 Subject: [PATCH 13/46] [fix] strip item_code before autoname --- erpnext/stock/doctype/item/item.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/erpnext/stock/doctype/item/item.py b/erpnext/stock/doctype/item/item.py index 80cba88365..3e3c13e5c0 100644 --- a/erpnext/stock/doctype/item/item.py +++ b/erpnext/stock/doctype/item/item.py @@ -7,7 +7,7 @@ import json import urllib import itertools from frappe import msgprint, _ -from frappe.utils import cstr, flt, cint, getdate, now_datetime, formatdate +from frappe.utils import cstr, flt, cint, getdate, now_datetime, formatdate, strip from frappe.website.website_generator import WebsiteGenerator from erpnext.setup.doctype.item_group.item_group import invalidate_cache_for, get_parent_item_groups from frappe.website.render import clear_cache @@ -45,6 +45,7 @@ class Item(WebsiteGenerator): elif not self.item_code: msgprint(_("Item Code is mandatory because Item is not automatically numbered"), raise_exception=1) + self.item_code = strip(self.item_code) self.name = self.item_code def before_insert(self): From 7c0a58ac3f1af3e1dde950c835fc16032a0f9807 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Fri, 29 Jan 2016 12:16:24 +0530 Subject: [PATCH 14/46] [fix] show formatted currency value in advance paid validation --- .../doctype/journal_entry/journal_entry.py | 12 +++-- .../purchase_order/purchase_order.json | 50 +++++++++---------- erpnext/controllers/accounts_controller.py | 25 ++++++---- 3 files changed, 48 insertions(+), 39 deletions(-) diff --git a/erpnext/accounts/doctype/journal_entry/journal_entry.py b/erpnext/accounts/doctype/journal_entry/journal_entry.py index 25b05cb1d9..55e846be52 100644 --- a/erpnext/accounts/doctype/journal_entry/journal_entry.py +++ b/erpnext/accounts/doctype/journal_entry/journal_entry.py @@ -209,9 +209,7 @@ class JournalEntry(AccountsController): account = self.reference_accounts[reference_name] if reference_type in ("Sales Order", "Purchase Order"): - order = frappe.db.get_value(reference_type, reference_name, - ["docstatus", "per_billed", "status", "advance_paid", - "base_grand_total", "grand_total", "currency"], as_dict=1) + order = frappe.get_doc(reference_type, reference_name) if order.docstatus != 1: frappe.throw(_("{0} {1} is not submitted").format(reference_type, reference_name)) @@ -225,12 +223,16 @@ class JournalEntry(AccountsController): account_currency = get_account_currency(account) if account_currency == self.company_currency: voucher_total = order.base_grand_total + formatted_voucher_total = fmt_money(voucher_total, order.precision("base_grand_total"), + currency=account_currency) else: voucher_total = order.grand_total + formatted_voucher_total = fmt_money(voucher_total, order.precision("grand_total"), + currency=account_currency) if flt(voucher_total) < (flt(order.advance_paid) + total): frappe.throw(_("Advance paid against {0} {1} cannot be greater \ - than Grand Total {2}").format(reference_type, reference_name, voucher_total)) + than Grand Total {2}").format(reference_type, reference_name, formatted_voucher_total)) def validate_invoices(self): """Validate totals and docstatus for invoices""" @@ -797,7 +799,7 @@ def get_exchange_rate(account, account_currency=None, company=None, company_currency = get_company_currency(company) if account_currency != company_currency: - if reference_type in ("Sales Invoice", "Purchase Invoice") and reference_name: + if reference_type and reference_name and frappe.get_meta(reference_type).get_field("conversion_rate"): exchange_rate = frappe.db.get_value(reference_type, reference_name, "conversion_rate") elif account_details and account_details.account_type == "Bank" and \ diff --git a/erpnext/buying/doctype/purchase_order/purchase_order.json b/erpnext/buying/doctype/purchase_order/purchase_order.json index 69e518539d..2cf67c1641 100644 --- a/erpnext/buying/doctype/purchase_order/purchase_order.json +++ b/erpnext/buying/doctype/purchase_order/purchase_order.json @@ -1597,30 +1597,6 @@ "set_only_once": 0, "unique": 0 }, - { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "fieldname": "advance_paid", - "fieldtype": "Currency", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "Advance Paid", - "length": 0, - "no_copy": 1, - "options": "party_account_currency", - "permlevel": 0, - "print_hide": 1, - "print_hide_if_no_value": 0, - "read_only": 1, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, - "unique": 0 - }, { "allow_on_submit": 0, "bold": 0, @@ -1695,6 +1671,30 @@ "set_only_once": 0, "unique": 0 }, + { + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "advance_paid", + "fieldtype": "Currency", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Advance Paid", + "length": 0, + "no_copy": 1, + "options": "party_account_currency", + "permlevel": 0, + "print_hide": 1, + "print_hide_if_no_value": 0, + "read_only": 1, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "unique": 0 + }, { "allow_on_submit": 0, "bold": 0, @@ -2534,7 +2534,7 @@ "issingle": 0, "istable": 0, "max_attachments": 0, - "modified": "2016-01-27 15:15:05.213016", + "modified": "2016-01-29 01:41:08.478575", "modified_by": "Administrator", "module": "Buying", "name": "Purchase Order", diff --git a/erpnext/controllers/accounts_controller.py b/erpnext/controllers/accounts_controller.py index b8acf68ddf..9916613875 100644 --- a/erpnext/controllers/accounts_controller.py +++ b/erpnext/controllers/accounts_controller.py @@ -4,7 +4,7 @@ from __future__ import unicode_literals import frappe from frappe import _, throw -from frappe.utils import today, flt, cint +from frappe.utils import today, flt, cint, fmt_money from erpnext.setup.utils import get_company_currency, get_exchange_rate from erpnext.accounts.utils import get_fiscal_year, validate_fiscal_year, get_account_currency from erpnext.utilities.transaction_base import TransactionBase @@ -402,21 +402,28 @@ class AccountsController(TransactionBase): """.format(dr_or_cr=dr_or_cr), (self.doctype, self.name, party), as_dict=1) if advance: - advance_paid = flt(advance[0].amount, self.precision("advance_paid")) - - frappe.db.set_value(self.doctype, self.name, "party_account_currency", - advance[0].account_currency) - - if advance[0].account_currency == self.currency: + advance = advance[0] + advance_paid = flt(advance.amount, self.precision("advance_paid")) + formatted_advance_paid = fmt_money(advance_paid, precision=self.precision("advance_paid"), + currency=advance.account_currency) + + frappe.db.set_value(self.doctype, self.name, "party_account_currency", + advance.account_currency) + + if advance.account_currency == self.currency: order_total = self.grand_total + formatted_order_total = fmt_money(order_total, precision=self.precision("grand_total"), + currency=advance.account_currency) else: order_total = self.base_grand_total - + formatted_order_total = fmt_money(order_total, precision=self.precision("base_grand_total"), + currency=advance.account_currency) + if order_total >= advance_paid: frappe.db.set_value(self.doctype, self.name, "advance_paid", advance_paid) else: frappe.throw(_("Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2})") - .format(advance_paid, self.name, order_total)) + .format(formatted_advance_paid, self.name, formatted_order_total)) @property def company_abbr(self): From 172efb1e873c0a66873305fdd4f23740c2c749b8 Mon Sep 17 00:00:00 2001 From: Neil Trini Lasrado Date: Wed, 27 Jan 2016 19:11:05 +0530 Subject: [PATCH 15/46] Fixed error messages while making Time Log Batch from Time Log List view --- erpnext/projects/doctype/time_log/time_log_list.js | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/erpnext/projects/doctype/time_log/time_log_list.js b/erpnext/projects/doctype/time_log/time_log_list.js index a2eb05cfc9..361a930319 100644 --- a/erpnext/projects/doctype/time_log/time_log_list.js +++ b/erpnext/projects/doctype/time_log/time_log_list.js @@ -18,12 +18,20 @@ frappe.listview_settings['Time Log'] = { for(var i in selected) { var d = selected[i]; if(!d.billable) { - msgprint(__("Time Log is not billable") + ": " + d.name); + msgprint(__("Time Log is not billable") + ": " + d.name + " - " + d.title); + return; + } + if(d.status=="Batched for Billing") { + msgprint(__("Time Log has been Batched for Billing") + ": " + d.name + " - " + d.title); + return; + } + if(d.status=="Billed") { + msgprint(__("Time Log has been Billed") + ": " + d.name + " - " + d.title); return; } if(d.status!="Submitted") { - msgprint(__("Time Log Status must be Submitted.")); - return + msgprint(__("Time Log Status must be Submitted.") + ": " + d.name + " - " + d.title); + return; } } From 5b7d0a960ef26e52710ccba07f6fae50e4abdda0 Mon Sep 17 00:00:00 2001 From: Neil Trini Lasrado Date: Fri, 29 Jan 2016 15:02:28 +0530 Subject: [PATCH 16/46] Fixed indicators & List view in Time Log, Time Log Batch --- .../projects/doctype/time_log/time_log.json | 1737 +++++++++-------- .../doctype/time_log/time_log_list.js | 11 + .../time_log_batch/time_log_batch_list.js | 4 +- 3 files changed, 883 insertions(+), 869 deletions(-) diff --git a/erpnext/projects/doctype/time_log/time_log.json b/erpnext/projects/doctype/time_log/time_log.json index 88eae1ef3f..fb1a71072b 100644 --- a/erpnext/projects/doctype/time_log/time_log.json +++ b/erpnext/projects/doctype/time_log/time_log.json @@ -1,950 +1,951 @@ { - "allow_copy": 0, - "allow_import": 1, - "allow_rename": 0, - "autoname": "naming_series:", - "creation": "2013-04-03 16:38:41", - "custom": 0, - "description": "Log of Activities performed by users against Tasks that can be used for tracking time, billing.", - "docstatus": 0, - "doctype": "DocType", - "document_type": "Setup", + "allow_copy": 0, + "allow_import": 1, + "allow_rename": 0, + "autoname": "naming_series:", + "creation": "2013-04-03 16:38:41", + "custom": 0, + "description": "Log of Activities performed by users against Tasks that can be used for tracking time, billing.", + "docstatus": 0, + "doctype": "DocType", + "document_type": "Setup", "fields": [ { - "allow_on_submit": 0, - "bold": 1, - "collapsible": 0, - "depends_on": "eval:!doc.for_manufacturing", - "fieldname": "activity_type", - "fieldtype": "Link", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "Activity Type", - "length": 0, - "no_copy": 0, - "options": "Activity Type", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 1, + "collapsible": 0, + "depends_on": "eval:!doc.for_manufacturing", + "fieldname": "activity_type", + "fieldtype": "Link", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Activity Type", + "length": 0, + "no_copy": 0, + "options": "Activity Type", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "fieldname": "naming_series", - "fieldtype": "Select", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "Series", - "length": 0, - "no_copy": 0, - "options": "TL-", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "naming_series", + "fieldtype": "Select", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Series", + "length": 0, + "no_copy": 0, + "options": "TL-", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "depends_on": "", - "fieldname": "project", - "fieldtype": "Link", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 1, - "label": "Project", - "length": 0, - "no_copy": 0, - "options": "Project", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "depends_on": "", + "fieldname": "project", + "fieldtype": "Link", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Project", + "length": 0, + "no_copy": 0, + "options": "Project", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "depends_on": "", - "fieldname": "task", - "fieldtype": "Link", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "Task", - "length": 0, - "no_copy": 0, - "options": "Task", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "depends_on": "", + "fieldname": "task", + "fieldtype": "Link", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Task", + "length": 0, + "no_copy": 0, + "options": "Task", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "fieldname": "status", - "fieldtype": "Select", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "Status", - "length": 0, - "no_copy": 0, - "options": "Draft\nSubmitted\nBatched for Billing\nBilled\nCancelled", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 1, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "status", + "fieldtype": "Select", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Status", + "length": 0, + "no_copy": 0, + "options": "Draft\nSubmitted\nBatched for Billing\nBilled\nCancelled", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 1, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "fieldname": "column_break_2", - "fieldtype": "Column Break", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "length": 0, - "no_copy": 0, - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "column_break_2", + "fieldtype": "Column Break", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "fieldname": "from_time", - "fieldtype": "Datetime", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "From Time", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "from_time", + "fieldtype": "Datetime", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "From Time", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "default": "0", - "fieldname": "hours", - "fieldtype": "Float", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 1, - "label": "Hours", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "default": "0", + "fieldname": "hours", + "fieldtype": "Float", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 1, + "label": "Hours", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "fieldname": "to_time", - "fieldtype": "Datetime", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "To Time", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 1, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "to_time", + "fieldtype": "Datetime", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "To Time", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 1, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "fieldname": "billable", - "fieldtype": "Check", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "Billable", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "billable", + "fieldtype": "Check", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Billable", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "fieldname": "section_break_7", - "fieldtype": "Section Break", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "section_break_7", + "fieldtype": "Section Break", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "fieldname": "note", - "fieldtype": "Text Editor", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "Note", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "note", + "fieldtype": "Text Editor", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Note", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "fieldname": "section_break_12", - "fieldtype": "Section Break", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "length": 0, - "no_copy": 0, - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "section_break_12", + "fieldtype": "Section Break", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "fieldname": "user", - "fieldtype": "Link", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "User", - "length": 0, - "no_copy": 0, - "options": "User", - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "user", + "fieldtype": "Link", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "User", + "length": 0, + "no_copy": 0, + "options": "User", + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "fieldname": "employee", - "fieldtype": "Link", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "Employee", - "length": 0, - "no_copy": 0, - "options": "Employee", - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "employee", + "fieldtype": "Link", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Employee", + "length": 0, + "no_copy": 0, + "options": "Employee", + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "fieldname": "column_break_3", - "fieldtype": "Column Break", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "length": 0, - "no_copy": 0, - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "column_break_3", + "fieldtype": "Column Break", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "length": 0, + "no_copy": 0, + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "fieldname": "for_manufacturing", - "fieldtype": "Check", - "hidden": 1, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "For Manufacturing", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 1, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "for_manufacturing", + "fieldtype": "Check", + "hidden": 1, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "For Manufacturing", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 1, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "depends_on": "eval:doc.for_manufacturing", - "fieldname": "section_break_11", - "fieldtype": "Section Break", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "length": 0, - "no_copy": 0, - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "depends_on": "eval:doc.for_manufacturing", + "fieldname": "section_break_11", + "fieldtype": "Section Break", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "depends_on": "", - "fieldname": "production_order", - "fieldtype": "Link", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "Production Order", - "length": 0, - "no_copy": 0, - "options": "Production Order", - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 1, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "depends_on": "", + "fieldname": "production_order", + "fieldtype": "Link", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Production Order", + "length": 0, + "no_copy": 0, + "options": "Production Order", + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 1, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "depends_on": "", - "fieldname": "operation", - "fieldtype": "Link", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "Operation", - "length": 0, - "no_copy": 0, - "options": "Operation", - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 1, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "depends_on": "", + "fieldname": "operation", + "fieldtype": "Link", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Operation", + "length": 0, + "no_copy": 0, + "options": "Operation", + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 1, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "depends_on": "", - "fieldname": "operation_id", - "fieldtype": "Data", - "hidden": 1, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "Operation ID", - "length": 0, - "no_copy": 0, - "options": "", - "permlevel": 0, - "precision": "", - "print_hide": 1, - "print_hide_if_no_value": 0, - "read_only": 1, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "depends_on": "", + "fieldname": "operation_id", + "fieldtype": "Data", + "hidden": 1, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Operation ID", + "length": 0, + "no_copy": 0, + "options": "", + "permlevel": 0, + "precision": "", + "print_hide": 1, + "print_hide_if_no_value": 0, + "read_only": 1, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "fieldname": "column_break_14", - "fieldtype": "Column Break", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "length": 0, - "no_copy": 0, - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "column_break_14", + "fieldtype": "Column Break", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "depends_on": "", - "fieldname": "workstation", - "fieldtype": "Link", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "Workstation", - "length": 0, - "no_copy": 0, - "options": "Workstation", - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 1, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "depends_on": "", + "fieldname": "workstation", + "fieldtype": "Link", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Workstation", + "length": 0, + "no_copy": 0, + "options": "Workstation", + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 1, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "depends_on": "", - "description": "Operation completed for how many finished goods?", - "fieldname": "completed_qty", - "fieldtype": "Float", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "Completed Qty", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "depends_on": "", + "description": "Operation completed for how many finished goods?", + "fieldname": "completed_qty", + "fieldtype": "Float", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Completed Qty", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "depends_on": "", - "fieldname": "section_break_24", - "fieldtype": "Section Break", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "length": 0, - "no_copy": 0, - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "depends_on": "", + "fieldname": "section_break_24", + "fieldtype": "Section Break", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "default": "0", - "description": "", - "fieldname": "costing_rate", - "fieldtype": "Currency", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "Costing Rate based on Activity Type (per hour)", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 1, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "default": "0", + "description": "", + "fieldname": "costing_rate", + "fieldtype": "Currency", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Costing Rate based on Activity Type (per hour)", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 1, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "default": "0", - "fieldname": "costing_amount", - "fieldtype": "Currency", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "Costing Amount", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 1, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "default": "0", + "fieldname": "costing_amount", + "fieldtype": "Currency", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Costing Amount", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 1, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "fieldname": "column_break_25", - "fieldtype": "Column Break", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "length": 0, - "no_copy": 0, - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "column_break_25", + "fieldtype": "Column Break", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "default": "0", - "description": "", - "fieldname": "billing_rate", - "fieldtype": "Currency", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "Billing Rate based on Activity Type (per hour)", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 1, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "default": "0", + "description": "", + "fieldname": "billing_rate", + "fieldtype": "Currency", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Billing Rate based on Activity Type (per hour)", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 1, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "depends_on": "eval:doc.billable", - "fieldname": "additional_cost", - "fieldtype": "Currency", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "Additional Cost", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "depends_on": "eval:doc.billable", + "fieldname": "additional_cost", + "fieldtype": "Currency", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Additional Cost", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "default": "0", - "description": "Will be updated only if Time Log is 'Billable'", - "fieldname": "billing_amount", - "fieldtype": "Currency", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "Billing Amount", - "length": 0, - "no_copy": 0, - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 1, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "default": "0", + "description": "Will be updated only if Time Log is 'Billable'", + "fieldname": "billing_amount", + "fieldtype": "Currency", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Billing Amount", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 1, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "fieldname": "section_break_29", - "fieldtype": "Section Break", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "length": 0, - "no_copy": 0, - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "section_break_29", + "fieldtype": "Section Break", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "description": "Will be updated when batched.", - "fieldname": "time_log_batch", - "fieldtype": "Link", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "Time Log Batch", - "length": 0, - "no_copy": 0, - "options": "Time Log Batch", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 1, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "description": "Will be updated when batched.", + "fieldname": "time_log_batch", + "fieldtype": "Link", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Time Log Batch", + "length": 0, + "no_copy": 0, + "options": "Time Log Batch", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 1, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "description": "Will be updated when billed.", - "fieldname": "sales_invoice", - "fieldtype": "Link", - "hidden": 0, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "Sales Invoice", - "length": 0, - "no_copy": 0, - "options": "Sales Invoice", - "permlevel": 0, - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 1, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "description": "Will be updated when billed.", + "fieldname": "sales_invoice", + "fieldtype": "Link", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Sales Invoice", + "length": 0, + "no_copy": 0, + "options": "Sales Invoice", + "permlevel": 0, + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 1, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "fieldname": "amended_from", - "fieldtype": "Link", - "hidden": 0, - "ignore_user_permissions": 1, - "in_filter": 0, - "in_list_view": 0, - "label": "Amended From", - "length": 0, - "no_copy": 1, - "options": "Time Log", - "permlevel": 1, - "print_hide": 1, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "amended_from", + "fieldtype": "Link", + "hidden": 0, + "ignore_user_permissions": 1, + "in_filter": 0, + "in_list_view": 0, + "label": "Amended From", + "length": 0, + "no_copy": 1, + "options": "Time Log", + "permlevel": 1, + "print_hide": 1, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 - }, + }, { - "allow_on_submit": 1, - "bold": 0, - "collapsible": 0, - "fieldname": "title", - "fieldtype": "Data", - "hidden": 1, - "ignore_user_permissions": 0, - "in_filter": 0, - "in_list_view": 0, - "label": "Title", - "length": 0, - "no_copy": 1, - "permlevel": 0, - "precision": "", - "print_hide": 0, - "print_hide_if_no_value": 0, - "read_only": 0, - "report_hide": 0, - "reqd": 0, - "search_index": 0, - "set_only_once": 0, + "allow_on_submit": 1, + "bold": 0, + "collapsible": 0, + "fieldname": "title", + "fieldtype": "Data", + "hidden": 1, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Title", + "length": 0, + "no_copy": 1, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, "unique": 0 } - ], - "hide_heading": 0, - "hide_toolbar": 0, - "icon": "icon-time", - "idx": 1, - "in_create": 0, - "in_dialog": 0, - "is_submittable": 1, - "issingle": 0, - "istable": 0, - "max_attachments": 0, - "modified": "2016-01-14 04:40:47.439032", - "modified_by": "Administrator", - "module": "Projects", - "name": "Time Log", - "owner": "Administrator", + ], + "hide_heading": 0, + "hide_toolbar": 0, + "icon": "icon-time", + "idx": 1, + "in_create": 0, + "in_dialog": 0, + "is_submittable": 1, + "issingle": 0, + "istable": 0, + "max_attachments": 0, + "modified": "2016-01-29 04:05:43.489154", + "modified_by": "Administrator", + "module": "Projects", + "name": "Time Log", + "owner": "Administrator", "permissions": [ { - "amend": 1, - "apply_user_permissions": 0, - "cancel": 1, - "create": 1, - "delete": 1, - "email": 1, - "export": 0, - "if_owner": 0, - "import": 0, - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "Projects User", - "set_user_permissions": 0, - "share": 1, - "submit": 1, + "amend": 1, + "apply_user_permissions": 0, + "cancel": 1, + "create": 1, + "delete": 1, + "email": 1, + "export": 0, + "if_owner": 0, + "import": 0, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Projects User", + "set_user_permissions": 0, + "share": 1, + "submit": 1, "write": 1 - }, + }, { - "amend": 1, - "apply_user_permissions": 0, - "cancel": 1, - "create": 0, - "delete": 1, - "email": 1, - "export": 0, - "if_owner": 0, - "import": 0, - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "Projects Manager", - "set_user_permissions": 0, - "share": 1, - "submit": 1, + "amend": 1, + "apply_user_permissions": 0, + "cancel": 1, + "create": 0, + "delete": 1, + "email": 1, + "export": 0, + "if_owner": 0, + "import": 0, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Projects Manager", + "set_user_permissions": 0, + "share": 1, + "submit": 1, "write": 1 } - ], - "read_only": 0, - "read_only_onload": 0, + ], + "read_only": 0, + "read_only_onload": 0, + "sort_order": "ASC", "title_field": "title" -} +} \ No newline at end of file diff --git a/erpnext/projects/doctype/time_log/time_log_list.js b/erpnext/projects/doctype/time_log/time_log_list.js index 361a930319..53969283b3 100644 --- a/erpnext/projects/doctype/time_log/time_log_list.js +++ b/erpnext/projects/doctype/time_log/time_log_list.js @@ -4,6 +4,17 @@ // render frappe.listview_settings['Time Log'] = { add_fields: ["status", "billable", "activity_type", "task", "project", "hours", "for_manufacturing", "billing_amount"], + + get_indicator: function(doc) { + if (doc.status== "Batched for Billing") { + return [__("Batched for Billing"), "darkgrey", "status,=,Batched for Billing"] + } else if (doc.status== "Billed") { + return [__("Billed"), "green", "status,=,Billed"] + } else if (doc.status== "Submitted" && doc.billable) { + return [__("Billable"), "orange", "billable,=,1"] + } + }, + selectable: true, onload: function(me) { me.page.add_menu_item(__("Make Time Log Batch"), function() { diff --git a/erpnext/projects/doctype/time_log_batch/time_log_batch_list.js b/erpnext/projects/doctype/time_log_batch/time_log_batch_list.js index 9c02ac38a9..fe82b07f36 100644 --- a/erpnext/projects/doctype/time_log_batch/time_log_batch_list.js +++ b/erpnext/projects/doctype/time_log_batch/time_log_batch_list.js @@ -1,6 +1,8 @@ frappe.listview_settings['Time Log Batch'] = { add_fields: ["status", "total_hours"], get_indicator: function(doc) { - return [__(doc.status), frappe.utils.guess_colour(doc.status), "status,=," + doc.status]; + if (doc.status== "Billed") { + return [__("Billed"), "green", "status,=," + "Billed"] + } } }; From cbc18ffdbf2e5a8b3f480fb210d0ce0ddab07fde Mon Sep 17 00:00:00 2001 From: shreyas Date: Wed, 27 Jan 2016 18:07:33 +0530 Subject: [PATCH 17/46] [Partial] Fixed the issue for Territory Item Group Variance report --- ...rritory_target_variance_item_group_wise.py | 66 ++++++++++++------- erpnext/selling/sales_common.js | 4 -- 2 files changed, 41 insertions(+), 29 deletions(-) diff --git a/erpnext/selling/report/territory_target_variance_item_group_wise/territory_target_variance_item_group_wise.py b/erpnext/selling/report/territory_target_variance_item_group_wise/territory_target_variance_item_group_wise.py index 7921f3ee81..3248a1d145 100644 --- a/erpnext/selling/report/territory_target_variance_item_group_wise/territory_target_variance_item_group_wise.py +++ b/erpnext/selling/report/territory_target_variance_item_group_wise/territory_target_variance_item_group_wise.py @@ -13,10 +13,10 @@ def execute(filters=None): columns = get_columns(filters) period_month_ranges = get_period_month_ranges(filters["period"], filters["fiscal_year"]) - tim_map = get_territory_item_month_map(filters) + territory_item_group_dict = get_territory_item_month_map(filters) data = [] - for territory, territory_items in tim_map.items(): + for territory, territory_items in territory_item_group_dict.items(): for item_group, monthwise_data in territory_items.items(): row = [territory, item_group] totals = [0, 0, 0] @@ -77,20 +77,37 @@ def get_target_distribution_details(filters): return target_details #Get achieved details from sales order -def get_achieved_details(filters): +def get_achieved_details(filters, territory): start_date, end_date = get_fiscal_year(fiscal_year = filters["fiscal_year"])[1:] - item_details = frappe.db.sql("""select soi.item_code, soi.qty, soi.base_net_amount, so.transaction_date, - so.territory, MONTHNAME(so.transaction_date) as month_name - from `tabSales Order Item` soi, `tabSales Order` so - where soi.parent=so.name and so.docstatus=1 and so.transaction_date>=%s and - so.transaction_date<=%s""" % ('%s', '%s'), - (start_date, end_date), as_dict=1) + lft, rgt = frappe.db.get_value("Territory", territory, ["lft", "rgt"]) + + item_details = frappe.db.sql(""" + select + soi.item_code, sum(soi.qty) as qty, sum(soi.base_net_amount) as amount, + MONTHNAME(so.transaction_date) as month_name + from + `tabSales Order Item` soi, `tabSales Order` so + where + soi.parent=so.name and so.docstatus=1 + and so.transaction_date>=%s and so.transaction_date<=%s + and exists(select name from `tabTerritory` where lft >=%s and rgt <= %s and name=so.territory) + group by + month_name, item_code + """, (start_date, end_date, lft, rgt), as_dict=1) item_actual_details = {} for d in item_details: - item_actual_details.setdefault(d.territory, {}).setdefault(\ - get_item_group(d.item_code), []).append(d) + item_group = get_item_group(d.item_code) + item_actual_details.setdefault(item_group, frappe._dict())\ + .setdefault(d.month_name, frappe._dict({ + "quantity": 0, + "amount": 0 + })) + + value_dict = item_actual_details[item_group][d.month_name] + value_dict.quantity += flt(d.qty) + value_dict.amount += flt(d.amount) return item_actual_details @@ -98,35 +115,34 @@ def get_territory_item_month_map(filters): import datetime territory_details = get_territory_details(filters) tdd = get_target_distribution_details(filters) - achieved_details = get_achieved_details(filters) - tim_map = {} + territory_item_group_dict = {} for td in territory_details: + achieved_details = get_achieved_details(filters, td.name) + for month_id in range(1, 13): month = datetime.date(2013, month_id, 1).strftime('%B') - tim_map.setdefault(td.name, {}).setdefault(td.item_group, {})\ + territory_item_group_dict.setdefault(td.name, {}).setdefault(td.item_group, {})\ .setdefault(month, frappe._dict({ "target": 0.0, "achieved": 0.0 })) - tav_dict = tim_map[td.name][td.item_group][month] + target_achieved = territory_item_group_dict[td.name][td.item_group][month] month_percentage = tdd.get(td.distribution_id, {}).get(month, 0) \ if td.distribution_id else 100.0/12 - for ad in achieved_details.get(td.name, {}).get(td.item_group, []): - if (filters["target_on"] == "Quantity"): - tav_dict.target = flt(td.target_qty) * month_percentage / 100 - if ad.month_name == month: - tav_dict.achieved += ad.qty - if (filters["target_on"] == "Amount"): - tav_dict.target = flt(td.target_amount) * month_percentage / 100 - if ad.month_name == month: - tav_dict.achieved += ad.base_net_amount + if (filters["target_on"] == "Quantity"): + target_achieved.target = flt(td.target_qty) * month_percentage / 100 + else: + target_achieved.target = flt(td.target_amount) * month_percentage / 100 - return tim_map + target_achieved.achieved = achieved_details.get(td.item_group, {}).get(month, {})\ + .get(filters["target_on"].lower()) + + return territory_item_group_dict def get_item_group(item_name): return frappe.db.get_value("Item", item_name, "item_group") diff --git a/erpnext/selling/sales_common.js b/erpnext/selling/sales_common.js index 850e229e4c..ce64f328c2 100644 --- a/erpnext/selling/sales_common.js +++ b/erpnext/selling/sales_common.js @@ -80,10 +80,6 @@ erpnext.selling.SellingController = erpnext.TransactionController.extend({ } }); } - - if(this.frm.fields_dict.sales_team && this.frm.fields_dict.sales_team.grid.get_field("sales_person")) { - this.frm.set_query("sales_person", "sales_team", erpnext.queries.not_a_group_filter); - } }, refresh: function() { From 51db2ba22ab5e81373bf935ff438348c115f389d Mon Sep 17 00:00:00 2001 From: shreyas Date: Thu, 28 Jan 2016 14:30:30 +0530 Subject: [PATCH 18/46] [Partial]Fixed Sales person target variance report --- ..._person_target_variance_item_group_wise.py | 88 ++++++++++++------- .../sales_person_wise_transaction_summary.py | 28 +++--- ...rritory_target_variance_item_group_wise.py | 35 +++++--- 3 files changed, 95 insertions(+), 56 deletions(-) diff --git a/erpnext/selling/report/sales_person_target_variance_item_group_wise/sales_person_target_variance_item_group_wise.py b/erpnext/selling/report/sales_person_target_variance_item_group_wise/sales_person_target_variance_item_group_wise.py index f7aa70fa31..1d910e1d26 100644 --- a/erpnext/selling/report/sales_person_target_variance_item_group_wise/sales_person_target_variance_item_group_wise.py +++ b/erpnext/selling/report/sales_person_target_variance_item_group_wise/sales_person_target_variance_item_group_wise.py @@ -2,7 +2,7 @@ # License: GNU General Public License v3. See license.txt from __future__ import unicode_literals -import frappe +import frappe, pprint from frappe import _, msgprint from frappe.utils import flt from erpnext.accounts.utils import get_fiscal_year @@ -61,39 +61,66 @@ def get_columns(filters): #Get sales person & item group details def get_salesperson_details(filters): - return frappe.db.sql("""select sp.name, td.item_group, td.target_qty, - td.target_amount, sp.distribution_id - from `tabSales Person` sp, `tabTarget Detail` td - where td.parent=sp.name and td.fiscal_year=%s order by sp.name""", - (filters["fiscal_year"]), as_dict=1) + return frappe.db.sql(""" + select + sp.name, td.item_group, td.target_qty, td.target_amount, sp.distribution_id + from + `tabSales Person` sp, `tabTarget Detail` td + where + td.parent=sp.name and td.fiscal_year=%s order by sp.name + """, (filters["fiscal_year"]), as_dict=1) #Get target distribution details of item group def get_target_distribution_details(filters): target_details = {} - for d in frappe.db.sql("""select md.name, mdp.month, mdp.percentage_allocation - from `tabMonthly Distribution Percentage` mdp, `tabMonthly Distribution` md - where mdp.parent=md.name and md.fiscal_year=%s""", (filters["fiscal_year"]), as_dict=1): + for d in frappe.db.sql(""" + select + md.name, mdp.month, mdp.percentage_allocation + from + `tabMonthly Distribution Percentage` mdp, `tabMonthly Distribution` md + where + mdp.parent=md.name and md.fiscal_year=%s + """, (filters["fiscal_year"]), as_dict=1): target_details.setdefault(d.name, {}).setdefault(d.month, flt(d.percentage_allocation)) return target_details #Get achieved details from sales order -def get_achieved_details(filters): +def get_achieved_details(filters, sales_person, item_groups): start_date, end_date = get_fiscal_year(fiscal_year = filters["fiscal_year"])[1:] - item_details = frappe.db.sql("""select soi.item_code, soi.qty, soi.base_net_amount, so.transaction_date, - st.sales_person, MONTHNAME(so.transaction_date) as month_name - from `tabSales Order Item` soi, `tabSales Order` so, `tabSales Team` st - where soi.parent=so.name and so.docstatus=1 and - st.parent=so.name and so.transaction_date>=%s and - so.transaction_date<=%s""" % ('%s', '%s'), - (start_date, end_date), as_dict=1) + lft, rgt = frappe.get_value("Sales Person", sales_person, ["lft", "rgt"]) + + item_details = frappe.db.sql(""" + select + soi.item_code, sum(soi.qty * (st.allocated_percentage/100)) as qty, + sum(soi.base_net_amount * (st.allocated_percentage/100)) as amount, + st.sales_person, MONTHNAME(so.transaction_date) as month_name + from + `tabSales Order Item` soi, `tabSales Order` so, `tabSales Team` st + where + soi.parent=so.name and so.docstatus=1 and st.parent=so.name + and so.transaction_date>=%s and so.transaction_date<=%s + and exists(select name from `tabSales Person` where lft >= %s and rgt <= %s and name=st.sales_person) + group by + sales_person, item_code, month_name + """, + (start_date, end_date, lft, rgt), as_dict=1) item_actual_details = {} for d in item_details: - item_actual_details.setdefault(d.sales_person, {}).setdefault(\ - get_item_group(d.item_code), []).append(d) + item_group = item_groups[d.item_code] + print item_group + item_actual_details.setdefault(item_group, frappe._dict()).setdefault(d.month_name,\ + frappe._dict({ + "quantity" : 0, + "amount" : 0 + })) + + value_dict = item_actual_details[item_group][d.month_name] + value_dict.quantity += flt(d.qty) + value_dict.amount += flt(d.amount) return item_actual_details @@ -101,10 +128,12 @@ def get_salesperson_item_month_map(filters): import datetime salesperson_details = get_salesperson_details(filters) tdd = get_target_distribution_details(filters) - achieved_details = get_achieved_details(filters) + item_groups = get_item_groups() sim_map = {} for sd in salesperson_details: + achieved_details = get_achieved_details(filters, sd.name, item_groups) + for month_id in range(1, 13): month = datetime.date(2013, month_id, 1).strftime('%B') sim_map.setdefault(sd.name, {}).setdefault(sd.item_group, {})\ @@ -116,18 +145,15 @@ def get_salesperson_item_month_map(filters): month_percentage = tdd.get(sd.distribution_id, {}).get(month, 0) \ if sd.distribution_id else 100.0/12 - for ad in achieved_details.get(sd.name, {}).get(sd.item_group, []): - if (filters["target_on"] == "Quantity"): - tav_dict.target = flt(sd.target_qty) * month_percentage / 100 - if ad.month_name == month: - tav_dict.achieved += ad.qty + if (filters["target_on"] == "Quantity"): + tav_dict.target = flt(sd.target_qty) * month_percentage / 100 + else: + tav_dict.target = flt(sd.target_amount) * month_percentage / 100 - if (filters["target_on"] == "Amount"): - tav_dict.target = flt(sd.target_amount) * month_percentage / 100 - if ad.month_name == month: - tav_dict.achieved += ad.base_net_amount + tav_dict.achieved = achieved_details.get(sd.item_group, frappe._dict()).get(month,\ + frappe._dict()).get(filters["target_on"].lower()) return sim_map -def get_item_group(item_name): - return frappe.db.get_value("Item", item_name, "item_group") +def get_item_groups(): + return dict(frappe.get_all("Item", fields=["name", "item_group"], as_list=True)) diff --git a/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py b/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py index 65b0c08680..55995792b8 100644 --- a/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +++ b/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py @@ -35,34 +35,38 @@ def get_columns(filters): def get_entries(filters): date_field = filters["doc_type"] == "Sales Order" and "transaction_date" or "posting_date" conditions, values = get_conditions(filters, date_field) - entries = frappe.db.sql("""select dt.name, dt.customer, dt.territory, dt.%s as posting_date, - dt_item.item_code, dt_item.qty, dt_item.base_net_amount, st.sales_person, - st.allocated_percentage, dt_item.base_net_amount*st.allocated_percentage/100 as contribution_amt - from `tab%s` dt, `tab%s Item` dt_item, `tabSales Team` st - where st.parent = dt.name and dt.name = dt_item.parent and st.parenttype = %s - and dt.docstatus = 1 %s order by st.sales_person, dt.name desc""" % - (date_field, filters["doc_type"], filters["doc_type"], '%s', conditions), - tuple([filters["doc_type"]] + values), as_dict=1) + entries = frappe.db.sql(""" + select + dt.name, dt.customer, dt.territory, dt.%s as posting_date, dt_item.item_code, + dt_item.qty, dt_item.base_net_amount, st.sales_person, st.allocated_percentage, + dt_item.base_net_amount*st.allocated_percentage/100 as contribution_amt + from + `tab%s` dt, `tab%s Item` dt_item, `tabSales Team` st + where + st.parent = dt.name and dt.name = dt_item.parent and st.parenttype = %s + and dt.docstatus = 1 %s order by st.sales_person, dt.name desc + """ %(date_field, filters["doc_type"], filters["doc_type"], '%s', conditions), + tuple([filters["doc_type"]] + values), as_dict=1) return entries def get_conditions(filters, date_field): conditions = [""] values = [] - + for field in ["company", "customer", "territory"]: if filters.get(field): conditions.append("dt.{0}=%s".format(field)) values.append(filters[field]) - + if filters.get("sales_person"): conditions.append("st.sales_person=%s") values.append(filters["sales_person"]) - + if filters.get("from_date"): conditions.append("dt.{0}>=%s".format(date_field)) values.append(filters["from_date"]) - + if filters.get("to_date"): conditions.append("dt.{0}<=%s".format(date_field)) values.append(filters["to_date"]) diff --git a/erpnext/selling/report/territory_target_variance_item_group_wise/territory_target_variance_item_group_wise.py b/erpnext/selling/report/territory_target_variance_item_group_wise/territory_target_variance_item_group_wise.py index 3248a1d145..dd3433399e 100644 --- a/erpnext/selling/report/territory_target_variance_item_group_wise/territory_target_variance_item_group_wise.py +++ b/erpnext/selling/report/territory_target_variance_item_group_wise/territory_target_variance_item_group_wise.py @@ -59,25 +59,33 @@ def get_columns(filters): #Get territory & item group details def get_territory_details(filters): - return frappe.db.sql("""select t.name, td.item_group, td.target_qty, - td.target_amount, t.distribution_id - from `tabTerritory` t, `tabTarget Detail` td - where td.parent=t.name and td.fiscal_year=%s order by t.name""", - (filters["fiscal_year"]), as_dict=1) + return frappe.db.sql(""" + select + t.name, td.item_group, td.target_qty, td.target_amount, t.distribution_id + from + `tabTerritory` t, `tabTarget Detail` td + where + td.parent=t.name and td.fiscal_year=%s order by t.name + """, (filters["fiscal_year"]), as_dict=1) #Get target distribution details of item group def get_target_distribution_details(filters): target_details = {} - for d in frappe.db.sql("""select md.name, mdp.month, mdp.percentage_allocation - from `tabMonthly Distribution Percentage` mdp, `tabMonthly Distribution` md - where mdp.parent=md.name and md.fiscal_year=%s""", (filters["fiscal_year"]), as_dict=1): + for d in frappe.db.sql(""" + select + md.name, mdp.month, mdp.percentage_allocation + from + `tabMonthly Distribution Percentage` mdp, `tabMonthly Distribution` md + where + mdp.parent=md.name and md.fiscal_year=%s + """, (filters["fiscal_year"]), as_dict=1): target_details.setdefault(d.name, {}).setdefault(d.month, flt(d.percentage_allocation)) return target_details #Get achieved details from sales order -def get_achieved_details(filters, territory): +def get_achieved_details(filters, territory, item_groups): start_date, end_date = get_fiscal_year(fiscal_year = filters["fiscal_year"])[1:] lft, rgt = frappe.db.get_value("Territory", territory, ["lft", "rgt"]) @@ -98,7 +106,7 @@ def get_achieved_details(filters, territory): item_actual_details = {} for d in item_details: - item_group = get_item_group(d.item_code) + item_group = item_groups[d.item_code] item_actual_details.setdefault(item_group, frappe._dict())\ .setdefault(d.month_name, frappe._dict({ "quantity": 0, @@ -115,11 +123,12 @@ def get_territory_item_month_map(filters): import datetime territory_details = get_territory_details(filters) tdd = get_target_distribution_details(filters) + item_groups = get_item_groups() territory_item_group_dict = {} for td in territory_details: - achieved_details = get_achieved_details(filters, td.name) + achieved_details = get_achieved_details(filters, td.name, item_groups) for month_id in range(1, 13): month = datetime.date(2013, month_id, 1).strftime('%B') @@ -144,5 +153,5 @@ def get_territory_item_month_map(filters): return territory_item_group_dict -def get_item_group(item_name): - return frappe.db.get_value("Item", item_name, "item_group") +def get_item_groups(): + return dict(frappe.get_all("Item", fields=["name", "item_group"], as_list=1)) From e970ddcee992ed58c1dac7bc9d5d3775e1b16188 Mon Sep 17 00:00:00 2001 From: shreyas Date: Thu, 28 Jan 2016 16:38:59 +0530 Subject: [PATCH 19/46] [Fix] 1. Sales Person wise transaction report 2. Sales Person wise target variance report 3. Sales order trend report generation for selection in group by feild --- erpnext/controllers/trends.py | 9 ++++---- .../sales_order_trends/sales_order_trends.py | 3 +-- ..._person_target_variance_item_group_wise.py | 22 +++++++++---------- ...sales_person_wise_transaction_summary.json | 5 +++-- .../sales_person_wise_transaction_summary.py | 14 ++++++++++-- 5 files changed, 32 insertions(+), 21 deletions(-) diff --git a/erpnext/controllers/trends.py b/erpnext/controllers/trends.py index 16387a5c4c..6be8d96ad1 100644 --- a/erpnext/controllers/trends.py +++ b/erpnext/controllers/trends.py @@ -31,10 +31,10 @@ def validate_filters(filters): for f in ["Fiscal Year", "Based On", "Period", "Company"]: if not filters.get(f.lower().replace(" ", "_")): frappe.throw(_("{0} is mandatory").format(f)) - + if not frappe.db.exists("Fiscal Year", filters.get("fiscal_year")): frappe.throw(_("Fiscal Year: {0} does not exists").format(filters.get("fiscal_year"))) - + if filters.get("based_on") == filters.get("group_by"): frappe.throw(_("'Based On' and 'Group By' can not be same")) @@ -98,7 +98,8 @@ def get_data(filters, conditions): (filters.get("company"), filters.get("fiscal_year"), row[i][0], data1[d][0]), as_list=1) - des[ind] = row[i] + des[ind] = row[i][0] + for j in range(1,len(conditions["columns"])-inc): des[j+inc] = row1[0][j] @@ -213,7 +214,7 @@ def based_wise_columns_query(based_on, trans): elif based_on == "Customer": based_on_details["based_on_cols"] = ["Customer:Link/Customer:120", "Territory:Link/Territory:120"] based_on_details["based_on_select"] = "t1.customer_name, t1.territory, " - based_on_details["based_on_group_by"] = 't1.customer_name' + based_on_details["based_on_group_by"] = 't1.customer' based_on_details["addl_tables"] = '' elif based_on == "Customer Group": diff --git a/erpnext/selling/report/sales_order_trends/sales_order_trends.py b/erpnext/selling/report/sales_order_trends/sales_order_trends.py index 79e7381587..c0a0f085d9 100644 --- a/erpnext/selling/report/sales_order_trends/sales_order_trends.py +++ b/erpnext/selling/report/sales_order_trends/sales_order_trends.py @@ -10,5 +10,4 @@ def execute(filters=None): data = [] conditions = get_columns(filters, "Sales Order") data = get_data(filters, conditions) - - return conditions["columns"], data \ No newline at end of file + return conditions["columns"], data diff --git a/erpnext/selling/report/sales_person_target_variance_item_group_wise/sales_person_target_variance_item_group_wise.py b/erpnext/selling/report/sales_person_target_variance_item_group_wise/sales_person_target_variance_item_group_wise.py index 1d910e1d26..bbd0abc776 100644 --- a/erpnext/selling/report/sales_person_target_variance_item_group_wise/sales_person_target_variance_item_group_wise.py +++ b/erpnext/selling/report/sales_person_target_variance_item_group_wise/sales_person_target_variance_item_group_wise.py @@ -130,30 +130,30 @@ def get_salesperson_item_month_map(filters): tdd = get_target_distribution_details(filters) item_groups = get_item_groups() - sim_map = {} + sales_person_achievement_dict = {} for sd in salesperson_details: achieved_details = get_achieved_details(filters, sd.name, item_groups) for month_id in range(1, 13): month = datetime.date(2013, month_id, 1).strftime('%B') - sim_map.setdefault(sd.name, {}).setdefault(sd.item_group, {})\ - .setdefault(month, frappe._dict({ - "target": 0.0, "achieved": 0.0 - })) + sales_person_achievement_dict.setdefault(sd.name, {}).setdefault(sd.item_group, {})\ + .setdefault(month, frappe._dict({ + "target": 0.0, "achieved": 0.0 + })) - tav_dict = sim_map[sd.name][sd.item_group][month] + sales_target_achieved = sales_person_achievement_dict[sd.name][sd.item_group][month] month_percentage = tdd.get(sd.distribution_id, {}).get(month, 0) \ if sd.distribution_id else 100.0/12 if (filters["target_on"] == "Quantity"): - tav_dict.target = flt(sd.target_qty) * month_percentage / 100 + sales_target_achieved.target = flt(sd.target_qty) * month_percentage / 100 else: - tav_dict.target = flt(sd.target_amount) * month_percentage / 100 + sales_target_achieved.target = flt(sd.target_amount) * month_percentage / 100 - tav_dict.achieved = achieved_details.get(sd.item_group, frappe._dict()).get(month,\ - frappe._dict()).get(filters["target_on"].lower()) + sales_target_achieved.achieved = achieved_details.get(sd.item_group, frappe._dict()).\ + get(month, frappe._dict()).get(filters["target_on"].lower()) - return sim_map + return sales_person_achievement_dict def get_item_groups(): return dict(frappe.get_all("Item", fields=["name", "item_group"], as_list=True)) diff --git a/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.json b/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.json index dabf604841..0612dc02e5 100644 --- a/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.json +++ b/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.json @@ -1,12 +1,13 @@ { - "add_total_row": 1, + "add_total_row": 0, "apply_user_permissions": 1, "creation": "2013-05-03 11:31:05", + "disabled": 0, "docstatus": 0, "doctype": "Report", "idx": 1, "is_standard": "Yes", - "modified": "2014-06-03 07:18:17.312328", + "modified": "2016-01-28 04:22:49.476068", "modified_by": "Administrator", "module": "Selling", "name": "Sales Person-wise Transaction Summary", diff --git a/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py b/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py index 55995792b8..155bec6bd8 100644 --- a/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +++ b/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py @@ -4,6 +4,7 @@ from __future__ import unicode_literals import frappe from frappe import msgprint, _ +from frappe.utils import flt def execute(filters=None): if not filters: filters = {} @@ -12,13 +13,22 @@ def execute(filters=None): entries = get_entries(filters) item_details = get_item_details() data = [] + total_contribution_amoount = 0 for d in entries: + total_contribution_amoount += flt(d.contribution_amt) + data.append([ d.name, d.customer, d.territory, d.posting_date, d.item_code, item_details.get(d.item_code, {}).get("item_group"), item_details.get(d.item_code, {}).get("brand"), d.qty, d.base_net_amount, d.sales_person, d.allocated_percentage, d.contribution_amt ]) + if data: + total_row = [""]*len(data[0]) + total_row[0] = _("Total") + total_row[-1] = total_contribution_amoount + data.append(total_row) + return columns, data def get_columns(filters): @@ -60,8 +70,8 @@ def get_conditions(filters, date_field): values.append(filters[field]) if filters.get("sales_person"): - conditions.append("st.sales_person=%s") - values.append(filters["sales_person"]) + lft, rgt = frappe.get_value("Sales Person", filters.get("sales_person"), ["lft", "rgt"]) + conditions.append("exists(select name from `tabSales Person` where lft >= %s and rgt <= %s and name=st.sales_person)" % (lft, rgt)) if filters.get("from_date"): conditions.append("dt.{0}>=%s".format(date_field)) From c761f1b0a129ef130c4b149d78b8bd336aafda12 Mon Sep 17 00:00:00 2001 From: shreyas Date: Thu, 28 Jan 2016 17:27:07 +0530 Subject: [PATCH 20/46] [Minor] Cleanup --- .../sales_person_target_variance_item_group_wise.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/selling/report/sales_person_target_variance_item_group_wise/sales_person_target_variance_item_group_wise.py b/erpnext/selling/report/sales_person_target_variance_item_group_wise/sales_person_target_variance_item_group_wise.py index bbd0abc776..8beefbe34b 100644 --- a/erpnext/selling/report/sales_person_target_variance_item_group_wise/sales_person_target_variance_item_group_wise.py +++ b/erpnext/selling/report/sales_person_target_variance_item_group_wise/sales_person_target_variance_item_group_wise.py @@ -2,7 +2,7 @@ # License: GNU General Public License v3. See license.txt from __future__ import unicode_literals -import frappe, pprint +import frappe from frappe import _, msgprint from frappe.utils import flt from erpnext.accounts.utils import get_fiscal_year From 1a943151d7b3930af8c5f46137732331c9fd339e Mon Sep 17 00:00:00 2001 From: shreyas Date: Fri, 29 Jan 2016 12:39:58 +0530 Subject: [PATCH 21/46] [Refactor/Cleanup] Cleaned debug print statement Refactored code to use format() instead of string formatting using %s --- .../sales_person_target_variance_item_group_wise.py | 1 - .../sales_person_wise_transaction_summary.py | 8 ++++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/erpnext/selling/report/sales_person_target_variance_item_group_wise/sales_person_target_variance_item_group_wise.py b/erpnext/selling/report/sales_person_target_variance_item_group_wise/sales_person_target_variance_item_group_wise.py index 8beefbe34b..d27816cf71 100644 --- a/erpnext/selling/report/sales_person_target_variance_item_group_wise/sales_person_target_variance_item_group_wise.py +++ b/erpnext/selling/report/sales_person_target_variance_item_group_wise/sales_person_target_variance_item_group_wise.py @@ -111,7 +111,6 @@ def get_achieved_details(filters, sales_person, item_groups): item_actual_details = {} for d in item_details: item_group = item_groups[d.item_code] - print item_group item_actual_details.setdefault(item_group, frappe._dict()).setdefault(d.month_name,\ frappe._dict({ "quantity" : 0, diff --git a/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py b/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py index 155bec6bd8..e9930f32fa 100644 --- a/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +++ b/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py @@ -13,9 +13,9 @@ def execute(filters=None): entries = get_entries(filters) item_details = get_item_details() data = [] - total_contribution_amoount = 0 + total_contribution_amount = 0 for d in entries: - total_contribution_amoount += flt(d.contribution_amt) + total_contribution_amount += flt(d.contribution_amt) data.append([ d.name, d.customer, d.territory, d.posting_date, d.item_code, @@ -26,7 +26,7 @@ def execute(filters=None): if data: total_row = [""]*len(data[0]) total_row[0] = _("Total") - total_row[-1] = total_contribution_amoount + total_row[-1] = total_contribution_amount data.append(total_row) return columns, data @@ -71,7 +71,7 @@ def get_conditions(filters, date_field): if filters.get("sales_person"): lft, rgt = frappe.get_value("Sales Person", filters.get("sales_person"), ["lft", "rgt"]) - conditions.append("exists(select name from `tabSales Person` where lft >= %s and rgt <= %s and name=st.sales_person)" % (lft, rgt)) + conditions.append("exists(select name from `tabSales Person` where lft >= {0} and rgt <= {1} and name=st.sales_person)".format(lft, rgt)) if filters.get("from_date"): conditions.append("dt.{0}>=%s".format(date_field)) From 71a9be8add0a3283ea1bf8789c69ff5fc50ed3af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chao-Yee=20Hsu=20=E8=A8=B1=E6=9C=9D=E7=9B=8A?= Date: Fri, 29 Jan 2016 18:45:22 +0800 Subject: [PATCH 22/46] Update material_request.py Add "order by mr_item.item_code ASC" to 'get_material_requests_based_on_supplier(supplier)' in order to get material request item sorted by ascending order. --- erpnext/stock/doctype/material_request/material_request.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/stock/doctype/material_request/material_request.py b/erpnext/stock/doctype/material_request/material_request.py index 034745f8c1..6f6f78e2a0 100644 --- a/erpnext/stock/doctype/material_request/material_request.py +++ b/erpnext/stock/doctype/material_request/material_request.py @@ -258,8 +258,8 @@ def get_material_requests_based_on_supplier(supplier): and mr.material_request_type = 'Purchase' and mr.per_ordered < 99.99 and mr.docstatus = 1 - and mr.status != 'Stopped'""" % ', '.join(['%s']*len(supplier_items) - order by mr_item.item_code ASC), + and mr.status != 'Stopped' + order by mr_item.item_code ASC""" % ', '.join(['%s']*len(supplier_items)), tuple(supplier_items)) else: material_requests = [] From 1890c794d75ee394bc574a941630ea03baf95f4e Mon Sep 17 00:00:00 2001 From: Valmik Jangla Date: Wed, 27 Jan 2016 12:11:47 +0530 Subject: [PATCH 23/46] Added Employee Report Attendance Report Made Holiday details mandatory --- erpnext/config/hr.py | 7 +++ erpnext/hr/doctype/attendance/attendance.json | 13 +++++- erpnext/hr/doctype/holiday/holiday.json | 11 +++-- .../employee_holiday_attendance/__init__.py | 0 .../employee_holiday_attendance.js | 8 ++++ .../employee_holiday_attendance.json | 18 ++++++++ .../employee_holiday_attendance.py | 43 +++++++++++++++++++ 7 files changed, 95 insertions(+), 5 deletions(-) create mode 100644 erpnext/hr/report/employee_holiday_attendance/__init__.py create mode 100644 erpnext/hr/report/employee_holiday_attendance/employee_holiday_attendance.js create mode 100644 erpnext/hr/report/employee_holiday_attendance/employee_holiday_attendance.json create mode 100644 erpnext/hr/report/employee_holiday_attendance/employee_holiday_attendance.py diff --git a/erpnext/config/hr.py b/erpnext/config/hr.py index 3942766777..4501be72d9 100644 --- a/erpnext/config/hr.py +++ b/erpnext/config/hr.py @@ -177,6 +177,12 @@ def get_data(): "name": "Employee Birthday", "doctype": "Employee" }, + { + "type": "report", + "is_query_report": True, + "name": "Employee Holiday Attendance", + "doctype": "Employee" + }, { "type": "report", "name": "Employee Information", @@ -194,6 +200,7 @@ def get_data(): "name": "Monthly Attendance Sheet", "doctype": "Attendance" }, + ] }, { diff --git a/erpnext/hr/doctype/attendance/attendance.json b/erpnext/hr/doctype/attendance/attendance.json index 78391c8d5a..de32328c1e 100644 --- a/erpnext/hr/doctype/attendance/attendance.json +++ b/erpnext/hr/doctype/attendance/attendance.json @@ -26,6 +26,7 @@ "options": "Simple", "permlevel": 0, "print_hide": 0, + "print_hide_if_no_value": 0, "read_only": 0, "report_hide": 0, "reqd": 0, @@ -51,6 +52,7 @@ "options": "ATT-", "permlevel": 0, "print_hide": 0, + "print_hide_if_no_value": 0, "read_only": 0, "report_hide": 0, "reqd": 1, @@ -76,6 +78,7 @@ "options": "Employee", "permlevel": 0, "print_hide": 0, + "print_hide_if_no_value": 0, "read_only": 0, "report_hide": 0, "reqd": 1, @@ -100,6 +103,7 @@ "oldfieldtype": "Data", "permlevel": 0, "print_hide": 0, + "print_hide_if_no_value": 0, "read_only": 0, "report_hide": 0, "reqd": 0, @@ -126,6 +130,7 @@ "options": "\nPresent\nAbsent\nHalf Day", "permlevel": 0, "print_hide": 0, + "print_hide_if_no_value": 0, "read_only": 0, "report_hide": 0, "reqd": 1, @@ -151,6 +156,7 @@ "options": "Leave Type", "permlevel": 0, "print_hide": 1, + "print_hide_if_no_value": 0, "read_only": 0, "report_hide": 1, "reqd": 0, @@ -173,6 +179,7 @@ "oldfieldtype": "Column Break", "permlevel": 0, "print_hide": 0, + "print_hide_if_no_value": 0, "read_only": 0, "report_hide": 0, "reqd": 0, @@ -198,6 +205,7 @@ "oldfieldtype": "Date", "permlevel": 0, "print_hide": 0, + "print_hide_if_no_value": 0, "read_only": 0, "report_hide": 0, "reqd": 1, @@ -223,6 +231,7 @@ "options": "Fiscal Year", "permlevel": 0, "print_hide": 0, + "print_hide_if_no_value": 0, "read_only": 0, "report_hide": 0, "reqd": 1, @@ -248,6 +257,7 @@ "options": "Company", "permlevel": 0, "print_hide": 0, + "print_hide_if_no_value": 0, "read_only": 0, "report_hide": 0, "reqd": 1, @@ -271,6 +281,7 @@ "options": "Attendance", "permlevel": 0, "print_hide": 1, + "print_hide_if_no_value": 0, "read_only": 1, "report_hide": 0, "reqd": 0, @@ -289,7 +300,7 @@ "issingle": 0, "istable": 0, "max_attachments": 0, - "modified": "2015-11-16 06:29:42.089225", + "modified": "2016-01-25 15:36:36.252173", "modified_by": "Administrator", "module": "HR", "name": "Attendance", diff --git a/erpnext/hr/doctype/holiday/holiday.json b/erpnext/hr/doctype/holiday/holiday.json index a7fc6a7c03..091dd13ef1 100644 --- a/erpnext/hr/doctype/holiday/holiday.json +++ b/erpnext/hr/doctype/holiday/holiday.json @@ -22,10 +22,11 @@ "no_copy": 0, "permlevel": 0, "print_hide": 0, + "print_hide_if_no_value": 0, "print_width": "300px", "read_only": 0, "report_hide": 0, - "reqd": 0, + "reqd": 1, "search_index": 0, "set_only_once": 0, "unique": 0, @@ -48,9 +49,10 @@ "oldfieldtype": "Date", "permlevel": 0, "print_hide": 0, + "print_hide_if_no_value": 0, "read_only": 0, "report_hide": 0, - "reqd": 0, + "reqd": 1, "search_index": 0, "set_only_once": 0, "unique": 0 @@ -65,12 +67,13 @@ "issingle": 0, "istable": 1, "max_attachments": 0, - "modified": "2015-11-16 06:29:47.483435", + "modified": "2016-01-27 11:52:46.864792", "modified_by": "Administrator", "module": "HR", "name": "Holiday", "owner": "Administrator", "permissions": [], "read_only": 0, - "read_only_onload": 0 + "read_only_onload": 0, + "sort_order": "ASC" } \ No newline at end of file diff --git a/erpnext/hr/report/employee_holiday_attendance/__init__.py b/erpnext/hr/report/employee_holiday_attendance/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/erpnext/hr/report/employee_holiday_attendance/employee_holiday_attendance.js b/erpnext/hr/report/employee_holiday_attendance/employee_holiday_attendance.js new file mode 100644 index 0000000000..f1037ff058 --- /dev/null +++ b/erpnext/hr/report/employee_holiday_attendance/employee_holiday_attendance.js @@ -0,0 +1,8 @@ +// Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +// For license information, please see license.txt + +frappe.query_reports["Employee Holiday Attendance"] = { + "filters": [ + + ] +} diff --git a/erpnext/hr/report/employee_holiday_attendance/employee_holiday_attendance.json b/erpnext/hr/report/employee_holiday_attendance/employee_holiday_attendance.json new file mode 100644 index 0000000000..f538d30c24 --- /dev/null +++ b/erpnext/hr/report/employee_holiday_attendance/employee_holiday_attendance.json @@ -0,0 +1,18 @@ +{ + "add_total_row": 0, + "apply_user_permissions": 1, + "creation": "2016-01-27 11:12:14.972452", + "disabled": 0, + "docstatus": 0, + "doctype": "Report", + "idx": 0, + "is_standard": "Yes", + "modified": "2016-01-27 11:12:14.972452", + "modified_by": "Administrator", + "module": "HR", + "name": "Employee Holiday Attendance", + "owner": "Administrator", + "ref_doctype": "Attendance", + "report_name": "Employee Holiday Attendance", + "report_type": "Script Report" +} \ No newline at end of file diff --git a/erpnext/hr/report/employee_holiday_attendance/employee_holiday_attendance.py b/erpnext/hr/report/employee_holiday_attendance/employee_holiday_attendance.py new file mode 100644 index 0000000000..ce8d5dd35d --- /dev/null +++ b/erpnext/hr/report/employee_holiday_attendance/employee_holiday_attendance.py @@ -0,0 +1,43 @@ +# Copyright (c) 2013, Frappe Technologies Pvt. Ltd. and contributors +# For license information, please see license.txt + +from __future__ import unicode_literals +import frappe +from frappe import _ + + +def execute(filters=None): + if not filters: + filters = {} + + columns = get_columns() + data = get_employees() + return columns, data + + +def get_columns(): + + return [ + _("Employee") + ":Link/Employee:120", _("Name") + ":Data:200", _("Date")+ ":Date:100", + _("Status") + ":Data:70",_("Holiday") + ":Data:200" + + ] + + +def get_employees(): + holidays = frappe.get_all("Holiday", fields=["holiday_date", "description"]) + holiday_names = {} + holidays_list = [] + + for holiday in holidays: + holidays_list.append("'" + holiday.holiday_date.strftime('%Y-%m-%d') + "'") + holiday_names[holiday.holiday_date] = holiday.description + + employee_list = frappe.db.sql( + "select employee, employee_name, att_date, status from tabAttendance where att_date in (" + + ', '.join(holidays_list) + ")", + as_list=True) + + for employee_data in employee_list: + employee_data.append(holiday_names[employee_data[2]]) + return employee_list From 07364f5ece4764fc58df16c43d9d208896cead79 Mon Sep 17 00:00:00 2001 From: Valmik Jangla Date: Wed, 27 Jan 2016 17:43:57 +0530 Subject: [PATCH 24/46] Feature - Employee Attendance Tool --- erpnext/config/hr.py | 14 +- .../employee_attendance_tool/__init__.py | 0 .../employee_attendance_tool.css | 21 ++ .../employee_attendance_tool.js | 233 +++++++++++++++ .../employee_attendance_tool.json | 275 ++++++++++++++++++ .../employee_attendance_tool.py | 52 ++++ 6 files changed, 592 insertions(+), 3 deletions(-) create mode 100644 erpnext/hr/doctype/employee_attendance_tool/__init__.py create mode 100644 erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.css create mode 100644 erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js create mode 100644 erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.json create mode 100644 erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.py diff --git a/erpnext/config/hr.py b/erpnext/config/hr.py index 4501be72d9..e1471124c9 100644 --- a/erpnext/config/hr.py +++ b/erpnext/config/hr.py @@ -60,9 +60,9 @@ def get_data(): "items": [ { "type": "doctype", - "name": "Process Payroll", - "label": _("Process Payroll"), - "description":_("Generate Salary Slips"), + "name": "Employee Attendance Tool", + "label": _("Employee Attendance Tool"), + "description":_("Mark Employee Attendance in Bulk"), "hide_count": True }, { @@ -71,6 +71,14 @@ def get_data(): "description":_("Upload attendance from a .csv file"), "hide_count": True }, + { + "type": "doctype", + "name": "Process Payroll", + "label": _("Process Payroll"), + "description":_("Generate Salary Slips"), + "hide_count": True + }, + { "type": "doctype", "name": "Leave Control Panel", diff --git a/erpnext/hr/doctype/employee_attendance_tool/__init__.py b/erpnext/hr/doctype/employee_attendance_tool/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.css b/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.css new file mode 100644 index 0000000000..d25fb2247e --- /dev/null +++ b/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.css @@ -0,0 +1,21 @@ +.top-toolbar{ + padding-bottom: 30px; + margin-left: -17px; +} + +.bottom-toolbar{ + margin-left: -17px; + margin-top: 20px; +} + +.btn{ + margin-right: 5px; +} + +.marked-employee-label{ + font-weight: normal; +} + +.checkbox{ + margin-top: -3px; +} \ No newline at end of file diff --git a/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js b/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js new file mode 100644 index 0000000000..9467d39116 --- /dev/null +++ b/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js @@ -0,0 +1,233 @@ +frappe.ui.form.on("Employee Attendance Tool", { + refresh:function(frm){ + frm.disable_save(); + }, + + onload:function(frm){ + erpnext.employee_attendance_tool.load_employees(frm); + }, + + date:function(frm){ + erpnext.employee_attendance_tool.load_employees(frm); + }, + + department:function(frm){ + erpnext.employee_attendance_tool.load_employees(frm); + }, + + branch:function(frm){ + erpnext.employee_attendance_tool.load_employees(frm); + }, + + company:function(frm){ + erpnext.employee_attendance_tool.load_employees(frm); + } + + +}); + + +erpnext.employee_attendance_tool = { + load_employees: function(frm){ + if(frm.doc.date){ + frappe.call({ + method:"erpnext.hr.doctype.employee_attendance_tool.employee_attendance_tool.get_employees", + args:{ + date:frm.doc.date, + department:frm.doc.department, + branch:frm.doc.branch, + company:frm.doc.company + }, + callback:function(r){ + if(r.message['unmarked'].length > 0){ + unhide_field('unmarked_attendance_section') + if(!frm.employee_area){ + frm.employee_area = $('
        ') + .appendTo(frm.fields_dict.employees_html.wrapper); + } + frm.EmployeeSelector = new erpnext.EmployeeSelector(frm, frm.employee_area, r.message['unmarked']) + } + else{ + hide_field('unmarked_attendance_section') + } + + if(r.message['marked'].length > 0){ + unhide_field('marked_attendance_section') + if(!frm.marked_employee_area){ + + frm.marked_employee_area = $('
        ') + .appendTo(frm.fields_dict.marked_attendance_html.wrapper); + } + frm.MarkedEmployee = new erpnext.MarkedEmployee(frm, frm.marked_employee_area, r.message['marked']) + } + else{ + hide_field('marked_attendance_section') + } + } + }); + } + } +} + +erpnext.MarkedEmployee = Class.extend({ + init: function(frm, wrapper, employee) { + this.wrapper = wrapper; + this.frm = frm; + this.make(frm, employee); + }, + make: function(frm, employee) { + var me = this; + $(this.wrapper).empty(); + + $.each(employee, function(i, m) { + var attendance_icon = "'icon-check'" + if(m.status == "Absent") { + attendance_icon="'icon-check-empty'" + } + else if(m.status == "Half Day"){ + attendance_icon = "'icon-check-minus'" + } + $(repl('
        \ + \ +
        ', {employee: m.employee_name, icon: attendance_icon})).appendTo(me.wrapper); + }); + } +}); + + +erpnext.EmployeeSelector = Class.extend({ + init: function(frm, wrapper, employee) { + this.wrapper = wrapper; + this.frm = frm; + this.make(frm, employee); + }, + make: function(frm, employee) { + var me = this; + + $(this.wrapper).empty(); + var employee_toolbar = $('
        \ + \ + \ +
        ').appendTo($(this.wrapper)); + + var mark_employee_toolbar = $('
        \ + \ + \ +
        ') + + employee_toolbar.find(".btn-add") + .html(__('Check all')) + .on("click", function() { + $(me.wrapper).find('input[type="checkbox"]').each(function(i, check) { + if(!$(check).is(":checked")) { + check.checked = true; + } + }); + }); + + employee_toolbar.find(".btn-remove") + .html(__('Uncheck all')) + .on("click", function() { + $(me.wrapper).find('input[type="checkbox"]').each(function(i, check) { + if($(check).is(":checked")) { + check.checked = false; + } + }); + }); + + mark_employee_toolbar.find(".btn-mark-present") + .html(__('Mark Present')) + .on("click", function() { + var employee_present = []; + $(me.wrapper).find('input[type="checkbox"]').each(function(i, check) { + if($(check).is(":checked")) { + employee_present.push(employee[i]); + } + }); + frappe.call({ + method: "erpnext.hr.doctype.employee_attendance_tool.employee_attendance_tool.mark_employee_attendance", + args:{ + "employee_list":employee_present, + "status":"Present", + "date":frm.doc.date, + "company":frm.doc.company + }, + + callback: function(r) { + erpnext.employee_attendance_tool.load_employees(frm); + + } + }); + }); + + mark_employee_toolbar.find(".btn-mark-absent") + .html(__('Mark Absent')) + .on("click", function() { + var employee_absent = []; + $(me.wrapper).find('input[type="checkbox"]').each(function(i, check) { + if($(check).is(":checked")) { + employee_absent.push(employee[i]); + } + }); + frappe.call({ + method: "erpnext.hr.doctype.employee_attendance_tool.employee_attendance_tool.mark_employee_attendance", + args:{ + "employee_list":employee_absent, + "status":"Absent", + "date":frm.doc.date, + "company":frm.doc.company + }, + + callback: function(r) { + erpnext.employee_attendance_tool.load_employees(frm); + + } + }); + }); + + + mark_employee_toolbar.find(".btn-mark-half-day") + .html(__('Mark Half Day')) + .on("click", function() { + var employee_half_day = []; + $(me.wrapper).find('input[type="checkbox"]').each(function(i, check) { + if($(check).is(":checked")) { + employee_half_day.push(employee[i]); + } + }); + frappe.call({ + method: "erpnext.hr.doctype.employee_attendance_tool.employee_attendance_tool.mark_employee_attendance", + args:{ + "employee_list":employee_half_day, + "status":"Half Day", + "date":frm.doc.date, + "company":frm.doc.company + }, + + callback: function(r) { + erpnext.employee_attendance_tool.load_employees(frm); + + } + }); + }); + + + $.each(employee, function(i, m) { + $(repl('
        \ +
        \ + \ +
        ', {employee: m.employee_name})).appendTo(me.wrapper); + + + + }); + + mark_employee_toolbar.appendTo($(this.wrapper)); + + + } +}); + + diff --git a/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.json b/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.json new file mode 100644 index 0000000000..f31bcf8e99 --- /dev/null +++ b/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.json @@ -0,0 +1,275 @@ +{ + "allow_copy": 1, + "allow_import": 0, + "allow_rename": 0, + "creation": "2016-01-27 14:59:47.849379", + "custom": 0, + "docstatus": 0, + "doctype": "DocType", + "document_type": "", + "fields": [ + { + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "default": "Today", + "fieldname": "date", + "fieldtype": "Date", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Date", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "unique": 0 + }, + { + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "department", + "fieldtype": "Link", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Department", + "length": 0, + "no_copy": 0, + "options": "Department", + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "unique": 0 + }, + { + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "column_break_3", + "fieldtype": "Column Break", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "unique": 0 + }, + { + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "branch", + "fieldtype": "Link", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Branch", + "length": 0, + "no_copy": 0, + "options": "Branch", + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "unique": 0 + }, + { + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "company", + "fieldtype": "Link", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Company", + "length": 0, + "no_copy": 0, + "options": "Company", + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "unique": 0 + }, + { + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "depends_on": "date", + "fieldname": "unmarked_attendance_section", + "fieldtype": "Section Break", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Unmarked Attendance", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "unique": 0 + }, + { + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "employees_html", + "fieldtype": "HTML", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Employees HTML", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 1, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "unique": 0 + }, + { + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "depends_on": "date", + "fieldname": "marked_attendance_section", + "fieldtype": "Section Break", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Marked Attendance", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "unique": 0 + }, + { + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "fieldname": "marked_attendance_html", + "fieldtype": "HTML", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Marked Attendance HTML", + "length": 0, + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "print_hide_if_no_value": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "unique": 0 + } + ], + "hide_heading": 1, + "hide_toolbar": 1, + "idx": 0, + "in_create": 0, + "in_dialog": 0, + "is_submittable": 0, + "issingle": 1, + "istable": 0, + "max_attachments": 0, + "modified": "2016-01-29 02:14:36.034952", + "modified_by": "Administrator", + "module": "HR", + "name": "Employee Attendance Tool", + "name_case": "", + "owner": "Administrator", + "permissions": [ + { + "amend": 0, + "apply_user_permissions": 0, + "cancel": 0, + "create": 1, + "delete": 0, + "email": 0, + "export": 0, + "if_owner": 0, + "import": 0, + "permlevel": 0, + "print": 0, + "read": 1, + "report": 0, + "role": "HR Manager", + "set_user_permissions": 0, + "share": 0, + "submit": 0, + "write": 1 + } + ], + "read_only": 0, + "read_only_onload": 0, + "sort_field": "modified", + "sort_order": "DESC" +} \ No newline at end of file diff --git a/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.py b/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.py new file mode 100644 index 0000000000..622b0d95db --- /dev/null +++ b/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- +# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# For license information, please see license.txt + +from __future__ import unicode_literals +import frappe +import copy +import json +from frappe.model.document import Document + + +class EmployeeAttendanceTool(Document): + pass + + +@frappe.whitelist() +def get_employees(date, department=None, branch=None, company=None): + attendance_not_marked = [] + attendance_marked = [] + employee_list = frappe.get_list("Employee", fields=["employee", "employee_name"], filters={ + "status": "Active", "department": department, "branch": branch, "company": company}, order_by="employee_name") + marked_employee = {} + for emp in frappe.get_list("Attendance", fields=["employee", "status"], + filters={"att_date": date}): + marked_employee[emp['employee']] = emp['status'] + + for employee in employee_list: + employee['status'] = marked_employee.get(employee['employee']) + if employee['employee'] not in marked_employee: + attendance_not_marked.append(employee) + else: + attendance_marked.append(employee) + return { + "marked": attendance_marked, + "unmarked": attendance_not_marked + } + + +@frappe.whitelist() +def mark_employee_attendance(employee_list, status, date, company=None): + employee_list = json.loads(employee_list) + for employee in employee_list: + attendance = frappe.new_doc("Attendance") + attendance.employee = employee['employee'] + attendance.employee_name = employee['employee_name'] + attendance.att_date = date + attendance.status = status + if company: + attendance.company = company + else: + attendance.company = frappe.db.get_value("Employee", employee['employee'], "Company") + attendance.submit() From 6e33d914432826388c2100833dddd95690000f62 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Fri, 29 Jan 2016 16:57:10 +0530 Subject: [PATCH 25/46] [minor] fixes to attendance tool and employee holiday attendance --- .../employee_attendance_tool.js | 243 +++++++++--------- .../employee_holiday_attendance.py | 22 +- 2 files changed, 140 insertions(+), 125 deletions(-) diff --git a/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js b/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js index 9467d39116..f29bc890fc 100644 --- a/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +++ b/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js @@ -1,25 +1,25 @@ frappe.ui.form.on("Employee Attendance Tool", { - refresh:function(frm){ + refresh: function(frm) { frm.disable_save(); }, - onload:function(frm){ + onload: function(frm) { erpnext.employee_attendance_tool.load_employees(frm); }, - date:function(frm){ + date: function(frm) { erpnext.employee_attendance_tool.load_employees(frm); }, - department:function(frm){ + department: function(frm) { erpnext.employee_attendance_tool.load_employees(frm); }, - branch:function(frm){ + branch: function(frm) { erpnext.employee_attendance_tool.load_employees(frm); }, - company:function(frm){ + company: function(frm) { erpnext.employee_attendance_tool.load_employees(frm); } @@ -28,20 +28,20 @@ frappe.ui.form.on("Employee Attendance Tool", { erpnext.employee_attendance_tool = { - load_employees: function(frm){ - if(frm.doc.date){ + load_employees: function(frm) { + if(frm.doc.date) { frappe.call({ - method:"erpnext.hr.doctype.employee_attendance_tool.employee_attendance_tool.get_employees", - args:{ - date:frm.doc.date, - department:frm.doc.department, - branch:frm.doc.branch, - company:frm.doc.company + method: "erpnext.hr.doctype.employee_attendance_tool.employee_attendance_tool.get_employees", + args: { + date: frm.doc.date, + department: frm.doc.department, + branch: frm.doc.branch, + company: frm.doc.company }, - callback:function(r){ - if(r.message['unmarked'].length > 0){ + callback: function(r) { + if(r.message['unmarked'].length > 0) { unhide_field('unmarked_attendance_section') - if(!frm.employee_area){ + if(!frm.employee_area) { frm.employee_area = $('
        ') .appendTo(frm.fields_dict.employees_html.wrapper); } @@ -51,14 +51,13 @@ erpnext.employee_attendance_tool = { hide_field('unmarked_attendance_section') } - if(r.message['marked'].length > 0){ + if(r.message['marked'].length > 0) { unhide_field('marked_attendance_section') - if(!frm.marked_employee_area){ - + if(!frm.marked_employee_area) { frm.marked_employee_area = $('
        ') - .appendTo(frm.fields_dict.marked_attendance_html.wrapper); + .appendTo(frm.fields_dict.marked_attendance_html.wrapper); } - frm.MarkedEmployee = new erpnext.MarkedEmployee(frm, frm.marked_employee_area, r.message['marked']) + frm.marked_employee = new erpnext.MarkedEmployee(frm, frm.marked_employee_area, r.message['marked']) } else{ hide_field('marked_attendance_section') @@ -79,18 +78,30 @@ erpnext.MarkedEmployee = Class.extend({ var me = this; $(this.wrapper).empty(); + var row; $.each(employee, function(i, m) { - var attendance_icon = "'icon-check'" + var attendance_icon = "icon-check"; + var color_class = ""; if(m.status == "Absent") { - attendance_icon="'icon-check-empty'" + attendance_icon = "icon-check-empty" + color_class = "text-muted"; } - else if(m.status == "Half Day"){ - attendance_icon = "'icon-check-minus'" + else if(m.status == "Half Day") { + attendance_icon = "icon-check-minus" } - $(repl('
        \ -
        ', { + employee: m.employee_name, + icon: attendance_icon, + color_class: color_class + })).appendTo(row); }); } }); @@ -104,7 +115,7 @@ erpnext.EmployeeSelector = Class.extend({ }, make: function(frm, employee) { var me = this; - + $(this.wrapper).empty(); var employee_toolbar = $('
        \ \ @@ -112,121 +123,121 @@ erpnext.EmployeeSelector = Class.extend({
        ').appendTo($(this.wrapper)); var mark_employee_toolbar = $('
        \ - \ - \ -
        ') + \ + \ +
        ') employee_toolbar.find(".btn-add") - .html(__('Check all')) - .on("click", function() { - $(me.wrapper).find('input[type="checkbox"]').each(function(i, check) { - if(!$(check).is(":checked")) { - check.checked = true; - } + .html(__('Check all')) + .on("click", function() { + $(me.wrapper).find('input[type="checkbox"]').each(function(i, check) { + if(!$(check).is(":checked")) { + check.checked = true; + } + }); }); - }); employee_toolbar.find(".btn-remove") - .html(__('Uncheck all')) - .on("click", function() { - $(me.wrapper).find('input[type="checkbox"]').each(function(i, check) { - if($(check).is(":checked")) { - check.checked = false; - } + .html(__('Uncheck all')) + .on("click", function() { + $(me.wrapper).find('input[type="checkbox"]').each(function(i, check) { + if($(check).is(":checked")) { + check.checked = false; + } + }); }); - }); - + mark_employee_toolbar.find(".btn-mark-present") - .html(__('Mark Present')) - .on("click", function() { - var employee_present = []; - $(me.wrapper).find('input[type="checkbox"]').each(function(i, check) { - if($(check).is(":checked")) { - employee_present.push(employee[i]); - } - }); - frappe.call({ - method: "erpnext.hr.doctype.employee_attendance_tool.employee_attendance_tool.mark_employee_attendance", - args:{ - "employee_list":employee_present, - "status":"Present", - "date":frm.doc.date, - "company":frm.doc.company - }, + .html(__('Mark Present')) + .on("click", function() { + var employee_present = []; + $(me.wrapper).find('input[type="checkbox"]').each(function(i, check) { + if($(check).is(":checked")) { + employee_present.push(employee[i]); + } + }); + frappe.call({ + method: "erpnext.hr.doctype.employee_attendance_tool.employee_attendance_tool.mark_employee_attendance", + args:{ + "employee_list":employee_present, + "status":"Present", + "date":frm.doc.date, + "company":frm.doc.company + }, - callback: function(r) { - erpnext.employee_attendance_tool.load_employees(frm); + callback: function(r) { + erpnext.employee_attendance_tool.load_employees(frm); - } + } + }); }); - }); mark_employee_toolbar.find(".btn-mark-absent") - .html(__('Mark Absent')) - .on("click", function() { - var employee_absent = []; - $(me.wrapper).find('input[type="checkbox"]').each(function(i, check) { - if($(check).is(":checked")) { - employee_absent.push(employee[i]); - } - }); - frappe.call({ - method: "erpnext.hr.doctype.employee_attendance_tool.employee_attendance_tool.mark_employee_attendance", - args:{ - "employee_list":employee_absent, - "status":"Absent", - "date":frm.doc.date, - "company":frm.doc.company - }, + .html(__('Mark Absent')) + .on("click", function() { + var employee_absent = []; + $(me.wrapper).find('input[type="checkbox"]').each(function(i, check) { + if($(check).is(":checked")) { + employee_absent.push(employee[i]); + } + }); + frappe.call({ + method: "erpnext.hr.doctype.employee_attendance_tool.employee_attendance_tool.mark_employee_attendance", + args:{ + "employee_list":employee_absent, + "status":"Absent", + "date":frm.doc.date, + "company":frm.doc.company + }, - callback: function(r) { - erpnext.employee_attendance_tool.load_employees(frm); + callback: function(r) { + erpnext.employee_attendance_tool.load_employees(frm); - } + } + }); }); - }); mark_employee_toolbar.find(".btn-mark-half-day") - .html(__('Mark Half Day')) - .on("click", function() { - var employee_half_day = []; - $(me.wrapper).find('input[type="checkbox"]').each(function(i, check) { - if($(check).is(":checked")) { - employee_half_day.push(employee[i]); - } + .html(__('Mark Half Day')) + .on("click", function() { + var employee_half_day = []; + $(me.wrapper).find('input[type="checkbox"]').each(function(i, check) { + if($(check).is(":checked")) { + employee_half_day.push(employee[i]); + } + }); + frappe.call({ + method: "erpnext.hr.doctype.employee_attendance_tool.employee_attendance_tool.mark_employee_attendance", + args:{ + "employee_list":employee_half_day, + "status":"Half Day", + "date":frm.doc.date, + "company":frm.doc.company + }, + + callback: function(r) { + erpnext.employee_attendance_tool.load_employees(frm); + + } + }); }); - frappe.call({ - method: "erpnext.hr.doctype.employee_attendance_tool.employee_attendance_tool.mark_employee_attendance", - args:{ - "employee_list":employee_half_day, - "status":"Half Day", - "date":frm.doc.date, - "company":frm.doc.company - }, - callback: function(r) { - erpnext.employee_attendance_tool.load_employees(frm); - } - }); - }); - - + var row; $.each(employee, function(i, m) { + if (i===0 || (i % 4) === 0) { + row = $('
        ').appendTo(me.wrapper); + } + $(repl('
        \
        \ \ -
        ', {employee: m.employee_name})).appendTo(me.wrapper); - - - +
        ', {employee: m.employee_name})).appendTo(row); }); mark_employee_toolbar.appendTo($(this.wrapper)); - - } }); diff --git a/erpnext/hr/report/employee_holiday_attendance/employee_holiday_attendance.py b/erpnext/hr/report/employee_holiday_attendance/employee_holiday_attendance.py index ce8d5dd35d..ac51b57274 100644 --- a/erpnext/hr/report/employee_holiday_attendance/employee_holiday_attendance.py +++ b/erpnext/hr/report/employee_holiday_attendance/employee_holiday_attendance.py @@ -16,11 +16,12 @@ def execute(filters=None): def get_columns(): - return [ - _("Employee") + ":Link/Employee:120", _("Name") + ":Data:200", _("Date")+ ":Date:100", - _("Status") + ":Data:70",_("Holiday") + ":Data:200" - + _("Employee") + ":Link/Employee:120", + _("Name") + ":Data:200", + _("Date")+ ":Date:100", + _("Status") + ":Data:70", + _("Holiday") + ":Data:200" ] @@ -30,14 +31,17 @@ def get_employees(): holidays_list = [] for holiday in holidays: - holidays_list.append("'" + holiday.holiday_date.strftime('%Y-%m-%d') + "'") + holidays_list.append(holiday.holiday_date) holiday_names[holiday.holiday_date] = holiday.description - employee_list = frappe.db.sql( - "select employee, employee_name, att_date, status from tabAttendance where att_date in (" - + ', '.join(holidays_list) + ")", - as_list=True) + employee_list = frappe.db.sql("""select + employee, employee_name, att_date, status + from tabAttendance + where + att_date in ({0})""".format(', '.join(["%s"]*len(holidays_list))), + holidays_list, as_list=True) for employee_data in employee_list: employee_data.append(holiday_names[employee_data[2]]) + return employee_list From 93a69e94850ecb9f2d2d57e802b977b1656fa95c Mon Sep 17 00:00:00 2001 From: Agus Syahputra Date: Fri, 29 Jan 2016 23:41:46 +0700 Subject: [PATCH 26/46] Update authorization-rule.md --- erpnext/docs/user/manual/en/setting-up/authorization-rule.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/docs/user/manual/en/setting-up/authorization-rule.md b/erpnext/docs/user/manual/en/setting-up/authorization-rule.md index 6b79b6dbf5..f6daa1972e 100644 --- a/erpnext/docs/user/manual/en/setting-up/authorization-rule.md +++ b/erpnext/docs/user/manual/en/setting-up/authorization-rule.md @@ -24,7 +24,7 @@ Select Based On. Authorization Rule will be applied based on value selected in t **Step 4:** -Select Role on whom this Authorization Rule will be applicable. As per the example considered, Sales User will be selected as Application To (Role). To be more specific you can also select Applicale To User, if you wish to apply to rule for specific Sales User, and not all Sales User. Its okay to not select Sales User, as its not mandatory. +Select Role on whom this Authorization Rule will be applicable. As per the example considered, Sales User will be selected as Application To (Role). To be more specific you can also select Applicable To User, if you wish to apply the rule for specific Sales User, and not all Sales User. Its okay to not select Sales User, as its not mandatory. **Step 5:** From 0277dbc6b69243825725faa85dc196da98ca28f3 Mon Sep 17 00:00:00 2001 From: Agus Syahputra Date: Sat, 30 Jan 2016 07:28:28 +0700 Subject: [PATCH 27/46] Update stock-reconciliation-for-non-serialized-item.md --- .../stock-reconciliation-for-non-serialized-item.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/docs/user/manual/en/setting-up/stock-reconciliation-for-non-serialized-item.md b/erpnext/docs/user/manual/en/setting-up/stock-reconciliation-for-non-serialized-item.md index bd46bf15db..630e247a0f 100644 --- a/erpnext/docs/user/manual/en/setting-up/stock-reconciliation-for-non-serialized-item.md +++ b/erpnext/docs/user/manual/en/setting-up/stock-reconciliation-for-non-serialized-item.md @@ -11,7 +11,7 @@ letters assigned to an individual Item. Serialized items are generally high valu Non Serialized items are generally fast moving and low value item, hence doesn't need tracking for each unit. Items like screw, cotton waste, other consumables, stationary products can be categorized as non-serialized. -> Stock Reconciliation option is available for the non serialized Items only. For seriazlized and batch items, you should create Material Receipt entry in Stock Entry form. +> Stock Reconciliation option is available for the non serialized Items only. For serialized and batch items, you should create Material Receipt entry in Stock Entry form. ### Opening Stocks @@ -35,7 +35,7 @@ A predefined template of an spreadsheet file should be followed for importing it The csv format is case-sensitive. Do not edit the headers which are preset in the template. In the Item Code and Warehouse column, enter exact Item Code and Warehouse as created in your ERPNext account. For quatity, enter stock level you wish to set for that item, in a specific warehouse. -#### **Step 3: Upload file and Enter Values in Stock Reconciliation Form +#### Step 3: Upload file and Enter Values in Stock Reconciliation Form Stock Reconciliation From 0a76b8b29a2a35ba56b7ad367a67ed87164187a9 Mon Sep 17 00:00:00 2001 From: Valmik Jangla Date: Sat, 30 Jan 2016 10:59:40 +0530 Subject: [PATCH 28/46] Fixed issue where no Holidays would cause the report to break --- .../employee_holiday_attendance.py | 22 ++++++++++--------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/erpnext/hr/report/employee_holiday_attendance/employee_holiday_attendance.py b/erpnext/hr/report/employee_holiday_attendance/employee_holiday_attendance.py index ac51b57274..bb68cf3c70 100644 --- a/erpnext/hr/report/employee_holiday_attendance/employee_holiday_attendance.py +++ b/erpnext/hr/report/employee_holiday_attendance/employee_holiday_attendance.py @@ -33,15 +33,17 @@ def get_employees(): for holiday in holidays: holidays_list.append(holiday.holiday_date) holiday_names[holiday.holiday_date] = holiday.description + if(holidays_list): + employee_list = frappe.db.sql("""select + employee, employee_name, att_date, status + from tabAttendance + where + att_date in ({0})""".format(', '.join(["%s"]*len(holidays_list))), + holidays_list, as_list=True) - employee_list = frappe.db.sql("""select - employee, employee_name, att_date, status - from tabAttendance - where - att_date in ({0})""".format(', '.join(["%s"]*len(holidays_list))), - holidays_list, as_list=True) + for employee_data in employee_list: + employee_data.append(holiday_names[employee_data[2]]) - for employee_data in employee_list: - employee_data.append(holiday_names[employee_data[2]]) - - return employee_list + return employee_list + else: + return None \ No newline at end of file From e0825aaea9465f6bf4e072f29f92757939c042ba Mon Sep 17 00:00:00 2001 From: Agus Syahputra Date: Mon, 1 Feb 2016 08:20:36 +0700 Subject: [PATCH 29/46] Update delete-a-company-and-all-related-transactions.md --- .../articles/delete-a-company-and-all-related-transactions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/docs/user/manual/en/setting-up/articles/delete-a-company-and-all-related-transactions.md b/erpnext/docs/user/manual/en/setting-up/articles/delete-a-company-and-all-related-transactions.md index 593c4f533d..45c276715f 100644 --- a/erpnext/docs/user/manual/en/setting-up/articles/delete-a-company-and-all-related-transactions.md +++ b/erpnext/docs/user/manual/en/setting-up/articles/delete-a-company-and-all-related-transactions.md @@ -14,6 +14,6 @@ This action will wipe out all the data related to that company like Quotation, I Delete Transactions -**Note:** If you want to delete the company record itself, the use the normal "Delete" button from Menu options. It will also delete Chart of Accounts, Chart of Cost Centers and Warehouse records for that company. +**Note:** If you want to delete the company record itself, use the normal "Delete" button from Menu options. It will also delete Chart of Accounts, Chart of Cost Centers and Warehouse records for that company. - \ No newline at end of file + From 1d702bf112a842fffa740523134ac653ea615b8f Mon Sep 17 00:00:00 2001 From: ShashaQin Date: Mon, 1 Feb 2016 16:51:01 +0800 Subject: [PATCH 30/46] Update stock_reconciliation_item.json Update valuation rate description. This description will be shown on downloaded template in order to input valuation rate correct. --- .../stock_reconciliation_item.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json b/erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json index ddc7087c9e..f9d8b3d81e 100644 --- a/erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json +++ b/erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json @@ -110,7 +110,7 @@ "allow_on_submit": 0, "bold": 0, "collapsible": 0, - "description": "", + "description": "Do not include symbols (ex. $)", "fieldname": "valuation_rate", "fieldtype": "Currency", "hidden": 0, @@ -215,7 +215,7 @@ "istable": 1, "max_attachments": 0, "menu_index": 0, - "modified": "2015-11-30 02:34:10.385030", + "modified": "2016-01-27 16:04:42.325454", "modified_by": "Administrator", "module": "Stock", "name": "Stock Reconciliation Item", @@ -226,4 +226,4 @@ "read_only_onload": 0, "sort_field": "modified", "sort_order": "DESC" -} \ No newline at end of file +} From ed11e93b25a679294cf66baa2f62159caa0b6819 Mon Sep 17 00:00:00 2001 From: ShashaQin Date: Mon, 1 Feb 2016 16:54:19 +0800 Subject: [PATCH 31/46] Update stock_reconciliation.py exclude 'disabled' item when get items --- .../stock_reconciliation.py | 20 ++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py b/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py index 0d9be9b5d5..1dc5578436 100644 --- a/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +++ b/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py @@ -252,21 +252,23 @@ def get_items(warehouse, posting_date, posting_time): items = frappe.get_list("Bin", fields=["item_code"], filters={"warehouse": warehouse}, as_list=1) items += frappe.get_list("Item", fields=["name"], filters= {"is_stock_item": 1, "has_serial_no": 0, - "has_batch_no": 0, "has_variants": 0, "default_warehouse": warehouse}, as_list=1) + "has_batch_no": 0, "has_variants": 0, "disabled": 0, "default_warehouse": warehouse}, as_list=1) res = [] for item in set(items): stock_bal = get_stock_balance(item[0], warehouse, posting_date, posting_time, with_valuation_rate=True) - res.append({ - "item_code": item[0], - "warehouse": warehouse, - "qty": stock_bal[0], - "valuation_rate": stock_bal[1], - "current_qty": stock_bal[0], - "current_valuation_rate": stock_bal[1] - }) + if frappe.db.get_value("Item",item[0],"disabled") == 0: + + res.append({ + "item_code": item[0], + "warehouse": warehouse, + "qty": stock_bal[0], + "valuation_rate": stock_bal[1], + "current_qty": stock_bal[0], + "current_valuation_rate": stock_bal[1] + }) return res From afb8ec9cb6aa80498b932e2c6142bd76bc0e0e2d Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Mon, 1 Feb 2016 12:52:58 +0530 Subject: [PATCH 32/46] [fix] Validate company abbr --- erpnext/setup/doctype/company/company.py | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/erpnext/setup/doctype/company/company.py b/erpnext/setup/doctype/company/company.py index 01e5742c2a..6689d66748 100644 --- a/erpnext/setup/doctype/company/company.py +++ b/erpnext/setup/doctype/company/company.py @@ -27,15 +27,21 @@ class Company(Document): return exists def validate(self): + self.validate_abbr() + self.validate_default_accounts() + self.validate_currency() + + def validate_abbr(self): self.abbr = self.abbr.strip() + if self.get('__islocal') and len(self.abbr) > 5: frappe.throw(_("Abbreviation cannot have more than 5 characters")) if not self.abbr.strip(): frappe.throw(_("Abbreviation is mandatory")) - - self.validate_default_accounts() - self.validate_currency() + + if frappe.db.sql("select abbr from tabCompany where name!=%s and abbr=%s", (self.name, self.abbr)): + frappe.throw(_("Abbreviation already used for another company")) def validate_default_accounts(self): for field in ["default_bank_account", "default_cash_account", "default_receivable_account", "default_payable_account", @@ -167,7 +173,7 @@ class Company(Document): frappe.defaults.clear_cache() def abbreviate(self): - self.abbr = ''.join([c[0].upper() for c in self.name.split()]) + self.abbr = ''.join([c[0].upper() for c in self.company_name.split()]) def on_trash(self): """ From a85a1ff1459537ae7024648705343e09a1680363 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Mon, 1 Feb 2016 12:54:19 +0530 Subject: [PATCH 33/46] [fix] Validate rate with reference doc --- erpnext/stock/doctype/delivery_note/delivery_note.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/stock/doctype/delivery_note/delivery_note.py b/erpnext/stock/doctype/delivery_note/delivery_note.py index 7cb855fd67..0dabfa13e1 100644 --- a/erpnext/stock/doctype/delivery_note/delivery_note.py +++ b/erpnext/stock/doctype/delivery_note/delivery_note.py @@ -124,8 +124,8 @@ class DeliveryNote(SellingController): }) if cint(frappe.db.get_single_value('Selling Settings', 'maintain_same_sales_rate')) and not self.is_return: - self.validate_rate_with_reference_doc([["Sales Order", "sales_order", "so_detail"], - ["Sales Invoice", "sales_invoice", "si_detail"]]) + self.validate_rate_with_reference_doc([["Sales Order", "against_sales_order", "so_detail"], + ["Sales Invoice", "against_sales_invoice", "si_detail"]]) def validate_proj_cust(self): """check for does customer belong to same project as entered..""" From d5fda57297c4d4475772a6fcd15a3e8d3a8d76c3 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Mon, 1 Feb 2016 12:55:23 +0530 Subject: [PATCH 34/46] [fix] Ignore permissions and made Customer warehouse field hidden in selling cycle --- .../sales_invoice_item.json | 11 +-- .../sales_order_item/sales_order_item.json | 9 +- .../doctype/delivery_note/delivery_note.json | 90 ++++++++++++++----- .../delivery_note_item.json | 9 +- 4 files changed, 82 insertions(+), 37 deletions(-) diff --git a/erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json b/erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json index 8e9be7ee15..79f5f555c2 100644 --- a/erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json +++ b/erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json @@ -7,6 +7,7 @@ "custom": 0, "docstatus": 0, "doctype": "DocType", + "document_type": "Document", "fields": [ { "allow_on_submit": 0, @@ -972,13 +973,13 @@ "collapsible": 0, "fieldname": "target_warehouse", "fieldtype": "Link", - "hidden": 0, - "ignore_user_permissions": 0, + "hidden": 1, + "ignore_user_permissions": 1, "in_filter": 0, "in_list_view": 0, - "label": "Target Warehouse", + "label": "Customer Warehouse (Optional)", "length": 0, - "no_copy": 0, + "no_copy": 1, "options": "Warehouse", "permlevel": 0, "precision": "", @@ -1444,7 +1445,7 @@ "issingle": 0, "istable": 1, "max_attachments": 0, - "modified": "2016-01-06 02:23:06.432442", + "modified": "2016-02-01 11:16:58.288462", "modified_by": "Administrator", "module": "Accounts", "name": "Sales Invoice Item", diff --git a/erpnext/selling/doctype/sales_order_item/sales_order_item.json b/erpnext/selling/doctype/sales_order_item/sales_order_item.json index 823b805bf6..184a4f48eb 100644 --- a/erpnext/selling/doctype/sales_order_item/sales_order_item.json +++ b/erpnext/selling/doctype/sales_order_item/sales_order_item.json @@ -7,6 +7,7 @@ "custom": 0, "docstatus": 0, "doctype": "DocType", + "document_type": "Document", "fields": [ { "allow_on_submit": 0, @@ -874,13 +875,13 @@ "depends_on": "eval:doc.delivered_by_supplier!=1", "fieldname": "target_warehouse", "fieldtype": "Link", - "hidden": 0, + "hidden": 1, "ignore_user_permissions": 1, "in_filter": 0, "in_list_view": 0, - "label": "Target Warehouse", + "label": "Customer Warehouse (Optional)", "length": 0, - "no_copy": 0, + "no_copy": 1, "options": "Warehouse", "permlevel": 0, "precision": "", @@ -1289,7 +1290,7 @@ "istable": 1, "max_attachments": 0, "menu_index": 0, - "modified": "2015-12-11 14:53:24.444343", + "modified": "2016-02-01 11:16:40.514399", "modified_by": "Administrator", "module": "Selling", "name": "Sales Order Item", diff --git a/erpnext/stock/doctype/delivery_note/delivery_note.json b/erpnext/stock/doctype/delivery_note/delivery_note.json index f001f85455..5f85c01860 100644 --- a/erpnext/stock/doctype/delivery_note/delivery_note.json +++ b/erpnext/stock/doctype/delivery_note/delivery_note.json @@ -2696,18 +2696,58 @@ "istable": 0, "max_attachments": 0, "menu_index": 0, - "modified": "2015-12-25 16:20:39.014291", + "modified": "2016-01-31 14:06:52.136821", "modified_by": "Administrator", "module": "Stock", "name": "Delivery Note", "owner": "Administrator", "permissions": [ + { + "amend": 0, + "apply_user_permissions": 0, + "cancel": 0, + "create": 1, + "delete": 1, + "email": 1, + "export": 1, + "if_owner": 0, + "import": 0, + "permlevel": 1, + "print": 1, + "read": 1, + "report": 1, + "role": "All", + "set_user_permissions": 0, + "share": 1, + "submit": 0, + "write": 0 + }, { "amend": 1, "apply_user_permissions": 0, "cancel": 1, "create": 1, - "delete": 1, + "delete": 0, + "email": 1, + "export": 1, + "if_owner": 0, + "import": 0, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Office Coordinator", + "set_user_permissions": 0, + "share": 1, + "submit": 1, + "write": 1 + }, + { + "amend": 1, + "apply_user_permissions": 0, + "cancel": 1, + "create": 1, + "delete": 0, "email": 1, "export": 0, "if_owner": 0, @@ -2722,6 +2762,27 @@ "submit": 1, "write": 1 }, + { + "amend": 0, + "apply_user_permissions": 1, + "cancel": 1, + "create": 1, + "delete": 0, + "email": 1, + "export": 1, + "if_owner": 0, + "import": 0, + "permlevel": 0, + "print": 1, + "read": 1, + "report": 1, + "role": "Store Keeper", + "set_user_permissions": 0, + "share": 1, + "submit": 1, + "user_permission_doctypes": "[\"Warehouse\"]", + "write": 1 + }, { "amend": 1, "apply_user_permissions": 0, @@ -2744,10 +2805,10 @@ }, { "amend": 1, - "apply_user_permissions": 0, + "apply_user_permissions": 1, "cancel": 1, "create": 1, - "delete": 1, + "delete": 0, "email": 1, "export": 0, "if_owner": 0, @@ -2760,6 +2821,7 @@ "set_user_permissions": 0, "share": 1, "submit": 1, + "user_permission_doctypes": "[\"Warehouse\"]", "write": 1 }, { @@ -2801,26 +2863,6 @@ "share": 0, "submit": 0, "write": 0 - }, - { - "amend": 0, - "apply_user_permissions": 0, - "cancel": 0, - "create": 0, - "delete": 0, - "email": 0, - "export": 0, - "if_owner": 0, - "import": 0, - "permlevel": 1, - "print": 0, - "read": 1, - "report": 0, - "role": "Stock Manager", - "set_user_permissions": 0, - "share": 0, - "submit": 0, - "write": 1 } ], "read_only": 0, diff --git a/erpnext/stock/doctype/delivery_note_item/delivery_note_item.json b/erpnext/stock/doctype/delivery_note_item/delivery_note_item.json index dcafc1e4e8..6ed16ce51b 100644 --- a/erpnext/stock/doctype/delivery_note_item/delivery_note_item.json +++ b/erpnext/stock/doctype/delivery_note_item/delivery_note_item.json @@ -7,6 +7,7 @@ "custom": 0, "docstatus": 0, "doctype": "DocType", + "document_type": "Document", "fields": [ { "allow_on_submit": 0, @@ -823,13 +824,13 @@ "description": "", "fieldname": "target_warehouse", "fieldtype": "Link", - "hidden": 0, + "hidden": 1, "ignore_user_permissions": 1, "in_filter": 0, "in_list_view": 0, - "label": "To Warehouse (Optional)", + "label": "Customer Warehouse (Optional)", "length": 0, - "no_copy": 0, + "no_copy": 1, "options": "Warehouse", "permlevel": 0, "precision": "", @@ -1286,7 +1287,7 @@ "issingle": 0, "istable": 1, "max_attachments": 0, - "modified": "2016-01-07 05:59:56.448357", + "modified": "2016-02-01 11:16:23.749244", "modified_by": "Administrator", "module": "Stock", "name": "Delivery Note Item", From 3c55d89f7f3c89a6d1a8ec61fd66cb2691d8fd24 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Mon, 1 Feb 2016 15:55:02 +0530 Subject: [PATCH 35/46] [minor] Reference doctype in Item-wise price List Rate report --- .../item_wise_price_list_rate.json | 32 ++++++++++--------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json b/erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json index ec8f599f36..6a8ddc362b 100644 --- a/erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json +++ b/erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json @@ -1,17 +1,19 @@ { - "apply_user_permissions": 1, - "creation": "2013-09-25 10:21:15", - "docstatus": 0, - "doctype": "Report", - "idx": 1, - "is_standard": "Yes", - "json": "{\"filters\":[[\"Item Price\",\"price_list\",\"like\",\"%\"],[\"Item Price\",\"item_code\",\"like\",\"%\"]],\"columns\":[[\"name\",\"Item Price\"],[\"price_list\",\"Item Price\"],[\"item_code\",\"Item Price\"],[\"item_name\",\"Item Price\"],[\"item_description\",\"Item Price\"],[\"price_list_rate\",\"Item Price\"],[\"buying\",\"Item Price\"],[\"selling\",\"Item Price\"],[\"currency\",\"Item Price\"]],\"sort_by\":\"Item Price.modified\",\"sort_order\":\"desc\",\"sort_by_next\":\"\",\"sort_order_next\":\"desc\"}", - "modified": "2014-06-09 10:21:15.097955", - "modified_by": "Administrator", - "module": "Stock", - "name": "Item-wise Price List Rate", - "owner": "Administrator", - "ref_doctype": "Price List", - "report_name": "Item-wise Price List Rate", + "add_total_row": 0, + "apply_user_permissions": 1, + "creation": "2013-09-25 10:21:15", + "disabled": 0, + "docstatus": 0, + "doctype": "Report", + "idx": 1, + "is_standard": "Yes", + "json": "{\"filters\":[],\"columns\":[[\"name\",\"Item Price\"],[\"price_list\",\"Item Price\"],[\"item_code\",\"Item Price\"],[\"item_name\",\"Item Price\"],[\"item_description\",\"Item Price\"],[\"price_list_rate\",\"Item Price\"],[\"buying\",\"Item Price\"],[\"selling\",\"Item Price\"],[\"currency\",\"Item Price\"]],\"sort_by\":\"Item Price.modified\",\"sort_order\":\"desc\",\"sort_by_next\":null,\"sort_order_next\":\"desc\"}", + "modified": "2016-02-01 14:31:04.075909", + "modified_by": "Administrator", + "module": "Stock", + "name": "Item-wise Price List Rate", + "owner": "Administrator", + "ref_doctype": "Item Price", + "report_name": "Item-wise Price List Rate", "report_type": "Report Builder" -} +} \ No newline at end of file From 0ec9b901138fe47d5ff21059aef003c0513d1166 Mon Sep 17 00:00:00 2001 From: Valmik Jangla Date: Tue, 2 Feb 2016 18:29:09 +0530 Subject: [PATCH 36/46] Updated documentation --- .../employee-attendance-tool.png | Bin 0 -> 51851 bytes .../employee-holiday-report.png | Bin 0 -> 62066 bytes erpnext/docs/current/api/accounts/index.txt | 4 +- erpnext/docs/current/api/config/index.txt | 20 +- .../docs/current/api/controllers/index.txt | 16 +- erpnext/docs/current/api/hr/index.txt | 4 +- erpnext/docs/current/api/index.txt | 6 +- erpnext/docs/current/api/setup/index.txt | 4 +- .../current/api/setup/setup_wizard/index.txt | 8 +- .../docs/current/api/shopping_cart/index.txt | 4 +- erpnext/docs/current/api/startup/index.txt | 4 +- erpnext/docs/current/api/stock/index.txt | 10 +- erpnext/docs/current/api/utilities/index.txt | 4 +- erpnext/docs/current/index.html | 2 +- .../accounts/period_closing_voucher.html | 2 +- .../current/models/buying/purchase_order.html | 91 ++++--- erpnext/docs/current/models/hr/branch.html | 9 + .../docs/current/models/hr/department.html | 9 + .../models/hr/employee_attendance_tool.html | 244 ++++++++++++++++++ .../current/models/selling/sales_order.html | 87 ++++--- .../docs/current/models/setup/company.html | 37 +++ erpnext/docs/current/models/stock/item.html | 77 +++--- .../manual/en/human-resources/attendance.md | 7 +- .../human-resources-reports.md | 6 + .../tools/employee-attendance-tool.md | 9 + .../manual/en/human-resources/tools/index.txt | 1 + 26 files changed, 506 insertions(+), 159 deletions(-) create mode 100644 erpnext/docs/assets/img/human-resources/employee-attendance-tool.png create mode 100644 erpnext/docs/assets/img/human-resources/employee-holiday-report.png create mode 100644 erpnext/docs/current/models/hr/employee_attendance_tool.html create mode 100644 erpnext/docs/user/manual/en/human-resources/tools/employee-attendance-tool.md diff --git a/erpnext/docs/assets/img/human-resources/employee-attendance-tool.png b/erpnext/docs/assets/img/human-resources/employee-attendance-tool.png new file mode 100644 index 0000000000000000000000000000000000000000..179fb2404a72338da85113e99f67576a8cf8fb7a GIT binary patch literal 51851 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 literal 0 HcmV?d00001 diff --git a/erpnext/docs/assets/img/human-resources/employee-holiday-report.png b/erpnext/docs/assets/img/human-resources/employee-holiday-report.png new file mode 100644 index 0000000000000000000000000000000000000000..c8a8f6b4a278adeb6713a774753512b8550f0ccb GIT binary patch literal 62066 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
        3mXB+Kaq6#AUwxBudbdviO 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 literal 0 HcmV?d00001 diff --git a/erpnext/docs/current/api/accounts/index.txt b/erpnext/docs/current/api/accounts/index.txt index 33f157c7ac..cf92d5a469 100644 --- a/erpnext/docs/current/api/accounts/index.txt +++ b/erpnext/docs/current/api/accounts/index.txt @@ -1,4 +1,4 @@ erpnext.accounts.general_ledger -erpnext.accounts +erpnext.accounts.utils erpnext.accounts.party -erpnext.accounts.utils \ No newline at end of file +erpnext.accounts \ No newline at end of file diff --git a/erpnext/docs/current/api/config/index.txt b/erpnext/docs/current/api/config/index.txt index 7d4ebc5d65..b8e76b568e 100644 --- a/erpnext/docs/current/api/config/index.txt +++ b/erpnext/docs/current/api/config/index.txt @@ -1,15 +1,15 @@ -erpnext.config.accounts -erpnext.config.buying -erpnext.config.crm -erpnext.config.desktop -erpnext.config.docs +erpnext.config.stock erpnext.config.hr +erpnext.config.buying +erpnext.config.support erpnext.config erpnext.config.learn -erpnext.config.manufacturing -erpnext.config.projects +erpnext.config.website +erpnext.config.desktop +erpnext.config.docs erpnext.config.selling +erpnext.config.projects erpnext.config.setup -erpnext.config.stock -erpnext.config.support -erpnext.config.website \ No newline at end of file +erpnext.config.accounts +erpnext.config.manufacturing +erpnext.config.crm \ No newline at end of file diff --git a/erpnext/docs/current/api/controllers/index.txt b/erpnext/docs/current/api/controllers/index.txt index 3965811e80..ad58d1126c 100644 --- a/erpnext/docs/current/api/controllers/index.txt +++ b/erpnext/docs/current/api/controllers/index.txt @@ -1,14 +1,14 @@ -erpnext.controllers.accounts_controller -erpnext.controllers.buying_controller -erpnext.controllers erpnext.controllers.item_variant erpnext.controllers.print_settings -erpnext.controllers.queries +erpnext.controllers erpnext.controllers.recurring_document +erpnext.controllers.accounts_controller erpnext.controllers.sales_and_purchase_return -erpnext.controllers.selling_controller -erpnext.controllers.status_updater +erpnext.controllers.buying_controller +erpnext.controllers.website_list_for_contact erpnext.controllers.stock_controller -erpnext.controllers.taxes_and_totals erpnext.controllers.trends -erpnext.controllers.website_list_for_contact \ No newline at end of file +erpnext.controllers.status_updater +erpnext.controllers.queries +erpnext.controllers.taxes_and_totals +erpnext.controllers.selling_controller \ No newline at end of file diff --git a/erpnext/docs/current/api/hr/index.txt b/erpnext/docs/current/api/hr/index.txt index c515b53205..bbd031146f 100644 --- a/erpnext/docs/current/api/hr/index.txt +++ b/erpnext/docs/current/api/hr/index.txt @@ -1,2 +1,2 @@ -erpnext.hr -erpnext.hr.utils \ No newline at end of file +erpnext.hr.utils +erpnext.hr \ No newline at end of file diff --git a/erpnext/docs/current/api/index.txt b/erpnext/docs/current/api/index.txt index f7f8f5e618..396033d494 100644 --- a/erpnext/docs/current/api/index.txt +++ b/erpnext/docs/current/api/index.txt @@ -1,5 +1,5 @@ -erpnext.__init__ -erpnext.__version__ erpnext.exceptions erpnext.hooks -erpnext.tasks \ No newline at end of file +erpnext.tasks +erpnext.__init__ +erpnext.__version__ \ No newline at end of file diff --git a/erpnext/docs/current/api/setup/index.txt b/erpnext/docs/current/api/setup/index.txt index 63162d85a9..f00d546c82 100644 --- a/erpnext/docs/current/api/setup/index.txt +++ b/erpnext/docs/current/api/setup/index.txt @@ -1,3 +1,3 @@ -erpnext.setup +erpnext.setup.utils erpnext.setup.install -erpnext.setup.utils \ No newline at end of file +erpnext.setup \ No newline at end of file diff --git a/erpnext/docs/current/api/setup/setup_wizard/index.txt b/erpnext/docs/current/api/setup/setup_wizard/index.txt index 6e21162d28..53da4fe315 100644 --- a/erpnext/docs/current/api/setup/setup_wizard/index.txt +++ b/erpnext/docs/current/api/setup/setup_wizard/index.txt @@ -1,8 +1,8 @@ -erpnext.setup.setup_wizard.default_website +erpnext.setup.setup_wizard.test_setup_wizard erpnext.setup.setup_wizard -erpnext.setup.setup_wizard.industry_type +erpnext.setup.setup_wizard.test_setup_data erpnext.setup.setup_wizard.install_fixtures erpnext.setup.setup_wizard.sample_data +erpnext.setup.setup_wizard.default_website erpnext.setup.setup_wizard.setup_wizard -erpnext.setup.setup_wizard.test_setup_data -erpnext.setup.setup_wizard.test_setup_wizard \ No newline at end of file +erpnext.setup.setup_wizard.industry_type \ No newline at end of file diff --git a/erpnext/docs/current/api/shopping_cart/index.txt b/erpnext/docs/current/api/shopping_cart/index.txt index c95a01d0e4..cbbce0ac40 100644 --- a/erpnext/docs/current/api/shopping_cart/index.txt +++ b/erpnext/docs/current/api/shopping_cart/index.txt @@ -1,5 +1,5 @@ erpnext.shopping_cart.cart erpnext.shopping_cart erpnext.shopping_cart.product -erpnext.shopping_cart.test_shopping_cart -erpnext.shopping_cart.utils \ No newline at end of file +erpnext.shopping_cart.utils +erpnext.shopping_cart.test_shopping_cart \ No newline at end of file diff --git a/erpnext/docs/current/api/startup/index.txt b/erpnext/docs/current/api/startup/index.txt index 40766bcbc3..0cf302ed91 100644 --- a/erpnext/docs/current/api/startup/index.txt +++ b/erpnext/docs/current/api/startup/index.txt @@ -1,4 +1,4 @@ erpnext.startup.boot -erpnext.startup +erpnext.startup.report_data_map erpnext.startup.notifications -erpnext.startup.report_data_map \ No newline at end of file +erpnext.startup \ No newline at end of file diff --git a/erpnext/docs/current/api/stock/index.txt b/erpnext/docs/current/api/stock/index.txt index 27cb1482d3..01082a7be2 100644 --- a/erpnext/docs/current/api/stock/index.txt +++ b/erpnext/docs/current/api/stock/index.txt @@ -1,6 +1,6 @@ -erpnext.stock.get_item_details -erpnext.stock -erpnext.stock.reorder_item -erpnext.stock.stock_balance erpnext.stock.stock_ledger -erpnext.stock.utils \ No newline at end of file +erpnext.stock +erpnext.stock.utils +erpnext.stock.get_item_details +erpnext.stock.stock_balance +erpnext.stock.reorder_item \ No newline at end of file diff --git a/erpnext/docs/current/api/utilities/index.txt b/erpnext/docs/current/api/utilities/index.txt index 86ae38fc1d..ec810e96e3 100644 --- a/erpnext/docs/current/api/utilities/index.txt +++ b/erpnext/docs/current/api/utilities/index.txt @@ -1,3 +1,3 @@ +erpnext.utilities.transaction_base erpnext.utilities.address_and_contact -erpnext.utilities -erpnext.utilities.transaction_base \ No newline at end of file +erpnext.utilities \ No newline at end of file diff --git a/erpnext/docs/current/index.html b/erpnext/docs/current/index.html index ec8d9545cd..7b41bcef74 100644 --- a/erpnext/docs/current/index.html +++ b/erpnext/docs/current/index.html @@ -35,7 +35,7 @@ Version - 6.18.4 + 6.19.0 diff --git a/erpnext/docs/current/models/accounts/period_closing_voucher.html b/erpnext/docs/current/models/accounts/period_closing_voucher.html index c14226eed0..1a3aac1fc8 100644 --- a/erpnext/docs/current/models/accounts/period_closing_voucher.html +++ b/erpnext/docs/current/models/accounts/period_closing_voucher.html @@ -157,7 +157,7 @@ Closing Account Head

        - The account head under Liability, in which Profit/Loss will be booked

        + The account head under Liability or Equity, in which Profit/Loss will be booked

        diff --git a/erpnext/docs/current/models/buying/purchase_order.html b/erpnext/docs/current/models/buying/purchase_order.html index bafaa2e306..c4cac40034 100644 --- a/erpnext/docs/current/models/buying/purchase_order.html +++ b/erpnext/docs/current/models/buying/purchase_order.html @@ -964,18 +964,6 @@ Net Total 65 - advance_paid - - Currency - - Advance Paid - - - - - - - 66 column_break4 Column Break @@ -987,7 +975,7 @@ Net Total - 67 + 66 grand_total Currency @@ -1001,7 +989,7 @@ Net Total - 68 + 67 in_words Data @@ -1012,6 +1000,20 @@ Net Total + + 68 + advance_paid + + Currency + + Advance Paid + + + +
        party_account_currency
        + + + 69 terms_section_break @@ -1197,6 +1199,27 @@ Delivered 80 + party_account_currency + + Link + + Party Account Currency + + + + + + + +
        Currency + + + + + + + + 81 column_break_74 Column Break @@ -1208,7 +1231,7 @@ Delivered - 81 + 82 per_received Percent @@ -1220,7 +1243,7 @@ Delivered - 82 + 83 per_billed Percent @@ -1232,7 +1255,7 @@ Delivered - 83 + 84 column_break5 Section Break @@ -1244,7 +1267,7 @@ Delivered - 84 + 85 letter_head Link @@ -1265,7 +1288,7 @@ Delivered - 85 + 86 select_print_heading Link @@ -1286,7 +1309,7 @@ Delivered - 86 + 87 raw_material_details Section Break @@ -1300,7 +1323,7 @@ Delivered - 87 + 88 supplied_items Table @@ -1321,7 +1344,7 @@ Delivered - 88 + 89 recurring_order Section Break @@ -1335,7 +1358,7 @@ Delivered - 89 + 90 column_break Column Break @@ -1347,7 +1370,7 @@ Delivered - 90 + 91 is_recurring Check @@ -1359,7 +1382,7 @@ Delivered - 91 + 92 recurring_type Select @@ -1376,7 +1399,7 @@ Yearly - 92 + 93 from_date Date @@ -1389,7 +1412,7 @@ Yearly - 93 + 94 to_date Date @@ -1402,7 +1425,7 @@ Yearly - 94 + 95 repeat_on_day_of_month Int @@ -1415,7 +1438,7 @@ Yearly - 95 + 96 end_date Date @@ -1428,7 +1451,7 @@ Yearly - 96 + 97 column_break83 Column Break @@ -1440,7 +1463,7 @@ Yearly - 97 + 98 next_date Date @@ -1453,7 +1476,7 @@ Yearly - 98 + 99 recurring_id Data @@ -1465,7 +1488,7 @@ Yearly - 99 + 100 notification_email_address Small Text @@ -1478,7 +1501,7 @@ Yearly - 100 + 101 recurring_print_format Link diff --git a/erpnext/docs/current/models/hr/branch.html b/erpnext/docs/current/models/hr/branch.html index 125657a9d9..ef9e8bec04 100644 --- a/erpnext/docs/current/models/hr/branch.html +++ b/erpnext/docs/current/models/hr/branch.html @@ -93,6 +93,15 @@ +
      1. + + +Employee Attendance Tool + +
      2. + + +
      3. diff --git a/erpnext/docs/current/models/hr/department.html b/erpnext/docs/current/models/hr/department.html index 4f0ffefde1..bb50000408 100644 --- a/erpnext/docs/current/models/hr/department.html +++ b/erpnext/docs/current/models/hr/department.html @@ -115,6 +115,15 @@ +
      4. + + +Employee Attendance Tool + +
      5. + + +
      6. diff --git a/erpnext/docs/current/models/hr/employee_attendance_tool.html b/erpnext/docs/current/models/hr/employee_attendance_tool.html new file mode 100644 index 0000000000..053b722118 --- /dev/null +++ b/erpnext/docs/current/models/hr/employee_attendance_tool.html @@ -0,0 +1,244 @@ + + + + + + + + +Single + + + + + + +

        Fields

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        SrFieldnameTypeLabelOptions
        1date + Date + Date + +
        2department + Link + Department + + + + + + +Department + + + +
        3column_break_3 + Column Break + + +
        4branch + Link + Branch + + + + + + +Branch + + + +
        5company + Link + Company + + + + + + +Company + + + +
        6unmarked_attendance_section + Section Break + Unmarked Attendance + +
        7employees_html + HTML + Employees HTML + +
        8marked_attendance_section + Section Break + Marked Attendance + +
        9marked_attendance_html + HTML + Marked Attendance HTML + +
        + + +
        +

        Controller

        +

        erpnext.hr.doctype.employee_attendance_tool.employee_attendance_tool

        + + + + + + + +

        Class EmployeeAttendanceTool

        + +

        Inherits from frappe.model.document.Document + +

        +
        +
        + +
        +
        + + + + + + +

        Public API +
        /api/method/erpnext.hr.doctype.employee_attendance_tool.employee_attendance_tool.get_employees +

        +

        + + + erpnext.hr.doctype.employee_attendance_tool.employee_attendance_tool.get_employees + (date, department=None, branch=None, company=None) +

        +

        No docs

        +
        +
        + + + + + + +

        Public API +
        /api/method/erpnext.hr.doctype.employee_attendance_tool.employee_attendance_tool.mark_employee_attendance +

        +

        + + + erpnext.hr.doctype.employee_attendance_tool.employee_attendance_tool.mark_employee_attendance + (employee_list, status, date, company=None) +

        +

        No docs

        +
        +
        + + + + + + + + + + + \ No newline at end of file diff --git a/erpnext/docs/current/models/selling/sales_order.html b/erpnext/docs/current/models/selling/sales_order.html index 229e8473cf..59cfd8febc 100644 --- a/erpnext/docs/current/models/selling/sales_order.html +++ b/erpnext/docs/current/models/selling/sales_order.html @@ -939,7 +939,7 @@ Net Total -
        Company:company:default_currency
        +
        party_account_currency
        @@ -1206,6 +1206,27 @@ Net Total 79 + party_account_currency + + Link + + Party Account Currency + + + + + + + +Currency + + + + + + + + 80 column_break_77 Column Break @@ -1217,7 +1238,7 @@ Net Total - 80 + 81 source Select @@ -1240,7 +1261,7 @@ Campaign - 81 + 82 campaign Link @@ -1261,7 +1282,7 @@ Campaign - 82 + 83 printing_details Section Break @@ -1273,7 +1294,7 @@ Campaign - 83 + 84 letter_head Link @@ -1294,7 +1315,7 @@ Campaign - 84 + 85 column_break4 Column Break @@ -1306,7 +1327,7 @@ Campaign - 85 + 86 select_print_heading Link @@ -1327,7 +1348,7 @@ Campaign - 86 + 87 section_break_78 Section Break @@ -1339,7 +1360,7 @@ Campaign - 87 + 88 status Select @@ -1361,7 +1382,7 @@ Closed - 88 + 89 delivery_status Select @@ -1379,7 +1400,7 @@ Not Applicable - 89 + 90 per_delivered Percent @@ -1392,7 +1413,7 @@ Not Applicable - 90 + 91 column_break_81 Column Break @@ -1404,7 +1425,7 @@ Not Applicable - 91 + 92 per_billed Percent @@ -1417,7 +1438,7 @@ Not Applicable - 92 + 93 billing_status Select @@ -1434,7 +1455,7 @@ Closed - 93 + 94 sales_team_section_break Section Break @@ -1448,7 +1469,7 @@ Closed - 94 + 95 sales_partner Link @@ -1469,7 +1490,7 @@ Closed - 95 + 96 column_break7 Column Break @@ -1481,7 +1502,7 @@ Closed - 96 + 97 commission_rate Float @@ -1493,7 +1514,7 @@ Closed - 97 + 98 total_commission Currency @@ -1507,7 +1528,7 @@ Closed - 98 + 99 section_break1 Section Break @@ -1519,7 +1540,7 @@ Closed - 99 + 100 sales_team Table @@ -1540,7 +1561,7 @@ Closed - 100 + 101 recurring_order Section Break @@ -1554,7 +1575,7 @@ Closed - 101 + 102 is_recurring Check @@ -1567,7 +1588,7 @@ Closed - 102 + 103 recurring_type Select @@ -1586,7 +1607,7 @@ Yearly - 103 + 104 from_date Date @@ -1599,7 +1620,7 @@ Yearly - 104 + 105 to_date Date @@ -1612,7 +1633,7 @@ Yearly - 105 + 106 repeat_on_day_of_month Int @@ -1625,7 +1646,7 @@ Yearly - 106 + 107 end_date Date @@ -1638,7 +1659,7 @@ Yearly - 107 + 108 column_break83 Column Break @@ -1650,7 +1671,7 @@ Yearly - 108 + 109 next_date Date @@ -1663,7 +1684,7 @@ Yearly - 109 + 110 recurring_id Data @@ -1675,7 +1696,7 @@ Yearly - 110 + 111 notification_email_address Small Text @@ -1688,7 +1709,7 @@ Yearly - 111 + 112 recurring_print_format Link diff --git a/erpnext/docs/current/models/setup/company.html b/erpnext/docs/current/models/setup/company.html index 88381d143b..d8a5fe1368 100644 --- a/erpnext/docs/current/models/setup/company.html +++ b/erpnext/docs/current/models/setup/company.html @@ -824,6 +824,20 @@ Stop +

        + + + abbreviate + (self) +

        +

        No docs

        +
        +
        + + + + +

        @@ -992,6 +1006,20 @@ Stop +

        + + + validate_abbr + (self) +

        +

        No docs

        +
        +
        + + + + +

        @@ -1169,6 +1197,15 @@ Stop +

      7. + + +Employee Attendance Tool + +
      8. + + +
      9. diff --git a/erpnext/docs/current/models/stock/item.html b/erpnext/docs/current/models/stock/item.html index 8a06f29b25..e159ba9cf9 100644 --- a/erpnext/docs/current/models/stock/item.html +++ b/erpnext/docs/current/models/stock/item.html @@ -867,19 +867,6 @@ Moving Average 57 - is_service_item - - Check - - Is Service Item -

        - Allow in Sales Order of type "Service"

        - - - - - - 58 publish_in_hub Check @@ -892,7 +879,7 @@ Moving Average - 59 + 58 synced_with_hub Check @@ -904,7 +891,7 @@ Moving Average - 60 + 59 income_account Link @@ -925,7 +912,7 @@ Moving Average - 61 + 60 selling_cost_center Link @@ -946,7 +933,7 @@ Moving Average - 62 + 61 column_break3 Column Break @@ -958,7 +945,7 @@ Moving Average - 63 + 62 customer_items Table @@ -979,7 +966,7 @@ Moving Average - 64 + 63 max_discount Float @@ -991,7 +978,7 @@ Moving Average - 65 + 64 item_tax_section_break Section Break @@ -1005,7 +992,7 @@ Moving Average - 66 + 65 taxes Table @@ -1027,7 +1014,7 @@ Moving Average - 67 + 66 inspection_criteria Section Break @@ -1041,7 +1028,7 @@ Moving Average - 68 + 67 inspection_required Check @@ -1053,7 +1040,7 @@ Moving Average - 69 + 68 quality_parameters Table @@ -1075,7 +1062,7 @@ Moving Average - 70 + 69 manufacturing Section Break @@ -1089,7 +1076,7 @@ Moving Average - 71 + 70 is_pro_applicable Check @@ -1101,7 +1088,7 @@ Moving Average - 72 + 71 is_sub_contracted_item Check @@ -1114,7 +1101,7 @@ Moving Average - 73 + 72 column_break_74 Column Break @@ -1126,7 +1113,7 @@ Moving Average - 74 + 73 default_bom Link @@ -1147,7 +1134,7 @@ Moving Average - 75 + 74 customer_code Data @@ -1159,7 +1146,7 @@ Moving Average - 76 + 75 website_section Section Break @@ -1173,7 +1160,7 @@ Moving Average - 77 + 76 show_in_website Check @@ -1185,7 +1172,7 @@ Moving Average - 78 + 77 page_name Data @@ -1198,7 +1185,7 @@ Moving Average - 79 + 78 weightage Int @@ -1211,7 +1198,7 @@ Moving Average - 80 + 79 slideshow Link @@ -1233,7 +1220,7 @@ Moving Average - 81 + 80 website_image Attach @@ -1246,7 +1233,7 @@ Moving Average - 82 + 81 thumbnail Data @@ -1258,7 +1245,7 @@ Moving Average - 83 + 82 cb72 Column Break @@ -1270,7 +1257,7 @@ Moving Average - 84 + 83 website_warehouse Link @@ -1292,7 +1279,7 @@ Moving Average - 85 + 84 website_item_groups Table @@ -1314,7 +1301,7 @@ Moving Average - 86 + 85 sb72 Section Break @@ -1326,7 +1313,7 @@ Moving Average - 87 + 86 copy_from_item_group Button @@ -1338,7 +1325,7 @@ Moving Average - 88 + 87 website_specifications Table @@ -1359,7 +1346,7 @@ Moving Average - 89 + 88 web_long_description Text Editor @@ -1371,7 +1358,7 @@ Moving Average - 90 + 89 parent_website_route Read Only diff --git a/erpnext/docs/user/manual/en/human-resources/attendance.md b/erpnext/docs/user/manual/en/human-resources/attendance.md index 7c3b9b6071..b180d233ba 100644 --- a/erpnext/docs/user/manual/en/human-resources/attendance.md +++ b/erpnext/docs/user/manual/en/human-resources/attendance.md @@ -1,14 +1,15 @@ An Attendance record stating that an Employee has been present on a particular day can be created manually by: -> Human Resources > Attendance > New Attendance +> Human Resources > Documents > Attendance > New Attendance Attendence You can get a monthly report of your Attendance data by going to the “Monthly Attendance Details” report. -You can also bulk uppload attendence using the [Upload Attendence Tool ]({{docs_base_url}}/user/manual/en/human-resources/tools/upload-attendance.html) +You can easily set attendance for Employees using the [Employee Attendance Tool]({{docs_base_url}}/user/manual/en/human-resources/tools/employee-attendance-tool.html) + +You can also bulk upload attendence using the [Upload Attendence Tool]({{docs_base_url}}/user/manual/en/human-resources/tools/upload-attendance.html) {next} - diff --git a/erpnext/docs/user/manual/en/human-resources/human-resources-reports.md b/erpnext/docs/user/manual/en/human-resources/human-resources-reports.md index 664c07de0f..de68bbf1e3 100644 --- a/erpnext/docs/user/manual/en/human-resources/human-resources-reports.md +++ b/erpnext/docs/user/manual/en/human-resources/human-resources-reports.md @@ -18,6 +18,12 @@ Employee Information Report shows Report View of important information recorded Employee Information +### Employee Holiday Attendance + +Employee Holiday Attendance shows the list of Employees who attended on Holidays. + +Employee Information + ### Monthly Salary Register Monthly Salary Register shows net pay and its components of employee(s) at a glance. diff --git a/erpnext/docs/user/manual/en/human-resources/tools/employee-attendance-tool.md b/erpnext/docs/user/manual/en/human-resources/tools/employee-attendance-tool.md new file mode 100644 index 0000000000..f0d6e5f9e8 --- /dev/null +++ b/erpnext/docs/user/manual/en/human-resources/tools/employee-attendance-tool.md @@ -0,0 +1,9 @@ +To go the attendance tool, go to: + +> Human Resources > Tools > Employee Attendance Tool + +This tool allows you to add attendance records for multiple employees quickly. + +Attendence upload + +{next} \ No newline at end of file diff --git a/erpnext/docs/user/manual/en/human-resources/tools/index.txt b/erpnext/docs/user/manual/en/human-resources/tools/index.txt index 0d74de7e12..e3333227a6 100644 --- a/erpnext/docs/user/manual/en/human-resources/tools/index.txt +++ b/erpnext/docs/user/manual/en/human-resources/tools/index.txt @@ -1 +1,2 @@ +employee-attendance-tool upload-attendance \ No newline at end of file From 539a826b37faea8ec292be0dc12bd9c0cd10a713 Mon Sep 17 00:00:00 2001 From: ShashaQin Date: Mon, 1 Feb 2016 09:25:10 +0800 Subject: [PATCH 37/46] Update financial_statements.js Adding Accumulated Values check box on Profit and Loss, Balance Sheet --- erpnext/public/js/financial_statements.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/erpnext/public/js/financial_statements.js b/erpnext/public/js/financial_statements.js index 206be3c287..f980e2ee30 100644 --- a/erpnext/public/js/financial_statements.js +++ b/erpnext/public/js/financial_statements.js @@ -30,7 +30,18 @@ erpnext.financial_statements = { ], "default": "Yearly", "reqd": 1 - } + }, + { + "fieldname": "accumulated_value", + "label": __("Accumulated Values"), + "fieldtype": "Check" + } + , + { + "fieldname": "accumulated_value", + "label": __("Accumulated Values"), + "fieldtype": "Check" + } ], "formatter": function(row, cell, value, columnDef, dataContext, default_formatter) { if (columnDef.df.fieldname=="account") { From 1f51e718278008fb201eae66a7ea47bdf9398fed Mon Sep 17 00:00:00 2001 From: ShashaQin Date: Mon, 1 Feb 2016 09:32:44 +0800 Subject: [PATCH 38/46] Update profit_and_loss_statement.py --- .../profit_and_loss_statement.py | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py b/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py index d26a3fcf9f..42dead4ee0 100644 --- a/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py +++ b/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py @@ -10,8 +10,8 @@ from erpnext.accounts.report.financial_statements import (get_period_list, get_c def execute(filters=None): period_list = get_period_list(filters.fiscal_year, filters.periodicity) - income = get_data(filters.company, "Income", "Credit", period_list, ignore_closing_entries=True) - expense = get_data(filters.company, "Expense", "Debit", period_list, ignore_closing_entries=True) + income = get_data(filters.company, "Income", "Credit", period_list, filters.accumulated_value, ignore_closing_entries=True) + expense = get_data(filters.company, "Expense", "Debit", period_list, filters.accumulated_value, ignore_closing_entries=True) net_profit_loss = get_net_profit_loss(income, expense, period_list, filters.company) data = [] @@ -20,7 +20,7 @@ def execute(filters=None): if net_profit_loss: data.append(net_profit_loss) - columns = get_columns(period_list, filters.company) + columns = get_columns(filters.periodicity,period_list,filters.accumulated_value) return columns, data @@ -33,7 +33,17 @@ def get_net_profit_loss(income, expense, period_list, company): "currency": frappe.db.get_value("Company", company, "default_currency") } + has_value = False + for period in period_list: net_profit_loss[period.key] = flt(income[-2][period.key] - expense[-2][period.key], 3) + + if net_profit_loss[period.key]: + has_value=True + + total_column=total_column+net_profit_loss[period.key] + net_profit_loss["total"]=total_column + + if has_value: - return net_profit_loss + return net_profit_loss From 15d7224335d58d01e692a187f8e3e2a67395ea46 Mon Sep 17 00:00:00 2001 From: ShashaQin Date: Mon, 1 Feb 2016 09:35:53 +0800 Subject: [PATCH 39/46] Update balance_sheet.py --- .../accounts/report/balance_sheet/balance_sheet.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/erpnext/accounts/report/balance_sheet/balance_sheet.py b/erpnext/accounts/report/balance_sheet/balance_sheet.py index 0a2a9e308d..62d1940d02 100644 --- a/erpnext/accounts/report/balance_sheet/balance_sheet.py +++ b/erpnext/accounts/report/balance_sheet/balance_sheet.py @@ -10,9 +10,9 @@ from erpnext.accounts.report.financial_statements import (get_period_list, get_c def execute(filters=None): period_list = get_period_list(filters.fiscal_year, filters.periodicity, from_beginning=True) - asset = get_data(filters.company, "Asset", "Debit", period_list) - liability = get_data(filters.company, "Liability", "Credit", period_list) - equity = get_data(filters.company, "Equity", "Credit", period_list) + asset = get_data(filters.company, "Asset", "Debit", period_list, filters.accumulated_value) + liability = get_data(filters.company, "Liability", "Credit", period_list, filters.accumulated_value) + equity = get_data(filters.company, "Equity", "Credit", period_list, filters.accumulated_value) provisional_profit_loss = get_provisional_profit_loss(asset, liability, equity, period_list, filters.company) @@ -23,12 +23,13 @@ def execute(filters=None): if provisional_profit_loss: data.append(provisional_profit_loss) - columns = get_columns(period_list) + columns = get_columns(filters.periodicity,period_list,filters.accumulated_value) return columns, data def get_provisional_profit_loss(asset, liability, equity, period_list, company): if asset and (liability or equity): + total_column=0 provisional_profit_loss = { "account_name": "'" + _("Provisional Profit / Loss (Credit)") + "'", "account": None, @@ -49,6 +50,9 @@ def get_provisional_profit_loss(asset, liability, equity, period_list, company): if provisional_profit_loss[period.key]: has_value = True + + total_column=total_column+provisional_profit_loss[period.key] + provisional_profit_loss["total"]=total_column if has_value: return provisional_profit_loss From cc6ce5beacc5a5cd942b4d877028b7f471fd75d8 Mon Sep 17 00:00:00 2001 From: ShashaQin Date: Mon, 1 Feb 2016 09:43:45 +0800 Subject: [PATCH 40/46] Update financial_statements.py --- .../accounts/report/financial_statements.py | 69 +++++++++++++------ 1 file changed, 49 insertions(+), 20 deletions(-) diff --git a/erpnext/accounts/report/financial_statements.py b/erpnext/accounts/report/financial_statements.py index f15b7344fd..2852063f8c 100644 --- a/erpnext/accounts/report/financial_statements.py +++ b/erpnext/accounts/report/financial_statements.py @@ -4,7 +4,7 @@ from __future__ import unicode_literals import frappe from frappe import _, _dict -from frappe.utils import (flt, getdate, get_first_day, get_last_day, +from frappe.utils import (cint, flt, getdate, get_first_day, get_last_day, add_months, add_days, formatdate) def get_period_list(fiscal_year, periodicity, from_beginning=False): @@ -22,7 +22,7 @@ def get_period_list(fiscal_year, periodicity, from_beginning=False): period_list = [_dict({"to_date": end_date, "key": fiscal_year, "label": fiscal_year})] else: months_to_add = { - "Half-yearly": 6, + "Half-Yearly": 6, "Quarterly": 3, "Monthly": 1 }[periodicity] @@ -58,7 +58,10 @@ def get_period_list(fiscal_year, periodicity, from_beginning=False): # common processing for opts in period_list: key = opts["to_date"].strftime("%b_%Y").lower() - label = formatdate(opts["to_date"], "MMM YYYY") + if periodicity == "Monthly": + label = formatdate(opts["to_date"], "MMM YYYY") + else: + label = get_label(periodicity,opts["to_date"]) opts.update({ "key": key.replace(" ", "_").replace("-", "_"), "label": label, @@ -74,7 +77,24 @@ def get_period_list(fiscal_year, periodicity, from_beginning=False): return period_list -def get_data(company, root_type, balance_must_be, period_list, ignore_closing_entries=False): +def get_label(periodicity,to_date): + if periodicity=="Yearly": + months_to_add=-11 + elif periodicity=="Half-Yearly": + months_to_add=-5 + elif periodicity=="Quarterly": + months_to_add=-2 + from_date = add_months(to_date, months_to_add) + if periodicity=="Yearly": + + label = formatdate(from_date, "YYYY")+"-"+formatdate(to_date, "YYYY") + else: + label = from_date.strftime("%b")+"-"+formatdate(to_date, "MMM YYYY") + + return label + +def get_data(company, root_type, balance_must_be, period_list, accumulated_value, ignore_closing_entries=False): + accumulated_value_ischecked = cint(accumulated_value) accounts = get_accounts(company, root_type) if not accounts: return None @@ -90,7 +110,7 @@ def get_data(company, root_type, balance_must_be, period_list, ignore_closing_en period_list[-1]["to_date"],root.lft, root.rgt, gl_entries_by_account, ignore_closing_entries=ignore_closing_entries) - calculate_values(accounts_by_name, gl_entries_by_account, period_list) + calculate_values(accounts_by_name, gl_entries_by_account, period_list, accumulated_value_ischecked) accumulate_values_into_parents(accounts, accounts_by_name, period_list) out = prepare_data(accounts, balance_must_be, period_list, company_currency) @@ -108,13 +128,15 @@ def calculate_values(accounts_by_name, gl_entries_by_account, period_list): if entry.posting_date <= period.to_date: d[period.key] = d.get(period.key, 0.0) + flt(entry.debit) - flt(entry.credit) -def accumulate_values_into_parents(accounts, accounts_by_name, period_list): +def accumulate_values_into_parents(accounts, accounts_by_name, period_list, accumulated_value_ischecked): """accumulate children's values in parent accounts""" for d in reversed(accounts): if d.parent_account: for period in period_list: accounts_by_name[d.parent_account][period.key] = accounts_by_name[d.parent_account].get(period.key, 0.0) + \ d.get(period.key, 0.0) + if accumulated_value_ischecked == 0: + break def prepare_data(accounts, balance_must_be, period_list, company_currency): out = [] @@ -124,6 +146,7 @@ def prepare_data(accounts, balance_must_be, period_list, company_currency): for d in accounts: # add to output has_value = False + total_column=0 row = { "account_name": d.account_name, "account": d.name, @@ -143,13 +166,16 @@ def prepare_data(accounts, balance_must_be, period_list, company_currency): if abs(row[period.key]) >= 0.005: # ignore zero values has_value = True + total_column=total_column+row[period.key] if has_value: + row["total"]=total_column out.append(row) return out def add_total_row(out, balance_must_be, period_list, company_currency): + total_column=0 total_row = { "account_name": "'" + _("Total ({0})").format(balance_must_be) + "'", "account": None, @@ -161,8 +187,12 @@ def add_total_row(out, balance_must_be, period_list, company_currency): for period in period_list: total_row.setdefault(period.key, 0.0) total_row[period.key] += row.get(period.key, 0.0) - - row[period.key] = "" + total_column=total_column+total_row[period.key] + out[0][period.key] = "" + out[0]["total"] = "" + + total_row["total"]=total_column + out.append(total_row) out.append(total_row) @@ -245,7 +275,8 @@ def set_gl_entries_by_account(company, from_date, to_date, root_lft, root_rgt, g return gl_entries_by_account -def get_columns(period_list, company=None): +def get_columns(periodicity,period_list,accumulated_value): + accumulated_value_ischecked = cint(accumulated_value) columns = [{ "fieldname": "account", "label": _("Account"), @@ -253,22 +284,20 @@ def get_columns(period_list, company=None): "options": "Account", "width": 300 }] - if company: - columns.append({ - "fieldname": "currency", - "label": _("Currency"), - "fieldtype": "Link", - "options": "Currency", - "hidden": 1 - }) - for period in period_list: columns.append({ "fieldname": period.key, "label": period.label, "fieldtype": "Currency", - "options": "currency", "width": 150 }) + if periodicity!="Yearly": + if accumulated_value_ischecked == 0: + columns.append({ + "fieldname": "total", + "label": _("Total"), + "fieldtype": "Currency", + "width": 150 + }) - return columns \ No newline at end of file + return columns From 82cef59fb38f1567171cacc0cb315976864cd71a Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 2 Feb 2016 19:02:58 +0530 Subject: [PATCH 41/46] [fix] Purchase Return warehouse validation --- erpnext/controllers/sales_and_purchase_return.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/controllers/sales_and_purchase_return.py b/erpnext/controllers/sales_and_purchase_return.py index 868720a2e0..9e0dee8e3e 100644 --- a/erpnext/controllers/sales_and_purchase_return.py +++ b/erpnext/controllers/sales_and_purchase_return.py @@ -97,7 +97,7 @@ def validate_returned_items(doc): frappe.throw(_("Row # {0}: Serial No {1} does not match with {2} {3}") .format(d.idx, s, doc.doctype, doc.return_against)) - if not d.warehouse: + if doc.doctype != "Purchase Invoice" and not d.get("warehouse"): frappe.throw(_("Warehouse is mandatory")) items_returned = True From bd7f48cfd4a024ca625147afe4d4a15d567613ce Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Tue, 2 Feb 2016 19:05:30 +0530 Subject: [PATCH 42/46] [report] Financial Statements: Accumulated periodic balance based on filters --- .../report/balance_sheet/balance_sheet.py | 19 +-- .../accounts/report/cash_flow/cash_flow.js | 6 + .../accounts/report/cash_flow/cash_flow.py | 32 ++-- .../accounts/report/financial_statements.py | 141 +++++++++--------- .../profit_and_loss_statement.js | 6 + .../profit_and_loss_statement.py | 15 +- erpnext/public/js/financial_statements.js | 20 +-- 7 files changed, 126 insertions(+), 113 deletions(-) diff --git a/erpnext/accounts/report/balance_sheet/balance_sheet.py b/erpnext/accounts/report/balance_sheet/balance_sheet.py index 62d1940d02..fd88afd9fe 100644 --- a/erpnext/accounts/report/balance_sheet/balance_sheet.py +++ b/erpnext/accounts/report/balance_sheet/balance_sheet.py @@ -8,11 +8,12 @@ from frappe.utils import flt from erpnext.accounts.report.financial_statements import (get_period_list, get_columns, get_data) def execute(filters=None): - period_list = get_period_list(filters.fiscal_year, filters.periodicity, from_beginning=True) - - asset = get_data(filters.company, "Asset", "Debit", period_list, filters.accumulated_value) - liability = get_data(filters.company, "Liability", "Credit", period_list, filters.accumulated_value) - equity = get_data(filters.company, "Equity", "Credit", period_list, filters.accumulated_value) + period_list = get_period_list(filters.fiscal_year, filters.periodicity) + + asset = get_data(filters.company, "Asset", "Debit", period_list, only_current_fiscal_year=False) + liability = get_data(filters.company, "Liability", "Credit", period_list, only_current_fiscal_year=False) + equity = get_data(filters.company, "Equity", "Credit", period_list, only_current_fiscal_year=False) + provisional_profit_loss = get_provisional_profit_loss(asset, liability, equity, period_list, filters.company) @@ -23,13 +24,13 @@ def execute(filters=None): if provisional_profit_loss: data.append(provisional_profit_loss) - columns = get_columns(filters.periodicity,period_list,filters.accumulated_value) + columns = get_columns(filters.periodicity, period_list, company=filters.company) return columns, data def get_provisional_profit_loss(asset, liability, equity, period_list, company): if asset and (liability or equity): - total_column=0 + total=0 provisional_profit_loss = { "account_name": "'" + _("Provisional Profit / Loss (Credit)") + "'", "account": None, @@ -51,8 +52,8 @@ def get_provisional_profit_loss(asset, liability, equity, period_list, company): if provisional_profit_loss[period.key]: has_value = True - total_column=total_column+provisional_profit_loss[period.key] - provisional_profit_loss["total"]=total_column + total += flt(provisional_profit_loss[period.key]) + provisional_profit_loss["total"] = total if has_value: return provisional_profit_loss diff --git a/erpnext/accounts/report/cash_flow/cash_flow.js b/erpnext/accounts/report/cash_flow/cash_flow.js index c8fb04cb9d..464bd17022 100644 --- a/erpnext/accounts/report/cash_flow/cash_flow.js +++ b/erpnext/accounts/report/cash_flow/cash_flow.js @@ -4,3 +4,9 @@ frappe.require("assets/erpnext/js/financial_statements.js"); frappe.query_reports["Cash Flow"] = erpnext.financial_statements; + +frappe.query_reports["Cash Flow"]["filters"].push({ + "fieldname": "accumulated_values", + "label": __("Accumulated Values"), + "fieldtype": "Check" +}) \ No newline at end of file diff --git a/erpnext/accounts/report/cash_flow/cash_flow.py b/erpnext/accounts/report/cash_flow/cash_flow.py index 1fda16a9fd..681e563b90 100644 --- a/erpnext/accounts/report/cash_flow/cash_flow.py +++ b/erpnext/accounts/report/cash_flow/cash_flow.py @@ -48,12 +48,14 @@ def execute(filters=None): cash_flow_accounts.append(financing_accounts) # compute net profit / loss - income = get_data(filters.company, "Income", "Credit", period_list, ignore_closing_entries=True) - expense = get_data(filters.company, "Expense", "Debit", period_list, ignore_closing_entries=True) + income = get_data(filters.company, "Income", "Credit", period_list, + accumulated_values=filters.accumulated_values, ignore_closing_entries=True) + expense = get_data(filters.company, "Expense", "Debit", period_list, + accumulated_values=filters.accumulated_values, ignore_closing_entries=True) + net_profit_loss = get_net_profit_loss(income, expense, period_list, filters.company) data = [] - company_currency = frappe.db.get_value("Company", filters.company, "default_currency") for cash_flow_account in cash_flow_accounts: @@ -77,7 +79,8 @@ def execute(filters=None): section_data.append(net_profit_loss) for account in cash_flow_account['account_types']: - account_data = get_account_type_based_data(filters.company, account['account_type'], period_list) + account_data = get_account_type_based_data(filters.company, + account['account_type'], period_list, filters.accumulated_values) account_data.update({ "account_name": account['label'], "indent": 1, @@ -91,13 +94,14 @@ def execute(filters=None): period_list, company_currency) add_total_row_account(data, data, _("Net Change in Cash"), period_list, company_currency) - columns = get_columns(period_list) + columns = get_columns(filters.periodicity, period_list, filters.accumulated_values, filters.company) return columns, data -def get_account_type_based_data(company, account_type, period_list): +def get_account_type_based_data(company, account_type, period_list, accumulated_values): data = {} + total = 0 for period in period_list: gl_sum = frappe.db.sql_list(""" select sum(credit) - sum(debit) @@ -105,7 +109,8 @@ def get_account_type_based_data(company, account_type, period_list): where company=%s and posting_date >= %s and posting_date <= %s and voucher_type != 'Period Closing Voucher' and account in ( SELECT name FROM tabAccount WHERE account_type = %s) - """, (company, period['from_date'], period['to_date'], account_type)) + """, (company, period["year_start_date"] if accumulated_values else period['from_date'], + period['to_date'], account_type)) if gl_sum and gl_sum[0]: amount = gl_sum[0] @@ -113,12 +118,11 @@ def get_account_type_based_data(company, account_type, period_list): amount *= -1 else: amount = 0 + + total += amount + data.setdefault(period["key"], amount) - data.update({ - "from_date": period['from_date'], - "to_date": period['to_date'], - period["key"]: amount - }) + data["total"] = total return data @@ -128,12 +132,14 @@ def add_total_row_account(out, data, label, period_list, currency): "account": None, "currency": currency } - for row in data: if row.get("parent_account"): for period in period_list: total_row.setdefault(period.key, 0.0) total_row[period.key] += row.get(period.key, 0.0) + + total_row.setdefault("total", 0.0) + total_row["total"] += row["total"] out.append(total_row) out.append({}) \ No newline at end of file diff --git a/erpnext/accounts/report/financial_statements.py b/erpnext/accounts/report/financial_statements.py index 2852063f8c..d84f18fc6a 100644 --- a/erpnext/accounts/report/financial_statements.py +++ b/erpnext/accounts/report/financial_statements.py @@ -3,23 +3,25 @@ from __future__ import unicode_literals import frappe -from frappe import _, _dict -from frappe.utils import (cint, flt, getdate, get_first_day, get_last_day, +from frappe import _ +from frappe.utils import (flt, getdate, get_first_day, get_last_day, add_months, add_days, formatdate) -def get_period_list(fiscal_year, periodicity, from_beginning=False): - """Get a list of dict {"to_date": to_date, "key": key, "label": label} +def get_period_list(fiscal_year, periodicity): + """Get a list of dict {"from_date": from_date, "to_date": to_date, "key": key, "label": label} Periodicity can be (Yearly, Quarterly, Monthly)""" fy_start_end_date = frappe.db.get_value("Fiscal Year", fiscal_year, ["year_start_date", "year_end_date"]) if not fy_start_end_date: frappe.throw(_("Fiscal Year {0} not found.").format(fiscal_year)) - start_date = getdate(fy_start_end_date[0]) - end_date = getdate(fy_start_end_date[1]) - + # start with first day, so as to avoid year to_dates like 2-April if ever they occur] + year_start_date = get_first_day(getdate(fy_start_end_date[0])) + year_end_date = getdate(fy_start_end_date[1]) + if periodicity == "Yearly": - period_list = [_dict({"to_date": end_date, "key": fiscal_year, "label": fiscal_year})] + period_list = [frappe._dict({"from_date": year_start_date, "to_date": year_end_date, + "key": fiscal_year, "label": fiscal_year})] else: months_to_add = { "Half-Yearly": 6, @@ -29,12 +31,14 @@ def get_period_list(fiscal_year, periodicity, from_beginning=False): period_list = [] - # start with first day, so as to avoid year to_dates like 2-April if ever they occur - to_date = get_first_day(start_date) - + start_date = year_start_date for i in xrange(12 / months_to_add): - to_date = add_months(to_date, months_to_add) - + period = frappe._dict({ + "from_date": start_date + }) + to_date = add_months(start_date, months_to_add) + start_date = to_date + if to_date == get_first_day(to_date): # if to_date is the first day, get the last day of previous month to_date = add_days(to_date, -1) @@ -42,59 +46,48 @@ def get_period_list(fiscal_year, periodicity, from_beginning=False): # to_date should be the last day of the new to_date's month to_date = get_last_day(to_date) - if to_date <= end_date: + if to_date <= year_end_date: # the normal case - period_list.append(_dict({ "to_date": to_date })) - - # if it ends before a full year - if to_date == end_date: - break - + period.to_date = to_date else: # if a fiscal year ends before a 12 month period - period_list.append(_dict({ "to_date": end_date })) + period.to_date = year_end_date + + period_list.append(period) + + if period.to_date == year_end_date: break - + # common processing for opts in period_list: key = opts["to_date"].strftime("%b_%Y").lower() if periodicity == "Monthly": label = formatdate(opts["to_date"], "MMM YYYY") else: - label = get_label(periodicity,opts["to_date"]) + label = get_label(periodicity, opts["from_date"], opts["to_date"]) + opts.update({ "key": key.replace(" ", "_").replace("-", "_"), "label": label, - "year_start_date": start_date, - "year_end_date": end_date + "year_start_date": year_start_date, + "year_end_date": year_end_date }) - if from_beginning: - # set start date as None for all fiscal periods, used in case of Balance Sheet - opts["from_date"] = None - else: - opts["from_date"] = start_date - return period_list -def get_label(periodicity,to_date): +def get_label(periodicity, from_date, to_date): if periodicity=="Yearly": - months_to_add=-11 - elif periodicity=="Half-Yearly": - months_to_add=-5 - elif periodicity=="Quarterly": - months_to_add=-2 - from_date = add_months(to_date, months_to_add) - if periodicity=="Yearly": - - label = formatdate(from_date, "YYYY")+"-"+formatdate(to_date, "YYYY") + if formatdate(from_date, "YYYY") == formatdate(to_date, "YYYY"): + label = formatdate(from_date, "YYYY") + else: + label = formatdate(from_date, "YYYY") + "-" + formatdate(to_date, "YYYY") else: - label = from_date.strftime("%b")+"-"+formatdate(to_date, "MMM YYYY") + label = formatdate(from_date, "MMM YY") + "-" + formatdate(to_date, "MMM YY") return label -def get_data(company, root_type, balance_must_be, period_list, accumulated_value, ignore_closing_entries=False): - accumulated_value_ischecked = cint(accumulated_value) +def get_data(company, root_type, balance_must_be, period_list, + accumulated_values=1, only_current_fiscal_year=True, ignore_closing_entries=False): accounts = get_accounts(company, root_type) if not accounts: return None @@ -106,37 +99,39 @@ def get_data(company, root_type, balance_must_be, period_list, accumulated_value gl_entries_by_account = {} for root in frappe.db.sql("""select lft, rgt from tabAccount where root_type=%s and ifnull(parent_account, '') = ''""", root_type, as_dict=1): - set_gl_entries_by_account(company, period_list[0]["from_date"], - period_list[-1]["to_date"],root.lft, root.rgt, gl_entries_by_account, - ignore_closing_entries=ignore_closing_entries) + + set_gl_entries_by_account(company, + period_list[0]["year_start_date"] if only_current_fiscal_year else None, + period_list[-1]["to_date"], + root.lft, root.rgt, + gl_entries_by_account, ignore_closing_entries=ignore_closing_entries) - calculate_values(accounts_by_name, gl_entries_by_account, period_list, accumulated_value_ischecked) - accumulate_values_into_parents(accounts, accounts_by_name, period_list) + calculate_values(accounts_by_name, gl_entries_by_account, period_list, accumulated_values) + accumulate_values_into_parents(accounts, accounts_by_name, period_list, accumulated_values) out = prepare_data(accounts, balance_must_be, period_list, company_currency) - + if out: add_total_row(out, balance_must_be, period_list, company_currency) return out -def calculate_values(accounts_by_name, gl_entries_by_account, period_list): +def calculate_values(accounts_by_name, gl_entries_by_account, period_list, accumulated_values): for entries in gl_entries_by_account.values(): for entry in entries: d = accounts_by_name.get(entry.account) for period in period_list: # check if posting date is within the period if entry.posting_date <= period.to_date: - d[period.key] = d.get(period.key, 0.0) + flt(entry.debit) - flt(entry.credit) + if accumulated_values or entry.posting_date >= period.from_date: + d[period.key] = d.get(period.key, 0.0) + flt(entry.debit) - flt(entry.credit) -def accumulate_values_into_parents(accounts, accounts_by_name, period_list, accumulated_value_ischecked): +def accumulate_values_into_parents(accounts, accounts_by_name, period_list, accumulated_values): """accumulate children's values in parent accounts""" for d in reversed(accounts): if d.parent_account: for period in period_list: accounts_by_name[d.parent_account][period.key] = accounts_by_name[d.parent_account].get(period.key, 0.0) + \ d.get(period.key, 0.0) - if accumulated_value_ischecked == 0: - break def prepare_data(accounts, balance_must_be, period_list, company_currency): out = [] @@ -146,14 +141,14 @@ def prepare_data(accounts, balance_must_be, period_list, company_currency): for d in accounts: # add to output has_value = False - total_column=0 + total = 0 row = { "account_name": d.account_name, "account": d.name, "parent_account": d.parent_account, "indent": flt(d.indent), - "from_date": year_start_date, - "to_date": year_end_date, + "year_start_date": year_start_date, + "year_end_date": year_end_date, "currency": company_currency } for period in period_list: @@ -166,16 +161,15 @@ def prepare_data(accounts, balance_must_be, period_list, company_currency): if abs(row[period.key]) >= 0.005: # ignore zero values has_value = True - total_column=total_column+row[period.key] + total += flt(row[period.key]) if has_value: - row["total"]=total_column + row["total"] = total out.append(row) return out def add_total_row(out, balance_must_be, period_list, company_currency): - total_column=0 total_row = { "account_name": "'" + _("Total ({0})").format(balance_must_be) + "'", "account": None, @@ -187,13 +181,12 @@ def add_total_row(out, balance_must_be, period_list, company_currency): for period in period_list: total_row.setdefault(period.key, 0.0) total_row[period.key] += row.get(period.key, 0.0) - total_column=total_column+total_row[period.key] - out[0][period.key] = "" - out[0]["total"] = "" + row[period.key] = "" + + total_row.setdefault("total", 0.0) + total_row["total"] += flt(row["total"]) + row["total"] = "" - total_row["total"]=total_column - out.append(total_row) - out.append(total_row) # blank row after Total @@ -275,8 +268,7 @@ def set_gl_entries_by_account(company, from_date, to_date, root_lft, root_rgt, g return gl_entries_by_account -def get_columns(periodicity,period_list,accumulated_value): - accumulated_value_ischecked = cint(accumulated_value) +def get_columns(periodicity, period_list, accumulated_values=1, company=None): columns = [{ "fieldname": "account", "label": _("Account"), @@ -284,15 +276,24 @@ def get_columns(periodicity,period_list,accumulated_value): "options": "Account", "width": 300 }] + if company: + columns.append({ + "fieldname": "currency", + "label": _("Currency"), + "fieldtype": "Link", + "options": "Currency", + "hidden": 1 + }) for period in period_list: columns.append({ "fieldname": period.key, "label": period.label, "fieldtype": "Currency", + "options": "currency", "width": 150 }) if periodicity!="Yearly": - if accumulated_value_ischecked == 0: + if not accumulated_values: columns.append({ "fieldname": "total", "label": _("Total"), diff --git a/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js b/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js index 9c70a651a4..fcbc469950 100644 --- a/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js +++ b/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js @@ -4,3 +4,9 @@ frappe.require("assets/erpnext/js/financial_statements.js"); frappe.query_reports["Profit and Loss Statement"] = erpnext.financial_statements; + +frappe.query_reports["Profit and Loss Statement"]["filters"].push({ + "fieldname": "accumulated_values", + "label": __("Accumulated Values"), + "fieldtype": "Check" +}) \ No newline at end of file diff --git a/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py b/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py index 42dead4ee0..7c33db2b6c 100644 --- a/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py +++ b/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py @@ -10,8 +10,11 @@ from erpnext.accounts.report.financial_statements import (get_period_list, get_c def execute(filters=None): period_list = get_period_list(filters.fiscal_year, filters.periodicity) - income = get_data(filters.company, "Income", "Credit", period_list, filters.accumulated_value, ignore_closing_entries=True) - expense = get_data(filters.company, "Expense", "Debit", period_list, filters.accumulated_value, ignore_closing_entries=True) + income = get_data(filters.company, "Income", "Credit", period_list, + accumulated_values=filters.accumulated_values, ignore_closing_entries=True) + expense = get_data(filters.company, "Expense", "Debit", period_list, + accumulated_values=filters.accumulated_values, ignore_closing_entries=True) + net_profit_loss = get_net_profit_loss(income, expense, period_list, filters.company) data = [] @@ -20,12 +23,13 @@ def execute(filters=None): if net_profit_loss: data.append(net_profit_loss) - columns = get_columns(filters.periodicity,period_list,filters.accumulated_value) + columns = get_columns(filters.periodicity, period_list, filters.accumulated_values, filters.company) return columns, data def get_net_profit_loss(income, expense, period_list, company): if income and expense: + total = 0 net_profit_loss = { "account_name": "'" + _("Net Profit / Loss") + "'", "account": None, @@ -41,9 +45,8 @@ def get_net_profit_loss(income, expense, period_list, company): if net_profit_loss[period.key]: has_value=True - total_column=total_column+net_profit_loss[period.key] - net_profit_loss["total"]=total_column + total += flt(net_profit_loss[period.key]) + net_profit_loss["total"] = total if has_value: - return net_profit_loss diff --git a/erpnext/public/js/financial_statements.js b/erpnext/public/js/financial_statements.js index f980e2ee30..07d494a339 100644 --- a/erpnext/public/js/financial_statements.js +++ b/erpnext/public/js/financial_statements.js @@ -30,24 +30,14 @@ erpnext.financial_statements = { ], "default": "Yearly", "reqd": 1 - }, - { - "fieldname": "accumulated_value", - "label": __("Accumulated Values"), - "fieldtype": "Check" - } - , - { - "fieldname": "accumulated_value", - "label": __("Accumulated Values"), - "fieldtype": "Check" - } + } ], "formatter": function(row, cell, value, columnDef, dataContext, default_formatter) { if (columnDef.df.fieldname=="account") { value = dataContext.account_name; - columnDef.df.link_onclick = "erpnext.financial_statements.open_general_ledger(" + JSON.stringify(dataContext) + ")"; + columnDef.df.link_onclick = + "erpnext.financial_statements.open_general_ledger(" + JSON.stringify(dataContext) + ")"; columnDef.df.is_tree = true; } @@ -70,8 +60,8 @@ erpnext.financial_statements = { frappe.route_options = { "account": data.account, "company": frappe.query_report.filters_by_name.company.get_value(), - "from_date": data.from_date, - "to_date": data.to_date + "from_date": data.year_start_date, + "to_date": data.year_end_date }; frappe.set_route("query-report", "General Ledger"); }, From 34037e0d883a4c6959ee7122b07f518451018408 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Wed, 3 Feb 2016 13:10:54 +0530 Subject: [PATCH 43/46] [translations] --- erpnext/translations/ar.csv | 291 +++++++++++---------- erpnext/translations/bg.csv | 282 ++++++++++---------- erpnext/translations/bn.csv | 278 ++++++++++---------- erpnext/translations/bs.csv | 279 ++++++++++---------- erpnext/translations/ca.csv | 279 ++++++++++---------- erpnext/translations/cs.csv | 279 ++++++++++---------- erpnext/translations/da-DK.csv | 213 ++++++++------- erpnext/translations/da.csv | 278 ++++++++++---------- erpnext/translations/de.csv | 278 ++++++++++---------- erpnext/translations/el.csv | 279 ++++++++++---------- erpnext/translations/es-PE.csv | 219 ++++++++-------- erpnext/translations/es.csv | 283 ++++++++++---------- erpnext/translations/et.csv | 278 ++++++++++---------- erpnext/translations/fa.csv | 278 ++++++++++---------- erpnext/translations/fi.csv | 300 +++++++++++---------- erpnext/translations/fr.csv | 345 ++++++++++++------------ erpnext/translations/gu.csv | 278 ++++++++++---------- erpnext/translations/he.csv | 292 +++++++++++---------- erpnext/translations/hi.csv | 279 ++++++++++---------- erpnext/translations/hr.csv | 279 ++++++++++---------- erpnext/translations/hu.csv | 278 ++++++++++---------- erpnext/translations/id.csv | 279 ++++++++++---------- erpnext/translations/it.csv | 375 +++++++++++++------------- erpnext/translations/ja.csv | 278 ++++++++++---------- erpnext/translations/km.csv | 383 +++++++++++++++++++++------ erpnext/translations/kn.csv | 279 ++++++++++---------- erpnext/translations/ko.csv | 279 ++++++++++---------- erpnext/translations/lv.csv | 278 ++++++++++---------- erpnext/translations/mk.csv | 278 ++++++++++---------- erpnext/translations/ml.csv | 278 ++++++++++---------- erpnext/translations/mr.csv | 278 ++++++++++---------- erpnext/translations/ms.csv | 278 ++++++++++---------- erpnext/translations/my.csv | 278 ++++++++++---------- erpnext/translations/nl.csv | 279 ++++++++++---------- erpnext/translations/no.csv | 278 ++++++++++---------- erpnext/translations/pl.csv | 299 +++++++++++---------- erpnext/translations/pt-BR.csv | 279 ++++++++++---------- erpnext/translations/pt.csv | 279 ++++++++++---------- erpnext/translations/ro.csv | 279 ++++++++++---------- erpnext/translations/ru.csv | 316 +++++++++++----------- erpnext/translations/sk.csv | 465 +++++++++++++++++---------------- erpnext/translations/sl.csv | 278 ++++++++++---------- erpnext/translations/sq.csv | 278 ++++++++++---------- erpnext/translations/sr.csv | 281 ++++++++++---------- erpnext/translations/sv.csv | 278 ++++++++++---------- erpnext/translations/ta.csv | 279 ++++++++++---------- erpnext/translations/te.csv | 278 ++++++++++---------- erpnext/translations/th.csv | 279 ++++++++++---------- erpnext/translations/tr.csv | 301 ++++++++++----------- erpnext/translations/uk.csv | 279 ++++++++++---------- erpnext/translations/ur.csv | 297 +++++++++++---------- erpnext/translations/vi.csv | 279 ++++++++++---------- erpnext/translations/zh-cn.csv | 299 +++++++++++---------- erpnext/translations/zh-tw.csv | 279 ++++++++++---------- 54 files changed, 8141 insertions(+), 7404 deletions(-) diff --git a/erpnext/translations/ar.csv b/erpnext/translations/ar.csv index b89a15b3cd..e8efde619b 100644 --- a/erpnext/translations/ar.csv +++ b/erpnext/translations/ar.csv @@ -164,14 +164,14 @@ DocType: Journal Entry Account,Credit in Company Currency,الائتمان في DocType: Delivery Note,Installation Status,تثبيت الحالة apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},الكمية المقبولة + المرفوضة يجب أن تساوي الكمية المستلمة من الصنف {0} DocType: Item,Supply Raw Materials for Purchase,توريد مواد خام للشراء -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,البند {0} يجب أن يكون شراء السلعة +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,البند {0} يجب أن يكون شراء السلعة DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","تحميل قالب، وملء البيانات المناسبة وإرفاق الملف المعدل. جميع التواريخ والموظف الجمع في الفترة المختارة سيأتي في القالب، مع سجلات الحضور القائمة" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,البند {0} غير نشط أو تم التوصل إلى نهاية الحياة DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,سيتم تحديث بعد تقديم فاتورة المبيعات. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included",ل تشمل الضريبة في الصف {0} في معدل الإغلاق ، {1} ويجب أيضا تضمين الضرائب في الصفوف -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,إعدادات وحدة الموارد البشرية +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included",ل تشمل الضريبة في الصف {0} في معدل الإغلاق ، {1} ويجب أيضا تضمين الضرائب في الصفوف +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,إعدادات وحدة الموارد البشرية DocType: SMS Center,SMS Center,مركز SMS DocType: BOM Replace Tool,New BOM,BOM جديدة apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,دفعة سجلات الوقت لإعداد الفواتير. @@ -199,7 +199,7 @@ DocType: Offer Letter,Select Terms and Conditions,اختر الشروط والأ DocType: Production Planning Tool,Sales Orders,أوامر البيع DocType: Purchase Taxes and Charges,Valuation,تقييم ,Purchase Order Trends,شراء اتجاهات ترتيب -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,تخصيص الاجازات لهذا العام. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,تخصيص الاجازات لهذا العام. DocType: Earning Type,Earning Type,كسب نوع DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,تعطيل تخطيط القدرات وتتبع الوقت DocType: Bank Reconciliation,Bank Account,الحساب المصرفي @@ -237,7 +237,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,البند مواصفات الموقع DocType: Payment Tool,Reference No,المرجع لا apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,ترك الممنوع -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},البند {0} قد بلغ نهايته من الحياة على {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},البند {0} قد بلغ نهايته من الحياة على {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,سنوي DocType: Stock Reconciliation Item,Stock Reconciliation Item,الأسهم المصالحة البند DocType: Stock Entry,Sales Invoice No,فاتورة مبيعات لا @@ -249,7 +249,7 @@ DocType: Item,Minimum Order Qty,الحد الأدنى لطلب الكمية DocType: Pricing Rule,Supplier Type,المورد نوع DocType: Item,Publish in Hub,نشر في المحور ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,البند {0} تم إلغاء +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,البند {0} تم إلغاء apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,طلب المواد DocType: Bank Reconciliation,Update Clearance Date,تحديث تاريخ التخليص DocType: Item,Purchase Details,تفاصيل شراء @@ -261,11 +261,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,رفض الكمية DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order",متوفرة في مذكرة التسليم، اقتباس، فاتورة المبيعات، والمبيعات من أجل الميدان DocType: SMS Settings,SMS Sender Name,SMS المرسل اسم DocType: Contact,Is Primary Contact,هو الاتصال الأولية +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,وقد شكل دفعات وقت دخول لإعداد الفواتير DocType: Notification Control,Notification Control,إعلام التحكم DocType: Lead,Suggestions,اقتراحات DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,تعيين مجموعة من الحكمة الإغلاق الميزانيات على هذا الإقليم. يمكنك أيضا تضمين الموسمية عن طريق تعيين التوزيع. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},الرجاء إدخال مجموعة حساب الأصل لمستودع {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},دفع ضد {0} {1} لا يمكن أن يكون أكبر من قيمة المعلقة {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},دفع ضد {0} {1} لا يمكن أن يكون أكبر من قيمة المعلقة {2} DocType: Supplier,Address HTML,عنوان HTML DocType: Lead,Mobile No.,رقم الجوال DocType: Maintenance Schedule,Generate Schedule,إنشاء جدول @@ -282,7 +283,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,مزامن مع المحور apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,كلمة مرور خاطئة DocType: Item,Variant Of,البديل من -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,البند {0} يجب أن تكون خدمة المدينة apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',"الانتهاء الكمية لا يمكن أن يكون أكبر من ""الكمية لتصنيع""" DocType: Period Closing Voucher,Closing Account Head,إغلاق حساب رئيس DocType: Employee,External Work History,التاريخ العمل الخارجي @@ -294,10 +294,10 @@ DocType: Newsletter,Newsletter,النشرة الإخبارية DocType: Stock Settings,Notify by Email on creation of automatic Material Request,إبلاغ عن طريق البريد الإلكتروني على خلق مادة التلقائي طلب DocType: Journal Entry,Multi Currency,متعدد العملات DocType: Payment Reconciliation Invoice,Invoice Type,نوع الفاتورة -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,ملاحظة التسليم +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,ملاحظة التسليم apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,إنشاء الضرائب apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,لقد تم تعديل دفع الدخول بعد سحبها. يرجى تسحبه مرة أخرى. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} دخلت مرتين في ضريبة الصنف +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} دخلت مرتين في ضريبة الصنف apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,ملخص لهذا الأسبوع والأنشطة المعلقة DocType: Workstation,Rent Cost,الإيجار التكلفة apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,الرجاء اختيار الشهر والسنة @@ -308,7 +308,7 @@ DocType: Shipping Rule,Valid for Countries,صالحة لمدة البلدان DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.",كلها المجالات ذات الصلة مثل استيراد العملة ، ومعدل التحويل، و اجمالى واردات والاستيراد الكبرى الخ مجموع المتاحة في إيصال الشراء ، مزود اقتباس، شراء الفاتورة ، أمر شراء الخ apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"هذا البند هو قالب ولا يمكن استخدامها في المعاملات المالية. سيتم نسخ سمات البند أكثر في المتغيرات ما لم يتم تعيين ""لا نسخ '" apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,إجمالي الطلب يعتبر -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).",تعيين موظف (مثل الرئيس التنفيذي ، مدير الخ ) . +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).",تعيين موظف (مثل الرئيس التنفيذي ، مدير الخ ) . apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,"الرجاء إدخال ' كرر في يوم من الشهر "" قيمة الحقل" DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,المعدل الذي يتم تحويل العملة إلى عملة الأساس العملاء العميل DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet",المتاحة في BOM ، تسليم مذكرة ، شراء الفاتورة ، ترتيب الإنتاج، طلب شراء ، شراء استلام ، فاتورة المبيعات ، ترتيب المبيعات ، حركة مخزنية و الجدول الزمني @@ -357,7 +357,7 @@ DocType: Workstation,Consumable Cost,التكلفة الاستهلاكية apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1})يجب أن يمتلك صلاحية (إعتماد الإجازات) DocType: Purchase Receipt,Vehicle Date,مركبة التسجيل apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,طبي -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,السبب لفقدان +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,السبب لفقدان apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},مغلق محطة العمل في التواريخ التالية وفقا لقائمة عطلة: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,الفرص DocType: Employee,Single,وحيد @@ -385,14 +385,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,قناة الشريك DocType: Account,Old Parent,العمر الرئيسي DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,تخصيص النص الاستهلالي الذي يذهب كجزء من أن البريد الإلكتروني. كل معاملة له نص منفصل استهلالي. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),لا تتضمن رموزا (على سبيل المثال. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,مدير المبيعات ماستر apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,إعدادات العالمية لجميع عمليات التصنيع. DocType: Accounts Settings,Accounts Frozen Upto,حسابات مجمدة حتى DocType: SMS Log,Sent On,ارسلت في -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,السمة {0} اختيار عدة مرات في سمات الجدول +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,السمة {0} اختيار عدة مرات في سمات الجدول DocType: HR Settings,Employee record is created using selected field. ,يتم إنشاء سجل الموظف باستخدام الحقل المحدد. DocType: Sales Order,Not Applicable,لا ينطبق -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,عطلة الرئيسي. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,عطلة الرئيسي. DocType: Material Request Item,Required Date,تاريخ المطلوبة DocType: Delivery Note,Billing Address,عنوان الفواتير apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,الرجاء إدخال رمز المدينة . @@ -428,7 +429,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,من فضلك ادخل مستودع لل والتي سيتم رفع طلب المواد DocType: Production Order,Additional Operating Cost,تكاليف تشغيل اضافية apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,مستحضرات التجميل -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items",لدمج ، يجب أن يكون نفس الخصائص التالية ل كلا البندين +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items",لدمج ، يجب أن يكون نفس الخصائص التالية ل كلا البندين DocType: Shipping Rule,Net Weight,الوزن الصافي DocType: Employee,Emergency Phone,الهاتف في حالات الطوارئ ,Serial No Warranty Expiry,المسلسل لا عودة انتهاء الاشتراك @@ -484,17 +485,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,الفوترة والدفع الحالة apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,تكرار العملاء DocType: Leave Control Panel,Allocate,تخصيص -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,مبيعات العودة +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,مبيعات العودة DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,حدد أوامر المبيعات التي تريد إنشاء أوامر الإنتاج. DocType: Item,Delivered by Supplier (Drop Ship),سلمت من قبل مزود (هبوط السفينة) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,الراتب المكونات. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,الراتب المكونات. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,قاعدة بيانات من العملاء المحتملين. DocType: Authorization Rule,Customer or Item,العملاء أو البند apps/erpnext/erpnext/config/crm.py +17,Customer database.,العملاء قاعدة البيانات. DocType: Quotation,Quotation To,تسعيرة إلى DocType: Lead,Middle Income,المتوسطة الدخل apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),افتتاح (الكروم ) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,وحدة القياس الافتراضية للالبند {0} لا يمكن تغيير مباشرة لأنك قدمت بالفعل بعض المعاملات (s) مع UOM آخر. سوف تحتاج إلى إنشاء عنصر جديد لاستخدام افتراضي مختلف UOM. +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,وحدة القياس الافتراضية للالبند {0} لا يمكن تغيير مباشرة لأنك قدمت بالفعل بعض المعاملات (s) مع UOM آخر. سوف تحتاج إلى إنشاء عنصر جديد لاستخدام افتراضي مختلف UOM. apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,المبلغ المخصص لا يمكن أن تكون سلبية DocType: Purchase Order Item,Billed Amt,فوترة AMT DocType: Warehouse,A logical Warehouse against which stock entries are made.,مستودع منطقي لقاء ما تم إدخاله من مخزون. @@ -513,14 +514,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,الضرائب على المبي DocType: Employee,Organization Profile,الملف الشخصي المنظمة apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,يرجى الإعداد ل سلسلة ترقيم الحضور عبر الإعداد > ترقيم السلسلة DocType: Employee,Reason for Resignation,سبب الاستقالة -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,نموذج ل تقييم الأداء. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,نموذج ل تقييم الأداء. DocType: Payment Reconciliation,Invoice/Journal Entry Details,فاتورة / مجلة تفاصيل الدخول apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' ليس في السنة المالية {2} DocType: Buying Settings,Settings for Buying Module,إعدادات لشراء وحدة apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,من فضلك ادخل شراء استلام أولا DocType: Buying Settings,Supplier Naming By,المورد تسمية بواسطة DocType: Activity Type,Default Costing Rate,افتراضي تكلف سعر -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,صيانة جدول +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,صيانة جدول apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.",ثم يتم تصفيتها من قوانين التسعير على أساس العملاء، مجموعة العملاء، الأرض، مورد، مورد نوع، حملة، شريك المبيعات الخ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,صافي التغير في المخزون DocType: Employee,Passport Number,رقم جواز السفر @@ -559,7 +560,7 @@ DocType: Purchase Invoice,Quarterly,فصلي DocType: Selling Settings,Delivery Note Required,ملاحظة التسليم المطلوبة DocType: Sales Order Item,Basic Rate (Company Currency),المعدل الأساسي (عملة الشركة) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush المواد الخام مبني على -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,يرجى إدخال تفاصيل البند +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,يرجى إدخال تفاصيل البند DocType: Purchase Receipt,Other Details,تفاصيل أخرى DocType: Account,Accounts,حسابات apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,تسويق @@ -572,7 +573,7 @@ DocType: Employee,Provide email id registered in company,توفير معرف ا DocType: Hub Settings,Seller City,مدينة البائع DocType: Email Digest,Next email will be sent on:,سيتم إرسال البريد الإلكتروني التالي على: DocType: Offer Letter Term,Offer Letter Term,تقديم رسالة الأجل -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,البند لديه المتغيرات. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,البند لديه المتغيرات. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,البند {0} لم يتم العثور على DocType: Bin,Stock Value,الأسهم القيمة apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,نوع الشجرة @@ -580,7 +581,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,الكمية المستهلك DocType: Serial No,Warranty Expiry Date,الضمان تاريخ الانتهاء DocType: Material Request Item,Quantity and Warehouse,الكمية والنماذج DocType: Sales Invoice,Commission Rate (%),اللجنة قيم (٪) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry",مقابل قسيمة النوع يجب أن يكون واحدا من ترتيب المبيعات، مبيعات فاتورة أو إدخال دفتر اليومية +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry",مقابل قسيمة النوع يجب أن يكون واحدا من ترتيب المبيعات، مبيعات فاتورة أو إدخال دفتر اليومية apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,الفضاء DocType: Journal Entry,Credit Card Entry,الدخول بطاقة الائتمان apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,مهمة موضوع @@ -667,10 +668,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,مسئولية apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,المبلغ عقوبات لا يمكن أن يكون أكبر من مبلغ المطالبة في صف {0}. DocType: Company,Default Cost of Goods Sold Account,التكلفة الافتراضية لحساب السلع المباعة -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,قائمة الأسعار غير محددة +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,قائمة الأسعار غير محددة DocType: Employee,Family Background,الخلفية العائلية DocType: Process Payroll,Send Email,إرسال البريد الإلكتروني -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},تحذير: مرفق غير صالح {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},تحذير: مرفق غير صالح {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,لا يوجد تصريح DocType: Company,Default Bank Account,الافتراضي الحساب المصرفي apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first",لتصفية استنادا الحزب، حدد حزب النوع الأول @@ -698,7 +699,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,دع DocType: Features Setup,"To enable ""Point of Sale"" features",لتمكين "نقطة بيع" ميزات DocType: Bin,Moving Average Rate,الانتقال متوسط معدل DocType: Production Planning Tool,Select Items,حدد العناصر -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} مقابل الفاتورة {1} بتاريخ {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} مقابل الفاتورة {1} بتاريخ {2} DocType: Maintenance Visit,Completion Status,استكمال الحالة DocType: Sales Invoice Item,Target Warehouse,الهدف مستودع DocType: Item,Allow over delivery or receipt upto this percent,سماح على تسليم أو استلام تصل هذه النسبة @@ -758,7 +759,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,أس apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},تعذر العثور على فتحة الزمنية في {0} الأيام القليلة القادمة للعملية {1} DocType: Production Order,Plan material for sub-assemblies,المواد خطة للجمعيات الفرعي apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} يجب أن تكون نشطة -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,الرجاء اختيار نوع الوثيقة الأولى +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,الرجاء اختيار نوع الوثيقة الأولى apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,انتقل الى السلة apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,إلغاء المواد الزيارات {0} قبل إلغاء هذه الصيانة زيارة DocType: Salary Slip,Leave Encashment Amount,ترك المبلغ التحصيل @@ -776,7 +777,7 @@ DocType: Purchase Receipt,Range,نطاق DocType: Supplier,Default Payable Accounts,الحسابات الدائنة الافتراضي apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,موظف {0} غير نشط أو غير موجود DocType: Features Setup,Item Barcode,البند الباركود -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,البند المتغيرات {0} تحديث +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,البند المتغيرات {0} تحديث DocType: Quality Inspection Reading,Reading 6,قراءة 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,مقدم فاتورة الشراء DocType: Address,Shop,تسوق @@ -799,7 +800,7 @@ DocType: Salary Slip,Total in words,وبعبارة مجموع DocType: Material Request Item,Lead Time Date,تاريخ و وقت مبادرة البيع apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,إلزامي. ربما لم يتم انشاء سجل تحويل العملة ل apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},الصف # {0}: يرجى تحديد رقم التسلسلي للتاريخ {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.",وللسلع "حزمة المنتج، مستودع، المسلسل لا دفعة ويتم النظر في أي من الجدول" قائمة التعبئة ". إذا مستودع ودفعة لا هي نفسها لجميع عناصر التعبئة لمادة أي 'حزمة المنتج، يمكن إدخال تلك القيم في الجدول الرئيسي عنصر، سيتم نسخ القيم إلى "قائمة التعبئة" الجدول. +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.",وللسلع "حزمة المنتج، مستودع، المسلسل لا دفعة ويتم النظر في أي من الجدول" قائمة التعبئة ". إذا مستودع ودفعة لا هي نفسها لجميع عناصر التعبئة لمادة أي 'حزمة المنتج، يمكن إدخال تلك القيم في الجدول الرئيسي عنصر، سيتم نسخ القيم إلى "قائمة التعبئة" الجدول. apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,الشحنات للعملاء. DocType: Purchase Invoice Item,Purchase Order Item,شراء السلعة ترتيب apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,الدخل غير المباشرة @@ -820,6 +821,7 @@ DocType: Process Payroll,Select Payroll Year and Month,حدد الرواتب ا apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",انتقل إلى المجموعة المناسبة (عادة طلب تمويل> الأصول الحالية> الحسابات المصرفية وإنشاء حساب جديد (بالنقر على إضافة الطفل) من نوع "البنك" DocType: Workstation,Electricity Cost,تكلفة الكهرباء DocType: HR Settings,Don't send Employee Birthday Reminders,لا ترسل تذكير يوم ميلاد الموظف +,Employee Holiday Attendance,موظف عطلة الحضور DocType: Opportunity,Walk In,عميل غير مسجل apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,الأسهم مقالات DocType: Item,Inspection Criteria,التفتيش معايير @@ -842,7 +844,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options, DocType: Journal Entry Account,Expense Claim,حساب المطالبة apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},الكمية ل{0} DocType: Leave Application,Leave Application,طلب اجازة -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,اداة توزيع الاجازات +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,اداة توزيع الاجازات DocType: Leave Block List,Leave Block List Dates,ترك التواريخ قائمة الحظر DocType: Company,If Monthly Budget Exceeded (for expense account),إذا تجاوز الميزانية الشهرية (لحساب المصاريف) DocType: Workstation,Net Hour Rate,صافي معدل ساعة @@ -852,7 +854,7 @@ DocType: Packing Slip Item,Packing Slip Item,التعبئة الإغلاق زل DocType: POS Profile,Cash/Bank Account,النقد / البنك حساب apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,العناصر إزالتها مع أي تغيير في كمية أو قيمة. DocType: Delivery Note,Delivery To,التسليم إلى -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,الجدول السمة إلزامي +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,الجدول السمة إلزامي DocType: Production Planning Tool,Get Sales Orders,الحصول على أوامر البيع apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} لا يمكن أن تكون سلبية apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,خصم @@ -916,7 +918,7 @@ DocType: SMS Center,Total Characters,مجموع أحرف apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},يرجى تحديد BOM في الحقل BOM القطعة ل{0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,تفاصيل الفاتورة نموذج - س DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,دفع فاتورة المصالحة -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,المساهمة٪ +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,المساهمة٪ DocType: Item,website page link,الموقع رابط الصفحة DocType: Company,Company registration numbers for your reference. Tax numbers etc.,أرقام تسجيل الشركة للرجوع اليها. أرقام الضرائب الخ. DocType: Sales Partner,Distributor,موزع @@ -958,10 +960,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM تحويل عامل DocType: Stock Settings,Default Item Group,المجموعة الافتراضية الإغلاق apps/erpnext/erpnext/config/buying.py +13,Supplier database.,مزود قاعدة البيانات. DocType: Account,Balance Sheet,الميزانية العمومية -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',"مركز تكلفة بالنسبة للبند مع رمز المدينة """ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',"مركز تكلفة بالنسبة للبند مع رمز المدينة """ DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,سيكون لديك مبيعات شخص الحصول على تذكرة في هذا التاريخ للاتصال العملاء apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups",حسابات أخرى يمكن أن يتم ضمن مجموعات، ولكن يمكن أن يتم مقالات ضد المجموعات غير- -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,الضرائب والاقتطاعات من الراتب أخرى. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,الضرائب والاقتطاعات من الراتب أخرى. DocType: Lead,Lead,مبادرة بيع DocType: Email Digest,Payables,الذمم الدائنة DocType: Account,Warehouse,مستودع @@ -978,10 +980,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,لم تتم تسو DocType: Global Defaults,Current Fiscal Year,السنة المالية الحالية DocType: Global Defaults,Disable Rounded Total,تعطيل إجمالي مدور DocType: Lead,Call,دعوة -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,' المدخلات ' لا يمكن أن تكون فارغة +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,' المدخلات ' لا يمكن أن تكون فارغة apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},صف مكررة {0} مع نفسه {1} ,Trial Balance,ميزان المراجعة -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,إعداد الموظفين +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,إعداد الموظفين apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","الشبكة """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,الرجاء اختيار البادئة الأولى apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,بحث @@ -990,7 +992,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,المستخدم ID apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,عرض ليدجر apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,أقرب -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group",يوجد اسم مجموعة أصناف بنفس الاسم، الرجاء تغيير اسم الصنف أو إعادة تسمية المجموعة +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group",يوجد اسم مجموعة أصناف بنفس الاسم، الرجاء تغيير اسم الصنف أو إعادة تسمية المجموعة DocType: Production Order,Manufacture against Sales Order,تصنيع ضد ترتيب المبيعات apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,بقية العالم apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,العنصر {0} لا يمكن أن يكون دفعة @@ -1015,7 +1017,7 @@ DocType: Purchase Receipt,Rejected Warehouse,رفض مستودع DocType: GL Entry,Against Voucher,مقابل قسيمة DocType: Item,Default Buying Cost Center,الافتراضي شراء مركز التكلفة apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.",للحصول على أفضل النتائج من ERPNext، ونحن نوصي بأن تأخذ بعض الوقت ومشاهدة أشرطة الفيديو هذه المساعدة. -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,البند {0} يجب أن تكون مبيعات السلعة +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,البند {0} يجب أن تكون مبيعات السلعة apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,إلى DocType: Item,Lead Time in days,يؤدي الوقت في أيام ,Accounts Payable Summary,ملخص الحسابات الدائنة @@ -1041,7 +1043,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,زراعة apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,المنتجات أو الخدمات الخاصة بك DocType: Mode of Payment,Mode of Payment,طريقة الدفع -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,وينبغي أن يكون موقع صورة ملف العامة أو عنوان الموقع +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,وينبغي أن يكون موقع صورة ملف العامة أو عنوان الموقع apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,هذه هي مجموعة البند الجذرية والتي لا يمكن تحريرها. DocType: Journal Entry Account,Purchase Order,أمر الشراء DocType: Warehouse,Warehouse Contact Info,معلومات اتصال المستودع @@ -1052,7 +1054,7 @@ DocType: Serial No,Serial No Details,تفاصيل المسلسل DocType: Purchase Invoice Item,Item Tax Rate,البند ضريبة apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry",ل{0}، فقط حسابات الائتمان يمكن ربط ضد دخول السحب أخرى apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,تسليم مذكرة {0} لم تقدم -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,البند {0} يجب أن يكون عنصر التعاقد الفرعي +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,البند {0} يجب أن يكون عنصر التعاقد الفرعي apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,معدات العاصمة apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.",يتم تحديد الأسعار على أساس القاعدة الأولى 'تطبيق في' الميدان، التي يمكن أن تكون مادة، مادة أو مجموعة العلامة التجارية. DocType: Hub Settings,Seller Website,البائع موقع @@ -1061,7 +1063,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,هدف DocType: Sales Invoice Item,Edit Description,تحرير الوصف apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,التسليم المتوقع التاريخ هو أقل من الموعد المقرر ابدأ. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,ل مزود +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,ل مزود DocType: Account,Setting Account Type helps in selecting this Account in transactions.,تحديد نوع الحساب يساعد في تحديد هذا الحساب في المعاملات. DocType: Purchase Invoice,Grand Total (Company Currency),المجموع الكلي (العملات شركة) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,مجموع المنتهية ولايته @@ -1113,7 +1115,6 @@ DocType: Authorization Rule,Average Discount,متوسط الخصم DocType: Address,Utilities,خدمات DocType: Purchase Invoice Item,Accounting,المحاسبة DocType: Features Setup,Features Setup,ميزات الإعداد -DocType: Item,Is Service Item,هو البند خدمة apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,فترة الطلب لا يمكن أن يكون خارج فترةالاجزات المخصصة DocType: Activity Cost,Projects,مشاريع apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,الرجاء اختيار السنة المالية @@ -1134,7 +1135,7 @@ DocType: Item,Maintain Stock,الحفاظ على الأوراق المالية apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,مقالات الأسهم التي تم إنشاؤها بالفعل لترتيب الإنتاج apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,صافي التغير في الأصول الثابتة DocType: Leave Control Panel,Leave blank if considered for all designations,ترك فارغا إذا نظرت لجميع التسميات -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,لا يمكن تضمين تهمة من نوع ' الفعلي ' في الصف {0} في سعر السلعة +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,لا يمكن تضمين تهمة من نوع ' الفعلي ' في الصف {0} في سعر السلعة apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},الحد الأقصى: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,من التاريخ والوقت DocType: Email Digest,For Company,لشركة @@ -1143,8 +1144,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,الشحن العنوان الاسم apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,دليل الحسابات DocType: Material Request,Terms and Conditions Content,الشروط والأحكام المحتوى -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,لا يمكن أن يكون أكبر من 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,البند {0} ليس الأسهم الإغلاق +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,لا يمكن أن يكون أكبر من 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,البند {0} ليس الأسهم الإغلاق DocType: Maintenance Visit,Unscheduled,غير المجدولة DocType: Employee,Owned,تملكها DocType: Salary Slip Deduction,Depends on Leave Without Pay,يعتمد على إجازة بدون مرتب @@ -1166,7 +1167,7 @@ Used for Taxes and Charges","التفاصيل الضرائب الجدول الم apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,الموظف لا يمكن أن يقدم تقريرا إلى نفسه. DocType: Account,"If the account is frozen, entries are allowed to restricted users.",إذا تم تجميد الحساب، ويسمح للمستخدمين إدخالات مقيدة. DocType: Email Digest,Bank Balance,الرصيد المصرفي -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},القيد المحاسبي ل{0}: {1} يمكن إجراؤه بالعملة: {2} فقط +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},القيد المحاسبي ل{0}: {1} يمكن إجراؤه بالعملة: {2} فقط apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,لا هيكل الراتب نشط تم العثور عليها ل موظف {0} والشهر DocType: Job Opening,"Job profile, qualifications required etc.",ملف الوظيفة ، المؤهلات المطلوبة الخ DocType: Journal Entry Account,Account Balance,رصيد حسابك @@ -1183,7 +1184,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,الجمعي DocType: Shipping Rule Condition,To Value,إلى القيمة DocType: Supplier,Stock Manager,الأسهم مدير apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},مستودع مصدر إلزامي ل صف {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,زلة التعبئة +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,زلة التعبئة apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,مكتب للإيجار apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,إعدادات العبارة الإعداد SMS apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,فشل الاستيراد ! @@ -1224,10 +1225,10 @@ apps/erpnext/erpnext/stock/stock_ledger.py +407,"Purchase rate for item: {0} not DocType: Maintenance Schedule,Schedules,جداول DocType: Purchase Invoice Item,Net Amount,صافي القيمة DocType: Purchase Order Item Supplied,BOM Detail No,BOM تفاصيل لا -DocType: Purchase Invoice,Additional Discount Amount (Company Currency),إضافي مقدار الخصم (العملة الشركة) +DocType: Purchase Invoice,Additional Discount Amount (Company Currency),مقدار الخصم الاضافي (العملة الشركة) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},الخطأ: {0} > {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,يرجى إنشاء حساب جديد من الرسم البياني للحسابات . -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,صيانة زيارة +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,صيانة زيارة apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,العملاء> مجموعة العملاء> إقليم DocType: Sales Invoice Item,Available Batch Qty at Warehouse,تتوفر الكمية دفعة في مستودع DocType: Time Log Batch Detail,Time Log Batch Detail,وقت دخول دفعة التفاصيل @@ -1236,7 +1237,7 @@ DocType: Leave Block List,Block Holidays on important days.,عطلات كتلة ,Accounts Receivable Summary,حسابات المقبوضات ملخص apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,الرجاء تعيين حقل معرف المستخدم في سجل الموظف لتحديد دور موظف DocType: UOM,UOM Name,UOM اسم -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,مبلغ المساهمة +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,مبلغ المساهمة DocType: Sales Invoice,Shipping Address,عنوان الشحن DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,تساعدك هذه الأداة لتحديث أو تحديد الكمية وتقييم الأوراق المالية في النظام. وعادة ما يتم استخدامه لمزامنة قيم النظام وما هو موجود فعلا في المستودعات الخاصة بك. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,وبعبارة تكون مرئية بمجرد حفظ ملاحظة التسليم. @@ -1277,7 +1278,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,لتعقب العناصر باستخدام الباركود. سوف تكون قادرة على الدخول في بنود مذكرة التسليم والفاتورة المبيعات عن طريق مسح الباركود من العنصر. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,إعادة إرسال البريد الإلكتروني الدفع DocType: Dependent Task,Dependent Task,العمل تعتمد -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},معامل تحويل وحدة القياس الافتراضية يجب أن تكون 1 في الصف {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},معامل تحويل وحدة القياس الافتراضية يجب أن تكون 1 في الصف {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},إجازة من نوع {0} لا يمكن أن تكون أطول من {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,محاولة التخطيط لعمليات لX أيام مقدما. DocType: HR Settings,Stop Birthday Reminders,توقف عيد ميلاد تذكير @@ -1287,11 +1288,11 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} مشاهدة apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,صافي التغير في النقد DocType: Salary Structure Deduction,Salary Structure Deduction,هيكل المرتبات / الخصومات -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,وحدة القياس {0} تم إدخال أكثر من مرة واحدة في معامل التحويل الجدول +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,وحدة القياس {0} تم إدخال أكثر من مرة واحدة في معامل التحويل الجدول apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},دفع طلب بالفعل {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,تكلفة عناصر صدر apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},لا يجب أن تكون الكمية أكثر من {0} -apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +41,Age (Days),سن (أيام) +apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +41,Age (Days),العمر (أيام) DocType: Quotation Item,Quotation Item,عنصر تسعيرة DocType: Account,Account Name,اسم الحساب apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +36,From Date cannot be greater than To Date,من تاريخ لا يمكن أن يكون أكبر من إلى تاريخ @@ -1316,7 +1317,7 @@ DocType: BOM Item,BOM Item,BOM صنف DocType: Appraisal,For Employee,لموظف apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,الصف {0}: تقدم ضد مورد يجب بخصم DocType: Company,Default Values,قيم افتراضية -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,صف {0} كمية الدفع لا يمكن أن يكون سلبيا +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,صف {0} كمية الدفع لا يمكن أن يكون سلبيا DocType: Expense Claim,Total Amount Reimbursed,مجموع المبلغ المسدد apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},مقابل فاتورة المورد {0} بتاريخ {1} DocType: Customer,Default Price List,قائمة الأسعار الافتراضي @@ -1344,8 +1345,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,ا DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","استبدال BOM خاص في جميع BOMs الأخرى حيث يتم استخدامه. وسوف يحل محل وصلة BOM القديم، وتحديث التكلفة وتجديد ""BOM انفجار السلعة"" الجدول حسب BOM جديد" DocType: Shopping Cart Settings,Enable Shopping Cart,تمكين سلة التسوق DocType: Employee,Permanent Address,العنوان الدائم -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,البند {0} يجب أن تكون خدمة عنصر . -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",المدفوعة مسبقا مقابل {0} {1} لا يمكن أن يكون أكبر \ من المجموع الكلي {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,الرجاء اختيار رمز العنصر DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),تخفيض خصم لإجازة بدون أجر (LWP) @@ -1401,12 +1401,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,رئيسي apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,مختلف DocType: Naming Series,Set prefix for numbering series on your transactions,تحديد بادئة للترقيم المتسلسل على المعاملات الخاصة بك +DocType: Employee Attendance Tool,Employees HTML,الموظفين HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,لا يمكن إلغاء النظام على توقف . نزع السدادة لإلغاء . -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,BOM الافتراضي ({0}) يجب أن تكون نشطة لهذا البند أو قالبها +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,BOM الافتراضي ({0}) يجب أن تكون نشطة لهذا البند أو قالبها DocType: Employee,Leave Encashed?,ترك صرفها؟ apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,فرصة من الحقل إلزامي DocType: Item,Variants,المتغيرات -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,جعل أمر الشراء +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,جعل أمر الشراء DocType: SMS Center,Send To,أرسل إلى apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},ليس هناك ما يكفي من التوازن إجازة ل إجازة نوع {0} DocType: Payment Reconciliation Payment,Allocated amount,المبلغ المخصص @@ -1507,7 +1508,7 @@ DocType: Sales Person,Name and Employee ID,الاسم والرقم الوظيف apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,بسبب التاريخ لا يمكن أن يكون قبل المشاركة في التسجيل DocType: Website Item Group,Website Item Group,مجموعة الأصناف للموقع apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,الرسوم والضرائب -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,من فضلك ادخل تاريخ المرجعي +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,من فضلك ادخل تاريخ المرجعي apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,لم يتم تكوين بوابة الدفع حساب apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} إدخالات الدفع لا يمكن أن تتم تصفيته من قبل {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,الجدول القطعة لأنه سيظهر في الموقع @@ -1528,7 +1529,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,قرار تفاصيل DocType: Quality Inspection Reading,Acceptance Criteria,معايير القبول DocType: Item Attribute,Attribute Name,السمة اسم -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},البند {0} يجب أن تكون المبيعات أو خدمة عنصر في {1} DocType: Item Group,Show In Website,تظهر في الموقع apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,مجموعة DocType: Task,Expected Time (in hours),الوقت المتوقع (بالساعات) @@ -1560,7 +1560,7 @@ DocType: Shipping Rule Condition,Shipping Amount,الشحن المبلغ ,Pending Amount,في انتظار المبلغ DocType: Purchase Invoice Item,Conversion Factor,معامل التحويل DocType: Purchase Order,Delivered,تسليم -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),إعداد ملقم واردة عن وظائف البريد الإلكتروني معرف . (على سبيل المثال jobs@example.com ) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),إعداد ملقم واردة عن وظائف البريد الإلكتروني معرف . (على سبيل المثال jobs@example.com ) DocType: Purchase Receipt,Vehicle Number,عدد المركبات DocType: Purchase Invoice,The date on which recurring invoice will be stop,التاريخ الذي سيتم فاتورة المتكررة وقف apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,مجموع الأوراق المخصصة {0} لا يمكن أن يكون أقل من الأوراق وافق بالفعل {1} للفترة @@ -1575,9 +1575,9 @@ DocType: Landed Cost Voucher,Distribute Charges Based On,توزيع الرسوم apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +320,Account {0} must be of type 'Fixed Asset' as Item {1} is an Asset Item,يجب أن يكون نوع الحساب {0} 'أصول ثابتة' حيث أن الصنف {1} من ضمن الأصول DocType: HR Settings,HR Settings,إعدادات HR apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,حساب المطالبة بانتظار الموافقة. فقط الموافق المصروفات يمكن تحديث الحالة. -DocType: Purchase Invoice,Additional Discount Amount,إضافي مقدار الخصم +DocType: Purchase Invoice,Additional Discount Amount,مقدار الخصم الاضافي DocType: Leave Block List Allow,Leave Block List Allow,ترك قائمة الحظر السماح -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,"الاسم المختصر لا يمكن أن يكون فارغاً أو ""مسافة""" +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,"الاسم المختصر لا يمكن أن يكون فارغاً أو ""مسافة""" apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,مجموعة لغير المجموعه apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,الرياضة apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,الإجمالي الفعلي @@ -1601,7 +1601,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},مطلوب عامل UOM التحويل في الصف {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},تاريخ التخليص لا يمكن أن يكون قبل تاريخ الاختيار في الصف {0} DocType: Salary Slip,Deduction,اقتطاع -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},وأضاف البند سعر {0} في قائمة الأسعار {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},وأضاف البند سعر {0} في قائمة الأسعار {1} DocType: Address Template,Address Template,قالب عنوان apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,الرجاء إدخال رقم الموظف من هذا الشخص المبيعات DocType: Territory,Classification of Customers by region,تصنيف العملاء حسب المنطقة @@ -1618,7 +1618,7 @@ DocType: Employee,Date of Birth,تاريخ الميلاد apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,البند {0} تم بالفعل عاد DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,**السنة المالية** تمثل سنة مالية. يتم تعقب كل القيود المحاسبية والمعاملات الرئيسية الأخرى مقابل **السنة المالية**. DocType: Opportunity,Customer / Lead Address,العميل / الرصاص العنوان -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},تحذير: شهادة SSL غير صالحة في المرفق {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},تحذير: شهادة SSL غير صالحة في المرفق {0} DocType: Production Order Operation,Actual Operation Time,الفعلي وقت التشغيل DocType: Authorization Rule,Applicable To (User),تنطبق على (المستخدم) DocType: Purchase Taxes and Charges,Deduct,خصم @@ -1635,7 +1635,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,ملاحظة تقسيم التوصيل في حزم. apps/erpnext/erpnext/hooks.py +69,Shipments,شحنات DocType: Purchase Order Item,To be delivered to customer,ليتم تسليمها إلى العملاء -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,يجب تقديم الوقت سجل الحالة. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,يجب تقديم الوقت سجل الحالة. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,المسلسل لا {0} لا تنتمي إلى أي مستودع apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,الصف # DocType: Purchase Invoice,In Words (Company Currency),في كلمات (عملة الشركة) @@ -1652,7 +1652,7 @@ DocType: Leave Application,Total Leave Days,مجموع أيام الإجازة DocType: Email Digest,Note: Email will not be sent to disabled users,ملاحظة: لن يتم إرسالها إلى البريد الإلكتروني للمستخدمين ذوي الاحتياجات الخاصة apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,حدد الشركة ... DocType: Leave Control Panel,Leave blank if considered for all departments,اتركه فارغا إذا نظرت لجميع الإدارات -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).",أنواع العمل (دائمة أو عقد الخ متدربة ) . +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).",أنواع العمل (دائمة أو عقد الخ متدربة ) . apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} إلزامي للصنف {1} DocType: Currency Exchange,From Currency,من العملات apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row",يرجى تحديد المبلغ المخصص، نوع الفاتورة ورقم الفاتورة في أتلست صف واحد @@ -1671,7 +1671,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,في عملية DocType: Authorization Rule,Itemwise Discount,Itemwise الخصم DocType: Purchase Order Item,Reference Document Type,مرجع نوع الوثيقة -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} مقابل ترتيب المبيعات {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} مقابل ترتيب المبيعات {1} DocType: Account,Fixed Asset,الأصول الثابتة apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,جرد المتسلسلة DocType: Activity Type,Default Billing Rate,افتراضي الفواتير أسعار @@ -1681,7 +1681,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,ترتيب مبيعات لدفع DocType: Expense Claim Detail,Expense Claim Detail,حساب المطالبة التفاصيل apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,الوقت سجلات خلق: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,يرجى تحديد الحساب الصحيح +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,يرجى تحديد الحساب الصحيح DocType: Item,Weight UOM,وحدة قياس الوزن DocType: Employee,Blood Group,فصيلة الدم DocType: Purchase Invoice Item,Page Break,فاصل الصفحة @@ -1716,7 +1716,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM العودية : {0} لا يمكن أن يكون الأم أو الطفل من {2} DocType: Production Order Operation,Completed Qty,الكمية الانتهاء apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry",ل{0}، فقط حسابات الخصم يمكن ربط ضد دخول ائتمان أخرى -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,قائمة الأسعار {0} تم تعطيل +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,قائمة الأسعار {0} تم تعطيل DocType: Manufacturing Settings,Allow Overtime,تسمح العمل الإضافي apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,يلزم {0} أرقاماً تسلسلية للبند {1}. بينما قدمت {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,معدل التقييم الحالي @@ -1767,7 +1767,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},أي apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,القضية رقم لا يمكن أن يكون 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,إذا كان لديك فريق المبيعات والشركاء بيع (شركاء القنوات) يمكن أن يوصف بها والحفاظ على مساهمتها في نشاط المبيعات DocType: Item,Show a slideshow at the top of the page,تظهر الشرائح في أعلى الصفحة -DocType: Item,"Allow in Sales Order of type ""Service""",السماح في ترتيب المبيعات من نوع "الخدمة" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,مخازن DocType: Time Log,Projects Manager,مدير المشاريع DocType: Serial No,Delivery Time,وقت التسليم @@ -1782,6 +1781,7 @@ DocType: Rename Tool,Rename Tool,إعادة تسمية أداة apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,تحديث التكلفة DocType: Item Reorder,Item Reorder,البند إعادة ترتيب apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,نقل المواد +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},البند {0} يجب أن يكون البند المبيعات في {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.",تحديد العمليات ، وتكلفة التشغيل وإعطاء عملية فريدة من نوعها لا لل عمليات الخاصة بك. DocType: Purchase Invoice,Price List Currency,قائمة الأسعار العملات DocType: Naming Series,User must always select,يجب دائما مستخدم تحديد @@ -1802,7 +1802,7 @@ DocType: Appraisal,Employee,موظف apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,استيراد البريد الإلكتروني من apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,دعوة كمستخدم DocType: Features Setup,After Sale Installations,بعد التثبيت بيع -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} فوترت بشكل كامل +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} فوترت بشكل كامل DocType: Workstation Working Hour,End Time,نهاية الوقت apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,شروط العقد القياسية ل مبيعات أو شراء . apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,المجموعة بواسطة قسيمة @@ -1828,7 +1828,7 @@ DocType: Upload Attendance,Attendance To Date,الحضور إلى تاريخ apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),إعداد ملقم البريد الإلكتروني الوارد لل مبيعات الهوية. (على سبيل المثال sales@example.com ) DocType: Warranty Claim,Raised By,التي أثارها DocType: Payment Gateway Account,Payment Account,حساب الدفع -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,يرجى تحديد الشركة للمضي قدما +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,يرجى تحديد الشركة للمضي قدما apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,صافي التغير في حسابات المقبوضات apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,التعويضية DocType: Quality Inspection Reading,Accepted,مقبول @@ -1840,14 +1840,14 @@ DocType: Shipping Rule,Shipping Rule Label,الشحن تسمية القاعدة apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,المواد الخام لا يمكن أن يكون فارغا. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.",تعذر تحديث الأسهم، فاتورة تحتوي انخفاض الشحن البند. DocType: Newsletter,Test,اختبار -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'",كما أن هناك معاملات الأوراق المالية الموجودة لهذا البند، \ لا يمكنك تغيير قيم "ليس لديه المسلسل '،' لديه دفعة لا '،' هل البند الأسهم" و "أسلوب التقييم" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,خيارات مجلة الدخول apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,لا يمكنك تغيير معدل إذا ذكر BOM agianst أي بند DocType: Employee,Previous Work Experience,خبرة العمل السابقة DocType: Stock Entry,For Quantity,لالكمية apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},يرجى إدخال الكمية المخططة القطعة ل {0} في {1} الصف -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} لم يتم تأكيده +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} لم يتم تأكيده apps/erpnext/erpnext/config/stock.py +18,Requests for items.,طلبات البنود. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,سيتم إنشاء منفصلة أمر الإنتاج لمادة جيدة لكل النهائي. DocType: Purchase Invoice,Terms and Conditions1,حيث وConditions1 @@ -1872,6 +1872,7 @@ DocType: Notification Control,Expense Claim Approved Message,المطالبة ح DocType: Email Digest,How frequently?,كيف كثير من الأحيان؟ DocType: Purchase Receipt,Get Current Stock,الحصول على المخزون الحالي apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,شجرة من مواد مشروع القانون +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,حضر علامة apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},صيانة تاريخ بداية لا يمكن أن يكون قبل تاريخ التسليم لل رقم المسلسل {0} DocType: Production Order,Actual End Date,تاريخ الإنتهاء الفعلي DocType: Authorization Rule,Applicable To (Role),تنطبق على (الدور) @@ -1886,7 +1887,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,يجب أن يكون تاريخ الانتهاء العقد أكبر من تاريخ الالتحاق بالعمل DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,موزع طرف ثالث / وكيل / دلّال / شريك / بائع التجزئة الذي يبيع منتجات الشركات مقابل عمولة. DocType: Customer Group,Has Child Node,وعقدة الطفل -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} مقابل طلب شراء {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} مقابل طلب شراء {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)",أدخل المعلمات URL ثابت هنا (مثلا المرسل = ERPNext، اسم المستخدم = ERPNext، كلمة المرور = 1234 الخ) apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} لا في أي سنة مالية نشطة. لمزيد من التفاصيل الاختيار {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,هذا مثال موقع ولدت لصناعة السيارات من ERPNext @@ -1934,7 +1935,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. إضافة أو اقتطاع: إذا كنت ترغب في إضافة أو خصم الضرائب." DocType: Purchase Receipt Item,Recd Quantity,Recd الكمية apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},لا يمكن أن تنتج أكثر تفاصيل {0} من المبيعات كمية الطلب {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,الحركة المخزنية {0} غير مسجلة +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,الحركة المخزنية {0} غير مسجلة DocType: Payment Reconciliation,Bank / Cash Account,البنك حساب / النقدية DocType: Tax Rule,Billing City,مدينة الفوترة DocType: Global Defaults,Hide Currency Symbol,إخفاء رمز العملة @@ -1960,7 +1961,7 @@ DocType: Salary Structure,Total Earning,إجمالي الدخل DocType: Purchase Receipt,Time at which materials were received,الوقت الذي وردت المواد apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,بلدي العناوين DocType: Stock Ledger Entry,Outgoing Rate,أسعار المنتهية ولايته -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,فرع المؤسسة الرئيسية . +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,فرع المؤسسة الرئيسية . apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,أو DocType: Sales Order,Billing Status,الحالة الفواتير apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,مصاريف فائدة @@ -1998,7 +1999,7 @@ DocType: Bin,Reserved Quantity,الكمية المحجوزة DocType: Landed Cost Voucher,Purchase Receipt Items,شراء قطع الإيصال apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,نماذج التخصيص DocType: Account,Income Account,دخل الحساب -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,تسليم +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,تسليم DocType: Stock Reconciliation Item,Current Qty,الكمية الحالية DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",انظر "نسبة المواد على أساس" التكلفة في القسم DocType: Appraisal Goal,Key Responsibility Area,مفتاح مسؤولية المنطقة @@ -2010,9 +2011,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,س DocType: Notification Control,Purchase Order Message,رسالة طلب شراء DocType: Tax Rule,Shipping Country,النقل البحري القطرية DocType: Upload Attendance,Upload HTML,تحميل HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","إجمالي مقدما ({0}) ضد بالدفع {1} لا يمكن أن يكون أكبر \ - من المجموع الكلي ({2})" DocType: Employee,Relieving Date,تخفيف تاريخ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.",يتم تسعير المادة الكتابة قائمة الأسعار / تحديد نسبة الخصم، استنادا إلى بعض المعايير. DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,لا يمكن إلا أن تتغير مستودع عبر دخول سوق الأسهم / التوصيل ملاحظة / شراء الإيصال @@ -2022,8 +2020,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,ضر apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","إذا تم اختيار التسعير القاعدة ل 'الأسعار'، فإنه سيتم الكتابة فوق قائمة الأسعار. سعر التسعير القاعدة هو السعر النهائي، لذلك يجب تطبيق أي خصم آخر. وبالتالي، في المعاملات مثل ترتيب المبيعات، طلب شراء غيرها، وسيتم جلب في الحقل 'تقييم'، بدلا من حقل ""قائمة الأسعار أسعار""." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,المسار يؤدي حسب نوع الصناعة . DocType: Item Supplier,Item Supplier,البند مزود -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,الرجاء إدخال رمز المدينة للحصول على دفعة لا -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},يرجى تحديد قيمة ل {0} {1} quotation_to +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,الرجاء إدخال رمز المدينة للحصول على دفعة لا +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},يرجى تحديد قيمة ل {0} {1} quotation_to apps/erpnext/erpnext/config/selling.py +33,All Addresses.,جميع العناوين. DocType: Company,Stock Settings,إعدادات الأسهم apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company",دمج غير ممكن إلا إذا الخصائص التالية هي نفسها في كل السجلات. هي المجموعة، نوع الجذر، شركة @@ -2046,7 +2044,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,عدد الشيكات DocType: Payment Tool Detail,Payment Tool Detail,دفع أداة التفاصيل ,Sales Browser,متصفح المبيعات DocType: Journal Entry,Total Credit,إجمالي الائتمان -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},موجود آخر {0} # {1} ضد حركة مخزنية {2}: تحذير +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},موجود آخر {0} # {1} ضد حركة مخزنية {2}: تحذير apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,محلي apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),القروض والسلفيات (الأصول ) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,المدينين @@ -2066,8 +2064,8 @@ DocType: Price List,Price List Master,قائمة الأسعار ماستر DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,جميع معاملات البيع يمكن الموسومة ضد ** عدة أشخاص المبيعات ** بحيث يمكنك تعيين ورصد الأهداف. ,S.O. No.,S.O. رقم DocType: Production Order Operation,Make Time Log,جعل وقت دخول -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,الرجاء ضبط كمية إعادة الطلب -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},يرجى إنشاء العملاء من الرصاص {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,الرجاء ضبط كمية إعادة الطلب +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},يرجى إنشاء العملاء من الرصاص {0} DocType: Price List,Applicable for Countries,ينطبق على البلدان apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,أجهزة الكمبيوتر apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,هذه هي مجموعة العملاء الجذرية والتي لا يمكن تحريرها. @@ -2115,7 +2113,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),الف DocType: Payment Reconciliation Invoice,Outstanding Amount,المبلغ المعلقة DocType: Project Task,Working,عامل DocType: Stock Ledger Entry,Stock Queue (FIFO),الأسهم قائمة انتظار (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,الرجاء اختيار سجلات الوقت. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,الرجاء اختيار سجلات الوقت. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} لا تنتمي إلى شركة {1} DocType: Account,Round Off,ختم ,Requested Qty,طلب الكمية @@ -2153,7 +2151,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,الحصول على مدخلات ذات صلة apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,القيود المحاسبية لمخزون DocType: Sales Invoice,Sales Team1,مبيعات Team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,البند {0} غير موجود +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,البند {0} غير موجود DocType: Sales Invoice,Customer Address,العنوان العملاء DocType: Payment Request,Recipient and Message,المتلقي والرسالة DocType: Purchase Invoice,Apply Additional Discount On,تطبيق خصم إضافي على @@ -2172,7 +2170,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,كتم البريد الإلكتروني apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco",الغذاء و المشروبات و التبغ apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL أو BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},ان تجعل دفع فواتير فقط ضد {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},ان تجعل دفع فواتير فقط ضد {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,معدل العمولة لا يمكن أن يكون أكبر من 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,الحد الأدنى مستوى المخزون DocType: Stock Entry,Subcontract,قام بمقاولة فرعية @@ -2190,9 +2188,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,البرم apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,اللون DocType: Maintenance Visit,Scheduled,من المقرر apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle",يرجى تحديد عنصر، حيث قال "هل البند الأسهم" هو "لا" و "هل المبيعات البند" هو "نعم" وليس هناك حزمة المنتجات الأخرى +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),مجموع مقدما ({0}) ضد النظام {1} لا يمكن أن يكون أكبر من المجموع الكلي ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,تحديد التوزيع الشهري لتوزيع غير متساو أهداف على مدى عدة شهور. DocType: Purchase Invoice Item,Valuation Rate,تقييم قيم -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,قائمة أسعار العملات غير محددة +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,قائمة أسعار العملات غير محددة apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,"البند صف {0} إيصال الشراء {1} غير موجود في الجدول 'شراء إيصالات ""أعلاه" apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},موظف {0} وقد طبقت بالفعل ل {1} {2} بين و {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,المشروع تاريخ البدء @@ -2204,6 +2203,7 @@ DocType: Quality Inspection,Inspection Type,نوع التفتيش apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},الرجاء اختيار {0} DocType: C-Form,C-Form No,رقم النموذج - س DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,الحضور غير المراقب apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,الباحث apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,الرجاء حفظ النشرة قبل الإرسال apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,الاسم أو البريد الإلكتروني إلزامي @@ -2229,7 +2229,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,مؤك DocType: Payment Gateway,Gateway,بوابة apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,المورد> نوع مورد apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,من فضلك ادخل تاريخ التخفيف . -apps/erpnext/erpnext/controllers/trends.py +137,Amt,AMT +apps/erpnext/erpnext/controllers/trends.py +138,Amt,AMT apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,اترك فقط مع وضع تطبيقات ' وافق ' يمكن تقديم apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,عنوان عنوانها إلزامية. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,أدخل اسم الحملة إذا كان مصدر من التحقيق هو حملة @@ -2244,10 +2244,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,مستودع مقبول DocType: Bank Reconciliation Detail,Posting Date,تاريخ النشر DocType: Item,Valuation Method,تقييم الطريقة apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},تعذر العثور على سعر الصرف ل{0} إلى {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,يوم علامة نصف DocType: Sales Invoice,Sales Team,فريق المبيعات apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,تكرار دخول DocType: Serial No,Under Warranty,تحت الكفالة -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[خطأ] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[خطأ] DocType: Sales Order,In Words will be visible once you save the Sales Order.,وبعبارة تكون مرئية بمجرد حفظ ترتيب المبيعات. ,Employee Birthday,عيد ميلاد موظف apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,فينشر كابيتال @@ -2270,6 +2271,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,مركز التكلفة مع المعاملات القائمة لا يمكن تحويلها إلى مجموعة DocType: Account,Depreciation,خفض apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),المورد (ق) +DocType: Employee Attendance Tool,Employee Attendance Tool,أداة الحضور موظف DocType: Supplier,Credit Limit,الحد الائتماني apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,حدد النوع من المعاملات DocType: GL Entry,Voucher No,رقم السند @@ -2296,7 +2298,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,لا يمكن حذف حساب الجذر ,Is Primary Address,هو العنوان الرئيسي DocType: Production Order,Work-in-Progress Warehouse,مستودع العمل قيد التنفيذ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},إشارة # {0} بتاريخ {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},إشارة # {0} بتاريخ {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,إدارة العناوين DocType: Pricing Rule,Item Code,البند الرمز DocType: Production Planning Tool,Create Production Orders,إنشاء أوامر الإنتاج @@ -2323,7 +2325,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,تسوية البنك apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,الحصول على التحديثات apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,طلب المواد {0} تم إلغاء أو توقف apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,إضافة بعض السجلات عينة -apps/erpnext/erpnext/config/hr.py +210,Leave Management,ترك الإدارة +apps/erpnext/erpnext/config/hr.py +225,Leave Management,ترك الإدارة apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,مجموعة بواسطة حساب DocType: Sales Order,Fully Delivered,سلمت بالكامل DocType: Lead,Lower Income,ذات الدخل المنخفض @@ -2338,6 +2340,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"""من تاريخ "" يجب أن يكون بعد "" إلى تاريخ """ ,Stock Projected Qty,الأسهم المتوقعة الكمية apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},العملاء {0} لا تنتمي لمشروع {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,الحضور الملحوظ HTML DocType: Sales Order,Customer's Purchase Order,طلب شراء الزبون DocType: Warranty Claim,From Company,من شركة apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,القيمة أو الكمية @@ -2371,7 +2374,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +34,Approving Role cannot be same as role the rule is Applicable To,الموافقة دور لا يمكن أن يكون نفس دور القاعدة تنطبق على apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +66,Unsubscribe from this Email Digest,إلغاء الاشتراك من هذا البريد الإلكتروني دايجست apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +28,Message Sent,رسالة المرسلة -apps/erpnext/erpnext/accounts/doctype/account/account.py +97,Account with child nodes cannot be set as ledger,حساب مع العقد الطفل لا يستطيع ان يحدد دفتر الأستاذ +apps/erpnext/erpnext/accounts/doctype/account/account.py +97,Account with child nodes cannot be set as ledger,لا يمكن جعل حساب ذو توابع كدفتر حسابات دفتر أستاذ DocType: Production Plan Sales Order,SO Date,SO تاريخ DocType: Sales Invoice,Rate at which Price list currency is converted to customer's base currency,المعدل الذي يتم تحويل سعر العملة العملة الأساسية القائمة لالعملاء DocType: Purchase Invoice Item,Net Amount (Company Currency),صافي المبلغ (شركة العملات) @@ -2403,6 +2406,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,حوالة مصرفية apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,الرجاء اختيار حساب البنك DocType: Newsletter,Create and Send Newsletters,إنشاء وإرسال النشرات الإخبارية +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,تحقق من الكل DocType: Sales Order,Recurring Order,ترتيب متكرر DocType: Company,Default Income Account,الافتراضي الدخل حساب apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,المجموعة العملاء / الزبائن @@ -2434,6 +2438,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,العودة ضد شر DocType: Item,Warranty Period (in days),فترة الضمان (بالأيام) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,صافي التدفقات النقدية من العمليات apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,على سبيل المثال ضريبة +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,الحضور كافة الموظفين في السائبة apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,البند 4 DocType: Journal Entry Account,Journal Entry Account,حساب إدخال دفتر اليومية DocType: Shopping Cart Settings,Quotation Series,اقتباس السلسلة @@ -2579,14 +2584,14 @@ DocType: Task,Actual Start Date (via Time Logs),تاريخ بدء الفعلي ( DocType: Stock Reconciliation Item,Before reconciliation,قبل المصالحة apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},إلى {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),الضرائب والرسوم المضافة (عملة الشركة) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,البند ضريبة صف {0} يجب أن يكون في الاعتبار نوع ضريبة الدخل أو المصاريف أو إتهام أو +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,البند ضريبة صف {0} يجب أن يكون في الاعتبار نوع ضريبة الدخل أو المصاريف أو إتهام أو DocType: Sales Order,Partly Billed,وصفت جزئيا DocType: Item,Default BOM,الافتراضي BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,الرجاء إعادة الكتابة اسم الشركة لتأكيد apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,إجمالي المعلقة آمت DocType: Time Log Batch,Total Hours,مجموع ساعات DocType: Journal Entry,Printing Settings,إعدادات الطباعة -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},يجب أن يكون إجمالي الخصم يساوي إجمالي الائتمان . +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},يجب أن يكون إجمالي الخصم يساوي إجمالي الائتمان . apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,السيارات apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,من التسليم ملاحظة DocType: Time Log,From Time,من وقت @@ -2633,7 +2638,7 @@ DocType: Purchase Invoice Item,Image View,عرض الصورة DocType: Issue,Opening Time,يفتح من الساعة apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,من و إلى مواعيد apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,الأوراق المالية و البورصات السلعية -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',وحدة القياس الافتراضية للخيار '{0}' يجب أن يكون نفس في قالب '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',وحدة القياس الافتراضية للخيار '{0}' يجب أن يكون نفس في قالب '{1}' DocType: Shipping Rule,Calculate Based On,إحسب الربح بناء على DocType: Delivery Note Item,From Warehouse,من مستودع DocType: Purchase Taxes and Charges,Valuation and Total,التقييم وتوتال @@ -2655,7 +2660,7 @@ DocType: Leave Application,Follow via Email,متابعة عبر البريد ا DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,المبلغ الضريبي بعد الخصم المبلغ apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,موجود حساب الطفل لهذا الحساب . لا يمكنك حذف هذا الحساب. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,إما الكمية المستهدفة أو المبلغ المستهدف إلزامي -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},لا توجد BOM الافتراضي القطعة ل {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},لا توجد BOM الافتراضي القطعة ل {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,يرجى تحديد تاريخ النشر لأول مرة apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,يجب فتح التسجيل يكون قبل تاريخ الإنتهاء DocType: Leave Control Panel,Carry Forward,المضي قدما @@ -2733,7 +2738,7 @@ DocType: Leave Type,Is Encash,هو يحققوا ربحا DocType: Purchase Invoice,Mobile No,رقم الجوال DocType: Payment Tool,Make Journal Entry,جعل إدخال دفتر اليومية DocType: Leave Allocation,New Leaves Allocated,الجديد يترك المخصصة -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,بيانات المشروع من الحكمة ليست متاحة لل اقتباس +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,بيانات المشروع من الحكمة ليست متاحة لل اقتباس DocType: Project,Expected End Date,تاريخ الإنتهاء المتوقع DocType: Appraisal Template,Appraisal Template Title,تقييم قالب عنوان apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,تجاري @@ -2781,6 +2786,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,س apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,الرجاء تحديد DocType: Offer Letter,Awaiting Response,في انتظار الرد apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,فوق +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,وقد وصفت وقت دخول DocType: Salary Slip,Earning & Deduction,وكسب الخصم apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,الحساب {0} لا يمكن أن يكون مجموعة apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,اختياري . سيتم استخدام هذا الإعداد لتصفية في المعاملات المختلفة. @@ -2851,14 +2857,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,تم حذف جميع المعاملات المتعلقة بهذه الشركة! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,كما في تاريخ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,امتحان -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,مستودع الافتراضي هو إلزامي بالنسبة لمخزون السلعة . +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,مستودع الافتراضي هو إلزامي بالنسبة لمخزون السلعة . apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},دفع المرتبات لشهر {0} و السنة {1} DocType: Stock Settings,Auto insert Price List rate if missing,إدراج السيارات أسعار قائمة الأسعار إذا مفقود apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,إجمالي المبلغ المدفوع ,Transferred Qty,نقل الكمية apps/erpnext/erpnext/config/learn.py +11,Navigating,التنقل apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,تخطيط -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,جعل وقت دخول الدفعة +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,جعل وقت دخول الدفعة apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,نشر DocType: Project,Total Billing Amount (via Time Logs),المبلغ الكلي الفواتير (عبر الزمن سجلات) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,نبيع هذه القطعة @@ -2866,7 +2872,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,وينبغي أن تكون كمية أكبر من 0 DocType: Journal Entry,Cash Entry,الدخول النقدية DocType: Sales Partner,Contact Desc,الاتصال التفاصيل -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.",نوع من الأوراق مثل غيرها، عارضة المرضى +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.",نوع من الأوراق مثل غيرها، عارضة المرضى DocType: Email Digest,Send regular summary reports via Email.,إرسال تقارير موجزة منتظمة عبر البريد الإلكتروني. DocType: Brand,Item Manager,مدير البند DocType: Cost Center,Add rows to set annual budgets on Accounts.,إضافة صفوف لوضع الميزانيات السنوية على الحسابات. @@ -2881,7 +2887,7 @@ DocType: GL Entry,Party Type,نوع الحزب apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,المواد الخام لا يمكن أن يكون نفس البند الرئيسي DocType: Item Attribute Value,Abbreviation,اسم مختصر apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,لا أوثرويزيد منذ {0} يتجاوز حدود -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,قالب الراتب الرئيسي. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,قالب الراتب الرئيسي. DocType: Leave Type,Max Days Leave Allowed,اترك أيام كحد أقصى مسموح apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,مجموعة القاعدة الضريبية لعربة التسوق DocType: Payment Tool,Set Matching Amounts,ضبط المبالغ مطابقة @@ -2894,7 +2900,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,اقت DocType: Stock Settings,Role Allowed to edit frozen stock,دور الأليفة لتحرير الأسهم المجمدة ,Territory Target Variance Item Group-Wise,الأراضي المستهدفة الفرق البند المجموعة الحكيم apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,جميع مجموعات العملاء -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} إلزامي. ربما أنه لم يتم إنشاء سجل سعر صرف العملة ل{1} إلى {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} إلزامي. ربما أنه لم يتم إنشاء سجل سعر صرف العملة ل{1} إلى {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,قالب الضرائب إلزامي. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,الحساب {0}: حسابه الرئيسي {1} غير موجود DocType: Purchase Invoice Item,Price List Rate (Company Currency),قائمة الأسعار معدل (عملة الشركة) @@ -2914,8 +2920,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,الحكيم البند ,Item-wise Price List Rate,البند الحكيمة قائمة الأسعار قيم apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,اقتباس المورد DocType: Quotation,In Words will be visible once you save the Quotation.,وبعبارة تكون مرئية بمجرد حفظ اقتباس. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} لم يتوقف -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},الباركود {0} مستخدم بالفعل في الصنف {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} لم يتوقف +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},الباركود {0} مستخدم بالفعل في الصنف {1} DocType: Lead,Add to calendar on this date,إضافة إلى التقويم في هذا التاريخ apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,قواعد لإضافة تكاليف الشحن. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,الأحداث القادمة @@ -2942,8 +2948,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,ا apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,واحدة على الاقل مستودع إلزامي DocType: Serial No,Out of Warranty,لا تغطيه الضمان DocType: BOM Replace Tool,Replace,استبدل -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} مقابل فاتورة المبيعات {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,الرجاء إدخال حدة القياس الافتراضية +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} مقابل فاتورة المبيعات {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,الرجاء إدخال حدة القياس الافتراضية DocType: Purchase Invoice Item,Project Name,اسم المشروع DocType: Supplier,Mention if non-standard receivable account,أذكر إذا غير القياسية حساب المستحق DocType: Journal Entry Account,If Income or Expense,إذا دخل أو مصروف @@ -2968,7 +2974,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,السنة المالية: {0} لا موجود DocType: Currency Exchange,To Currency,إلى العملات DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,تسمح للمستخدمين التالية للموافقة على طلبات الحصول على إجازة أيام فترة. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,أنواع المطالبة حساب. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,أنواع المطالبة حساب. DocType: Item,Taxes,الضرائب apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,دفعت ولم يتم تسليمها DocType: Project,Default Cost Center,افتراضي مركز التكلفة @@ -2998,7 +3004,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},الصف # {0}: المسلسل لا {1} لا يتطابق مع {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,أجازة عارضة DocType: Batch,Batch ID,دفعة ID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},ملاحظة : {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},ملاحظة : {0} ,Delivery Note Trends,ملاحظة اتجاهات التسليم apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,ملخص هذا الأسبوع apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} يجب أن يكون الصنف مشترى أو متعاقد من الباطن في الصف {1} @@ -3038,6 +3044,7 @@ DocType: Project Task,Pending Review,في انتظار المراجعة apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,انقر هنا لدفع DocType: Task,Total Expense Claim (via Expense Claim),مجموع المطالبة المصاريف (عبر مطالبات مصاريف) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,معرف العملاء +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,علامة غائب apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,إلى الوقت يجب أن تكون أكبر من من الوقت DocType: Journal Entry Account,Exchange Rate,سعر الصرف apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,ترتيب المبيعات {0} لم تقدم @@ -3064,7 +3071,7 @@ apps/erpnext/erpnext/utilities/doctype/address_template/address_template.py +15, apps/erpnext/erpnext/accounts/doctype/account/account.py +113,"Account balance already in Debit, you are not allowed to set 'Balance Must Be' as 'Credit'","رصيد حساب بالفعل في الخصم، لا يسمح لك تعيين ""الرصيد يجب أن يكون 'ك' الائتمان '" apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +76,Quality Management,إدارة الجودة DocType: Production Planning Tool,Filter based on customer,تصفية على أساس العملاء -DocType: Payment Tool Detail,Against Voucher No,ضد قسيمة لا +DocType: Payment Tool Detail,Against Voucher No,مقابل رقم قسيمة apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +47,Please enter quantity for Item {0},الرجاء إدخال كمية القطعة ل {0} DocType: Employee External Work History,Employee External Work History,التاريخ الموظف العمل الخارجي DocType: Tax Rule,Purchase,شراء @@ -3085,7 +3092,7 @@ DocType: Item Group,Default Expense Account,الافتراضي نفقات الح DocType: Employee,Notice (days),إشعار (أيام ) DocType: Tax Rule,Sales Tax Template,قالب ضريبة المبيعات DocType: Employee,Encashment Date,تاريخ التحصيل -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry",مقابل قسيمة النوع يجب أن يكون واحدا من طلب شراء، شراء الفاتورة أو إدخال دفتر اليومية +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry",مقابل قسيمة النوع يجب أن يكون واحدا من طلب شراء، شراء الفاتورة أو إدخال دفتر اليومية DocType: Account,Stock Adjustment,الأسهم التكيف apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},موجود آخر الافتراضي التكلفة لنوع النشاط - {0} DocType: Production Order,Planned Operating Cost,المخطط تكاليف التشغيل @@ -3139,6 +3146,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,شطب الدخول DocType: BOM,Rate Of Materials Based On,معدل المواد التي تقوم على apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Analtyics الدعم +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,الغاءالكل apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},شركة مفقود في المستودعات {0} DocType: POS Profile,Terms and Conditions,الشروط والأحكام apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},إلى التسجيل يجب أن يكون ضمن السنة المالية. على افتراض إلى تاريخ = {0} @@ -3160,7 +3168,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","لتعيين هذه السنة المالية كما الافتراضي، انقر على ' تعيين كافتراضي """ apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),إعداد ملقم واردة ل دعم البريد الإلكتروني معرف . (على سبيل المثال support@example.com ) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,نقص الكمية -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,البديل البند {0} موجود مع نفس الصفات +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,البديل البند {0} موجود مع نفس الصفات DocType: Salary Slip,Salary Slip,إيصال الراتب apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,' إلى تاريخ ' مطلوب DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.",.إنشاء التعبئة زلات لحزم ليتم تسليمها. المستخدمة لإخطار رقم الحزمة، محتويات الحزمة وزنها. @@ -3208,7 +3216,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,مشا DocType: Item Attribute Value,Attribute Value,السمة القيمة apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}",يجب أن يكون البريد الإلكتروني معرف فريد ، موجود بالفعل ل {0} ,Itemwise Recommended Reorder Level,يوصى به Itemwise إعادة ترتيب مستوى -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,الرجاء اختيار {0} الأولى +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,الرجاء اختيار {0} الأولى DocType: Features Setup,To get Item Group in details table,للحصول على تفاصيل المجموعة في الجدول تفاصيل apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,دفعة {0} من البند {1} قد انتهت صلاحيتها. DocType: Sales Invoice,Commission,عمولة @@ -3263,7 +3271,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,الحصول على قسائم معلقة DocType: Warranty Claim,Resolved By,حلها عن طريق DocType: Appraisal,Start Date,تاريخ البدء -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,تخصيص أجازات لفترة . +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,تخصيص أجازات لفترة . apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,الشيكات والودائع مسح غير صحيح apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,انقر هنا للتحقق من apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,الحساب {0}: لا يمكنك جعله حساباً رئيسياً لنفسه @@ -3283,7 +3291,7 @@ DocType: Employee,Educational Qualification,المؤهلات العلمية DocType: Workstation,Operating Costs,تكاليف التشغيل DocType: Employee Leave Approver,Employee Leave Approver,الموافق علي اجازة الموظف apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} تمت إضافة بنجاح إلى قائمة النشرة الإخبارية لدينا. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},صف {0}: إدخال إعادة ترتيب موجود بالفعل لهذا المستودع {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},صف {0}: إدخال إعادة ترتيب موجود بالفعل لهذا المستودع {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.",لا يمكن ان تعلن بانها فقدت ، لأن أحرز اقتباس . DocType: Purchase Taxes and Charges Template,Purchase Master Manager,مدير ماستر شراء apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,إنتاج النظام {0} يجب أن تقدم @@ -3307,7 +3315,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,{0} سبق أن قدمت فاتورة المبيعات apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,تاريخ الانتهاء DocType: Purchase Invoice Item,Amount (Company Currency),المبلغ (عملة الشركة) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,وحدة المؤسسة ( قسم) الرئيسي. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,وحدة المؤسسة ( قسم) الرئيسي. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,الرجاء إدخال غ المحمول صالحة DocType: Budget Detail,Budget Detail,تفاصيل الميزانية apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,من فضلك ادخل الرسالة قبل إرسالها @@ -3323,13 +3331,13 @@ DocType: Purchase Receipt Item,Received and Accepted,تلقت ومقبول ,Serial No Service Contract Expiry,مسلسل العقد لا انتهاء الاشتراك خدمة DocType: Item,Unit of Measure Conversion,وحدة القياس التحويل apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,لا يمكن تغيير موظف -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,لا يمكنك الائتمان والخصم نفس الحساب في نفس الوقت +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,لا يمكنك الائتمان والخصم نفس الحساب في نفس الوقت DocType: Naming Series,Help HTML,مساعدة HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},يجب أن يكون مجموع الترجيح تعيين 100 ٪ . فمن {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},اتاحة لأكثر من {0} للصنف {1} DocType: Address,Name of person or organization that this address belongs to.,اسم الشخص أو المنظمة التي ينتمي إلى هذا العنوان. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,الموردون -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,لا يمكن تعيين كما فقدت كما يرصد ترتيب المبيعات . +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,لا يمكن تعيين كما فقدت كما يرصد ترتيب المبيعات . apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,"آخر هيكل الراتب {0} نشط للموظف {1}. يرجى التأكد مكانتها ""غير فعال"" للمتابعة." DocType: Purchase Invoice,Contact,اتصل apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,مستلم من @@ -3339,11 +3347,11 @@ DocType: Item,Has Serial No,ورقم المسلسل DocType: Employee,Date of Issue,تاريخ الإصدار apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0} من {0} ب {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},الصف # {0}: تعيين مورد للالبند {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,الموقع صورة {0} تعلق على البند {1} لا يمكن العثور +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,الموقع صورة {0} تعلق على البند {1} لا يمكن العثور DocType: Issue,Content Type,نوع المحتوى apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,الكمبيوتر DocType: Item,List this Item in multiple groups on the website.,قائمة هذا البند في مجموعات متعددة على شبكة الانترنت. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,يرجى التحقق من خيار العملات المتعددة للسماح حسابات مع عملة أخرى +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,يرجى التحقق من خيار العملات المتعددة للسماح حسابات مع عملة أخرى apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,البند: {0} غير موجود في النظام apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,لا يحق لك تعيين القيمة المجمدة DocType: Payment Reconciliation,Get Unreconciled Entries,الحصول على مدخلات لم تتم تسويتها @@ -3353,14 +3361,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,مجال ع DocType: Delivery Note,To Warehouse,لمستودع apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},تم إدخال الحساب {0} أكثر من مرة للعام المالي {1} ,Average Commission Rate,متوسط العمولة -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,"""لهُ رقم تسلسل"" لا يمكن ان يكون ""نعم"" لبند غير قابل للتخزين" +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,"""لهُ رقم تسلسل"" لا يمكن ان يكون ""نعم"" لبند غير قابل للتخزين" apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,لا يمكن أن ىكون تاريخ الحضور تاريخ مستقبلي DocType: Pricing Rule,Pricing Rule Help,تعليمات التسعير القاعدة DocType: Purchase Taxes and Charges,Account Head,رئيس حساب apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,تحديث تكاليف إضافية لحساب تكلفة هبطت من البنود apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,كهربائي DocType: Stock Entry,Total Value Difference (Out - In),إجمالي قيمة الفرق (خارج - في) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,الصف {0}: سعر صرف إلزامي +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,الصف {0}: سعر صرف إلزامي apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},هوية المستخدم لم يتم تعيين موظف ل {0} DocType: Stock Entry,Default Source Warehouse,المصدر الافتراضي مستودع DocType: Item,Customer Code,قانون العملاء @@ -3379,15 +3387,15 @@ DocType: Notification Control,Sales Invoice Message,فاتورة مبيعات ر apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,إغلاق حساب {0} يجب أن يكون من نوع المسؤولية / حقوق المساهمين DocType: Authorization Rule,Based On,وبناء على DocType: Sales Order Item,Ordered Qty,أمرت الكمية -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,البند هو تعطيل {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,البند هو تعطيل {0} DocType: Stock Settings,Stock Frozen Upto,الأسهم المجمدة لغاية apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},فترة من وفترة لمواعيد إلزامية لالمتكررة {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,مشروع النشاط / المهمة. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,إنشاء زلات الراتب +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,إنشاء زلات الراتب apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}",يجب أن يتم التحقق الشراء، إذا تم تحديد مطبق للك {0} apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,يجب أن يكون الخصم أقل من 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),شطب المبلغ (شركة العملات) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,الصف # {0}: الرجاء تعيين كمية إعادة الطلب +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,الصف # {0}: الرجاء تعيين كمية إعادة الطلب DocType: Landed Cost Voucher,Landed Cost Voucher,هبطت التكلفة قسيمة apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},الرجاء تعيين {0} DocType: Purchase Invoice,Repeat on Day of Month,تكرار في يوم من شهر @@ -3440,7 +3448,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,افتراضي العمل في مستودع التقدم apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,الإعدادات الافتراضية ل معاملات المحاسبية. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,التاريخ المتوقع لا يمكن أن يكون قبل تاريخ طلب المواد -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,البند {0} يجب أن يكون عنصر المبيعات +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,البند {0} يجب أن يكون عنصر المبيعات DocType: Naming Series,Update Series Number,تحديث الرقم المتسلسل DocType: Account,Equity,إنصاف DocType: Sales Order,Printing Details,تفاصيل الطباعة @@ -3492,7 +3500,7 @@ DocType: Task,Review Date,مراجعة تاريخ DocType: Purchase Invoice,Advance Payments,دفعات مقدمة DocType: Purchase Taxes and Charges,On Net Total,على إجمالي صافي apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,مستودع الهدف في الصف {0} يجب أن يكون نفس ترتيب الإنتاج -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,لا إذن لاستخدام أداة الدفع +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,لا إذن لاستخدام أداة الدفع apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,"""عناويين الإيميل للتنبيه"" غير محددة للمدخلات المتكررة %s" apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,لا يمكن تغيير العملة بعد إجراء إدخالات باستخدام بعض العملات الأخرى DocType: Company,Round Off Account,جولة قبالة حساب @@ -3508,14 +3516,14 @@ DocType: Bank Reconciliation Detail,Voucher ID,قسيمة ID apps/erpnext/erpnext/setup/doctype/territory/territory.js +14,This is a root territory and cannot be edited.,هذا هو الجذر الأرض والتي لا يمكن تحريرها. DocType: Packing Slip,Gross Weight UOM,الوزن الإجمالي UOM DocType: Email Digest,Receivables / Payables,الذمم المدينة / الدائنة -DocType: Delivery Note Item,Against Sales Invoice,ضد فاتورة المبيعات +DocType: Delivery Note Item,Against Sales Invoice,مقابل فاتورة المبيعات apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +468,Credit Account,حساب الائتمان DocType: Landed Cost Item,Landed Cost Item,هبطت تكلفة السلعة apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zero values,إظهار القيم الصفر DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,كمية البند تم الحصول عليها بعد تصنيع / إعادة التعبئة من كميات معينة من المواد الخام DocType: Payment Reconciliation,Receivable / Payable Account,القبض / حساب الدائنة DocType: Delivery Note Item,Against Sales Order Item,مقابل عنصر أمر المبيعات -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},يرجى تحديد قيمة السمة للسمة {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},يرجى تحديد قيمة السمة للسمة {0} DocType: Item,Default Warehouse,النماذج الافتراضية DocType: Task,Actual End Date (via Time Logs),الفعلي تاريخ الانتهاء (عبر الزمن سجلات) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},الميزانية لا يمكن تعيين ضد المجموعة حساب {0} @@ -3540,10 +3548,10 @@ DocType: Lead,Blog Subscriber,بلوق المشترك apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,إنشاء قواعد لتقييد المعاملات على أساس القيم. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day",إذا تم، المشاركات لا. من أيام عمل وسوف تشمل أيام العطل، وهذا سوف يقلل من قيمة الراتب لكل يوم DocType: Purchase Invoice,Total Advance,إجمالي المقدمة -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,تجهيز كشوف المرتبات +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,تجهيز كشوف المرتبات DocType: Opportunity Item,Basic Rate,قيم الأساسية DocType: GL Entry,Credit Amount,مبلغ الائتمان -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,على النحو المفقودة +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,على النحو المفقودة apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,إيصال دفع ملاحظة DocType: Supplier,Credit Days Based On,يوم الائتمان بناء على DocType: Tax Rule,Tax Rule,القاعدة الضريبية @@ -3573,7 +3581,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,كمية مقبولة apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0} {1} غير موجود apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,رفعت فواتير للعملاء. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,معرف المشروع -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},الصف لا {0}: مبلغ لا يمكن أن يكون أكبر من ريثما المبلغ من النفقات المطالبة {1}. في انتظار المبلغ {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},الصف لا {0}: مبلغ لا يمكن أن يكون أكبر من ريثما المبلغ من النفقات المطالبة {1}. في انتظار المبلغ {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} مشتركين تم اضافتهم DocType: Maintenance Schedule,Schedule,جدول DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""",تحديد الميزانية لهذا مركز التكلفة. لمجموعة العمل الميزانية، انظر "قائمة الشركات" @@ -3634,19 +3642,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS الملف الشخصي DocType: Payment Gateway Account,Payment URL Message,دفع URL رسالة apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.",موسمية لوضع الميزانيات والأهداف الخ -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,صف {0}: دفع مبلغ لا يمكن أن يكون أكبر من المبلغ المستحق +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,صف {0}: دفع مبلغ لا يمكن أن يكون أكبر من المبلغ المستحق apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,عدد غير مدفوع -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,دخول الوقت ليس للفوترة -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants",{0} البند هو قالب، يرجى اختيار واحد من مشتقاته +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,دخول الوقت ليس للفوترة +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants",{0} البند هو قالب، يرجى اختيار واحد من مشتقاته apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,مشتر apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,صافي الأجور لا يمكن أن تكون سلبية -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,الرجاء إدخال ضد قسائم يدويا +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,الرجاء إدخال ضد قسائم يدويا DocType: SMS Settings,Static Parameters,ثابت معلمات DocType: Purchase Order,Advance Paid,مسبقا المدفوعة DocType: Item,Item Tax,البند الضرائب apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,المواد للمورد ل apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,المكوس الفاتورة DocType: Expense Claim,Employees Email Id,موظف البريد الإلكتروني معرف +DocType: Employee Attendance Tool,Marked Attendance,الحضور ملحوظ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,الخصوم الحالية apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,إرسال SMS الشامل لجهات الاتصال الخاصة بك DocType: Purchase Taxes and Charges,Consider Tax or Charge for,النظر في ضريبة أو رسم ل @@ -3669,7 +3678,7 @@ DocType: Item Attribute,Numeric Values,قيم رقمية apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,إرفاق صورة الشعار/العلامة التجارية DocType: Customer,Commission Rate,اللجنة قيم apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,جعل البديل -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,منع مغادرة الطلبات المقدمة من الإدارة. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,منع مغادرة الطلبات المقدمة من الإدارة. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,السلة فارغة DocType: Production Order,Actual Operating Cost,الفعلية تكاليف التشغيل apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,لا يمكن تحرير الجذر. @@ -3688,7 +3697,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,إنشاء المواد طلب تلقائيا إذا وقعت كمية أقل من هذا المستوى ,Item-wise Purchase Register,البند من الحكمة الشراء تسجيل DocType: Batch,Expiry Date,تاريخ انتهاء الصلاحية -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item",لضبط مستوى إعادة الطلب، يجب أن يكون البند لشراء السلعة أو التصنيع البند +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item",لضبط مستوى إعادة الطلب، يجب أن يكون البند لشراء السلعة أو التصنيع البند ,Supplier Addresses and Contacts,العناوين المورد و اتصالات apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,الرجاء اختيار الفئة الأولى apps/erpnext/erpnext/config/projects.py +18,Project master.,المشروع الرئيسي. diff --git a/erpnext/translations/bg.csv b/erpnext/translations/bg.csv index ae4b3e0dd2..ed2d2b06f3 100644 --- a/erpnext/translations/bg.csv +++ b/erpnext/translations/bg.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,Credit през Compan DocType: Delivery Note,Installation Status,Монтаж Status apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Прието + Отхвърлено Количество трябва да бъде равно на Получено количество за {0} DocType: Item,Supply Raw Materials for Purchase,Доставка на суровини за пазаруване -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Точка {0} трябва да бъде покупка Точка +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Точка {0} трябва да бъде покупка Точка DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Изтеглете шаблони, попълнете необходимите данни и се прикрепва на текущото изображение. Всички дати и служител комбинация в избрания период ще дойде в шаблона, със съществуващите записи посещаемост" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,Точка {0} не е активен или е било постигнато в края на жизнения DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Ще бъде актуализиран след фактурата за продажба е подадено. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","За да включват курортна такса в ред {0} в скоростта на т, данъци в редове {1} трябва да се включат и" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Настройки за Module HR +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","За да включват курортна такса в ред {0} в скоростта на т, данъци в редове {1} трябва да се включат и" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Настройки за Module HR DocType: SMS Center,SMS Center,SMS Center DocType: BOM Replace Tool,New BOM,New BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Batch Час Logs за фактуриране. @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,Изберете Общи ус DocType: Production Planning Tool,Sales Orders,Продажби Поръчки DocType: Purchase Taxes and Charges,Valuation,Оценка ,Purchase Order Trends,Поръчката Trends -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Разпределяне на листа за годината. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Разпределяне на листа за годината. DocType: Earning Type,Earning Type,Приходи Type DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Disable планиране на капацитета и за проследяване на времето DocType: Bank Reconciliation,Bank Account,Банкова Сметка @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Позиция Website Specification DocType: Payment Tool,Reference No,Референтен номер по apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Оставете Блокирани -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Точка {0} е достигнал края на своя живот на {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Точка {0} е достигнал края на своя живот на {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Годишен DocType: Stock Reconciliation Item,Stock Reconciliation Item,Склад за помирение Точка DocType: Stock Entry,Sales Invoice No,Продажби Фактура Не @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,Минимална поръчка Количес DocType: Pricing Rule,Supplier Type,Доставчик Type DocType: Item,Publish in Hub,Публикувай в Hub ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Точка {0} е отменен +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Точка {0} е отменен apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Материал Искане DocType: Bank Reconciliation,Update Clearance Date,Актуализация Клирънсът Дата DocType: Item,Purchase Details,Изкупните Детайли @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Отхвърлени Колич DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Невярно наличен в Бележка за доставка, цитата, фактурата за продажба, продажба Поръчка" DocType: SMS Settings,SMS Sender Name,SMS Sender Име DocType: Contact,Is Primary Contact,Е основният Контакт +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Време Log е дозирани за таксуване DocType: Notification Control,Notification Control,Уведомление Control DocType: Lead,Suggestions,Предложения DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,"Задаване на елемент Група-мъдър бюджети на тази територия. Можете също така да включват сезон, като настроите разпределение." apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},"Моля, въведете група майка сметка за склад {0}" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},"Заплащане срещу {0} {1} не може да бъде по-голяма от дължимата сума, {2}" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},"Заплащане срещу {0} {1} не може да бъде по-голяма от дължимата сума, {2}" DocType: Supplier,Address HTML,Адрес HTML DocType: Lead,Mobile No.,Mobile No. DocType: Maintenance Schedule,Generate Schedule,Генериране Schedule @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Синхронизирано С Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Грешна Парола DocType: Item,Variant Of,Вариант на -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,"Точка {0} трябва да е услуга, т" apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',Завършен Количество не може да бъде по-голяма от "Количество за производство" DocType: Period Closing Voucher,Closing Account Head,Закриване на профила Head DocType: Employee,External Work History,Външно работа @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,Newsletter DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Изпращайте по имейл за създаване на автоматична Материал Искане DocType: Journal Entry,Multi Currency,Multi валути DocType: Payment Reconciliation Invoice,Invoice Type,Тип Invoice -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Фактура +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Фактура apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Създаване Данъци apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,"Заплащане вписване е променен, след като го извади. Моля, изтеглете го отново." -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} въведен два пъти в Данък +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} въведен два пъти в Данък apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Резюме за тази седмица и предстоящи дейности DocType: Workstation,Rent Cost,Rent Cost apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,"Моля, изберете месец и година" @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,Важи за Държави DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Всички свързаните с тях области внос като валута, обменен курс, общият внос, внос сбор и т.н. са на разположение в Покупка разписка, доставчик цитата, фактурата за покупка, поръчка и т.н." apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,Тази позиция е шаблон и не може да се използва в сделките. Елемент атрибути ще бъдат копирани в вариантите освен "Не Copy" е зададен apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Общо Поръчка Смятан -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Наименование на служителите (например главен изпълнителен директор, директор и т.н.)." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Наименование на служителите (например главен изпълнителен директор, директор и т.н.)." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,"Моля, въведете "Повторение на Ден на месец поле стойност" DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,"Скоростта, с която Customer валути се превръща в основна валута на клиента" DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Предлага се в BOM, известието за доставка, фактурата за покупка, производство поръчка за покупка, покупка разписка, фактурата за продажба, продажба Поръчка, Фондова вписване, график" @@ -355,7 +355,7 @@ DocType: Workstation,Consumable Cost,Консумативи Cost apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',"{0} ({1}) трябва да има роля в ""Одобряващ напускане""" DocType: Purchase Receipt,Vehicle Date,Камион Дата apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Медицински -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Причина за загубата +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Причина за загубата apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},"Workstation е затворен на следните дати, както на Holiday Списък: {0}" apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Възможности DocType: Employee,Single,Единичен @@ -383,14 +383,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Channel Partner DocType: Account,Old Parent,Old-майка DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,"Персонализирайте уводен текст, който върви като част от този имейл. Всяка сделка има отделен въвеждащ текст." +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Не включват символи (напр. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Продажбите магистър мениджъра apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Глобални настройки за всички производствени процеси. DocType: Accounts Settings,Accounts Frozen Upto,Замразени Сметки до DocType: SMS Log,Sent On,Изпратено на -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Умение {0} избрани няколко пъти в атрибути на маса +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Умение {0} избрани няколко пъти в атрибути на маса DocType: HR Settings,Employee record is created using selected field. ,Запис на служителите е създаден с помощта на избран област. DocType: Sales Order,Not Applicable,Не Е Приложимо -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Holiday майстор. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Holiday майстор. DocType: Material Request Item,Required Date,Задължително Дата DocType: Delivery Note,Billing Address,Адрес На Плащане apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,"Моля, въведете Код." @@ -426,7 +427,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,"Моля, въведете Warehouse, за които ще бъдат повдигнати Материал Искане" DocType: Production Order,Additional Operating Cost,Допълнителна експлоатационни разходи apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Козметика -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","За да се слеят, следните свойства трябва да са едни и същи и за двете позиции" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","За да се слеят, следните свойства трябва да са едни и същи и за двете позиции" DocType: Shipping Rule,Net Weight,Нето Тегло DocType: Employee,Emergency Phone,Телефон за спешни ,Serial No Warranty Expiry,Пореден № Warranty Изтичане @@ -481,17 +482,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Billing и Delivery Status apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Повторете клиенти DocType: Leave Control Panel,Allocate,Разпределяйте -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Продажбите Return +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Продажбите Return DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Изберете Продажби Поръчки от която искате да създадете производствени поръчки. DocType: Item,Delivered by Supplier (Drop Ship),Доставени от доставчик (Drop Ship) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Компоненти заплата. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Компоненти заплата. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,База данни за потенциални клиенти. DocType: Authorization Rule,Customer or Item,Customer или т apps/erpnext/erpnext/config/crm.py +17,Customer database.,Клиентска база данни. DocType: Quotation,Quotation To,Офертата до DocType: Lead,Middle Income,Среден доход apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Откриване (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Default мерната единица за т {0} не може да се променя директно, защото вече сте направили някаква сделка (и) с друга мерна единица. Вие ще трябва да се създаде нова т да използвате различен Default мерна единица." +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Default мерната единица за т {0} не може да се променя директно, защото вече сте направили някаква сделка (и) с друга мерна единица. Вие ще трябва да се създаде нова т да използвате различен Default мерна единица." apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Отпусната сума не може да бъде отрицателна DocType: Purchase Order Item,Billed Amt,Таксуваната Amt DocType: Warehouse,A logical Warehouse against which stock entries are made.,"Логически Склад, за които са направени стоковите разписки." @@ -510,14 +511,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Продажби данъци и DocType: Employee,Organization Profile,Организация на профил apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,Моля настройка номериране серия за организиране и обслужване чрез Setup> номерационен Series DocType: Employee,Reason for Resignation,Причина за Оставка -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Шаблон за атестирането. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Шаблон за атестирането. DocType: Payment Reconciliation,Invoice/Journal Entry Details,Фактура / вестник влизането информация apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},"{0} ""{1}"" не е във Фискална година {2}" DocType: Buying Settings,Settings for Buying Module,Настройки за закупуване Module apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,"Моля, въведете Покупка Квитанция първия" DocType: Buying Settings,Supplier Naming By,"Доставчик наименуването им," DocType: Activity Type,Default Costing Rate,Default Остойностяване Курсове -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,График за поддръжка +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,График за поддръжка apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Тогава към цените правилник се филтрират базирани на гостите, група клиенти, територия, доставчик, доставчик Type, Кампания, продажба Partner т.н." apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Нетна промяна в Инвентаризация DocType: Employee,Passport Number,Номер на паспорт @@ -556,7 +557,7 @@ DocType: Purchase Invoice,Quarterly,Тримесечно DocType: Selling Settings,Delivery Note Required,Бележка за доставка Задължително DocType: Sales Order Item,Basic Rate (Company Currency),Basic Rate (Company валути) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush суровини въз основа на -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,"Моля, въведете данните т" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,"Моля, въведете данните т" DocType: Purchase Receipt,Other Details,Други детайли DocType: Account,Accounts,Профили apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Маркетинг @@ -569,7 +570,7 @@ DocType: Employee,Provide email id registered in company,Осигуряване DocType: Hub Settings,Seller City,Продавач City DocType: Email Digest,Next email will be sent on:,Следваща ще бъде изпратен имейл на: DocType: Offer Letter Term,Offer Letter Term,Оферта Писмо Term -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Точка има варианти. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Точка има варианти. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Точка {0} не е намерен DocType: Bin,Stock Value,Стойността на акциите apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Tree Type @@ -577,7 +578,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Количество Конс DocType: Serial No,Warranty Expiry Date,Гаранция срок на годност DocType: Material Request Item,Quantity and Warehouse,Количество и Warehouse DocType: Sales Invoice,Commission Rate (%),Курсове на Комисията (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Срещу Ваучер тип трябва да е един от продажби Поръчка, продажба на фактура или вестник Влизане" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Срещу Ваучер тип трябва да е един от продажби Поръчка, продажба на фактура или вестник Влизане" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Космически DocType: Journal Entry,Credit Card Entry,Credit Card Влизане apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Task Относно @@ -645,10 +646,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Отговорност apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Санкционирани сума не може да бъде по-голяма от претенция Сума в Row {0}. DocType: Company,Default Cost of Goods Sold Account,Default Себестойност на продадените стоки Акаунт -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Ценова листа не избран +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Ценова листа не избран DocType: Employee,Family Background,Семейна среда DocType: Process Payroll,Send Email,Изпрати е-мейл -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Внимание: Invalid Attachment {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Внимание: Invalid Attachment {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Няма разрешение DocType: Company,Default Bank Account,Default Bank Account apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","За да филтрирате базирани на партия, изберете страна Напишете първия" @@ -676,7 +677,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,По DocType: Features Setup,"To enable ""Point of Sale"" features",За да се даде възможност на "точка на продажба" функции DocType: Bin,Moving Average Rate,Moving Average Курсове DocType: Production Planning Tool,Select Items,Изберете артикули -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} срещу Сметка {1} от {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} срещу Сметка {1} от {2} DocType: Maintenance Visit,Completion Status,Завършване Status DocType: Sales Invoice Item,Target Warehouse,Target Warehouse DocType: Item,Allow over delivery or receipt upto this percent,Оставя се в продължение на доставка или получаване до запълването този процент @@ -736,7 +737,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Ва apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Не може да се намери време слот за следващия {0} ден за операция {1} DocType: Production Order,Plan material for sub-assemblies,План материал за частите apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} трябва да бъде активен -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,"Моля, изберете вида на документа първо" +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,"Моля, изберете вида на документа първо" apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Иди Cart apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Отменете Материал Посещения {0} преди анулира тази поддръжка посещение DocType: Salary Slip,Leave Encashment Amount,Оставете Инкасо Сума @@ -754,7 +755,7 @@ DocType: Purchase Receipt,Range,Диапазон DocType: Supplier,Default Payable Accounts,По подразбиране Платими сметки apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Служител {0} не е активен или не съществува DocType: Features Setup,Item Barcode,Позиция Barcode -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Позиция Варианти {0} актуализиран +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Позиция Варианти {0} актуализиран DocType: Quality Inspection Reading,Reading 6,Четене 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Фактурата за покупка Advance DocType: Address,Shop,Магазин @@ -777,7 +778,7 @@ DocType: Salary Slip,Total in words,Общо в думи DocType: Material Request Item,Lead Time Date,Lead Time Дата apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,е задължително. Може би не е създаден запис на полето за обмен на валута за apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},"Row # {0}: Моля, посочете Пореден № за позиция {1}" -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","За 'Продукт Пакетни ", склад, сериен номер и партидният няма да се счита от" Опаковка Списък "масата. Ако Warehouse и партиден № са едни и същи за всички опаковъчни артикули за т всеки "Продукт Bundle", тези стойности могат да бъдат вписани в основния таблицата позиция, стойностите ще се копират в "Опаковка Списък" маса." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","За 'Продукт Пакетни ", склад, сериен номер и партидният няма да се счита от" Опаковка Списък "масата. Ако Warehouse и партиден № са едни и същи за всички опаковъчни артикули за т всеки "Продукт Bundle", тези стойности могат да бъдат вписани в основния таблицата позиция, стойностите ще се копират в "Опаковка Списък" маса." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Пратки към клиенти DocType: Purchase Invoice Item,Purchase Order Item,Поръчка за покупка Точка apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Непряко подоходно @@ -798,6 +799,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Изберете Payroll apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Отидете на подходящата група (обикновено Прилагане на фондове> Текущи активи> Банкови сметки и да създадете нов акаунт (като кликнете върху Добавяне на детето) от тип "Bank" DocType: Workstation,Electricity Cost,Ток Cost DocType: HR Settings,Don't send Employee Birthday Reminders,Не изпращайте Employee напомняне за рождени дни +,Employee Holiday Attendance,Служител Holiday Присъствие DocType: Opportunity,Walk In,Влизам apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Сток влизания DocType: Item,Inspection Criteria,Критериите за инспекция @@ -820,7 +822,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options, DocType: Journal Entry Account,Expense Claim,Expense претенция apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Количество за {0} DocType: Leave Application,Leave Application,Оставете Application -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Оставете Tool Разпределение +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Оставете Tool Разпределение DocType: Leave Block List,Leave Block List Dates,Оставете Block Списък Дати DocType: Company,If Monthly Budget Exceeded (for expense account),Ако Месечен Бюджет Превишена (за сметка сметка) DocType: Workstation,Net Hour Rate,Net Hour Курсове @@ -830,7 +832,7 @@ DocType: Packing Slip Item,Packing Slip Item,"Приемо-предавател DocType: POS Profile,Cash/Bank Account,Cash / Bank Account apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Премахнати артикули с никаква промяна в количеството или стойността. DocType: Delivery Note,Delivery To,Доставка до -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Умение маса е задължително +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Умение маса е задължително DocType: Production Planning Tool,Get Sales Orders,Вземи Продажби Поръчки apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} не може да бъде отрицателна apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Отстъпка @@ -894,7 +896,7 @@ DocType: SMS Center,Total Characters,Общо Герои apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},Моля изберете BOM BOM в полето за позиция {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,Подробности C-Form Invoice DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Заплащане помирение Invoice -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Принос% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Принос% DocType: Item,website page link,Сайт Страница връзка DocType: Company,Company registration numbers for your reference. Tax numbers etc.,"Регистрационен номер на дружеството, за ваше сведение. Данъчни номера и т.н." DocType: Sales Partner,Distributor,Разпределител @@ -936,10 +938,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,Мерна единица р DocType: Stock Settings,Default Item Group,По подразбиране Елемент Group apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Доставчик на база данни. DocType: Account,Balance Sheet,Баланс -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Разходен център за позиция с Код " +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Разходен център за позиция с Код " DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,"Вашият търговец ще получите напомняне на тази дата, за да се свърже с клиента" apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Допълнителни сметки могат да бъдат направени по групи, но записи могат да бъдат направени по отношение на не-групи" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Данъчни и други облекчения за заплати. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Данъчни и други облекчения за заплати. DocType: Lead,Lead,Lead DocType: Email Digest,Payables,Задължения DocType: Account,Warehouse,Warehouse @@ -956,10 +958,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Неизравне DocType: Global Defaults,Current Fiscal Year,Текущата фискална година DocType: Global Defaults,Disable Rounded Total,Забранете Rounded Общо DocType: Lead,Call,Повикване -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,"Записи" не могат да бъдат празни +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,"Записи" не могат да бъдат празни apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Duplicate ред {0} със същия {1} ,Trial Balance,Оборотна ведомост -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Създаване Служители +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Създаване Служители apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid """,Grid " apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,Моля изберете префикс първа apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Проучване @@ -968,7 +970,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,User ID apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Виж Ledger apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Най-ранната -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Артикул Group съществува със същото име, моля да промените името на елемент или преименувате група т" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Артикул Group съществува със същото име, моля да промените името на елемент или преименувате група т" DocType: Production Order,Manufacture against Sales Order,Производство срещу Продажби Поръчка apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Останалата част от света apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,Продуктът {0} не може да има Batch @@ -993,7 +995,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Отхвърлени Warehouse DocType: GL Entry,Against Voucher,Срещу ваучер DocType: Item,Default Buying Cost Center,Default Изкупуването Cost Center apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","За да получите най-доброто от ERPNext, ние ви препоръчваме да отнеме известно време, и да гледате тези помощни видеоклипове." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,"Точка {0} трябва да продава, т" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,"Точка {0} трябва да продава, т" apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,да се DocType: Item,Lead Time in days,Lead Time в дни ,Accounts Payable Summary,Задължения Резюме @@ -1019,7 +1021,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Земеделие apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Вашите продукти или услуги DocType: Mode of Payment,Mode of Payment,Начин на плащане -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Сайт на снимката трябва да бъде държавна файл или уеб сайт URL +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Сайт на снимката трябва да бъде държавна файл или уеб сайт URL apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,Това е главната позиция група и не може да се редактира. DocType: Journal Entry Account,Purchase Order,Поръчка DocType: Warehouse,Warehouse Contact Info,Склад Информация за контакт @@ -1030,7 +1032,7 @@ DocType: Serial No,Serial No Details,Пореден № Детайли DocType: Purchase Invoice Item,Item Tax Rate,Позиция данъчна ставка apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","За {0}, само кредитни сметки могат да бъдат свързани с друг запис дебитна" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Бележка за доставка {0} не е подадена -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Точка {0} трябва да бъде подизпълнители Точка +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Точка {0} трябва да бъде подизпълнители Точка apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Капиталови УРЕДИ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Ценообразуване правило е първият избран на базата на "Нанесете върху" област, която може да бъде т, т Group или търговска марка." DocType: Hub Settings,Seller Website,Продавач Website @@ -1039,7 +1041,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Гол DocType: Sales Invoice Item,Edit Description,Edit Описание apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Очаквана дата на доставка е по-малка от планираното Начална дата. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,За доставчик +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,За доставчик DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Задаване типа на профила ви помага при избора на този профил в сделките. DocType: Purchase Invoice,Grand Total (Company Currency),Grand Total (Company валути) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Общо Outgoing @@ -1091,7 +1093,6 @@ DocType: Authorization Rule,Average Discount,Средна отстъпка DocType: Address,Utilities,Комунални услуги DocType: Purchase Invoice Item,Accounting,Счетоводство DocType: Features Setup,Features Setup,Удобства Setup -DocType: Item,Is Service Item,Дали Service Точка apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Срок за кандидатстване не може да бъде извън отпуск период на разпределение DocType: Activity Cost,Projects,Проекти apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,Моля изберете фискална година @@ -1112,7 +1113,7 @@ DocType: Item,Maintain Stock,Поддържайте Фондова apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Вписване в запасите вече създадени за производствена поръчка apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Нетна промяна в дълготрайни материални активи DocType: Leave Control Panel,Leave blank if considered for all designations,"Оставете празно, ако считат за всички наименования" -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Charge от тип "Край" в ред {0} не могат да бъдат включени в т Курсове +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Charge от тип "Край" в ред {0} не могат да бъдат включени в т Курсове apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,От за дата DocType: Email Digest,For Company,За Company @@ -1121,8 +1122,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Адрес за доставка Име apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Сметкоплан DocType: Material Request,Terms and Conditions Content,Условия Content -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,не може да бъде по-голяма от 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,"Точка {0} не е в наличност, т" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,не може да бъде по-голяма от 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,"Точка {0} не е в наличност, т" DocType: Maintenance Visit,Unscheduled,Нерепаративен DocType: Employee,Owned,Собственост DocType: Salary Slip Deduction,Depends on Leave Without Pay,Зависи от тръгне без Pay @@ -1143,7 +1144,7 @@ Used for Taxes and Charges","Данъчна подробно маса, извл apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Служител не може да докладва пред самия себе си. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Ако сметката е замразено, записи право да ограничават потребителите." DocType: Email Digest,Bank Balance,Bank Balance -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Счетоводство Entry за {0}: {1} може да се направи само в валута: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Счетоводство Entry за {0}: {1} може да се направи само в валута: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Няма активен Структура Заплата намерено за служител {0} и месеца DocType: Job Opening,"Job profile, qualifications required etc.","Профил на Job, необходими квалификации и т.н." DocType: Journal Entry Account,Account Balance,Баланс на Сметка @@ -1160,7 +1161,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Възлож DocType: Shipping Rule Condition,To Value,За да Value DocType: Supplier,Stock Manager,Склад за мениджъра apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Източник склад е задължително за поредна {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Приемо-предавателен протокол +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Приемо-предавателен протокол apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Офис под наем apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Настройки Setup SMS Gateway apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Внос Неуспех! @@ -1204,7 +1205,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM Подробности DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Допълнителна отстъпка сума (във Валута на Фирмата) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Грешка: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,Моля да създадете нов акаунт от сметкоплан. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Поддръжка посещение +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Поддръжка посещение apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Customer> Customer Group> Territory DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Свободно Batch Количество в склада DocType: Time Log Batch Detail,Time Log Batch Detail,Време Log Batch Подробности @@ -1213,7 +1214,7 @@ DocType: Leave Block List,Block Holidays on important days.,Блок Holidays п ,Accounts Receivable Summary,Вземания Резюме apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,"Моля, задайте поле ID на потребителя в рекордно Employee да зададете Role Employee" DocType: UOM,UOM Name,Мерна единица Име -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Принос Сума +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Принос Сума DocType: Sales Invoice,Shipping Address,Адрес За Доставка DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,"Този инструмент ви помага да се актуализира, или да определи количеството и остойностяването на склад в системата. Той обикновено се използва за синхронизиране на ценностите на системата и какво всъщност съществува във вашите складове." DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,По думите ще бъде видим след като запазите бележката за доставката. @@ -1254,7 +1255,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,За да проследите предмети с помощта на баркод. Вие ще бъдете в състояние да влезе елементи в Бележка за доставка и фактурата за продажба чрез сканиране на баркод на артикул. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Повторно изпращане на плащане Email DocType: Dependent Task,Dependent Task,Зависим Task -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Коефициент на преобразуване за неизпълнение единица мярка трябва да бъде 1 в ред {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Коефициент на преобразуване за неизпълнение единица мярка трябва да бъде 1 в ред {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Разрешение за типа {0} не може да бъде по-дълъг от {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Опитайте планира операции за Х дни предварително. DocType: HR Settings,Stop Birthday Reminders,Stop напомняне за рождени дни @@ -1264,7 +1265,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Изглед apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Нетна промяна в Cash DocType: Salary Structure Deduction,Salary Structure Deduction,Структура Заплата Приспадане -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Мерна единица {0} е въведен повече от веднъж в реализациите Factor Таблица +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Мерна единица {0} е въведен повече от веднъж в реализациите Factor Таблица apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Вече съществува Payment Request {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Разходите за Издадена артикули apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Количество не трябва да бъде повече от {0} @@ -1293,7 +1294,7 @@ DocType: BOM Item,BOM Item,BOM Точка DocType: Appraisal,For Employee,За Employee apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Row {0}: Advance срещу доставчик трябва да се задължи DocType: Company,Default Values,Стойности по подразбиране -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Row {0}: Сума за плащане не може да бъде отрицателна +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Row {0}: Сума за плащане не може да бъде отрицателна DocType: Expense Claim,Total Amount Reimbursed,Общия размер на възстановените apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Срещу фактура от доставчик {0} от {1} DocType: Customer,Default Price List,Default Ценоразпис @@ -1321,8 +1322,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Г DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Сменете конкретен BOM във всички останали спецификации на материали в които е използван. Той ще замени стария BOM връзката, актуализирайте разходите и регенерира "BOM Explosion ТОЧКА" маса, както на новия BOM" DocType: Shopping Cart Settings,Enable Shopping Cart,Активиране на количката DocType: Employee,Permanent Address,Постоянен Адрес -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,"Точка {0} трябва да е услуга, т." -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Изплатения аванс срещу {0} {1} не може да бъде по-голям \ от Grand Total {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Моля изберете код артикул DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Намаляване на приспадане тръгне без Pay (LWP) @@ -1378,12 +1378,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Основен apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Вариант DocType: Naming Series,Set prefix for numbering series on your transactions,Определете префикс за номериране серия от вашите сделки +DocType: Employee Attendance Tool,Employees HTML,Служители на HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,"Спряно за да не могат да бъдат отменени. Отпуши, за да отмените." -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Default BOM ({0}) трябва да бъде активен за тази позиция или си шаблон +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Default BOM ({0}) трябва да бъде активен за тази позиция или си шаблон DocType: Employee,Leave Encashed?,Оставете осребряват? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Opportunity От поле е задължително DocType: Item,Variants,Варианти -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Направи поръчка +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Направи поръчка DocType: SMS Center,Send To,Изпрати на apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Няма достатъчно отпуск баланс за отпуск Тип {0} DocType: Payment Reconciliation Payment,Allocated amount,Отпусната сума @@ -1483,7 +1484,7 @@ DocType: Sales Person,Name and Employee ID,Име и Employee ID apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,"Падежа, не може да бъде, преди да публикувате Дата" DocType: Website Item Group,Website Item Group,Website т Group apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Мита и такси -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,"Моля, въведете Референтна дата" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,"Моля, въведете Референтна дата" apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Плащане Портал Account не е конфигуриран apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} записи на плажания не може да се филтрира по {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,"Таблица за елемент, който ще бъде показан в Web Site" @@ -1504,7 +1505,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Резолюция Детайли DocType: Quality Inspection Reading,Acceptance Criteria,Критерии За Приемане DocType: Item Attribute,Attribute Name,Име на атрибута -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},"Точка {0} трябва да е продажба или услуга, елемент от {1}" DocType: Item Group,Show In Website,Покажи В Website apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Група DocType: Task,Expected Time (in hours),Очаквано време (в часове) @@ -1536,7 +1536,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Доставка Сума ,Pending Amount,До Сума DocType: Purchase Invoice Item,Conversion Factor,Превръщане Factor DocType: Purchase Order,Delivered,Доставени -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Setup входящия сървър за работни места имейл ID. (Например jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Setup входящия сървър за работни места имейл ID. (Например jobs@example.com) DocType: Purchase Receipt,Vehicle Number,Номер на возилото DocType: Purchase Invoice,The date on which recurring invoice will be stop,"Датата, на която повтарящите фактура ще се спре" apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Общо отпуснати листа {0} не могат да бъдат по-малки от вече одобрените листа {1} за периода @@ -1553,7 +1553,7 @@ DocType: HR Settings,HR Settings,Настройки на човешките ре apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Expense претенция изчаква одобрение. Само за сметка одобряващ да актуализирате състоянието. DocType: Purchase Invoice,Additional Discount Amount,Допълнителна отстъпка сума DocType: Leave Block List Allow,Leave Block List Allow,Оставете Block List Позволете -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Съкращение не може да бъде празно или интервал +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Съкращение не може да бъде празно или интервал apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Група за Non-Group apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Спортен apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Общо Край @@ -1577,7 +1577,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},Фактор мерна единица реализациите се изисква в ред {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Дата Клирънсът не може да бъде преди датата проверка в ред {0} DocType: Salary Slip,Deduction,Дедукция -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Елемент Цена добавя за {0} в Ценовата листа {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Елемент Цена добавя за {0} в Ценовата листа {1} DocType: Address Template,Address Template,Адрес Template apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,"Моля, въведете Id Служител на този търговец" DocType: Territory,Classification of Customers by region,Класификация на клиентите по регион @@ -1594,7 +1594,7 @@ DocType: Employee,Date of Birth,Дата на раждане apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Точка {0} вече е върнал DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** Фискална година ** представлява финансова година. Всички счетоводни записвания и други големи сделки се проследяват срещу ** Фискална година **. DocType: Opportunity,Customer / Lead Address,Клиент / Lead Адрес -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Внимание: Invalid сертификат SSL за закрепване {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Внимание: Invalid сертификат SSL за закрепване {0} DocType: Production Order Operation,Actual Operation Time,Действително време за операцията DocType: Authorization Rule,Applicable To (User),Приложими по отношение на (User) DocType: Purchase Taxes and Charges,Deduct,Приспада @@ -1611,7 +1611,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Split Бележка за доставка в пакети. apps/erpnext/erpnext/hooks.py +69,Shipments,Пратки DocType: Purchase Order Item,To be delivered to customer,За да бъде доставен на клиент -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Време Log Status трябва да бъдат изпратени. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Време Log Status трябва да бъдат изпратени. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,Пореден № {0} не принадлежи на нито една Warehouse apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Row # DocType: Purchase Invoice,In Words (Company Currency),По думите (Company валути) @@ -1628,7 +1628,7 @@ DocType: Leave Application,Total Leave Days,Общо Оставете Days DocType: Email Digest,Note: Email will not be sent to disabled users,Забележка: Email няма да бъдат изпратени на ползвателите с увреждания apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Изберете Company ... DocType: Leave Control Panel,Leave blank if considered for all departments,"Оставете празно, ако считат за всички ведомства" -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Видове наемане на работа (постоянни, договорни, стажант и т.н.)." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Видове наемане на работа (постоянни, договорни, стажант и т.н.)." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} е задължително за {1} DocType: Currency Exchange,From Currency,От Валута apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Моля изберете отпусната сума, Тип фактура и фактура Номер в поне един ред" @@ -1647,7 +1647,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,В Процес DocType: Authorization Rule,Itemwise Discount,Itemwise Отстъпка DocType: Purchase Order Item,Reference Document Type,Референтен Document Type -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} срещу Поръчка за Продажба {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} срещу Поръчка за Продажба {1} DocType: Account,Fixed Asset,Дълготраен актив apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Сериализирани Инвентаризация DocType: Activity Type,Default Billing Rate,Default Billing Курсове @@ -1657,7 +1657,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Продажбите Поръчка за плащане DocType: Expense Claim Detail,Expense Claim Detail,Expense претенция Подробности apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Време Logs създаден: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,Моля изберете правилния акаунт +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,Моля изберете правилния акаунт DocType: Item,Weight UOM,Тегло мерна единица DocType: Employee,Blood Group,Blood Group DocType: Purchase Invoice Item,Page Break,Page Break @@ -1692,7 +1692,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM рекурсия: {0} не може да бъде родител или дете на {2} DocType: Production Order Operation,Completed Qty,Завършен Количество apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","За {0}, само дебитни сметки могат да бъдат свързани с друга кредитна влизане" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Ценоразпис {0} е деактивиран +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Ценоразпис {0} е деактивиран DocType: Manufacturing Settings,Allow Overtime,Оставя Извънредният apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,"{0} серийни номера, необходими за т {1}. Вие сте предоставили {2}." DocType: Stock Reconciliation Item,Current Valuation Rate,Текущата оценка Курсове @@ -1743,7 +1743,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Не apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Case No. не може да бъде 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,Ако имате екип по продажбите и продажбата Partners (партньорите) те могат да бъдат маркирани и поддържа техния принос в дейността на продажбите DocType: Item,Show a slideshow at the top of the page,Покажи на слайдшоу в горната част на страницата -DocType: Item,"Allow in Sales Order of type ""Service""",Оставя в продажбите на поръчката от тип "услуга" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Магазини DocType: Time Log,Projects Manager,Мениджър Проекти DocType: Serial No,Delivery Time,Време За Доставка @@ -1758,6 +1757,7 @@ DocType: Rename Tool,Rename Tool,Преименуване на Tool apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Актуализация Cost DocType: Item Reorder,Item Reorder,Позиция Пренареждане apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Transfer Материал +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Точка {0} трябва да бъде Продажби позиция в {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Посочете операции, оперативни разходи и да даде уникална операция не на вашите операции." DocType: Purchase Invoice,Price List Currency,Ценоразпис на валути DocType: Naming Series,User must always select,Потребителят трябва винаги да изберете @@ -1778,7 +1778,7 @@ DocType: Appraisal,Employee,Employee apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Внос имейл от apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Покани като Потребител DocType: Features Setup,After Sale Installations,Следпродажбени инсталации -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} е напълно таксуван +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} е напълно таксуван DocType: Workstation Working Hour,End Time,End Time apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Стандартни договорни условия за покупко-продажба или покупка. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Група от Ваучер @@ -1804,7 +1804,7 @@ DocType: Upload Attendance,Attendance To Date,Присъствие към дне apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Setup входящия сървър за продажби имейл ID. (Например sales@example.com) DocType: Warranty Claim,Raised By,Повдигнат от DocType: Payment Gateway Account,Payment Account,Разплащателна сметка -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,"Моля, посочете Company, за да продължите" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,"Моля, посочете Company, за да продължите" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Нетна промяна в Вземания apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Компенсаторни Off DocType: Quality Inspection Reading,Accepted,Приет @@ -1816,14 +1816,14 @@ DocType: Shipping Rule,Shipping Rule Label,Доставка Правило Label apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,"Суровини, които не могат да бъдат празни." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Не можа да се актуализира склад, фактура съдържа капка корабоплаването т." DocType: Newsletter,Test,Тест -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Тъй като има съществуващи сделки борсови за тази позиция, \ не можете да промените стойностите на 'има сериен номер "," Има Batch Не "," Трябва ли Фондова т "и" Метод на оценка "" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Quick вестник Влизане apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,"Вие не можете да променяте скоростта, ако BOM споменато agianst всеки елемент" DocType: Employee,Previous Work Experience,Предишен трудов опит DocType: Stock Entry,For Quantity,За Количество apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},"Моля, въведете Планиран Количество за позиция {0} на ред {1}" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} не е подадена +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} не е подадена apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Искания за предмети. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Отделно производство цел ще бъде създаден за всеки завършен добра позиция. DocType: Purchase Invoice,Terms and Conditions1,Условия и Conditions1 @@ -1848,6 +1848,7 @@ DocType: Notification Control,Expense Claim Approved Message,Expense прете DocType: Email Digest,How frequently?,Колко често? DocType: Purchase Receipt,Get Current Stock,Вземи Current Stock apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Дърво на Бил на материали +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Марк Present apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Старт поддръжка дата не може да бъде преди датата на доставка в сериен № {0} DocType: Production Order,Actual End Date,Действителна Крайна дата DocType: Authorization Rule,Applicable To (Role),Приложими по отношение на (Role) @@ -1860,9 +1861,9 @@ DocType: SMS Log,No of Requested SMS,Не на запитаната SMS DocType: Campaign,Campaign-.####,Кампания -. #### apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,Next Steps,Следващи стъпки apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Договор Крайна дата трябва да бъде по-голяма от Дата на Присъединяване -DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,"Трето лице дистрибутор / дилър / комисионер / филиал / търговец, който продава на фирми продукти срещу комисионна." +DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,"Трето лице дистрибутор / дилър / комисионер / афилиат / търговец, който продава на фирми продукти срещу комисионна." DocType: Customer Group,Has Child Node,Има Node Child -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} срещу Поръчка {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} срещу Поръчка {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Въведете статични параметри на URL тук (Напр. Подател = ERPNext, потребителско име = ERPNext, парола = 1234 и т.н.)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} не е в никоя активна фискална година. За повече информация провери {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Това е пример за сайт автоматично генерирано от ERPNext @@ -1890,7 +1891,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Add or Deduct: Whether you want to add or deduct the tax.","Standard данък шаблон, който може да се прилага за всички сделки по закупуване. Този шаблон може да съдържа списък на данъчните глави, а също и други разходни глави като "доставка", "Застраховане", "Работа" и др #### Забележка Данъчната ставка определяте тук ще бъде стандартната данъчна ставка за всички ** т * *. Ако има ** артикули **, които имат различни цени, те трябва да се добавят в ** т Данъчно ** маса в ** т ** капитана. #### Описание на Колони 1. изчисляване на типа: - Това може да бъде по ** Net Общо ** (която е сума от основна сума). - ** На предишния ред Общо / Сума ** (за кумулативни данъци и такси). Ако изберете тази опция, данъкът ще бъде приложен като процент от предходния ред (в данъчната таблицата) сума, или общо. - ** Жилищна ** (както е посочено). 2. Сметка Head: книга сметката по която този данък ще бъде резервирана 3. Cost Center: Ако данъчната / таксата е доход (като корабоплаването) или разходи тя трябва да бъде резервирана срещу разходен център. 4. Описание: Описание на данъка (който ще бъде отпечатан в фактури / кавичките). 5. Оценка: Данъчна ставка. 6. Размер: Сума на таксата. 7. Общо: натрупаното общо до този момент. 8. Въведете Row: Ако въз основа на "Previous Row Total" можете да изберете номера на реда, които ще бъдат взети като база за изчислението (по подразбиране е предходния ред). 9. Помислете данък или такса за: В този раздел можете да посочите, ако данъчната / таксата е само за остойностяване (не е част от общия брой), или само за общата (не добавя стойност към елемента) или и за двете. 10. Добавяне или Приспада: Независимо дали искате да добавите или приспадане на данъка." DocType: Purchase Receipt Item,Recd Quantity,Recd Количество apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Не може да се произвежда повече Точка {0} от продажби Поръчка количество {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Склад за вписване {0} не е подадена +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Склад за вписване {0} не е подадена DocType: Payment Reconciliation,Bank / Cash Account,Bank / Cash Акаунт DocType: Tax Rule,Billing City,Billing City DocType: Global Defaults,Hide Currency Symbol,Скриване на валути Symbol @@ -1916,7 +1917,7 @@ DocType: Salary Structure,Total Earning,Общо Приходи DocType: Purchase Receipt,Time at which materials were received,При която бяха получени материали Time apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Моите адреси DocType: Stock Ledger Entry,Outgoing Rate,Изходящ Курсове -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Браншова организация майстор. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Браншова организация майстор. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,или DocType: Sales Order,Billing Status,Billing Status apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Комунални Разходи @@ -1954,7 +1955,7 @@ DocType: Bin,Reserved Quantity,Включено Количество DocType: Landed Cost Voucher,Purchase Receipt Items,Покупка Квитанция артикули apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Персонализиране Forms DocType: Account,Income Account,Дохода -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Доставка +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Доставка DocType: Stock Reconciliation Item,Current Qty,Current Количество DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",Вижте "Курсове на материали на основата на" в Остойностяване Раздел DocType: Appraisal Goal,Key Responsibility Area,Key Отговорност Area @@ -1966,8 +1967,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,В DocType: Notification Control,Purchase Order Message,Поръчка за покупка на ЛС DocType: Tax Rule,Shipping Country,Доставка Country DocType: Upload Attendance,Upload HTML,Качи HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})",Общо предварително ({0}) срещу Заповед {1} не може да бъде по-голям \ от общия сбор ({2}) DocType: Employee,Relieving Date,Облекчаване Дата apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Ценообразуване правило се прави, за да презапише Ценоразпис / определи отстъпка процент, базиран на някои критерии." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Warehouse може да се променя само чрез фондова Entry / Бележка за доставка / Покупка Разписка @@ -1977,8 +1976,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Да apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Ако избран ценообразуване правило се прави за "Цена", той ще замени ценовата листа. Ценообразуване Правило цена е крайната цена, така че не се колебайте отстъпка трябва да се прилага. Следователно, при сделки, като продажби поръчка за покупка и т.н., то ще бъдат изведени в поле "Оцени", а не поле "Ценоразпис Курсове"." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Track Изводи от Industry Type. DocType: Item Supplier,Item Supplier,Позиция доставчик -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,"Моля, въведете Код, за да получите партиден №" -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},Моля изберете стойност за {0} quotation_to {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,"Моля, въведете Код, за да получите партиден №" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},Моля изберете стойност за {0} quotation_to {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Всички адреси. DocType: Company,Stock Settings,Сток Settings apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Сливането е възможно само ако следните свойства са същите и в двете записи. Дали Group, Root Type, Company" @@ -2001,7 +2000,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Чек Номер DocType: Payment Tool Detail,Payment Tool Detail,Заплащане Tool Подробности ,Sales Browser,Продажбите Browser DocType: Journal Entry,Total Credit,Общ кредит -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Съществува Друг {0} # {1} срещу входната запас {2}: Предупреждение +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Съществува Друг {0} # {1} срещу входната запас {2}: Предупреждение apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Местен apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Кредитите и авансите (активи) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Длъжници @@ -2021,8 +2020,8 @@ DocType: Price List,Price List Master,Ценоразпис магистър DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,"Всички продажби Сделки могат да бъдат маркирани с множество ** продавачи **, така че можете да настроите и да наблюдават цели." ,S.O. No.,SO No. DocType: Production Order Operation,Make Time Log,Направи Time Log -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,"Моля, задайте повторна поръчка количество" -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},"Моля, създайте Customer от Lead {0}" +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,"Моля, задайте повторна поръчка количество" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},"Моля, създайте Customer от Lead {0}" DocType: Price List,Applicable for Countries,Приложимо за Държави apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Компютри apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,Това е корен група клиенти и не може да се редактира. @@ -2058,7 +2057,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Billin DocType: Payment Reconciliation Invoice,Outstanding Amount,Дължимата сума DocType: Project Task,Working,Работната DocType: Stock Ledger Entry,Stock Queue (FIFO),Фондова Queue (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Моля изберете Time Logs. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Моля изберете Time Logs. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} не принадлежи на компания {1} DocType: Account,Round Off,Закръглявам ,Requested Qty,Заявени Количество @@ -2096,7 +2095,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Вземете съответните вписвания apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Счетоводен запис за Складова аличност DocType: Sales Invoice,Sales Team1,Продажбите Team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Точка {0} не съществува +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Точка {0} не съществува DocType: Sales Invoice,Customer Address,Customer Адрес DocType: Payment Request,Recipient and Message,Получател и ЛС DocType: Purchase Invoice,Apply Additional Discount On,Нанесете Допълнителна отстъпка от @@ -2115,7 +2114,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Mute Email apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Храни, напитки и тютюневи" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL или BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Мога само да направи плащане срещу нетаксувано {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Мога само да направи плащане срещу нетаксувано {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Ставка на Комисията не може да бъде по-голяма от 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Минимална Инвентаризация Level DocType: Stock Entry,Subcontract,Подизпълнение @@ -2133,9 +2132,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Software apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Цвят DocType: Maintenance Visit,Scheduled,Планиран apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Моля изберете позиция, където "е Фондова Позиция" е "Не" и "Е-продажба точка" е "Да" и няма друг Bundle продукта" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Общо предварително ({0}) срещу Заповед {1} не може да бъде по-голям от общия сбор ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Изберете месец Distribution да неравномерно разпределяне цели през месеца. DocType: Purchase Invoice Item,Valuation Rate,Оценка Оценка -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Ценоразпис на валута не е избрана +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Ценоразпис на валута не е избрана apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,Позиция Row {0}: Покупка Квитанция {1} не съществува в таблицата по-горе "Покупка Приходи" apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Служител {0} вече е подал молба за {1} {2} между и {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Проект Начална дата @@ -2147,6 +2147,7 @@ DocType: Quality Inspection,Inspection Type,Тип Инспекция apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},Моля изберете {0} DocType: C-Form,C-Form No,C-Form Не DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,Неотбелязана Присъствие apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Изследовател apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,"Моля, запишете бюлетина, преди да изпратите" apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Име или имейл е задължително @@ -2172,7 +2173,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Пот DocType: Payment Gateway,Gateway,Врата apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Доставчик> Доставчик Type apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,"Моля, въведете облекчаване дата." -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,"Оставете само заявления, със статут на "Одобрена" може да бъде подадено" apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Заглавие на Адрес е задължително. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,"Въведете името на кампанията, ако източник на запитване е кампания" @@ -2187,10 +2188,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Приет Склад DocType: Bank Reconciliation Detail,Posting Date,Публикуване Дата DocType: Item,Valuation Method,Метод на оценка apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},"Не може да се намери на валутния курс за {0} {1}, за да" +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Марк половин ден DocType: Sales Invoice,Sales Team,Търговски отдел apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Duplicate влизане DocType: Serial No,Under Warranty,В гаранция -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Грешка] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Грешка] DocType: Sales Order,In Words will be visible once you save the Sales Order.,По думите ще бъде видим след като спаси поръчка за продажба. ,Employee Birthday,Служител Birthday apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Venture Capital @@ -2213,6 +2215,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,Cost Center със съществуващите операции не могат да бъдат превърнати в група DocType: Account,Depreciation,Амортизация apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Доставчик (ци) +DocType: Employee Attendance Tool,Employee Attendance Tool,Служител Присъствие Tool DocType: Supplier,Credit Limit,Кредитен лимит apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Изберете тип сделка DocType: GL Entry,Voucher No,Отрязък № @@ -2239,7 +2242,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Root сметка не може да бъде изтрита ,Is Primary Address,Дали Основен адрес DocType: Production Order,Work-in-Progress Warehouse,Работа в прогрес Warehouse -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Референтен # {0} от {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Референтен # {0} от {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Управление на адреси DocType: Pricing Rule,Item Code,Код DocType: Production Planning Tool,Create Production Orders,Създаване на производствени поръчки @@ -2266,7 +2269,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Bank помирение apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Получаване на актуализации apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Материал Заявка {0} е отменен или спрян apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Добавяне на няколко примерни записи -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Оставете Management +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Оставете Management apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Групата от Профил DocType: Sales Order,Fully Delivered,Напълно Доставени DocType: Lead,Lower Income,По-ниски доходи @@ -2281,6 +2284,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"""От дата"" трябва да е преди ""До дата""" ,Stock Projected Qty,Фондова Прогнозно Количество apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Customer {0} не принадлежи на проекта {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Маркирана Присъствие HTML DocType: Sales Order,Customer's Purchase Order,Поръчката на Клиента DocType: Warranty Claim,From Company,От Company apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Стойност или Количество @@ -2345,6 +2349,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Банков Превод apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,Моля изберете Bank Account DocType: Newsletter,Create and Send Newsletters,Създаване и изпращане Бюлетини +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Провери всичко DocType: Sales Order,Recurring Order,Повтарящо Поръчка DocType: Company,Default Income Account,Account Default подоходно apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Customer Group / Customer @@ -2376,6 +2381,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Върнете Сре DocType: Item,Warranty Period (in days),Гаранционен срок (в дни) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Net Cash от Operations apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,например ДДС +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Присъствие Марк Служител в наливно състояние apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Позиция 4 DocType: Journal Entry Account,Journal Entry Account,Вестник Влизане Акаунт DocType: Shopping Cart Settings,Quotation Series,Цитат Series @@ -2520,14 +2526,14 @@ DocType: Task,Actual Start Date (via Time Logs),Действителна Нач DocType: Stock Reconciliation Item,Before reconciliation,Преди помирение apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},За да {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Данъци и такси Добавен (Company валути) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Позиция Tax Row {0} Трябва да имате предвид тип данък или приход или разход или Дължими +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Позиция Tax Row {0} Трябва да имате предвид тип данък или приход или разход или Дължими DocType: Sales Order,Partly Billed,Частично Обявен DocType: Item,Default BOM,Default BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,"Моля име повторно вид фирма, за да потвърдите" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Общият размер на неизплатените Amt DocType: Time Log Batch,Total Hours,Общо Часа DocType: Journal Entry,Printing Settings,Настройки за печат -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Общ дебит трябва да бъде равна на Общ кредит. Разликата е {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Общ дебит трябва да бъде равна на Общ кредит. Разликата е {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Автомобилен apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,От Бележка за доставка DocType: Time Log,From Time,От време @@ -2573,7 +2579,7 @@ DocType: Purchase Invoice Item,Image View,Вижте изображението DocType: Issue,Opening Time,Откриване на времето apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,"От и до датите, изисквани" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Ценни книжа и стоковите борси -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',"Default мерната единица за Variant '{0}' трябва да бъде същото, както в Template "{1}"" +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',"Default мерната единица за Variant '{0}' трябва да бъде същото, както в Template "{1}"" DocType: Shipping Rule,Calculate Based On,Изчислете основава на DocType: Delivery Note Item,From Warehouse,От Warehouse DocType: Purchase Taxes and Charges,Valuation and Total,Оценка и Total @@ -2595,7 +2601,7 @@ DocType: Leave Application,Follow via Email,Следвайте по имейл DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Данъчен сума след Сума Отстъпка apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Предвид Child съществува за този профил. Не можете да изтриете този профил. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Или целта Количество или целева сума е задължителна -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},Не подразбиране BOM съществува за т {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},Не подразбиране BOM съществува за т {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,Моля изберете Публикуване Дата първа apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Откриване Дата трябва да е преди крайната дата DocType: Leave Control Panel,Carry Forward,Пренасяне @@ -2672,7 +2678,7 @@ DocType: Leave Type,Is Encash,Дали инкасира DocType: Purchase Invoice,Mobile No,Mobile Не DocType: Payment Tool,Make Journal Entry,Направи вестник Влизане DocType: Leave Allocation,New Leaves Allocated,Нови листа Отпуснати -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Project-мъдър данни не е достъпно за оферта +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Project-мъдър данни не е достъпно за оферта DocType: Project,Expected End Date,Очаквано Крайна дата DocType: Appraisal Template,Appraisal Template Title,Оценка Template Title apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Търговски @@ -2720,6 +2726,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,М apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,"Моля, посочете" DocType: Offer Letter,Awaiting Response,Очаква Response apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Горе +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Време Log е Обявен DocType: Salary Slip,Earning & Deduction,Приходи & Приспадане apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Сметка {0} не може да бъде Група apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,"По избор. Тази настройка ще бъде използван, за да филтрирате по различни сделки." @@ -2790,14 +2797,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,"Успешно заличава всички транзакции, свързани с тази компания!" apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Както по Дата apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Изпитание -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,"Default Warehouse е задължително за склад, т." +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,"Default Warehouse е задължително за склад, т." apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Изплащането на заплатите за месец {0} и година {1} DocType: Stock Settings,Auto insert Price List rate if missing,"Auto вложка Ценоразпис ставка, ако липсва" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Общо платената сума ,Transferred Qty,Прехвърлени Количество apps/erpnext/erpnext/config/learn.py +11,Navigating,Навигация apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Планиране -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Направи Time Log Batch +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Направи Time Log Batch apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Издаден DocType: Project,Total Billing Amount (via Time Logs),Общо Billing сума (чрез Time Logs) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Ние продаваме този артикул @@ -2805,7 +2812,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Количество трябва да бъде по-голяма от 0 DocType: Journal Entry,Cash Entry,Cash Влизане DocType: Sales Partner,Contact Desc,Свържи Описание -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Вид на листа като случайни, болни и т.н." +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Вид на листа като случайни, болни и т.н." DocType: Email Digest,Send regular summary reports via Email.,Изпрати редовни обобщени доклади чрез електронна поща. DocType: Brand,Item Manager,Точка на мениджъра DocType: Cost Center,Add rows to set annual budgets on Accounts.,"Добавете редове, за да зададете годишни бюджети по сметки." @@ -2820,7 +2827,7 @@ DocType: GL Entry,Party Type,Party Type apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Суровини не може да бъде същата като основен елемент DocType: Item Attribute Value,Abbreviation,Абревиатура apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Не authroized тъй {0} надхвърля границите -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Заплата шаблон майстор. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Заплата шаблон майстор. DocType: Leave Type,Max Days Leave Allowed,Max Days Оставете любимци apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Определете Tax Правило за количка DocType: Payment Tool,Set Matching Amounts,Задайте съвпадение Суми @@ -2833,7 +2840,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Цит DocType: Stock Settings,Role Allowed to edit frozen stock,Роля за редактиране замразена ,Territory Target Variance Item Group-Wise,Територия Target Вариацията т Group-Wise apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Всички групи клиенти -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} е задължително. Може би запис за обменни курсове на валута не е създаден за {1} {2} да. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} е задължително. Може би запис за обменни курсове на валута не е създаден за {1} {2} да. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Данъчна Template е задължително. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Account {0}: Родителска сметка {1} не съществува DocType: Purchase Invoice Item,Price List Rate (Company Currency),Ценоразпис Rate (Company валути) @@ -2853,8 +2860,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Позиция Wise Tax ,Item-wise Price List Rate,Точка-мъдър Ценоразпис Курсове apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Доставчик оферта DocType: Quotation,In Words will be visible once you save the Quotation.,По думите ще бъде видим след като спаси цитата. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} е спрян -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Barcode {0} вече се използва в т {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} е спрян +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Barcode {0} вече се използва в т {1} DocType: Lead,Add to calendar on this date,Добави в календара на тази дата apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Правила за добавяне на транспортни разходи. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Предстоящи събития @@ -2880,8 +2887,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,St apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Поне един склад е задължително DocType: Serial No,Out of Warranty,Извън гаранция DocType: BOM Replace Tool,Replace,Заменете -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} срещу Фактура за продажба {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,"Моля, въведете подразбиране Мерна единица" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} срещу Фактура за продажба {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,"Моля, въведете подразбиране Мерна единица" DocType: Purchase Invoice Item,Project Name,Име на проекта DocType: Supplier,Mention if non-standard receivable account,"Споменете, ако нестандартно вземане предвид" DocType: Journal Entry Account,If Income or Expense,Ако приход или разход @@ -2906,7 +2913,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Фискална година: {0} не съществува DocType: Currency Exchange,To Currency,За да валути DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Позволете на следните потребители да одобрят Оставете Applications за блокови дни. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Видове разноски иск. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Видове разноски иск. DocType: Item,Taxes,Данъци apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Платени и не се доставят DocType: Project,Default Cost Center,Default Cost Center @@ -2936,7 +2943,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Row # {0}: Пореден № {1} не съвпада с {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Casual отпуск DocType: Batch,Batch ID,Batch ID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Забележка: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Забележка: {0} ,Delivery Note Trends,Бележка за доставка Trends apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Тази Седмица Резюме apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} трябва да бъде Закупен или Подизпълнителен в ред {1} @@ -2973,9 +2980,10 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js DocType: Production Order Operation,Production Order Operation,Производство Поръчка Operation DocType: Pricing Rule,Disable,Правя неспособен DocType: Project Task,Pending Review,До Review -apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,"Кликнете тук, за да плати" +apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,"Кликнете тук, за да платите" DocType: Task,Total Expense Claim (via Expense Claim),Общо разход претенция (чрез Expense претенция) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Id Customer +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Mark Отсъства apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,"На време трябва да бъде по-голяма, отколкото от време" DocType: Journal Entry Account,Exchange Rate,Обменен курс apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Продажбите Поръчка {0} не е подадена @@ -3023,7 +3031,7 @@ DocType: Item Group,Default Expense Account,Default Expense Account DocType: Employee,Notice (days),Известие (дни) DocType: Tax Rule,Sales Tax Template,Данъка върху продажбите Template DocType: Employee,Encashment Date,Инкасо Дата -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Срещу Ваучер тип трябва да е един от поръчка, фактурата за покупка или вестник Влизане" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Срещу Ваучер тип трябва да е един от поръчка, фактурата за покупка или вестник Влизане" DocType: Account,Stock Adjustment,Склад за приспособяване apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Съществува Cost Default активност за вид дейност - {0} DocType: Production Order,Planned Operating Cost,Планиран експлоатационни разходи @@ -3077,6 +3085,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Отпишат Влизане DocType: BOM,Rate Of Materials Based On,Курсове на материали на основата на apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Поддръжка Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Махнете отметката от всичко apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Фирма липсва в складовете {0} DocType: POS Profile,Terms and Conditions,Правила и условия apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},"Към днешна дата трябва да бъде в рамките на фискалната година. Ако приемем, че към днешна дата = {0}" @@ -3098,7 +3107,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","За да зададете тази фискална година, като по подразбиране, щракнете върху "По подразбиране"" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Setup входящия сървър за подкрепа имейл ID. (Например support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Недостиг Количество -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Съществува т вариант {0} със същите атрибути +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Съществува т вариант {0} със същите атрибути DocType: Salary Slip,Salary Slip,Заплата Slip apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,"""До дата"" се изисква" DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Генериране на товарителници за пакети трябва да бъдат доставени. Използва се за уведомяване на пакетите номер, съдържание на пакети и теглото му." @@ -3146,7 +3155,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Виж DocType: Item Attribute Value,Attribute Value,Атрибут Стойност apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","Email ID трябва да бъде уникален, вече съществува за {0}" ,Itemwise Recommended Reorder Level,Itemwise Препоръчано Пренареждане Level -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,Моля изберете {0} първия +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,Моля изберете {0} първия DocType: Features Setup,To get Item Group in details table,За да получите т Group в детайли маса apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Партида {0} на т {1} е изтекъл. DocType: Sales Invoice,Commission,Комисионна @@ -3190,7 +3199,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Получи изключително Ваучери DocType: Warranty Claim,Resolved By,Разрешен от DocType: Appraisal,Start Date,Начална Дата -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Разпределяне на листа за период. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Разпределяне на листа за период. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Чекове Депозити и неправилно изчистени apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,"Кликнете тук, за да се провери" apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Сметка {0}: Може да се назначи себе си за родителска сметка @@ -3210,7 +3219,7 @@ DocType: Employee,Educational Qualification,Образователно-квал DocType: Workstation,Operating Costs,Оперативни разходи DocType: Employee Leave Approver,Employee Leave Approver,Служител Оставете одобряващ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} е успешно добавен в нашия Бюлетин. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Row {0}: Един запис Пренареждане вече съществува за този склад {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Row {0}: Един запис Пренареждане вече съществува за този склад {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Не може да се декларира като изгубена, защото цитата е направено." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Покупка Майстор на мениджъра apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Производство Поръчка {0} трябва да бъде представено @@ -3234,7 +3243,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Фактурата за продажба {0} вече е била подадена apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Дата На Завършване DocType: Purchase Invoice Item,Amount (Company Currency),Сума (Company валути) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Организация единица (отдел) майстор. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Организация единица (отдел) майстор. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Моля въведете валидни мобилни номера DocType: Budget Detail,Budget Detail,Бюджет Подробности apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,"Моля, въведете съобщение, преди да изпратите" @@ -3250,13 +3259,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Получена и при ,Serial No Service Contract Expiry,Пореден № Договор за услуги Изтичане DocType: Item,Unit of Measure Conversion,Мерна единица на реализациите apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Работникът или служителят не може да се променя -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Вие не можете да кредитни и дебитни същия акаунт в същото време +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Вие не можете да кредитни и дебитни същия акаунт в същото време DocType: Naming Series,Help HTML,Помощ HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Общо weightage определен да бъде 100%. Това е {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Помощи за свръх {0} прекоси за позиция {1} DocType: Address,Name of person or organization that this address belongs to.,"Име на лицето или организацията, че този адрес принадлежи." apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Вашите доставчици -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,Не може да се определи като губи като поръчка за продажба е направена. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,Не може да се определи като губи като поръчка за продажба е направена. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,"Друг заплата структура {0} е активен за служител {1}. Моля, направете своя статут "неактивни", за да продължите." DocType: Purchase Invoice,Contact,Контакт apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Получени от @@ -3266,11 +3275,11 @@ DocType: Item,Has Serial No,Има сериен номер DocType: Employee,Date of Issue,Дата на издаване apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: От {0} за {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Row # {0}: Определете доставчик за т {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,"Сайт на снимката {0}, прикрепена към т {1} не може да бъде намерена" +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,"Сайт на снимката {0}, прикрепена към т {1} не може да бъде намерена" DocType: Issue,Content Type,Content Type apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Компютър DocType: Item,List this Item in multiple groups on the website.,Списък този продукт в няколко групи в сайта. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,"Моля, проверете опцията Multi валути да се позволи на сметки в друга валута" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,"Моля, проверете опцията Multi валути да се позволи на сметки в друга валута" apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Позиция: {0} не съществува в системата apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Вие не можете да настроите Frozen стойност DocType: Payment Reconciliation,Get Unreconciled Entries,Вземи Неизравнени влизания @@ -3280,14 +3289,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Какво DocType: Delivery Note,To Warehouse,За да Warehouse apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},"Сметка {0} е вписана повече от веднъж за фискалната година, {1}" ,Average Commission Rate,Средна Комисията Курсове -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'Има сериен номер' не може да бъде 'Да' за нескладируеми стоки +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'Има сериен номер' не може да бъде 'Да' за нескладируеми стоки apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Присъствие не може да бъде маркиран за бъдещи дати DocType: Pricing Rule,Pricing Rule Help,Ценообразуване Правило Помощ DocType: Purchase Taxes and Charges,Account Head,Главна Сметка apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,"Актуализиране на допълнителни разходи, за да се изчисли приземи разходи за предмети" apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Електрически DocType: Stock Entry,Total Value Difference (Out - In),Общо Разлика Value (Out - В) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Row {0}: Валутен курс е задължително +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Row {0}: Валутен курс е задължително apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},User ID не е конфигуриран за Employee {0} DocType: Stock Entry,Default Source Warehouse,Default Източник Warehouse DocType: Item,Customer Code,Код Customer @@ -3306,15 +3315,15 @@ DocType: Notification Control,Sales Invoice Message,Съобщението фа apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Закриване на профила {0} трябва да е от тип Отговорност / Equity DocType: Authorization Rule,Based On,Базиран На DocType: Sales Order Item,Ordered Qty,Поръчано Количество -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Точка {0} е деактивиран +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Точка {0} е деактивиран DocType: Stock Settings,Stock Frozen Upto,Фондова Frozen Upto apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},"Период От и периода, за датите задължителни за повтарящи {0}" apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Дейността на проект / задача. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Генериране на заплатите фишове +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Генериране на заплатите фишове apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Изкупуването трябва да се провери, ако има такива се избира като {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Отстъпка трябва да е по-малко от 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Напиши Off Сума (Company валути) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,"Row # {0}: Моля, задайте повторна поръчка количество" +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,"Row # {0}: Моля, задайте повторна поръчка количество" DocType: Landed Cost Voucher,Landed Cost Voucher,Поземлен Cost Ваучер apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},"Моля, задайте {0}" DocType: Purchase Invoice,Repeat on Day of Month,Повторете в Деня на Месец @@ -3366,7 +3375,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Default Work В Warehouse Progress apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Настройките по подразбиране за счетоводни операции. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Очаквана дата не може да бъде преди Материал Заявка Дата -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Точка {0} трябва да бъде Продажби Точка +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Точка {0} трябва да бъде Продажби Точка DocType: Naming Series,Update Series Number,Актуализация Series Number DocType: Account,Equity,Справедливост DocType: Sales Order,Printing Details,Printing Детайли @@ -3418,7 +3427,7 @@ DocType: Task,Review Date,Преглед Дата DocType: Purchase Invoice,Advance Payments,Авансови плащания DocType: Purchase Taxes and Charges,On Net Total,На Net Общо apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Target склад в ред {0} трябва да е същото като производствена поръчка -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Няма разрешение за ползване Плащане Tool +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Няма разрешение за ползване Плащане Tool apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,"""имейл адреси за известяване"" не е зададен за повтарящи %s" apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,"Валутна не може да се промени, след като записи с помощта на някои друга валута" DocType: Company,Round Off Account,Завършете Акаунт @@ -3441,7 +3450,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Брой на т получен след производството / препакетиране от дадени количества суровини DocType: Payment Reconciliation,Receivable / Payable Account,Вземания / дължими суми Акаунт DocType: Delivery Note Item,Against Sales Order Item,Срещу ред от поръчка за продажба -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},"Моля, посочете Умение Цена атрибут {0}" +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},"Моля, посочете Умение Цена атрибут {0}" DocType: Item,Default Warehouse,Default Warehouse DocType: Task,Actual End Date (via Time Logs),Действителна Крайна дата (чрез Time Logs) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Бюджетът не може да бъде назначен срещу Group Account {0} @@ -3466,10 +3475,10 @@ DocType: Lead,Blog Subscriber,Блог Subscriber apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,"Създаване на правила за ограничаване на сделки, основани на ценности." DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Ако е избрано, Total не. на работните дни ще включва празници, а това ще доведе до намаляване на стойността на Заплата на ден" DocType: Purchase Invoice,Total Advance,Общо Advance -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Обработка на заплати +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Обработка на заплати DocType: Opportunity Item,Basic Rate,Basic Курсове DocType: GL Entry,Credit Amount,Credit Сума -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Задай като Загубени +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Задай като Загубени apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Заплащане Получаване Забележка DocType: Supplier,Credit Days Based On,Кредитните Days въз основа на DocType: Tax Rule,Tax Rule,Данъчна Правило @@ -3499,7 +3508,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Прието Количеств apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} не съществува apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,"Законопроекти, повдигнати на клиентите." apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Id Project -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},"Row Не {0}: сума не може да бъде по-голяма, отколкото До сума срещу Expense претенция {1}. До сума е {2}" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},"Row Не {0}: сума не може да бъде по-голяма, отколкото До сума срещу Expense претенция {1}. До сума е {2}" apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,Добавени {0} абонати DocType: Maintenance Schedule,Schedule,Разписание DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Определете бюджета за тази Cost Center. За да зададете бюджет действия, вижте "Company List"" @@ -3560,19 +3569,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS профил DocType: Payment Gateway Account,Payment URL Message,Заплащане URL Съобщение apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Сезонността за определяне на бюджетите, цели и т.н." -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Row {0}: Начин на плащане сума не може да бъде по-голяма от дължимата сума +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Row {0}: Начин на плащане сума не може да бъде по-голяма от дължимата сума apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Общата сума на неплатените -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Време Влезте не е таксувана -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Точка {0} е шаблон, моля изберете една от неговите варианти" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Време Влезте не е таксувана +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Точка {0} е шаблон, моля изберете една от неговите варианти" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Купувач apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Net заплащането не може да бъде отрицателна -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,"Моля, въведете с документите, ръчно" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,"Моля, въведете с документите, ръчно" DocType: SMS Settings,Static Parameters,Статични параметри DocType: Purchase Order,Advance Paid,Авансово изплатени суми DocType: Item,Item Tax,Позиция Tax apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Материал на доставчик apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Акцизите Invoice DocType: Expense Claim,Employees Email Id,Служители Email Id +DocType: Employee Attendance Tool,Marked Attendance,Маркирана Присъствие apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Текущи задължения apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Изпратете маса SMS към вашите контакти DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Помислете данък или такса за @@ -3595,7 +3605,7 @@ DocType: Item Attribute,Numeric Values,Числови стойности apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Прикрепете Logo DocType: Customer,Commission Rate,Комисията Курсове apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Направи Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Заявленията за отпуск блок на отдел. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Заявленията за отпуск блок на отдел. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Количката е празна DocType: Production Order,Actual Operating Cost,Действителни оперативни разходи apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Root не може да се редактира. @@ -3614,7 +3624,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,"Автоматично създаване Материал искане, ако количеството падне под това ниво" ,Item-wise Purchase Register,Точка-мъдър Покупка Регистрация DocType: Batch,Expiry Date,Срок На Годност -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","За да зададете ниво на повторна поръчка, т трябва да бъде покупка или производство Точка Точка" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","За да зададете ниво на повторна поръчка, т трябва да бъде покупка или производство Точка Точка" ,Supplier Addresses and Contacts,Доставчик Адреси и контакти apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,"Моля, изберете Категория първо" apps/erpnext/erpnext/config/projects.py +18,Project master.,Майстор Project. diff --git a/erpnext/translations/bn.csv b/erpnext/translations/bn.csv index 84fcb7b679..98569267b7 100644 --- a/erpnext/translations/bn.csv +++ b/erpnext/translations/bn.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,কোম্পান DocType: Delivery Note,Installation Status,ইনস্টলেশনের অবস্থা apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Qty পরিত্যক্ত গৃহীত + আইটেম জন্য গৃহীত পরিমাণ সমান হতে হবে {0} DocType: Item,Supply Raw Materials for Purchase,সাপ্লাই কাঁচামালের ক্রয় জন্য -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,আইটেম {0} একটি ক্রয় আইটেমটি হতে হবে +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,আইটেম {0} একটি ক্রয় আইটেমটি হতে হবে DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records",", টেমপ্লেট ডাউনলোড উপযুক্ত তথ্য পূরণ করুন এবং পরিবর্তিত ফাইল সংযুক্ত. আপনার নির্বাচিত সময়ের মধ্যে সব তারিখগুলি এবং কর্মচারী সমন্বয় বিদ্যমান উপস্থিতি রেকর্ড সঙ্গে, টেমপ্লেট আসবে" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,{0} আইটেম সক্রিয় নয় বা জীবনের শেষ হয়েছে পৌঁছেছেন DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,বিক্রয় চালান জমা হয় পরে আপডেট করা হবে. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","আইটেম রেট সারি {0} মধ্যে ট্যাক্স সহ, সারি করের {1} এছাড়াও অন্তর্ভুক্ত করা আবশ্যক" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,এইচআর মডিউল ব্যবহার সংক্রান্ত সেটিংস Comment +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","আইটেম রেট সারি {0} মধ্যে ট্যাক্স সহ, সারি করের {1} এছাড়াও অন্তর্ভুক্ত করা আবশ্যক" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,এইচআর মডিউল ব্যবহার সংক্রান্ত সেটিংস Comment DocType: SMS Center,SMS Center,এসএমএস কেন্দ্র DocType: BOM Replace Tool,New BOM,নতুন BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,ব্যাচ বিলিং জন্য সময় লগসমূহ. @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,নির্বাচন শ DocType: Production Planning Tool,Sales Orders,বিক্রয় আদেশ DocType: Purchase Taxes and Charges,Valuation,মাননির্ণয় ,Purchase Order Trends,অর্ডার প্রবণতা ক্রয় -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,বছরের জন্য পাতার বরাদ্দ. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,বছরের জন্য পাতার বরাদ্দ. DocType: Earning Type,Earning Type,রোজগার ধরন DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,অক্ষম ক্ষমতা পরিকল্পনা এবং সময় ট্র্যাকিং DocType: Bank Reconciliation,Bank Account,ব্যাংক হিসাব @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,আইটেম ওয়েবসাইট স্পেসিফিকেশন DocType: Payment Tool,Reference No,রেফারেন্স কোন apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,ত্যাগ অবরুদ্ধ -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},আইটেম {0} জীবনের তার শেষ পৌঁছেছে {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},আইটেম {0} জীবনের তার শেষ পৌঁছেছে {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,বার্ষিক DocType: Stock Reconciliation Item,Stock Reconciliation Item,শেয়ার রিকনসিলিয়েশন আইটেম DocType: Stock Entry,Sales Invoice No,বিক্রয় চালান কোন @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,নূন্যতম আদেশ Qty DocType: Pricing Rule,Supplier Type,সরবরাহকারী ধরন DocType: Item,Publish in Hub,হাব প্রকাশ ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,{0} আইটেম বাতিল করা হয় +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,{0} আইটেম বাতিল করা হয় apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,উপাদানের জন্য অনুরোধ DocType: Bank Reconciliation,Update Clearance Date,আপডেট পরিস্কারের তারিখ DocType: Item,Purchase Details,ক্রয় বিবরণ @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,প্রত্যাখ্য DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","হুণ্ডি, উদ্ধৃতি, বিক্রয় চালান, বিক্রয় আদেশ পাওয়া মাঠ" DocType: SMS Settings,SMS Sender Name,এসএমএস প্রেরকের নাম DocType: Contact,Is Primary Contact,প্রাথমিক পরিচিতি +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,টাইম ইন বিলিং জন্য শ্রেণীবদ্ধ করা হয়েছে DocType: Notification Control,Notification Control,বিজ্ঞপ্তি নিয়ন্ত্রণ DocType: Lead,Suggestions,পরামর্শ DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,এই অঞ্চলের উপর সেট আইটেমটি গ্রুপ-জ্ঞানী বাজেটের. এছাড়াও আপনি বন্টন সেট করে ঋতু অন্তর্ভুক্ত করতে পারে. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},গুদাম উর্ধ্বস্থ অ্যাকাউন্ট গ্রুপ লিখুন দয়া করে {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},বিপরীতে পরিশোধ {0} {1} বকেয়া পরিমাণ তার চেয়ে অনেক বেশী হতে পারে না {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},বিপরীতে পরিশোধ {0} {1} বকেয়া পরিমাণ তার চেয়ে অনেক বেশী হতে পারে না {2} DocType: Supplier,Address HTML,ঠিকানা এইচটিএমএল DocType: Lead,Mobile No.,মোবাইল নাম্বার. DocType: Maintenance Schedule,Generate Schedule,সূচি নির্মাণ @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,হাব সঙ্গে synced apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,ভুল গুপ্তশব্দ DocType: Item,Variant Of,মধ্যে variant -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,আইটেম {0} পরিষেবা আইটেম হতে হবে apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',চেয়ে 'স্টক প্রস্তুত করতে' সম্পন্ন Qty বৃহত্তর হতে পারে না DocType: Period Closing Voucher,Closing Account Head,অ্যাকাউন্ট হেড সমাপ্তি DocType: Employee,External Work History,বাহ্যিক কাজের ইতিহাস @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,নিউজলেটার DocType: Stock Settings,Notify by Email on creation of automatic Material Request,স্বয়ংক্রিয় উপাদান অনুরোধ নির্মাণের ইমেইল দ্বারা সূচিত DocType: Journal Entry,Multi Currency,বিভিন্ন দেশের মুদ্রা DocType: Payment Reconciliation Invoice,Invoice Type,চালান প্রকার -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,চালান পত্র +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,চালান পত্র apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,করের আপ সেট apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,আপনি এটি টানা পরে পেমেন্ট ভুক্তি নথীটি পরিবর্তিত হয়েছে. আবার এটি টান করুন. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} আইটেম ট্যাক্স দুইবার প্রবেশ +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} আইটেম ট্যাক্স দুইবার প্রবেশ apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,এই সপ্তাহে এবং স্থগিত কার্যক্রম জন্য সারসংক্ষেপ DocType: Workstation,Rent Cost,ভাড়া খরচ apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,মাস এবং বছর নির্বাচন করুন @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,দেশ সমূহ জন্য DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","মুদ্রা একক, রূপান্তর হার, আমদানি মোট আমদানি সর্বোমোট ইত্যাদি সকল আমদানি সম্পর্কিত ক্ষেত্র কেনার রসিদ, সরবরাহকারী উদ্ধৃতি, ক্রয় চালান, ক্রয় আদেশ ইত্যাদি পাওয়া যায়" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"এই আইটেমটি একটি টেমপ্লেট এবং লেনদেনের ক্ষেত্রে ব্যবহার করা যাবে না. 'কোন কপি করো' সেট করা হয়, যদি না আইটেম বৈশিষ্ট্যাবলী ভিন্নতা মধ্যে ধরে কপি করা হবে" apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,বিবেচিত মোট আদেশ -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","কর্মচারী উপাধি (যেমন সিইও, পরিচালক ইত্যাদি)." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","কর্মচারী উপাধি (যেমন সিইও, পরিচালক ইত্যাদি)." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,প্রবেশ ক্ষেত্রের মান 'দিন মাস পুনরাবৃত্তি' দয়া করে DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,"গ্রাহক একক গ্রাহকের বেস কারেন্সি রূপান্তরিত হয়, যা এ হার" DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","BOM, আদেয়ক, ক্রয় চালান, উত্পাদনের আদেশ, ক্রয় আদেশ, কেনার রসিদ, বিক্রয় চালান, বিক্রয় আদেশ, শেয়ার এন্ট্রি, শ্রমিকের খাটুনিঘণ্টা লিপিবদ্ধ কার্ড পাওয়া যায়" @@ -355,7 +355,7 @@ DocType: Workstation,Consumable Cost,Consumable খরচ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) ভূমিকা থাকতে হবে 'ছুটি রাজসাক্ষী' DocType: Purchase Receipt,Vehicle Date,যানবাহন তারিখ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,মেডিকেল -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,হারানোর জন্য কারণ +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,হারানোর জন্য কারণ apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},ওয়ার্কস্টেশন ছুটির তালিকা অনুযায়ী নিম্নলিখিত তারিখগুলি উপর বন্ধ করা হয়: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,সুযোগ DocType: Employee,Single,একক @@ -383,14 +383,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,চ্যানেল পার্টনার DocType: Account,Old Parent,প্রাচীন মূল DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,যে ইমেইল এর একটি অংশ হিসাবে যে যায় পরিচায়ক টেক্সট কাস্টমাইজ করুন. প্রতিটি লেনদেনের একটি পৃথক পরিচায়ক টেক্সট আছে. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),চিহ্ন অন্তর্ভুক্ত করবেন না (প্রাক্তন. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,সেলস ম্যানেজার মাস্টার apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,সব উত্পাদন প্রক্রিয়া জন্য গ্লোবাল সেটিংস. DocType: Accounts Settings,Accounts Frozen Upto,হিমায়িত পর্যন্ত অ্যাকাউন্ট DocType: SMS Log,Sent On,পাঠানো -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,গুন {0} আরোপ ছক মধ্যে একাধিক বার নির্বাচিত +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,গুন {0} আরোপ ছক মধ্যে একাধিক বার নির্বাচিত DocType: HR Settings,Employee record is created using selected field. ,কর্মচারী রেকর্ড নির্বাচিত ক্ষেত্র ব্যবহার করে নির্মিত হয়. DocType: Sales Order,Not Applicable,প্রযোজ্য নয় -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,হলিডে মাস্টার. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,হলিডে মাস্টার. DocType: Material Request Item,Required Date,প্রয়োজনীয় তারিখ DocType: Delivery Note,Billing Address,বিলিং ঠিকানা apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,আইটেম কোড প্রবেশ করুন. @@ -426,7 +427,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,"উপাদান অনুরোধ উত্থাপিত হবে, যার জন্য গুদাম লিখুন দয়া করে" DocType: Production Order,Additional Operating Cost,অতিরিক্ত অপারেটিং খরচ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,অঙ্গরাগ -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items",মার্জ করার জন্য নিম্নলিখিত বৈশিষ্ট্য উভয় আইটেম জন্য একই হতে হবে +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items",মার্জ করার জন্য নিম্নলিখিত বৈশিষ্ট্য উভয় আইটেম জন্য একই হতে হবে DocType: Shipping Rule,Net Weight,প্রকৃত ওজন DocType: Employee,Emergency Phone,জরুরী ফোন ,Serial No Warranty Expiry,সিরিয়াল কোন পাটা মেয়াদ উত্তীর্ন @@ -481,17 +482,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,বিলিং এবং বিলি অবস্থা apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,পুনরাবৃত্ত গ্রাহকদের DocType: Leave Control Panel,Allocate,বরাদ্দ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,সেলস প্রত্যাবর্তন +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,সেলস প্রত্যাবর্তন DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,আপনি উত্পাদনের আদেশ তৈরি করতে চান যা থেকে বিক্রয় আদেশ নির্বাচন. DocType: Item,Delivered by Supplier (Drop Ship),সরবরাহকারীকে বিতরণ (ড্রপ জাহাজ) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,বেতন উপাদান. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,বেতন উপাদান. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,সম্ভাব্য গ্রাহকদের ডাটাবেস. DocType: Authorization Rule,Customer or Item,গ্রাহক বা আইটেম apps/erpnext/erpnext/config/crm.py +17,Customer database.,গ্রাহক ডাটাবেস. DocType: Quotation,Quotation To,উদ্ধৃতি DocType: Lead,Middle Income,মধ্য আয় apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),খোলা (যোগাযোগ Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,আপনি ইতিমধ্যে অন্য UOM সঙ্গে কিছু লেনদেন (গুলি) করেছেন কারণ আইটেম জন্য মেজার ডিফল্ট ইউনিট {0} সরাসরি পরিবর্তন করা যাবে না. আপনি একটি ভিন্ন ডিফল্ট UOM ব্যবহার করার জন্য একটি নতুন আইটেম তৈরি করতে হবে. +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,আপনি ইতিমধ্যে অন্য UOM সঙ্গে কিছু লেনদেন (গুলি) করেছেন কারণ আইটেম জন্য মেজার ডিফল্ট ইউনিট {0} সরাসরি পরিবর্তন করা যাবে না. আপনি একটি ভিন্ন ডিফল্ট UOM ব্যবহার করার জন্য একটি নতুন আইটেম তৈরি করতে হবে. apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,বরাদ্দ পরিমাণ নেতিবাচক হতে পারে না DocType: Purchase Order Item,Billed Amt,দেখানো হয়েছিল মাসিক DocType: Warehouse,A logical Warehouse against which stock entries are made.,শেয়ার এন্ট্রি তৈরি করা হয় যার বিরুদ্ধে একটি লজিক্যাল ওয়্যারহাউস. @@ -510,14 +511,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,বিক্রয় করে DocType: Employee,Organization Profile,সংস্থার প্রোফাইল apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,সেটআপ সংখ্যায়ন সিরিজ> সেটআপ মাধ্যমে উপস্থিতির জন্য সিরিজ সংখ্যায়ন অনুগ্রহ DocType: Employee,Reason for Resignation,পদত্যাগ করার কারণ -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,কর্মক্ষমতা মূল্যায়ন জন্য টেমপ্লেট. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,কর্মক্ষমতা মূল্যায়ন জন্য টেমপ্লেট. DocType: Payment Reconciliation,Invoice/Journal Entry Details,চালান / জার্নাল এন্ট্রি বিস্তারিত apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' না অর্থবছরে {2} DocType: Buying Settings,Settings for Buying Module,মডিউল কেনা জন্য সেটিংস apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,প্রথম কেনার রসিদ লিখুন দয়া করে DocType: Buying Settings,Supplier Naming By,দ্বারা সরবরাহকারী নেমিং DocType: Activity Type,Default Costing Rate,ডিফল্ট খোয়াতে হার -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,রক্ষণাবেক্ষণ সময়সূচী +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,রক্ষণাবেক্ষণ সময়সূচী apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","তারপর দামে ইত্যাদি গ্রাহক, ক্রেতা গ্রুপ, টেরিটরি, সরবরাহকারী, কারখানা, সরবরাহকারী ধরন, প্রচারাভিযান, বিক্রয় অংশীদার উপর ভিত্তি করে ফিল্টার আউট হয়" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,পরিসংখ্যা মধ্যে নিট পরিবর্তন DocType: Employee,Passport Number,পাসপোর্ট নম্বার @@ -556,7 +557,7 @@ DocType: Purchase Invoice,Quarterly,ত্রৈমাসিক DocType: Selling Settings,Delivery Note Required,ডেলিভারি নোট প্রয়োজনীয় DocType: Sales Order Item,Basic Rate (Company Currency),মৌলিক হার (কোম্পানি একক) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush কাঁচামালের ভিত্তিতে -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,আইটেম বিবরণ লিখুন দয়া করে +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,আইটেম বিবরণ লিখুন দয়া করে DocType: Purchase Receipt,Other Details,অন্যান্য বিস্তারিত DocType: Account,Accounts,অ্যাকাউন্ট apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,মার্কেটিং @@ -569,7 +570,7 @@ DocType: Employee,Provide email id registered in company,কোম্পান DocType: Hub Settings,Seller City,বিক্রেতা সিটি DocType: Email Digest,Next email will be sent on:,পরবর্তী ইমেলে পাঠানো হবে: DocType: Offer Letter Term,Offer Letter Term,পত্র টার্ম প্রস্তাব -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,আইটেম ভিন্নতা আছে. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,আইটেম ভিন্নতা আছে. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,আইটেম {0} পাওয়া যায়নি DocType: Bin,Stock Value,স্টক মূল্য apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,বৃক্ষ ধরন @@ -577,7 +578,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Qty ইউনিট প্র DocType: Serial No,Warranty Expiry Date,পাটা মেয়াদ শেষ হওয়ার তারিখ DocType: Material Request Item,Quantity and Warehouse,পরিমাণ এবং ওয়্যারহাউস DocType: Sales Invoice,Commission Rate (%),কমিশন হার (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","ভাউচার বিরুদ্ধে প্রকার বিক্রয় আদেশ এক, বিক্রয় চালান বা জার্নাল এন্ট্রিতে হতে হবে" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","ভাউচার বিরুদ্ধে প্রকার বিক্রয় আদেশ এক, বিক্রয় চালান বা জার্নাল এন্ট্রিতে হতে হবে" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,বিমান উড্ডয়ন এলাকা DocType: Journal Entry,Credit Card Entry,ক্রেডিট কার্ড এন্ট্রি apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,টাস্ক বিষয় @@ -645,10 +646,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,দায় apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,অনুমোদিত পরিমাণ সারি মধ্যে দাবি করে বেশি পরিমাণে হতে পারে না {0}. DocType: Company,Default Cost of Goods Sold Account,জিনিষপত্র বিক্রি অ্যাকাউন্ট ডিফল্ট খরচ -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,মূল্যতালিকা নির্বাচিত না +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,মূল্যতালিকা নির্বাচিত না DocType: Employee,Family Background,পারিবারিক ইতিহাস DocType: Process Payroll,Send Email,বার্তা পাঠাও -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},সতর্কবাণী: অবৈধ সংযুক্তি {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},সতর্কবাণী: অবৈধ সংযুক্তি {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,অনুমতি নেই DocType: Company,Default Bank Account,ডিফল্ট ব্যাঙ্ক অ্যাকাউন্ট apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","পার্টি উপর ভিত্তি করে ফিল্টার করুন, নির্বাচন পার্টি প্রথম টাইপ" @@ -676,7 +677,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,গ DocType: Features Setup,"To enable ""Point of Sale"" features","বিক্রয় বিন্দু" বৈশিষ্ট্য সক্রিয় করুন DocType: Bin,Moving Average Rate,গড় হার মুভিং DocType: Production Planning Tool,Select Items,আইটেম নির্বাচন করুন -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} বিল বিরুদ্ধে {1} তারিখের {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} বিল বিরুদ্ধে {1} তারিখের {2} DocType: Maintenance Visit,Completion Status,শেষ অবস্থা DocType: Sales Invoice Item,Target Warehouse,উদ্দিষ্ট ওয়্যারহাউস DocType: Item,Allow over delivery or receipt upto this percent,এই শতাংশ পর্যন্ত বিতরণ বা প্রাপ্তি ধরে মঞ্জুরি @@ -736,7 +737,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,ম apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},অপারেশন জন্য পরের {0} দিন টাইম স্লটে এটি অক্ষম {1} DocType: Production Order,Plan material for sub-assemblies,উপ-সমাহারকে পরিকল্পনা উপাদান apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} সক্রিয় হতে হবে -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,প্রথম ডকুমেন্ট টাইপ নির্বাচন করুন +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,প্রথম ডকুমেন্ট টাইপ নির্বাচন করুন apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,এতে যান কার্ট apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,এই রক্ষণাবেক্ষণ পরিদর্শন বাতিল আগে বাতিল উপাদান ভিজিট {0} DocType: Salary Slip,Leave Encashment Amount,নগদীকরণ পরিমাণ ত্যাগ @@ -754,7 +755,7 @@ DocType: Purchase Receipt,Range,পরিসর DocType: Supplier,Default Payable Accounts,ডিফল্ট পরিশোধযোগ্য অংশ apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,{0} কর্মচারী সক্রিয় নয় বা কোন অস্তিত্ব নেই DocType: Features Setup,Item Barcode,আইটেম বারকোড -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,আইটেম রুপভেদ {0} আপডেট +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,আইটেম রুপভেদ {0} আপডেট DocType: Quality Inspection Reading,Reading 6,6 পঠন DocType: Purchase Invoice Advance,Purchase Invoice Advance,চালান অগ্রিম ক্রয় DocType: Address,Shop,দোকান @@ -777,7 +778,7 @@ DocType: Salary Slip,Total in words,কথায় মোট DocType: Material Request Item,Lead Time Date,সময় লিড তারিখ apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,আবশ্যক. হয়তো মুদ্রা বিনিময় রেকর্ড এজন্য তৈরি করা হয়নি apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},সারি # {0}: আইটেম জন্য কোন সিরিয়াল উল্লেখ করুন {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","'পণ্য সমষ্টি' আইটেম, গুদাম, সিরিয়াল না এবং ব্যাচ জন্য কোন 'প্যাকিং তালিকা টেবিল থেকে বিবেচনা করা হবে. ওয়ারহাউস ও ব্যাচ কোন কোন 'পণ্য সমষ্টি' আইটেমের জন্য সব প্যাকিং আইটেম জন্য একই থাকে, যারা মান প্রধান আইটেম টেবিলে সন্নিবেশ করানো যাবে, মান মেজ বোঁচকা তালিকা 'থেকে কপি করা হবে." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","'পণ্য সমষ্টি' আইটেম, গুদাম, সিরিয়াল না এবং ব্যাচ জন্য কোন 'প্যাকিং তালিকা টেবিল থেকে বিবেচনা করা হবে. ওয়ারহাউস ও ব্যাচ কোন কোন 'পণ্য সমষ্টি' আইটেমের জন্য সব প্যাকিং আইটেম জন্য একই থাকে, যারা মান প্রধান আইটেম টেবিলে সন্নিবেশ করানো যাবে, মান মেজ বোঁচকা তালিকা 'থেকে কপি করা হবে." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,গ্রাহকদের চালানে. DocType: Purchase Invoice Item,Purchase Order Item,আদেশ আইটেম ক্রয় apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,পরোক্ষ আয় @@ -798,6 +799,7 @@ DocType: Process Payroll,Select Payroll Year and Month,বেতনের বছ apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",উপযুক্ত গ্রুপ (সাধারণত তহবিলের আবেদন> চলতি সম্পদ> ব্যাংক অ্যাকাউন্ট থেকে যান এবং টাইপ) শিশু যোগ উপর ক্লিক করে (একটি নতুন অ্যাকাউন্ট তৈরি করুন "ব্যাংক" DocType: Workstation,Electricity Cost,বিদ্যুৎ খরচ DocType: HR Settings,Don't send Employee Birthday Reminders,কর্মচারী জন্মদিনের রিমাইন্ডার পাঠাবেন না +,Employee Holiday Attendance,কর্মচারী হলিডে এ্যাটেনডেন্স DocType: Opportunity,Walk In,প্রবেশ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,শেয়ার সাজপোশাকটি DocType: Item,Inspection Criteria,ইন্সপেকশন নির্ণায়ক @@ -820,7 +822,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options, DocType: Journal Entry Account,Expense Claim,ব্যয় দাবি apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},জন্য Qty {0} DocType: Leave Application,Leave Application,আবেদন কর -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,অ্যালোকেশন টুল ত্যাগ +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,অ্যালোকেশন টুল ত্যাগ DocType: Leave Block List,Leave Block List Dates,ব্লক তালিকা তারিখগুলি ছেড়ে DocType: Company,If Monthly Budget Exceeded (for expense account),মাসিক বাজেট (ব্যয় অ্যাকাউন্টের জন্য) অতিক্রম করেছে DocType: Workstation,Net Hour Rate,নিট ঘন্টা হার @@ -830,7 +832,7 @@ DocType: Packing Slip Item,Packing Slip Item,প্যাকিং স্লি DocType: POS Profile,Cash/Bank Account,নগদ / ব্যাংক অ্যাকাউন্ট apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,পরিমাণ বা মান কোন পরিবর্তনের সঙ্গে সরানো আইটেম. DocType: Delivery Note,Delivery To,বিতরণ -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,গুন টেবিল বাধ্যতামূলক +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,গুন টেবিল বাধ্যতামূলক DocType: Production Planning Tool,Get Sales Orders,বিক্রয় আদেশ পান apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} নেতিবাচক হতে পারে না apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,ডিসকাউন্ট @@ -894,7 +896,7 @@ DocType: SMS Center,Total Characters,মোট অক্ষর apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},আইটেম জন্য BOM ক্ষেত্রের মধ্যে BOM নির্বাচন করুন {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,সি-ফরম চালান বিস্তারিত DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,পেমেন্ট রিকনসিলিয়েশন চালান -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,অবদান% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,অবদান% DocType: Item,website page link,ওয়েবসাইট পৃষ্ঠার লিঙ্ক DocType: Company,Company registration numbers for your reference. Tax numbers etc.,আপনার অবগতির জন্য কোম্পানি রেজিস্ট্রেশন নম্বর. ট্যাক্স নম্বর ইত্যাদি DocType: Sales Partner,Distributor,পরিবেশক @@ -936,10 +938,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM রূপান্তর DocType: Stock Settings,Default Item Group,ডিফল্ট আইটেম গ্রুপ apps/erpnext/erpnext/config/buying.py +13,Supplier database.,সরবরাহকারী ডাটাবেস. DocType: Account,Balance Sheet,হিসাবনিকাশপত্র -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ','আইটেম কোড দিয়ে আইটেমের জন্য কেন্দ্র উড়ানের তালিকাটি +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ','আইটেম কোড দিয়ে আইটেমের জন্য কেন্দ্র উড়ানের তালিকাটি DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,আপনার বিক্রয় ব্যক্তির গ্রাহকের পরিচিতি এই তারিখে একটি অনুস্মারক পাবেন apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","আরও অ্যাকাউন্ট দলের অধীনে করা যেতে পারে, কিন্তু এন্ট্রি অ গ্রুপের বিরুদ্ধে করা যেতে পারে" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,ট্যাক্স ও অন্যান্য বেতন কর্তন. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,ট্যাক্স ও অন্যান্য বেতন কর্তন. DocType: Lead,Lead,লিড DocType: Email Digest,Payables,Payables DocType: Account,Warehouse,গুদাম @@ -956,10 +958,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,অসমর্প DocType: Global Defaults,Current Fiscal Year,চলতি অর্থবছরের DocType: Global Defaults,Disable Rounded Total,গোলাকৃতি মোট অক্ষম DocType: Lead,Call,কল -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'এন্ট্রি' খালি রাখা যাবে না +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'এন্ট্রি' খালি রাখা যাবে না apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},সদৃশ সারিতে {0} একই {1} ,Trial Balance,ট্রায়াল ব্যালেন্স -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,এমপ্লয়িজ স্থাপনের +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,এমপ্লয়িজ স্থাপনের apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid """,গ্রিড " apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,প্রথম উপসর্গ নির্বাচন করুন apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,গবেষণা @@ -968,7 +970,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,ব্যবহারকারী আইডি apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,দেখুন লেজার apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,পুরনো -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","একটি আইটেম গ্রুপ একই নামের সঙ্গে বিদ্যমান, আইটেমের নাম পরিবর্তন বা আইটেম গ্রুপ নামান্তর করুন" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","একটি আইটেম গ্রুপ একই নামের সঙ্গে বিদ্যমান, আইটেমের নাম পরিবর্তন বা আইটেম গ্রুপ নামান্তর করুন" DocType: Production Order,Manufacture against Sales Order,সেলস আদেশের বিরুদ্ধে প্রস্তুত apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,বিশ্বের বাকি apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,আইটেম {0} ব্যাচ থাকতে পারে না @@ -993,7 +995,7 @@ DocType: Purchase Receipt,Rejected Warehouse,পরিত্যক্ত গু DocType: GL Entry,Against Voucher,ভাউচার বিরুদ্ধে DocType: Item,Default Buying Cost Center,ডিফল্ট রাজধানীতে খরচ কেন্দ্র apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","ERPNext শ্রেষ্ঠ আউট পেতে, আমরা আপনার জন্য কিছু সময় লাগতে এবং এইসব সাহায্যের ভিডিও দেখতে যে সুপারিশ." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,আইটেম {0} সেলস পেইজ হতে হবে +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,আইটেম {0} সেলস পেইজ হতে হবে apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,থেকে DocType: Item,Lead Time in days,দিন সময় লিড ,Accounts Payable Summary,অ্যাকাউন্ট প্রদেয় সংক্ষিপ্ত @@ -1019,7 +1021,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,কৃষি apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,আপনার পণ্য বা সেবা DocType: Mode of Payment,Mode of Payment,পেমেন্ট মোড -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,ওয়েবসাইট চিত্র একটি পাবলিক ফাইল বা ওয়েবসাইট URL হওয়া উচিত +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,ওয়েবসাইট চিত্র একটি পাবলিক ফাইল বা ওয়েবসাইট URL হওয়া উচিত apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,এটি একটি root আইটেমটি গ্রুপ এবং সম্পাদনা করা যাবে না. DocType: Journal Entry Account,Purchase Order,ক্রয় আদেশ DocType: Warehouse,Warehouse Contact Info,ওয়ারহাউস যোগাযোগের তথ্য @@ -1030,7 +1032,7 @@ DocType: Serial No,Serial No Details,সিরিয়াল কোন বি DocType: Purchase Invoice Item,Item Tax Rate,আইটেমটি ট্যাক্স হার apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","{0}, শুধুমাত্র ক্রেডিট অ্যাকাউন্ট অন্য ডেবিট এন্ট্রি বিরুদ্ধে সংযুক্ত করা যাবে জন্য" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,হুণ্ডি {0} দাখিল করা হয় না -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,আইটেম {0} একটি সাব-সংকুচিত আইটেম হতে হবে +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,আইটেম {0} একটি সাব-সংকুচিত আইটেম হতে হবে apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,ক্যাপিটাল উপকরণ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","প্রাইসিং রুল প্রথম উপর ভিত্তি করে নির্বাচন করা হয় আইটেম, আইটেম গ্রুপ বা ব্র্যান্ড হতে পারে, যা ক্ষেত্র 'প্রয়োগ'." DocType: Hub Settings,Seller Website,বিক্রেতা ওয়েবসাইট @@ -1039,7 +1041,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,লক্ষ্য DocType: Sales Invoice Item,Edit Description,সম্পাদনা বিবরণ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,প্রত্যাশিত প্রসবের তারিখ পরিকল্পনা শুরুর তারিখ তুলনায় কম হয়. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,সরবরাহকারী +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,সরবরাহকারী DocType: Account,Setting Account Type helps in selecting this Account in transactions.,অ্যাকাউন্ট টাইপ সেটিং লেনদেন এই অ্যাকাউন্টটি নির্বাচন করতে সাহায্য করে. DocType: Purchase Invoice,Grand Total (Company Currency),সর্বমোট (কোম্পানি একক) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,মোট আউটগোয়িং @@ -1091,7 +1093,6 @@ DocType: Authorization Rule,Average Discount,গড় মূল্য ছাড DocType: Address,Utilities,ইউটিলিটি DocType: Purchase Invoice Item,Accounting,হিসাবরক্ষণ DocType: Features Setup,Features Setup,বৈশিষ্ট্য সেটআপ -DocType: Item,Is Service Item,পরিষেবা আইটেম apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,আবেদনের সময় বাইরে ছুটি বরাদ্দ সময়ের হতে পারে না DocType: Activity Cost,Projects,প্রকল্প apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,ফিস্ক্যাল বছর নির্বাচন করুন @@ -1112,7 +1113,7 @@ DocType: Item,Maintain Stock,শেয়ার বজায় apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,ইতিমধ্যে উৎপাদন অর্ডার নির্মিত শেয়ার সাজপোশাকটি apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,পরিসম্পদ মধ্যে নিট পরিবর্তন DocType: Leave Control Panel,Leave blank if considered for all designations,সব প্রশিক্ষণে জন্য বিবেচিত হলে ফাঁকা ছেড়ে দিন -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,টাইপ 'প্রকৃত' সারিতে ভারপ্রাপ্ত {0} আইটেম রেট মধ্যে অন্তর্ভুক্ত করা যাবে না +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,টাইপ 'প্রকৃত' সারিতে ভারপ্রাপ্ত {0} আইটেম রেট মধ্যে অন্তর্ভুক্ত করা যাবে না apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},সর্বোচ্চ: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Datetime থেকে DocType: Email Digest,For Company,কোম্পানি জন্য @@ -1121,8 +1122,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,শিপিং ঠিকানা নাম apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,হিসাবরক্ষনের তালিকা DocType: Material Request,Terms and Conditions Content,শর্তাবলী কনটেন্ট -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,এর চেয়ে বড় 100 হতে পারে না -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,{0} আইটেম একটি স্টক আইটেম নয় +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,এর চেয়ে বড় 100 হতে পারে না +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,{0} আইটেম একটি স্টক আইটেম নয় DocType: Maintenance Visit,Unscheduled,অনির্ধারিত DocType: Employee,Owned,মালিক DocType: Salary Slip Deduction,Depends on Leave Without Pay,বিনা বেতনে ছুটি উপর নির্ভর করে @@ -1143,7 +1144,7 @@ Used for Taxes and Charges",পংক্তিরূপে উল্লিখি apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,কর্মচারী নিজেকে প্রতিবেদন করতে পারবে না. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","অ্যাকাউন্ট নিথর হয় তাহলে, এন্ট্রি সীমিত ব্যবহারকারীদের অনুমতি দেওয়া হয়." DocType: Email Digest,Bank Balance,অধিকোষস্থিতি -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},{1} শুধুমাত্র মুদ্রা তৈরি করা যাবে: {0} জন্য অ্যাকাউন্টিং এণ্ট্রি {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},{1} শুধুমাত্র মুদ্রা তৈরি করা যাবে: {0} জন্য অ্যাকাউন্টিং এণ্ট্রি {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,কর্মচারী {0} এবং মাসের জন্য পাওয়া কোন সক্রিয় বেতন কাঠামো DocType: Job Opening,"Job profile, qualifications required etc.","পেশা প্রফাইল, যোগ্যতা প্রয়োজন ইত্যাদি" DocType: Journal Entry Account,Account Balance,হিসাবের পরিমান @@ -1160,7 +1161,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,উপ সম DocType: Shipping Rule Condition,To Value,মান DocType: Supplier,Stock Manager,স্টক ম্যানেজার apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},উত্স গুদাম সারিতে জন্য বাধ্যতামূলক {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,প্যাকিং স্লিপ +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,প্যাকিং স্লিপ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,অফিস ভাড়া apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,সেটআপ এসএমএস গেটওয়ে সেটিংস apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,আমদানি ব্যর্থ! @@ -1204,7 +1205,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM বিস্তারি DocType: Purchase Invoice,Additional Discount Amount (Company Currency),অতিরিক্ত মূল্য ছাড়ের পরিমাণ (কোম্পানি একক) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},ত্রুটি: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,অ্যাকাউন্ট চার্ট থেকে নতুন একাউন্ট তৈরি করুন. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,রক্ষণাবেক্ষণ পরিদর্শন +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,রক্ষণাবেক্ষণ পরিদর্শন apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,গ্রাহক> গ্রাহক গ্রুপ> টেরিটরি DocType: Sales Invoice Item,Available Batch Qty at Warehouse,ওয়্যারহাউস এ উপলব্ধ ব্যাচ Qty DocType: Time Log Batch Detail,Time Log Batch Detail,টাইম ইন ব্যাচ বিস্তারিত @@ -1213,7 +1214,7 @@ DocType: Leave Block List,Block Holidays on important days.,গুরুত্ ,Accounts Receivable Summary,গ্রহনযোগ্য অ্যাকাউন্ট সারাংশ apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,কর্মচারী ভূমিকা সেট একজন কর্মী রেকর্ডে ইউজার আইডি ক্ষেত্রের সেট করুন DocType: UOM,UOM Name,UOM নাম -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,অথর্ +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,অথর্ DocType: Sales Invoice,Shipping Address,প্রেরণের ঠিকানা DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,এই সরঞ্জামের সাহায্যে আপনি আপডেট বা সিস্টেমের মধ্যে স্টক পরিমাণ এবং মূল্যনির্ধারণ ঠিক করতে সাহায্য করে. এটা সাধারণত সিস্টেম মান এবং কি আসলে আপনার গুদাম বিদ্যমান সুসংগত করতে ব্যবহার করা হয়. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,আপনি হুণ্ডি সংরক্ষণ একবার শব্দ দৃশ্যমান হবে. @@ -1254,7 +1255,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,বারকোড ব্যবহার আইটেম ট্র্যাক. আপনি আইটেম এর বারকোড স্ক্যানিং দ্বারা হুণ্ডি এবং বিক্রয় চালান মধ্যে আইটেম প্রবেশ করতে সক্ষম হবে. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,পেমেন্ট ইমেইল পুনরায় পাঠান DocType: Dependent Task,Dependent Task,নির্ভরশীল কার্য -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},মেজার ডিফল্ট ইউনিট জন্য রূপান্তর গুণনীয়ক সারিতে 1 হতে হবে {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},মেজার ডিফল্ট ইউনিট জন্য রূপান্তর গুণনীয়ক সারিতে 1 হতে হবে {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},ধরনের ছুটি {0} চেয়ে বেশি হতে পারেনা {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,অগ্রিম এক্স দিনের জন্য অপারেশন পরিকল্পনা চেষ্টা করুন. DocType: HR Settings,Stop Birthday Reminders,বন্ধ করুন জন্মদিনের রিমাইন্ডার @@ -1264,7 +1265,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} দেখুন apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,ক্যাশ মধ্যে নিট পরিবর্তন DocType: Salary Structure Deduction,Salary Structure Deduction,বেতন কাঠামো সিদ্ধান্তগ্রহণ -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,মেজার {0} এর ইউনিট রূপান্তর ফ্যাক্টর ছক একাধিকবার প্রবেশ করানো হয়েছে +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,মেজার {0} এর ইউনিট রূপান্তর ফ্যাক্টর ছক একাধিকবার প্রবেশ করানো হয়েছে apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},পেমেন্ট অনুরোধ ইতিমধ্যেই বিদ্যমান {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,প্রথম প্রকাশ আইটেম খরচ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},পরিমাণ বেশী হবে না {0} @@ -1293,7 +1294,7 @@ DocType: BOM Item,BOM Item,BOM আইটেম DocType: Appraisal,For Employee,কর্মী apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,সারি {0}: সরবরাহকারীর বিরুদ্ধে অগ্রিম ডেবিট করা হবে DocType: Company,Default Values,ডিফল্ট মান -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,সারি {0}: পেমেন্ট পরিমাণ নেতিবাচক হতে পারে না +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,সারি {0}: পেমেন্ট পরিমাণ নেতিবাচক হতে পারে না DocType: Expense Claim,Total Amount Reimbursed,মোট পরিমাণ শিশুবের apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},সরবরাহকারী বিরুদ্ধে চালান {0} তারিখের {1} DocType: Customer,Default Price List,ডিফল্ট মূল্য তালিকা @@ -1321,8 +1322,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,ক DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM",এটি ব্যবহার করা হয় যেখানে অন্য সব BOMs একটি বিশেষ BOM প্রতিস্থাপন. এটা পুরানো BOM লিঙ্কটি প্রতিস্থাপন খরচ আপডেট এবং নতুন BOM অনুযায়ী "Bom বিস্ফোরণ আইটেম" টেবিলের পুনর্জীবিত হবে DocType: Shopping Cart Settings,Enable Shopping Cart,শপিং কার্ট সক্রিয় DocType: Employee,Permanent Address,স্থায়ী ঠিকানা -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,আইটেম {0} একটি পরিষেবা আইটেম হতে হবে. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",সর্বমোট চেয়ে \ {0} {1} বেশী হতে পারবেন না বিরুদ্ধে পরিশোধিত আগাম {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,আইটেমটি কোড নির্বাচন করুন DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),বিনা বেতনে ছুটি জন্য সিদ্ধান্তগ্রহণ হ্রাস (LWP) @@ -1378,12 +1378,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,প্রধান apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,বৈকল্পিক DocType: Naming Series,Set prefix for numbering series on your transactions,আপনার লেনদেনের উপর সিরিজ সংখ্যায়ন জন্য সেট উপসর্গ +DocType: Employee Attendance Tool,Employees HTML,এমপ্লয়িজ এইচটিএমএল apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,থামানো অর্ডার বাতিল করা যাবে না. বাতিল করতে দুর. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,ডিফল্ট BOM ({0}) এই আইটেমটি বা তার টেমপ্লেট জন্য সক্রিয় হতে হবে +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,ডিফল্ট BOM ({0}) এই আইটেমটি বা তার টেমপ্লেট জন্য সক্রিয় হতে হবে DocType: Employee,Leave Encashed?,Encashed ত্যাগ করবেন? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,ক্ষেত্রের থেকে সুযোগ বাধ্যতামূলক DocType: Item,Variants,রুপভেদ -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,ক্রয় আদেশ করা +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,ক্রয় আদেশ করা DocType: SMS Center,Send To,পাঠানো apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},ছুটি টাইপ জন্য যথেষ্ট ছুটি ভারসাম্য নেই {0} DocType: Payment Reconciliation Payment,Allocated amount,বরাদ্দ পরিমাণ @@ -1483,7 +1484,7 @@ DocType: Sales Person,Name and Employee ID,নাম ও কর্মী ID apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,দরুন জন্ম তারিখ পোস্ট করার আগে হতে পারে না DocType: Website Item Group,Website Item Group,ওয়েবসাইট আইটেমটি গ্রুপ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,কর্তব্য এবং কর -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,রেফারেন্স তারিখ লিখুন দয়া করে +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,রেফারেন্স তারিখ লিখুন দয়া করে apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,পেমেন্ট গেটওয়ে অ্যাকাউন্ট কনফিগার করা না হয় apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} পেমেন্ট থেকে দ্বারা ফিল্টার করা যাবে না {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,ওয়েব সাইট এ দেখানো হবে যে আইটেমটি জন্য ছক @@ -1504,7 +1505,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,রেজোলিউশনের বিবরণ DocType: Quality Inspection Reading,Acceptance Criteria,গ্রহণযোগ্য বৈশিষ্ট্য DocType: Item Attribute,Attribute Name,নাম গুন -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},আইটেম {0} এ সেলস বা পরিষেবা আইটেম হতে হবে {1} DocType: Item Group,Show In Website,ওয়েবসাইট দেখান apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,গ্রুপ DocType: Task,Expected Time (in hours),(ঘণ্টায়) প্রত্যাশিত সময় @@ -1536,7 +1536,7 @@ DocType: Shipping Rule Condition,Shipping Amount,শিপিং পরিমা ,Pending Amount,অপেক্ষারত পরিমাণ DocType: Purchase Invoice Item,Conversion Factor,রূপান্তর ফ্যাক্টর DocType: Purchase Order,Delivered,নিষ্কৃত -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),কাজ ইমেল আইডি জন্য সেটআপ ইনকামিং সার্ভার. (যেমন jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),কাজ ইমেল আইডি জন্য সেটআপ ইনকামিং সার্ভার. (যেমন jobs@example.com) DocType: Purchase Receipt,Vehicle Number,গাড়ির সংখ্যা DocType: Purchase Invoice,The date on which recurring invoice will be stop,আবর্তক চালান বন্ধ করা হবে কোন তারিখে apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,সর্বমোট পাতার {0} কম হতে পারে না সময়ের জন্য ইতিমধ্যেই অনুমোদন পাতার {1} চেয়ে @@ -1553,7 +1553,7 @@ DocType: HR Settings,HR Settings,এইচআর সেটিংস apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,ব্যয় দাবি অনুমোদনের জন্য স্থগিত করা হয়. শুধু ব্যয় রাজসাক্ষী স্ট্যাটাস আপডেট করতে পারবেন. DocType: Purchase Invoice,Additional Discount Amount,অতিরিক্ত মূল্য ছাড়ের পরিমাণ DocType: Leave Block List Allow,Leave Block List Allow,ব্লক মঞ্জুর তালিকা ত্যাগ -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,সংক্ষিপ্তকরণ ফাঁকা বা স্থান হতে পারে না +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,সংক্ষিপ্তকরণ ফাঁকা বা স্থান হতে পারে না apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,অ-গ্রুপ গ্রুপ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,স্পোর্টস apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,প্রকৃত মোট @@ -1577,7 +1577,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},UOM রূপান্তর ফ্যাক্টর সারিতে প্রয়োজন বোধ করা হয় {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},পরিস্কারের তারিখ সারিতে চেক তারিখের আগে হতে পারে না {0} DocType: Salary Slip,Deduction,সিদ্ধান্তগ্রহণ -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},আইটেমের মূল্য জন্য যোগ {0} মূল্যতালিকা {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},আইটেমের মূল্য জন্য যোগ {0} মূল্যতালিকা {1} DocType: Address Template,Address Template,ঠিকানা টেমপ্লেট apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,এই বিক্রয় ব্যক্তির কর্মী ID লিখুন দয়া করে DocType: Territory,Classification of Customers by region,অঞ্চল গ্রাহকের সাইট @@ -1594,7 +1594,7 @@ DocType: Employee,Date of Birth,জন্ম তারিখ apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,আইটেম {0} ইতিমধ্যে ফেরত দেয়া হয়েছে DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** অর্থবছরের ** একটি অর্থবছরে প্রতিনিধিত্ব করে. সব হিসাব ভুক্তি এবং অন্যান্য প্রধান লেনদেন ** ** অর্থবছরের বিরুদ্ধে ট্র্যাক করা হয়. DocType: Opportunity,Customer / Lead Address,গ্রাহক / লিড ঠিকানা -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},সতর্কবাণী: সংযুক্তি অবৈধ SSL সার্টিফিকেট {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},সতর্কবাণী: সংযুক্তি অবৈধ SSL সার্টিফিকেট {0} DocType: Production Order Operation,Actual Operation Time,প্রকৃত অপারেশন টাইম DocType: Authorization Rule,Applicable To (User),প্রযোজ্য (ব্যবহারকারী) DocType: Purchase Taxes and Charges,Deduct,বিয়োগ করা @@ -1611,7 +1611,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,প্যাকেজ বিভক্ত হুণ্ডি. apps/erpnext/erpnext/hooks.py +69,Shipments,চালানে DocType: Purchase Order Item,To be delivered to customer,গ্রাহকের মধ্যে বিতরণ করা হবে -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,টাইম ইন স্থিতি জমা িদেত হেব. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,টাইম ইন স্থিতি জমা িদেত হেব. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,সিরিয়াল কোন {0} কোনো গুদাম অন্তর্গত নয় apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,সারি # DocType: Purchase Invoice,In Words (Company Currency),ভাষায় (কোম্পানি একক) @@ -1628,7 +1628,7 @@ DocType: Leave Application,Total Leave Days,মোট ছুটি দিন DocType: Email Digest,Note: Email will not be sent to disabled users,উল্লেখ্য: এটি ইমেল প্রতিবন্ধী ব্যবহারকারীদের পাঠানো হবে না apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,কোম্পানি নির্বাচন ... DocType: Leave Control Panel,Leave blank if considered for all departments,সব বিভাগের জন্য বিবেচিত হলে ফাঁকা ছেড়ে দিন -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","কর্মসংস্থান প্রকারভেদ (স্থায়ী, চুক্তি, অন্তরীণ ইত্যাদি)." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","কর্মসংস্থান প্রকারভেদ (স্থায়ী, চুক্তি, অন্তরীণ ইত্যাদি)." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} আইটেমের জন্য বাধ্যতামূলক {1} DocType: Currency Exchange,From Currency,মুদ্রা থেকে apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","অন্তত একটি সারিতে বরাদ্দ পরিমাণ, চালান প্রকার এবং চালান নম্বর নির্বাচন করুন" @@ -1647,7 +1647,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,প্রক্রিয়াধীন DocType: Authorization Rule,Itemwise Discount,Itemwise ছাড় DocType: Purchase Order Item,Reference Document Type,রেফারেন্স ডকুমেন্ট টাইপ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} সেলস আদেশের বিরুদ্ধে {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} সেলস আদেশের বিরুদ্ধে {1} DocType: Account,Fixed Asset,নির্দিষ্ট সম্পত্তি apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,ধারাবাহিকভাবে পরিসংখ্যা DocType: Activity Type,Default Billing Rate,ডিফল্ট বিলিং রেট @@ -1657,7 +1657,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,অর্থ প্রদান বিক্রয় আদেশ DocType: Expense Claim Detail,Expense Claim Detail,ব্যয় দাবি বিস্তারিত apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,সময় লগসমূহ নির্মিত: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,সঠিক অ্যাকাউন্ট নির্বাচন করুন +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,সঠিক অ্যাকাউন্ট নির্বাচন করুন DocType: Item,Weight UOM,ওজন UOM DocType: Employee,Blood Group,রক্তের গ্রুপ DocType: Purchase Invoice Item,Page Break,পৃষ্ঠা বিরতি @@ -1692,7 +1692,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM recursion: {0} এর পিতা বা মাতা বা সন্তান হতে পারবেন না {2} DocType: Production Order Operation,Completed Qty,সমাপ্ত Qty apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","{0}, শুধুমাত্র ডেবিট অ্যাকাউন্ট অন্য ক্রেডিট এন্ট্রি বিরুদ্ধে সংযুক্ত করা যাবে জন্য" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,মূল্যতালিকা {0} নিষ্ক্রিয় করা হয় +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,মূল্যতালিকা {0} নিষ্ক্রিয় করা হয় DocType: Manufacturing Settings,Allow Overtime,ওভারটাইম মঞ্জুরি apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} আইটেম জন্য প্রয়োজন সিরিয়াল নাম্বার {1}. আপনার দেওয়া {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,বর্তমান মূল্যনির্ধারণ হার @@ -1743,7 +1743,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},ব apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,মামলা নং 0 হতে পারবেন না DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,"আপনি (চ্যানেল পার্টনার্স) সেলস টিম এবং বিক্রয় অংশীদার থাকে, তাহলে তারা বাঁধা এবং বিক্রয় কার্যকলাপ নারীর অবদানের বজায় যাবে" DocType: Item,Show a slideshow at the top of the page,পৃষ্ঠার উপরের একটি স্লাইডশো প্রদর্শন -DocType: Item,"Allow in Sales Order of type ""Service""",টাইপ "সেবা" বিক্রয় আদেশ মঞ্জুর apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,দোকান DocType: Time Log,Projects Manager,প্রকল্প ম্যানেজার DocType: Serial No,Delivery Time,প্রসবের সময় @@ -1758,6 +1757,7 @@ DocType: Rename Tool,Rename Tool,টুল পুনঃনামকরণ apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,আপডেট খরচ DocType: Item Reorder,Item Reorder,আইটেম অনুসারে পুনঃক্রম করুন apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,ট্রান্সফার উপাদান +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},আইটেম {0} একটি সেলস পেইজ হতে হবে {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","অপারেশন, অপারেটিং খরচ উল্লেখ করুন এবং আপনার কাজকর্মকে কোন একটি অনন্য অপারেশন দিতে." DocType: Purchase Invoice,Price List Currency,মূল্যতালিকা মুদ্রা DocType: Naming Series,User must always select,ব্যবহারকারী সবসময় নির্বাচন করতে হবে @@ -1778,7 +1778,7 @@ DocType: Appraisal,Employee,কর্মচারী apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,থেকে আমদানি ইমেইল apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,ব্যবহারকারী হিসেবে আমন্ত্রণ DocType: Features Setup,After Sale Installations,বিক্রয় ইনস্টলেশনের পরে -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} সম্পূর্ণরূপে বিল হয় +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} সম্পূর্ণরূপে বিল হয় DocType: Workstation Working Hour,End Time,শেষ সময় apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,সেলস বা কেনার জন্য আদর্শ চুক্তি পদ. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,ভাউচার দ্বারা গ্রুপ @@ -1804,7 +1804,7 @@ DocType: Upload Attendance,Attendance To Date,তারিখ উপস্থি apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),বিক্রয় ইমেইল আইডি জন্য সেটআপ ইনকামিং সার্ভার. (যেমন sales@example.com) DocType: Warranty Claim,Raised By,দ্বারা উত্থাপিত DocType: Payment Gateway Account,Payment Account,টাকা পরিষদের অ্যাকাউন্ট -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,এগিয়ে যেতে কোম্পানি উল্লেখ করুন +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,এগিয়ে যেতে কোম্পানি উল্লেখ করুন apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,গ্রহনযোগ্য অ্যাকাউন্ট মধ্যে নিট পরিবর্তন apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,পূরক অফ DocType: Quality Inspection Reading,Accepted,গৃহীত @@ -1816,14 +1816,14 @@ DocType: Shipping Rule,Shipping Rule Label,শিপিং রুল ট্য apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,কাঁচামালের ফাঁকা থাকতে পারে না. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","স্টক আপডেট করা যায়নি, চালান ড্রপ শিপিং আইটেমটি রয়েছে." DocType: Newsletter,Test,পরীক্ষা -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","বিদ্যমান শেয়ার লেনদেন আপনাকে মান পরিবর্তন করতে পারবেন না \ এই আইটেমটি জন্য আছে 'সিরিয়াল কোন হয়েছে', 'ব্যাচ করিয়াছেন', 'স্টক আইটেম' এবং 'মূল্যনির্ধারণ পদ্ধতি'" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,দ্রুত জার্নাল এন্ট্রি apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,BOM কোন আইটেম agianst উল্লেখ তাহলে আপনি হার পরিবর্তন করতে পারবেন না DocType: Employee,Previous Work Experience,আগের কাজের অভিজ্ঞতা DocType: Stock Entry,For Quantity,পরিমাণ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},সারিতে আইটেম {0} জন্য পরিকল্পনা Qty লিখুন দয়া করে {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} দাখিল করা হয় না +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} দাখিল করা হয় না apps/erpnext/erpnext/config/stock.py +18,Requests for items.,আইটেম জন্য অনুরোধ. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,পৃথক উত্পাদন যাতে প্রতিটি সমাপ্ত ভাল আইটেমের জন্য তৈরি করা হবে. DocType: Purchase Invoice,Terms and Conditions1,শর্তাবলী এবং Conditions1 @@ -1848,6 +1848,7 @@ DocType: Notification Control,Expense Claim Approved Message,ব্যয় দ DocType: Email Digest,How frequently?,কত তারাতারি? DocType: Purchase Receipt,Get Current Stock,বর্তমান স্টক পান apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,উপকরণ বিল বৃক্ষ +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,মার্ক বর্তমান apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},রক্ষণাবেক্ষণ আরম্ভের তারিখ সিরিয়াল কোন জন্য ডেলিভারি তারিখের আগে হতে পারে না {0} DocType: Production Order,Actual End Date,প্রকৃত শেষ তারিখ DocType: Authorization Rule,Applicable To (Role),প্রযোজ্য (ভূমিকা) @@ -1862,7 +1863,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,চুক্তি শেষ তারিখ যোগদান তারিখ থেকে বড় হওয়া উচিত DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,একটি কমিশন জন্য কোম্পানি পণ্য বিক্রি একটি তৃতীয় পক্ষের যারা পরিবেশক / ব্যাপারী / কমিশন এজেন্ট / অধিভুক্ত / রিসেলার. DocType: Customer Group,Has Child Node,সন্তানের নোড আছে -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} ক্রয় আদেশের বিরুদ্ধে {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} ক্রয় আদেশের বিরুদ্ধে {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","এখানে স্ট্যাটিক URL পরামিতি লিখুন (যেমন. প্রেরকের = ERPNext, ব্যবহারকারীর নাম = ERPNext, পাসওয়ার্ড = 1234 ইত্যাদি)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} না কোনো সক্রিয় অর্থবছরে. আরো বিস্তারিত জানার জন্য পরীক্ষা {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,এই একটি উদাহরণ ওয়েবসাইট ERPNext থেকে স্বয়ংক্রিয় উত্পন্ন হয় @@ -1890,7 +1891,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Add or Deduct: Whether you want to add or deduct the tax.","সমস্ত ক্রয় লেনদেন প্রয়োগ করা যেতে পারে যে স্ট্যান্ডার্ড ট্যাক্স টেমপ্লেট. এই টেমপ্লেটটি ইত্যাদি #### আপনি সব ** জানানোর জন্য স্ট্যান্ডার্ড ট্যাক্স হার হবে এখানে নির্ধারণ করহার দ্রষ্টব্য "হ্যান্ডলিং", ট্যাক্স মাথা এবং "কোটি টাকার", "বীমা" মত অন্যান্য ব্যয় মাথা তালিকায় থাকতে পারে * *. বিভিন্ন হারে আছে ** যে ** আইটেম আছে, তাহলে তারা ** আইটেম ট্যাক্স যোগ করা হবে ** ** ** আইটেম মাস্টার টেবিল. #### কলাম বর্ণনা 1. গণনা টাইপ: - এই (যে মৌলিক পরিমাণ যোগফল) ** একুন ** উপর হতে পারে. - ** পূর্ববর্তী সারি মোট / পরিমাণ ** উপর (ক্রমসঞ্চিত করের বা চার্জের জন্য). যদি আপনি এই অপশনটি নির্বাচন করা হলে, ট্যাক্স পরিমাণ অথবা মোট (ট্যাক্স টেবিলে) পূর্ববর্তী সারির শতকরা হিসেবে প্রয়োগ করা হবে. - ** ** প্রকৃত (হিসাবে উল্লেখ করেছে). 2. অ্যাকাউন্ট প্রধানঃ এই ট্যাক্স 3. খরচ কেন্দ্র বুকিং করা হবে যার অধীনে অ্যাকাউন্ট খতিয়ান: ট্যাক্স / চার্জ (শিপিং মত) একটি আয় হয় বা ব্যয় যদি এটি একটি খরচ কেন্দ্র বিরুদ্ধে বুক করা প্রয়োজন. 4. বিবরণ: ট্যাক্স বর্ণনা (যে চালানে / কোট ছাপা হবে). 5. রেট: ট্যাক্স হার. 6. পরিমাণ: ট্যাক্স পরিমাণ. 7. মোট: এই বিন্দু ক্রমপুঞ্জিত মোট. 8. সারি প্রবেশ করান: উপর ভিত্তি করে যদি "পূর্ববর্তী সারি মোট" আপনি এই গণনা জন্য একটি বেস (ডিফল্ট পূর্ববর্তী সারির হয়) হিসাবে গ্রহণ করা হবে, যা সারি সংখ্যা নির্বাচন করতে পারবেন. 9. জন্য ট্যাক্স বা চার্জ ধরে নেবেন: ট্যাক্স / চার্জ মূল্যনির্ধারণ জন্য শুধুমাত্র (মোট না একটি অংশ) বা শুধুমাত্র (আইটেমটি মান যোগ না) মোট জন্য অথবা উভয়ের জন্য তাহলে এই অংশে আপনি নির্ধারণ করতে পারবেন. 10. করো অথবা বিয়োগ: আপনি যোগ করতে অথবা ট্যাক্স কেটে করতে চান কিনা." DocType: Purchase Receipt Item,Recd Quantity,Recd পরিমাণ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},সেলস আদেশ পরিমাণ বেশী আইটেম {0} সৃষ্টি করতে পারে না {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,শেয়ার এণ্ট্রি {0} দাখিল করা হয় না +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,শেয়ার এণ্ট্রি {0} দাখিল করা হয় না DocType: Payment Reconciliation,Bank / Cash Account,ব্যাংক / নগদ অ্যাকাউন্ট DocType: Tax Rule,Billing City,বিলিং সিটি DocType: Global Defaults,Hide Currency Symbol,মুদ্রা প্রতীক লুকান @@ -1916,7 +1917,7 @@ DocType: Salary Structure,Total Earning,মোট আয় DocType: Purchase Receipt,Time at which materials were received,"উপকরণ গৃহীত হয়েছে, যা এ সময়" apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,আমার ঠিকানা DocType: Stock Ledger Entry,Outgoing Rate,আউটগোয়িং কলের হার -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,সংস্থার শাখা মাস্টার. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,সংস্থার শাখা মাস্টার. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,বা DocType: Sales Order,Billing Status,বিলিং অবস্থা apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,ইউটিলিটি খরচ @@ -1954,7 +1955,7 @@ DocType: Bin,Reserved Quantity,সংরক্ষিত পরিমাণ DocType: Landed Cost Voucher,Purchase Receipt Items,কেনার রসিদ চলছে apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,কাস্টমাইজ ফরম DocType: Account,Income Account,আয় অ্যাকাউন্ট -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,বিলি +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,বিলি DocType: Stock Reconciliation Item,Current Qty,বর্তমান স্টক DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",দেখুন খোয়াতে বিভাগে "সামগ্রী ভিত্তি করে হার" DocType: Appraisal Goal,Key Responsibility Area,কী দায়িত্ব ফোন @@ -1966,8 +1967,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,ভ DocType: Notification Control,Purchase Order Message,আদেশ বার্তাতে ক্রয় DocType: Tax Rule,Shipping Country,শিপিং দেশ DocType: Upload Attendance,Upload HTML,আপলোড এইচটিএমএল -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})",মোট অগ্রিম ({0}) আদেশের বিরুদ্ধে {1} \ বৃহত্তর হতে পারে না সর্বমোট তুলনায় ({2}) DocType: Employee,Relieving Date,মুক্তিদান তারিখ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","প্রাইসিং রুল কিছু মানদণ্ডের উপর ভিত্তি করে, / মূল্য তালিকা মুছে ফেলা ডিসকাউন্ট শতাংশ নির্ধারণ করা হয়." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,গুদাম শুধুমাত্র স্টক এন্ট্রি এর মাধ্যমে পরিবর্তন করা যাবে / হুণ্ডি / কেনার রসিদ @@ -1977,8 +1976,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,আ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","নির্বাচিত প্রাইসিং রুল 'মূল্য' জন্য তৈরি করা হয় তাহলে, এটি মূল্য তালিকা মুছে ফেলা হবে. প্রাইসিং রুল মূল্য চূড়ান্ত দাম, তাই কোন অতিরিক্ত ছাড় প্রয়োগ করতে হবে. অত: পর, ইত্যাদি বিক্রয় আদেশ, ক্রয় আদেশ মত লেনদেন, এটা বরং 'মূল্য তালিকা হার' ক্ষেত্র ছাড়া, 'হার' ক্ষেত্র সংগৃহীত হবে." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,ট্র্যাক শিল্প টাইপ দ্বারা অনুসন্ধান. DocType: Item Supplier,Item Supplier,আইটেম সরবরাহকারী -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,ব্যাচ কোন পেতে আইটেম কোড প্রবেশ করুন -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},{0} quotation_to জন্য একটি মান নির্বাচন করুন {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,ব্যাচ কোন পেতে আইটেম কোড প্রবেশ করুন +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},{0} quotation_to জন্য একটি মান নির্বাচন করুন {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,সব ঠিকানাগুলি. DocType: Company,Stock Settings,স্টক সেটিংস apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","নিম্নলিখিত বৈশিষ্ট্য উভয় রেকর্ডে একই হলে মার্জ শুধুমাত্র সম্ভব. গ্রুপ, root- র ধরন, কোম্পানী" @@ -2001,7 +2000,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,চেক সংখ্যা DocType: Payment Tool Detail,Payment Tool Detail,পেমেন্ট টুল বিস্তারিত ,Sales Browser,সেলস ব্রাউজার DocType: Journal Entry,Total Credit,মোট ক্রেডিট -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},সতর্কতা: আরেকটি {0} # {1} শেয়ার এন্ট্রি বিরুদ্ধে বিদ্যমান {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},সতর্কতা: আরেকটি {0} # {1} শেয়ার এন্ট্রি বিরুদ্ধে বিদ্যমান {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,স্থানীয় apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),ঋণ ও অগ্রিমের (সম্পদ) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,ঋণ গ্রহিতা @@ -2021,8 +2020,8 @@ DocType: Price List,Price List Master,মূল্য তালিকা মা DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,আপনি সেট এবং নির্দেশকের লক্ষ্যমাত্রা নজর রাখতে পারেন যাতে সব বিক্রয় লেনদেন একাধিক ** বিক্রয় ব্যক্তি ** বিরুদ্ধে ট্যাগ করা যায়. ,S.O. No.,তাই নং DocType: Production Order Operation,Make Time Log,টাইম ইন করুন -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,পুনর্বিন্যাস পরিমাণ সেট করুন -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},লিড থেকে গ্রাহক তৈরি করুন {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,পুনর্বিন্যাস পরিমাণ সেট করুন +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},লিড থেকে গ্রাহক তৈরি করুন {0} DocType: Price List,Applicable for Countries,দেশ সমূহ জন্য প্রযোজ্য apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,কম্পিউটার apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,এটি একটি root গ্রাহক গ্রুপ এবং সম্পাদনা করা যাবে না. @@ -2058,7 +2057,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),বি DocType: Payment Reconciliation Invoice,Outstanding Amount,বাকির পরিমাণ DocType: Project Task,Working,ওয়ার্কিং DocType: Stock Ledger Entry,Stock Queue (FIFO),শেয়ার সারি (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,সময় লগসমূহ নির্বাচন করুন. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,সময় লগসমূহ নির্বাচন করুন. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} কোম্পানি অন্তর্গত নয় {1} DocType: Account,Round Off,সুসম্পন্ন করা ,Requested Qty,অনুরোধ করা Qty @@ -2096,7 +2095,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,প্রাসঙ্গিক এন্ট্রি পেতে apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,স্টক জন্য অ্যাকাউন্টিং এণ্ট্রি DocType: Sales Invoice,Sales Team1,সেলস team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,আইটেম {0} অস্তিত্ব নেই +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,আইটেম {0} অস্তিত্ব নেই DocType: Sales Invoice,Customer Address,গ্রাহকের ঠিকানা DocType: Payment Request,Recipient and Message,প্রাপক এবং পাঠান DocType: Purchase Invoice,Apply Additional Discount On,অতিরিক্ত ডিসকাউন্ট উপর প্রয়োগ @@ -2115,7 +2114,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,নিঃশব্দ ইমেইল apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","খাদ্য, পানীয় ও তামাকের" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,পিএল বা বঙ্গাব্দের -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},শুধুমাত্র বিরুদ্ধে পেমেন্ট করতে পারবেন যেতে উদ্ভাবনী উপায় {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},শুধুমাত্র বিরুদ্ধে পেমেন্ট করতে পারবেন যেতে উদ্ভাবনী উপায় {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,কমিশন হার তার চেয়ে অনেক বেশী 100 হতে পারে না apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,নূন্যতম পরিসংখ্যা শ্রেনী DocType: Stock Entry,Subcontract,ঠিকা @@ -2133,9 +2132,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,সফট apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,রঙিন DocType: Maintenance Visit,Scheduled,তালিকাভুক্ত apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle",""না" এবং "বিক্রয় আইটেম" "শেয়ার আইটেম" যেখানে "হ্যাঁ" হয় আইটেম নির্বাচন করুন এবং অন্য কোন পণ্য সমষ্টি নেই, অনুগ্রহ করে" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),মোট অগ্রিম ({0}) আদেশের বিরুদ্ধে {1} সর্বমোট তার চেয়ে অনেক বেশী হতে পারে না ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,অসমান মাস জুড়ে লক্ষ্যমাত্রা বিতরণ মাসিক ডিস্ট্রিবিউশন নির্বাচন. DocType: Purchase Invoice Item,Valuation Rate,মূল্যনির্ধারণ হার -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,মূল্য তালিকা মুদ্রা একক নির্বাচন করবেন +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,মূল্য তালিকা মুদ্রা একক নির্বাচন করবেন apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,আইটেম সারি {0}: {1} উপরোক্ত 'ক্রয় রসিদের' টেবিলের অস্তিত্ব নেই কেনার রসিদ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},কর্মচারী {0} ইতিমধ্যে আবেদন করেছেন {1} মধ্যে {2} এবং {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,প্রজেক্ট আরম্ভের তারিখ @@ -2147,6 +2147,7 @@ DocType: Quality Inspection,Inspection Type,ইন্সপেকশন ধর apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},দয়া করে নির্বাচন করুন {0} DocType: C-Form,C-Form No,সি-ফরম কোন DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,অচিহ্নিত এ্যাটেনডেন্স apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,গবেষক apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,পাঠানোর আগে নিউজলেটার সংরক্ষণ করুন apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,নাম বা ইমেল বাধ্যতামূলক @@ -2172,7 +2173,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,নি DocType: Payment Gateway,Gateway,প্রবেশপথ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,সরবরাহকারী> সরবরাহকারী ধরন apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,তারিখ মুক্তিদান লিখুন. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,AMT +apps/erpnext/erpnext/controllers/trends.py +138,Amt,AMT apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,শুধু স্ট্যাটাস 'অনুমোদিত' জমা করা যেতে পারে সঙ্গে অ্যাপ্লিকেশন ছেড়ে দিন apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,ঠিকানা শিরোনাম বাধ্যতামূলক. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,তদন্ত উৎস প্রচারণা যদি প্রচারাভিযানের নাম লিখুন @@ -2187,10 +2188,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,গৃহীত ওয়্ DocType: Bank Reconciliation Detail,Posting Date,পোস্টিং তারিখ DocType: Item,Valuation Method,মূল্যনির্ধারণ পদ্ধতি apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},{0} করার জন্য বিনিময় হার খুঁজে পেতে অসমর্থ {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,মার্ক অর্ধদিবস DocType: Sales Invoice,Sales Team,বিক্রয় দল apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,ডুপ্লিকেট এন্ট্রি DocType: Serial No,Under Warranty,ওয়ারেন্টিযুক্ত -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[ত্রুটি] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[ত্রুটি] DocType: Sales Order,In Words will be visible once you save the Sales Order.,আপনি বিক্রয় আদেশ সংরক্ষণ একবার শব্দ দৃশ্যমান হবে. ,Employee Birthday,কর্মচারী জন্মদিনের apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,ভেনচার ক্যাপিটাল @@ -2213,6 +2215,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,বিদ্যমান লেনদেন সঙ্গে খরচ কেন্দ্র গ্রুপ রূপান্তরিত করা যাবে না DocType: Account,Depreciation,অবচয় apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),সরবরাহকারী (গুলি) +DocType: Employee Attendance Tool,Employee Attendance Tool,কর্মী হাজিরা টুল DocType: Supplier,Credit Limit,ক্রেডিট সীমা apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,লেনদেনের ধরন নির্বাচন করুন DocType: GL Entry,Voucher No,ভাউচার কোন @@ -2239,7 +2242,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Root অ্যাকাউন্টের মোছা যাবে না ,Is Primary Address,প্রাথমিক ঠিকানা DocType: Production Order,Work-in-Progress Warehouse,কাজ-অগ্রগতি ওয়্যারহাউস -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},রেফারেন্স # {0} তারিখের {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},রেফারেন্স # {0} তারিখের {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,ঠিকানা ও পরিচালনা DocType: Pricing Rule,Item Code,পণ্য সংকেত DocType: Production Planning Tool,Create Production Orders,উত্পাদনের আদেশ করুন @@ -2266,7 +2269,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,ব্যাংক পুনর apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,আপডেট পান apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,উপাদানের জন্য অনুরোধ {0} বাতিল বা বন্ধ করা হয় apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,কয়েকটি নমুনা রেকর্ড যোগ -apps/erpnext/erpnext/config/hr.py +210,Leave Management,ম্যানেজমেন্ট ত্যাগ +apps/erpnext/erpnext/config/hr.py +225,Leave Management,ম্যানেজমেন্ট ত্যাগ apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,অ্যাকাউন্ট দ্বারা গ্রুপ DocType: Sales Order,Fully Delivered,সম্পূর্ণ বিতরণ DocType: Lead,Lower Income,নিম্ন আয় @@ -2281,6 +2284,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','তারিখ থেকে' অবশ্যই 'তারিখ পর্যন্ত' এর পরে হতে হবে ,Stock Projected Qty,স্টক Qty অনুমিত apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},অন্তর্গত নয় {0} গ্রাহক প্রকল্পের {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,চিহ্নিত এ্যাটেনডেন্স এইচটিএমএল DocType: Sales Order,Customer's Purchase Order,গ্রাহকের ক্রয় আদেশ DocType: Warranty Claim,From Company,কোম্পানীর কাছ থেকে apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,মূল্য বা স্টক @@ -2345,6 +2349,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,ওয়্যার ট্রান্সফার apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,ব্যাংক অ্যাকাউন্ট নির্বাচন করুন DocType: Newsletter,Create and Send Newsletters,তৈরি করুন এবং পাঠান লেটার +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,সবগুলু যাচাই করুন DocType: Sales Order,Recurring Order,আবর্তক অর্ডার DocType: Company,Default Income Account,ডিফল্ট আয় অ্যাকাউন্ট apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,গ্রাহক গ্রুপ / গ্রাহক @@ -2376,6 +2381,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,বিরুদ্ধ DocType: Item,Warranty Period (in days),(দিন) ওয়্যারেন্টি সময়কাল apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,অপারেশন থেকে নিট ক্যাশ apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,যেমন ভ্যাট +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,বাল্ক মধ্যে মার্ক কর্মচারী এ্যাটেনডেন্স apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,আইটেম 4 DocType: Journal Entry Account,Journal Entry Account,জার্নাল এন্ট্রি অ্যাকাউন্ট DocType: Shopping Cart Settings,Quotation Series,উদ্ধৃতি সিরিজের @@ -2520,14 +2526,14 @@ DocType: Task,Actual Start Date (via Time Logs),প্রকৃত আরম্ DocType: Stock Reconciliation Item,Before reconciliation,পুনর্মিলন আগে apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},করুন {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),কর ও চার্জ যোগ (কোম্পানি একক) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,আইটেমটি ট্যাক্স সারি {0} টাইপ ট্যাক্স বা আয় বা ব্যয় বা প্রদেয় এর একাউন্ট থাকতে হবে +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,আইটেমটি ট্যাক্স সারি {0} টাইপ ট্যাক্স বা আয় বা ব্যয় বা প্রদেয় এর একাউন্ট থাকতে হবে DocType: Sales Order,Partly Billed,আংশিক দেখানো হয়েছিল DocType: Item,Default BOM,ডিফল্ট BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,পুনরায় টাইপ কোম্পানি নাম নিশ্চিত অনুগ্রহ apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,মোট বিশিষ্ট মাসিক DocType: Time Log Batch,Total Hours,মোট ঘণ্টা DocType: Journal Entry,Printing Settings,মুদ্রণ সেটিংস -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},মোট ডেবিট মোট ক্রেডিট সমান হতে হবে. পার্থক্য হল {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},মোট ডেবিট মোট ক্রেডিট সমান হতে হবে. পার্থক্য হল {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,স্বয়ংচালিত apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,ডেলিভারি নোট থেকে DocType: Time Log,From Time,সময় থেকে @@ -2573,7 +2579,7 @@ DocType: Purchase Invoice Item,Image View,চিত্র দেখুন DocType: Issue,Opening Time,খোলার সময় apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,থেকে এবং প্রয়োজনীয় তারিখগুলি apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,সিকিউরিটিজ ও পণ্য বিনিময়ের -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',বৈকল্পিক জন্য মেজার ডিফল্ট ইউনিট '{0}' টেমপ্লেট হিসাবে একই হতে হবে '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',বৈকল্পিক জন্য মেজার ডিফল্ট ইউনিট '{0}' টেমপ্লেট হিসাবে একই হতে হবে '{1}' DocType: Shipping Rule,Calculate Based On,ভিত্তি করে গণনা DocType: Delivery Note Item,From Warehouse,গুদাম থেকে DocType: Purchase Taxes and Charges,Valuation and Total,মূল্যনির্ধারণ এবং মোট @@ -2595,7 +2601,7 @@ DocType: Leave Application,Follow via Email,ইমেইলের মাধ্ DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,ছাড়ের পরিমাণ পরে ট্যাক্স পরিমাণ apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,শিশু অ্যাকাউন্ট এই অ্যাকাউন্টের জন্য বিদ্যমান. আপনি এই অ্যাকাউন্ট মুছে ফেলতে পারবেন না. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,উভয় ক্ষেত্রেই লক্ষ্য Qty বা টার্গেট পরিমাণ বাধ্যতামূলক -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},কোন ডিফল্ট BOM আইটেমটি জন্য বিদ্যমান {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},কোন ডিফল্ট BOM আইটেমটি জন্য বিদ্যমান {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,প্রথম পোস্টিং তারিখ নির্বাচন করুন apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,তারিখ খোলার তারিখ বন্ধ করার আগে করা উচিত DocType: Leave Control Panel,Carry Forward,সামনে আগাও @@ -2672,7 +2678,7 @@ DocType: Leave Type,Is Encash,ভাঙ্গান হয় DocType: Purchase Invoice,Mobile No,মোবাইল নাম্বার DocType: Payment Tool,Make Journal Entry,জার্নাল এন্ট্রি করতে DocType: Leave Allocation,New Leaves Allocated,নতুন পাতার বরাদ্দ -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,প্রকল্প-ভিত্তিক তথ্য উদ্ধৃতি জন্য উপলব্ধ নয় +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,প্রকল্প-ভিত্তিক তথ্য উদ্ধৃতি জন্য উপলব্ধ নয় DocType: Project,Expected End Date,সমাপ্তি প্রত্যাশিত তারিখ DocType: Appraisal Template,Appraisal Template Title,মূল্যায়ন টেমপ্লেট শিরোনাম apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,ব্যবসায়িক @@ -2720,6 +2726,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No., apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,একটি নির্দিষ্ট করুন DocType: Offer Letter,Awaiting Response,প্রতিক্রিয়ার জন্য অপেক্ষা apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,উপরে +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,টাইম ইন বিল করা হয়েছে DocType: Salary Slip,Earning & Deduction,রোজগার & সিদ্ধান্তগ্রহণ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,অ্যাকাউন্ট {0} একটি গ্রুপ হতে পারে না apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,ঐচ্ছিক. এই সেটিং বিভিন্ন লেনদেন ফিল্টার ব্যবহার করা হবে. @@ -2790,14 +2797,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,সফলভাবে এই কোম্পানীর সাথে সম্পর্কিত সব লেনদেন মোছা! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,আজকের তারিখে apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,পরীক্ষাকাল -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,ডিফল্ট গুদাম স্টক আইটেম জন্য বাধ্যতামূলক. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,ডিফল্ট গুদাম স্টক আইটেম জন্য বাধ্যতামূলক. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},মাসের জন্য বেতন পরিশোধ {0} এবং বছরের {1} DocType: Stock Settings,Auto insert Price List rate if missing,অটো সন্নিবেশ মূল্য তালিকা হার অনুপস্থিত যদি apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,মোট প্রদত্ত পরিমাণ ,Transferred Qty,স্থানান্তর করা Qty apps/erpnext/erpnext/config/learn.py +11,Navigating,সমুদ্রপথে apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,পরিকল্পনা -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,টাইম ইন ব্যাচ +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,টাইম ইন ব্যাচ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,জারি DocType: Project,Total Billing Amount (via Time Logs),মোট বিলিং পরিমাণ (সময় লগসমূহ মাধ্যমে) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,আমরা এই আইটেম বিক্রয় @@ -2805,7 +2812,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,পরিমাণ 0 তুলনায় বড় হওয়া উচিত DocType: Journal Entry,Cash Entry,ক্যাশ এণ্ট্রি DocType: Sales Partner,Contact Desc,যোগাযোগ নিম্নক্রমে -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","নৈমিত্তিক মত পাতা ধরণ, অসুস্থ ইত্যাদি" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","নৈমিত্তিক মত পাতা ধরণ, অসুস্থ ইত্যাদি" DocType: Email Digest,Send regular summary reports via Email.,ইমেইলের মাধ্যমে নিয়মিত সংক্ষিপ্ত রিপোর্ট পাঠান. DocType: Brand,Item Manager,আইটেম ম্যানেজার DocType: Cost Center,Add rows to set annual budgets on Accounts.,হিসাব বার্ষিক বাজেটের সেট সারি করো. @@ -2820,7 +2827,7 @@ DocType: GL Entry,Party Type,পার্টি শ্রেণী apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,কাচামাল প্রধান আইটেম হিসাবে একই হতে পারে না DocType: Item Attribute Value,Abbreviation,সংক্ষেপ apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,"{0} সীমা অতিক্রম করে, যেহেতু authroized না" -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,বেতন টেমপ্লেট মাস্টার. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,বেতন টেমপ্লেট মাস্টার. DocType: Leave Type,Max Days Leave Allowed,সর্বাধিক দিন ছেড়ে প্রেজেন্টেশন apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,শপিং কার্ট জন্য সেট করের রুল DocType: Payment Tool,Set Matching Amounts,সেট পরিমাণ সমন্বয় @@ -2833,7 +2840,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,বি DocType: Stock Settings,Role Allowed to edit frozen stock,ভূমিকা হিমায়িত শেয়ার সম্পাদনা করতে পারবেন ,Territory Target Variance Item Group-Wise,টেরিটরি উদ্দিষ্ট ভেদাংক আইটেমটি গ্রুপ-প্রজ্ঞাময় apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,সকল গ্রাহকের গ্রুপ -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} বাধ্যতামূলক. হয়তো মুদ্রা বিনিময় রেকর্ড {1} {2} করার জন্য তৈরি করা হয় না. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} বাধ্যতামূলক. হয়তো মুদ্রা বিনিময় রেকর্ড {1} {2} করার জন্য তৈরি করা হয় না. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,ট্যাক্স টেমপ্লেট বাধ্যতামূলক. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,অ্যাকাউন্ট {0}: মূল অ্যাকাউন্ট {1} অস্তিত্ব নেই DocType: Purchase Invoice Item,Price List Rate (Company Currency),মূল্যতালিকা হার (কোম্পানি একক) @@ -2853,8 +2860,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,আইটেম অন ,Item-wise Price List Rate,আইটেম-জ্ঞানী মূল্য তালিকা হার apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,সরবরাহকারী উদ্ধৃতি DocType: Quotation,In Words will be visible once you save the Quotation.,আপনি উধৃতি সংরক্ষণ একবার শব্দ দৃশ্যমান হবে. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} থামানো হয় -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},বারকোড {0} ইতিমধ্যে আইটেম ব্যবহৃত {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} থামানো হয় +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},বারকোড {0} ইতিমধ্যে আইটেম ব্যবহৃত {1} DocType: Lead,Add to calendar on this date,এই তারিখে ক্যালেন্ডারে যোগ apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,শিপিং খরচ যোগ করার জন্য বিধি. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,আসন্ন ঘটনাবলী @@ -2880,8 +2887,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling, apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,অন্তত একটি গুদাম বাধ্যতামূলক DocType: Serial No,Out of Warranty,পাটা আউট DocType: BOM Replace Tool,Replace,প্রতিস্থাপন করা -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} বিক্রয় চালান বিরুদ্ধে {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,মেজার ডিফল্ট ইউনিট লিখুন দয়া করে +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} বিক্রয় চালান বিরুদ্ধে {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,মেজার ডিফল্ট ইউনিট লিখুন দয়া করে DocType: Purchase Invoice Item,Project Name,প্রকল্পের নাম DocType: Supplier,Mention if non-standard receivable account,উল্লেখ অ স্ট্যান্ডার্ড প্রাপ্য তাহলে DocType: Journal Entry Account,If Income or Expense,আয় বা ব্যয় যদি @@ -2906,7 +2913,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,অর্থবছরের: {0} না বিদ্যমান DocType: Currency Exchange,To Currency,মুদ্রা DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,নিম্নলিখিত ব্যবহারকারীদের ব্লক দিনের জন্য চলে যায় অ্যাপ্লিকেশন অনুমোদন করার অনুমতি দিন. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,ব্যয় দাবি প্রকারভেদ. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,ব্যয় দাবি প্রকারভেদ. DocType: Item,Taxes,কর apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,প্রদত্ত এবং বিতরিত হয় নি DocType: Project,Default Cost Center,ডিফল্ট খরচের কেন্দ্র @@ -2936,7 +2943,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},সারি # {0}: সিরিয়াল কোন {1} সঙ্গে মেলে না {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,নৈমিত্তিক ছুটি DocType: Batch,Batch ID,ব্যাচ আইডি -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},উল্লেখ্য: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},উল্লেখ্য: {0} ,Delivery Note Trends,হুণ্ডি প্রবণতা apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,এই সপ্তাহের সংক্ষিপ্ত apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} সারিতে একটি ক্রয় বা উপ-সংকুচিত আইটেম হতে হবে {1} @@ -2976,6 +2983,7 @@ DocType: Project Task,Pending Review,মুলতুবি পর্যালো apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,দিতে এখানে ক্লিক করুন DocType: Task,Total Expense Claim (via Expense Claim),(ব্যয় দাবি মাধ্যমে) মোট ব্যয় দাবি apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,কাস্টমার আইডি +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,মার্ক অনুপস্থিত apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,সময় সময় থেকে তার চেয়ে অনেক বেশী করা আবশ্যক DocType: Journal Entry Account,Exchange Rate,বিনিময় হার apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,বিক্রয় আদেশ {0} দাখিল করা হয় না @@ -3023,7 +3031,7 @@ DocType: Item Group,Default Expense Account,ডিফল্ট ব্যায DocType: Employee,Notice (days),নোটিশ (দিন) DocType: Tax Rule,Sales Tax Template,সেলস ট্যাক্স টেমপ্লেট DocType: Employee,Encashment Date,নগদীকরণ তারিখ -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","ভাউচার বিরুদ্ধে প্রকার ক্রয় আদেশ এক, ক্রয় চালান বা জার্নাল এন্ট্রিতে হতে হবে" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","ভাউচার বিরুদ্ধে প্রকার ক্রয় আদেশ এক, ক্রয় চালান বা জার্নাল এন্ট্রিতে হতে হবে" DocType: Account,Stock Adjustment,শেয়ার সামঞ্জস্য apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},ডিফল্ট কার্যকলাপ খরচ কার্যকলাপ টাইপ জন্য বিদ্যমান - {0} DocType: Production Order,Planned Operating Cost,পরিকল্পনা অপারেটিং খরচ @@ -3077,6 +3085,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,এন্ট্রি বন্ধ লিখুন DocType: BOM,Rate Of Materials Based On,হার উপকরণ ভিত্তি করে apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,সাপোর্ট Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,সব অচিহ্নিত apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},কোম্পানি গুদাম অনুপস্থিত {0} DocType: POS Profile,Terms and Conditions,শর্তাবলী apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},তারিখ রাজস্ব বছরের মধ্যে হতে হবে. = জন্ম Assuming {0} @@ -3098,7 +3107,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'",", ডিফল্ট হিসাবে চলতি অর্থবছরেই সেট করতে 'ডিফল্ট হিসাবে সেট করুন' ক্লিক করুন" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),সমর্থন ইমেল আইডি জন্য সেটআপ ইনকামিং সার্ভার. (যেমন support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,ঘাটতি Qty -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,আইটেম বৈকল্পিক {0} একই বৈশিষ্ট্যাবলী সঙ্গে বিদ্যমান +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,আইটেম বৈকল্পিক {0} একই বৈশিষ্ট্যাবলী সঙ্গে বিদ্যমান DocType: Salary Slip,Salary Slip,বেতন পিছলানো apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,'তারিখ পর্যন্ত' প্রয়োজন DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","প্যাকেজ বিতরণ করা জন্য স্লিপ বোঁচকা নির্মাণ করা হয়. বাক্স সংখ্যা, প্যাকেজের বিষয়বস্তু এবং তার ওজন অবহিত করা." @@ -3146,7 +3155,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,দে DocType: Item Attribute Value,Attribute Value,মূল্য গুন apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","ইমেইল আইডি ইতিমধ্যে বিদ্যমান নেই, অনন্য হওয়া আবশ্যক {0}" ,Itemwise Recommended Reorder Level,Itemwise রেকর্ডার শ্রেনী প্রস্তাবিত -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,প্রথম {0} দয়া করে নির্বাচন করুন +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,প্রথম {0} দয়া করে নির্বাচন করুন DocType: Features Setup,To get Item Group in details table,বিবরণ টেবিলে আইটেম গ্রুপ পেতে apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,আইটেম এর ব্যাচ {0} {1} মেয়াদ শেষ হয়ে গেছে. DocType: Sales Invoice,Commission,কমিশন @@ -3190,7 +3199,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,বিশিষ্ট ভাউচার পেতে DocType: Warranty Claim,Resolved By,দ্বারা এই সমস্যাগুলি সমাধান DocType: Appraisal,Start Date,শুরুর তারিখ -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,একটি নির্দিষ্ট সময়ের জন্য পাতার বরাদ্দ. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,একটি নির্দিষ্ট সময়ের জন্য পাতার বরাদ্দ. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,চেক এবং আমানত ভুল সাফ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,যাচাই করার জন্য এখানে ক্লিক করুন apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,অ্যাকাউন্ট {0}: আপনি অভিভাবক অ্যাকাউন্ট হিসাবে নিজেকে ধার্য করতে পারবেন না @@ -3210,7 +3219,7 @@ DocType: Employee,Educational Qualification,শিক্ষাগত যোগ DocType: Workstation,Operating Costs,অপারেটিং খরচ DocType: Employee Leave Approver,Employee Leave Approver,কর্মী ছুটি রাজসাক্ষী apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} সফলভাবে আমাদের নিউজলেটার তালিকায় যুক্ত হয়েছে. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},সারি {0}: একটি রেকর্ডার এন্ট্রি ইতিমধ্যে এই গুদাম জন্য বিদ্যমান {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},সারি {0}: একটি রেকর্ডার এন্ট্রি ইতিমধ্যে এই গুদাম জন্য বিদ্যমান {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","উদ্ধৃতি দেয়া হয়েছে, কারণ যত হারিয়ে ডিক্লেয়ার করতে পারেন না." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,ক্রয় মাস্টার ম্যানেজার apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,অর্ডার {0} দাখিল করতে হবে উৎপাদন @@ -3234,7 +3243,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,চালান {0} ইতিমধ্যেই জমা দেওয়া হয়েছে বিক্রয় apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,সমাপ্তির তারিখ DocType: Purchase Invoice Item,Amount (Company Currency),পরিমাণ (কোম্পানি একক) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,সংগঠনের ইউনিটের (ডিপার্টমেন্ট) মাস্টার. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,সংগঠনের ইউনিটের (ডিপার্টমেন্ট) মাস্টার. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,বৈধ মোবাইল টি লিখুন দয়া করে DocType: Budget Detail,Budget Detail,বাজেট বিস্তারিত apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,পাঠানোর আগে বার্তা লিখতে @@ -3250,13 +3259,13 @@ DocType: Purchase Receipt Item,Received and Accepted,গৃহীত হয় ,Serial No Service Contract Expiry,সিরিয়াল কোন সার্ভিস চুক্তি মেয়াদ উত্তীর্ন DocType: Item,Unit of Measure Conversion,পরিমাপ রূপান্তর ইউনিট apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,কর্মচারী পরিবর্তন করা যাবে না -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,আপনি ক্রেডিট এবং একই সময়ে একই অ্যাকাউন্ট ডেবিট পারবেন না +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,আপনি ক্রেডিট এবং একই সময়ে একই অ্যাকাউন্ট ডেবিট পারবেন না DocType: Naming Series,Help HTML,হেল্প এইচটিএমএল apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},100% হওয়া উচিত নির্ধারিত মোট গুরুত্ব. এটা হল {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},{0} আইটেম জন্য পার ওভার জন্য ভাতা {1} DocType: Address,Name of person or organization that this address belongs to.,এই অঙ্ক জন্যে যে ব্যক্তি বা প্রতিষ্ঠানের নাম. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,আপনার সরবরাহকারীদের -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,বিক্রয় আদেশ তৈরি করা হয় যেমন বিচ্ছিন্ন সেট করা যায় না. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,বিক্রয় আদেশ তৈরি করা হয় যেমন বিচ্ছিন্ন সেট করা যায় না. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,আরেকটি বেতন কাঠামো {0} কর্মচারীর জন্য সক্রিয় {1}. তার অবস্থা 'নিষ্ক্রিয়' এগিয়ে যাওয়ার জন্য দয়া করে নিশ্চিত করুন. DocType: Purchase Invoice,Contact,যোগাযোগ apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,থেকে পেয়েছি @@ -3266,11 +3275,11 @@ DocType: Item,Has Serial No,সিরিয়াল কোন আছে DocType: Employee,Date of Issue,প্রদান এর তারিখ apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: {0} থেকে {1} এর জন্য apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},সারি # {0}: আইটেমের জন্য সেট সরবরাহকারী {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,আইটেম {1} সংযুক্ত ওয়েবসাইট চিত্র {0} পাওয়া যাবে না +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,আইটেম {1} সংযুক্ত ওয়েবসাইট চিত্র {0} পাওয়া যাবে না DocType: Issue,Content Type,কোন ধরনের apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,কম্পিউটার DocType: Item,List this Item in multiple groups on the website.,ওয়েবসাইটে একাধিক গ্রুপ এই আইটেম তালিকা. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,অন্যান্য মুদ্রা হিসাব অনুমতি মাল্টি মুদ্রা বিকল্প চেক করুন +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,অন্যান্য মুদ্রা হিসাব অনুমতি মাল্টি মুদ্রা বিকল্প চেক করুন apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,আইটেম: {0} সিস্টেমের মধ্যে উপস্থিত না apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,আপনি হিমায়িত মূল্য নির্ধারণ করার জন্য অনুমতিপ্রাপ্ত নন DocType: Payment Reconciliation,Get Unreconciled Entries,অসমর্পিত এন্ট্রি পেতে @@ -3280,14 +3289,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,এটার DocType: Delivery Note,To Warehouse,গুদাম থেকে apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},অ্যাকাউন্ট {0} অর্থবছরের জন্য একবারের বেশি প্রবেশ করা হয়েছে {1} ,Average Commission Rate,গড় কমিশন হার -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'সিরিয়াল নং আছে' কখনই নন-ষ্টক আইটেমের ক্ষেত্রে 'হ্যাঁ' হতে পারবে না +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'সিরিয়াল নং আছে' কখনই নন-ষ্টক আইটেমের ক্ষেত্রে 'হ্যাঁ' হতে পারবে না apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,এ্যাটেনডেন্স ভবিষ্যতে তারিখগুলি জন্য চিহ্নিত করা যাবে না DocType: Pricing Rule,Pricing Rule Help,প্রাইসিং শাসন সাহায্য DocType: Purchase Taxes and Charges,Account Head,অ্যাকাউন্ট হেড apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,আইটেম অবতরণ খরচ নিরূপণ করার জন্য অতিরিক্ত খরচ আপডেট apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,বৈদ্যুতিক DocType: Stock Entry,Total Value Difference (Out - In),মোট মূল্য পার্থক্য (আউট - ইন) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,সারি {0}: বিনিময় হার বাধ্যতামূলক +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,সারি {0}: বিনিময় হার বাধ্যতামূলক apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},ইউজার আইডি কর্মচারী জন্য নির্ধারণ করে না {0} DocType: Stock Entry,Default Source Warehouse,ডিফল্ট সোর্স ওয়্যারহাউস DocType: Item,Customer Code,গ্রাহক কোড @@ -3306,15 +3315,15 @@ DocType: Notification Control,Sales Invoice Message,বিক্রয় চা apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,অ্যাকাউন্ট {0} সমাপ্তি ধরনের দায় / ইক্যুইটি হওয়া আবশ্যক DocType: Authorization Rule,Based On,উপর ভিত্তি করে DocType: Sales Order Item,Ordered Qty,আদেশ Qty -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,আইটেম {0} নিষ্ক্রিয় করা হয় +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,আইটেম {0} নিষ্ক্রিয় করা হয় DocType: Stock Settings,Stock Frozen Upto,শেয়ার হিমায়িত পর্যন্ত apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},থেকে এবং আবর্তক সময়সীমার জন্য বাধ্যতামূলক তারিখ সময়ের {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,প্রকল্পের কার্যকলাপ / টাস্ক. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,বেতন Slips নির্মাণ +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,বেতন Slips নির্মাণ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","প্রযোজ্য হিসাবে নির্বাচিত করা হয় তাহলে কেনার, চেক করা আবশ্যক {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,বাট্টা কম 100 হতে হবে DocType: Purchase Invoice,Write Off Amount (Company Currency),পরিমাণ বন্ধ লিখুন (কোম্পানি একক) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,সারি # {0}: পুনর্বিন্যাস পরিমাণ সেট করুন +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,সারি # {0}: পুনর্বিন্যাস পরিমাণ সেট করুন DocType: Landed Cost Voucher,Landed Cost Voucher,ল্যান্ড কস্ট ভাউচার apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},সেট করুন {0} DocType: Purchase Invoice,Repeat on Day of Month,মাস দিন পুনরাবৃত্তি @@ -3366,7 +3375,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,প্রগতি গুদাম ডিফল্ট কাজ apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,অ্যাকাউন্টিং লেনদেনের জন্য ডিফল্ট সেটিংস. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,প্রত্যাশিত তারিখ উপাদান অনুরোধ তারিখের আগে হতে পারে না -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,আইটেম {0} একটি সেলস পেইজ হতে হবে +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,আইটেম {0} একটি সেলস পেইজ হতে হবে DocType: Naming Series,Update Series Number,আপডেট সিরিজ সংখ্যা DocType: Account,Equity,ন্যায় DocType: Sales Order,Printing Details,মুদ্রণ বিস্তারিত @@ -3418,7 +3427,7 @@ DocType: Task,Review Date,পর্যালোচনা তারিখ DocType: Purchase Invoice,Advance Payments,অগ্রিম প্রদান DocType: Purchase Taxes and Charges,On Net Total,একুন উপর apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,{0} সারিতে উদ্দিষ্ট গুদাম উৎপাদন অর্ডার হিসাবে একই হতে হবে -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,কোন অনুমতি পেমেন্ট টুল ব্যবহার +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,কোন অনুমতি পেমেন্ট টুল ব্যবহার apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,% এর আবৃত্ত জন্য নির্দিষ্ট না 'সূচনা ইমেল ঠিকানা' apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,মুদ্রা একক কিছু অন্যান্য মুদ্রা ব্যবহার এন্ট্রি করার পর পরিবর্তন করা যাবে না DocType: Company,Round Off Account,অ্যাকাউন্ট বন্ধ বৃত্তাকার @@ -3441,7 +3450,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,আইটেমের পরিমাণ কাঁচামাল দেওয়া পরিমাণে থেকে repacking / উত্পাদন পরে প্রাপ্ত DocType: Payment Reconciliation,Receivable / Payable Account,গ্রহনযোগ্য / প্রদেয় অ্যাকাউন্ট DocType: Delivery Note Item,Against Sales Order Item,বিক্রয় আদেশ আইটেমটি বিরুদ্ধে -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},অ্যাট্রিবিউট মূল্য গুন উল্লেখ করুন {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},অ্যাট্রিবিউট মূল্য গুন উল্লেখ করুন {0} DocType: Item,Default Warehouse,ডিফল্ট ওয়্যারহাউস DocType: Task,Actual End Date (via Time Logs),প্রকৃত শেষ তারিখ (সময় লগসমূহ মাধ্যমে) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},বাজেট গ্রুপ অ্যাকাউন্ট বিরুদ্ধে নিয়োগ করা যাবে না {0} @@ -3466,10 +3475,10 @@ DocType: Lead,Blog Subscriber,ব্লগ গ্রাহক apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,মান উপর ভিত্তি করে লেনদেনের সীমিত করার নিয়ম তৈরি করুন. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","চেক করা থাকলে, মোট কোন. কার্যদিবসের ছুটির অন্তর্ভুক্ত করা হবে, এবং এই বেতন প্রতি দিন মূল্য কমাতে হবে" DocType: Purchase Invoice,Total Advance,মোট অগ্রিম -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,প্রসেসিং বেতনের +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,প্রসেসিং বেতনের DocType: Opportunity Item,Basic Rate,মৌলিক হার DocType: GL Entry,Credit Amount,ক্রেডিট পরিমাণ -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,লস্ট হিসেবে সেট +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,লস্ট হিসেবে সেট apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,পরিশোধের রশিদের উল্লেখ্য DocType: Supplier,Credit Days Based On,ক্রেডিট দিনের উপর ভিত্তি করে DocType: Tax Rule,Tax Rule,ট্যাক্স রুল @@ -3499,7 +3508,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,গৃহীত পরিমা apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} বিদ্যমান নয় apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,গ্রাহকরা উত্থাপিত বিল. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,প্রকল্প আইডি -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},সারি কোন {0}: পরিমাণ ব্যয় দাবি {1} বিরুদ্ধে পরিমাণ অপেক্ষারত তার চেয়ে অনেক বেশী হতে পারে না. অপেক্ষারত পরিমাণ {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},সারি কোন {0}: পরিমাণ ব্যয় দাবি {1} বিরুদ্ধে পরিমাণ অপেক্ষারত তার চেয়ে অনেক বেশী হতে পারে না. অপেক্ষারত পরিমাণ {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} গ্রাহকদের যোগ করা হয়েছে DocType: Maintenance Schedule,Schedule,সময়সূচি DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","এই খরচ কেন্দ্র বাজেট নির্ধারণ করুন. বাজেটের কর্ম নির্ধারণ করার জন্য, দেখুন "কোম্পানি তালিকা"" @@ -3560,19 +3569,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,পিওএস প্রোফাইল DocType: Payment Gateway Account,Payment URL Message,পেমেন্ট ইউআরএল পাঠান apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","সেটিং বাজেটের, লক্ষ্যমাত্রা ইত্যাদি জন্য ঋতু" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,সারি {0}: পেমেন্ট পরিমাণ বকেয়া পরিমাণ তার চেয়ে অনেক বেশী হতে পারে না +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,সারি {0}: পেমেন্ট পরিমাণ বকেয়া পরিমাণ তার চেয়ে অনেক বেশী হতে পারে না apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,অবৈতনিক মোট -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,টাইম ইন বিলযোগ্য নয় -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","{0} আইটেম একটি টেমপ্লেট, তার ভিন্নতা একটি নির্বাচন করুন" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,টাইম ইন বিলযোগ্য নয় +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","{0} আইটেম একটি টেমপ্লেট, তার ভিন্নতা একটি নির্বাচন করুন" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,ক্রেতা apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,নেট বেতন নেতিবাচক হতে পারে না -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,নিজে বিরুদ্ধে ভাউচার লিখুন দয়া করে +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,নিজে বিরুদ্ধে ভাউচার লিখুন দয়া করে DocType: SMS Settings,Static Parameters,স্ট্যাটিক পরামিতি DocType: Purchase Order,Advance Paid,অগ্রিম প্রদত্ত DocType: Item,Item Tax,আইটেমটি ট্যাক্স apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,সরবরাহকারী উপাদান apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,আবগারি চালান DocType: Expense Claim,Employees Email Id,এমপ্লয়িজ ইমেইল আইডি +DocType: Employee Attendance Tool,Marked Attendance,চিহ্নিত এ্যাটেনডেন্স apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,বর্তমান দায় apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,ভর এসএমএস আপনার পরিচিতি পাঠান DocType: Purchase Taxes and Charges,Consider Tax or Charge for,জন্য ট্যাক্স বা চার্জ ধরে নেবেন @@ -3595,7 +3605,7 @@ DocType: Item Attribute,Numeric Values,সাংখ্যিক মান apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,লোগো সংযুক্ত DocType: Customer,Commission Rate,কমিশন হার apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,ভেরিয়েন্ট করুন -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,ডিপার্টমেন্ট দ্বারা ব্লক ছেড়ে অ্যাপ্লিকেশন. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,ডিপার্টমেন্ট দ্বারা ব্লক ছেড়ে অ্যাপ্লিকেশন. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,কার্ট খালি হয় DocType: Production Order,Actual Operating Cost,আসল অপারেটিং খরচ apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,রুট সম্পাদনা করা যাবে না. @@ -3614,7 +3624,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,পরিমাণ এই সীমার নিচে পড়ে তাহলে স্বয়ংক্রিয়ভাবে উপাদান অনুরোধ করুন ,Item-wise Purchase Register,আইটেম-বিজ্ঞ ক্রয় নিবন্ধন DocType: Batch,Expiry Date,মেয়াদ শেষ হওয়ার তারিখ -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","পুনর্বিন্যাস স্তর সেট করতে, আইটেমটি একটি ক্রয় আইটেম বা উৎপাদন আইটেম হতে হবে" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","পুনর্বিন্যাস স্তর সেট করতে, আইটেমটি একটি ক্রয় আইটেম বা উৎপাদন আইটেম হতে হবে" ,Supplier Addresses and Contacts,সরবরাহকারী ঠিকানা এবং পরিচিতি apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,প্রথম শ্রেণী নির্বাচন করুন apps/erpnext/erpnext/config/projects.py +18,Project master.,প্রকল্প মাস্টার. diff --git a/erpnext/translations/bs.csv b/erpnext/translations/bs.csv index fbabf3339c..a380e0b597 100644 --- a/erpnext/translations/bs.csv +++ b/erpnext/translations/bs.csv @@ -164,14 +164,14 @@ DocType: Journal Entry Account,Credit in Company Currency,Credit Company valuta DocType: Delivery Note,Installation Status,Status instalacije apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Količina prihvaćeno + odbijeno mora biti jednaka zaprimljenoj količini proizvoda {0} DocType: Item,Supply Raw Materials for Purchase,Supply sirovine za kupovinu -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Stavka {0} mora bitikupnja artikla +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Stavka {0} mora bitikupnja artikla DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Preuzmite Template, popunite odgovarajuće podatke i priložite modifikovani datoteku. Svi datumi i zaposlenog kombinacija u odabranom periodu doći će u predlošku, sa postojećim pohađanje evidencije" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,Stavka {0} nije aktivan ili kraj života je postignut DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Hoće li se obnavljaju nakon prodaje fakture je Prijavljen. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","To uključuje porez u redu {0} u stopu točke , porezi u redovima {1} također moraju biti uključeni" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Podešavanja modula ljudskih resursa +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","To uključuje porez u redu {0} u stopu točke , porezi u redovima {1} također moraju biti uključeni" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Podešavanja modula ljudskih resursa DocType: SMS Center,SMS Center,SMS centar DocType: BOM Replace Tool,New BOM,Novi BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Batch Time Dnevnici za naplatu. @@ -199,7 +199,7 @@ DocType: Offer Letter,Select Terms and Conditions,Odaberite uvjeti DocType: Production Planning Tool,Sales Orders,Sales Orders DocType: Purchase Taxes and Charges,Valuation,Procjena ,Purchase Order Trends,Trendovi narudžbenica kupnje -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Dodijeli odsustva za godinu. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Dodijeli odsustva za godinu. DocType: Earning Type,Earning Type,Zarada Vid DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Onemogućite planiranje kapaciteta i Time Tracking DocType: Bank Reconciliation,Bank Account,Žiro račun @@ -237,7 +237,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Specifikacija web stranice artikla DocType: Payment Tool,Reference No,Poziv na broj apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Ostavite blokirani -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Artikal {0} je dosegao svoj rok trajanja na {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Artikal {0} je dosegao svoj rok trajanja na {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,godišnji DocType: Stock Reconciliation Item,Stock Reconciliation Item,Stock Pomirenje Item DocType: Stock Entry,Sales Invoice No,Faktura prodaje br @@ -249,7 +249,7 @@ DocType: Item,Minimum Order Qty,Minimalna količina za naručiti DocType: Pricing Rule,Supplier Type,Dobavljač Tip DocType: Item,Publish in Hub,Objavite u Hub ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Artikal {0} je otkazan +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Artikal {0} je otkazan apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Materijal zahtjev DocType: Bank Reconciliation,Update Clearance Date,Ažurirajte provjeri datum DocType: Item,Purchase Details,Kupnja Detalji @@ -261,11 +261,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Odbijen Količina DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Polje dostupan u otpremnicu, ponudu, prodaje fakture, prodaja reda" DocType: SMS Settings,SMS Sender Name,SMS naziv pošiljaoca DocType: Contact,Is Primary Contact,Je primarni kontakt +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Time Prijavite se Batch računa DocType: Notification Control,Notification Control,Obavijest kontrola DocType: Lead,Suggestions,Prijedlozi DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Postavite Stavka Grupa-mudre proračune na ovom području. Također možete uključiti sezonalnost postavljanjem Distribution. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},Unesite roditelja grupe računa za skladište {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Plaćanje protiv {0} {1} ne može biti veći od preostalog iznosa {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Plaćanje protiv {0} {1} ne može biti veći od preostalog iznosa {2} DocType: Supplier,Address HTML,Adressa u HTML-u DocType: Lead,Mobile No.,Mobitel broj DocType: Maintenance Schedule,Generate Schedule,Generiranje Raspored @@ -282,7 +283,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Pohranjen Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Pogrešna lozinka DocType: Item,Variant Of,Varijanta -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Stavka {0} mora biti usluga Stavka apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',Završene Qty ne može biti veća od 'Količina za proizvodnju' DocType: Period Closing Voucher,Closing Account Head,Zatvaranje računa šefa DocType: Employee,External Work History,Vanjski History Work @@ -294,10 +294,10 @@ DocType: Newsletter,Newsletter,Bilten DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Obavijesti putem e-pošte na stvaranje automatskog Materijal Zahtjeva DocType: Journal Entry,Multi Currency,Multi valuta DocType: Payment Reconciliation Invoice,Invoice Type,Tip fakture -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Otpremnica +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Otpremnica apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Postavljanje Porezi apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,Plaćanje Entry je izmijenjena nakon što ste ga izvukao. Molimo vas da se ponovo povucite. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} dva puta ušao u točki poreza +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} dva puta ušao u točki poreza apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Pregled za ovaj tjedan i aktivnostima na čekanju DocType: Workstation,Rent Cost,Rent cost apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Molimo odaberite mjesec i godinu @@ -308,7 +308,7 @@ DocType: Shipping Rule,Valid for Countries,Vrijedi za zemlje DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Svi uvoz srodnih područja poput valute , stopa pretvorbe , uvoz ukupno , uvoz sveukupnom itd su dostupni u Račun kupnje , dobavljač kotaciju , prilikom kupnje proizvoda, narudžbenice i sl." apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"Ovaj proizvod predložak i ne može se koristiti u transakcijama. Stavka atributi će se kopirati u više varijanti, osim 'Ne Copy ""je postavljena" apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Ukupno Order Smatran -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Oznaka zaposlenika ( npr. CEO , direktor i sl. ) ." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Oznaka zaposlenika ( npr. CEO , direktor i sl. ) ." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,Unesite ' ponovite na dan u mjesecu ' na terenu vrijednosti DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,Stopa po kojoj Kupac valuta se pretvaraju u kupca osnovne valute DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Dostupno u sastavnicama, otpremnicama, računu kupnje, nalogu za proizvodnju, narudžbi kupnje, primci, prodajnom računu, narudžbi kupca, ulaznog naloga i kontrolnoj kartici" @@ -357,7 +357,7 @@ DocType: Workstation,Consumable Cost,potrošni cost apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) mora imati ulogu 'Leave Approver' DocType: Purchase Receipt,Vehicle Date,Vozilo Datum apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,liječnički -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Razlog za gubljenje +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Razlog za gubljenje apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Workstation je zatvoren sljedećih datuma po Holiday List: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Mogućnosti DocType: Employee,Single,Singl @@ -385,14 +385,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Channel Partner DocType: Account,Old Parent,Stari Roditelj DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,Prilagodite uvodni tekst koji ide kao dio tog e-maila. Svaka transakcija ima zaseban uvodni tekst. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Ne uključuju simbole (npr. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Sales Manager Master apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Global postavke za sve proizvodne procese. DocType: Accounts Settings,Accounts Frozen Upto,Računi Frozen Upto DocType: SMS Log,Sent On,Poslano na adresu -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Atribut {0} odabrani više puta u atributi tabeli +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Atribut {0} odabrani više puta u atributi tabeli DocType: HR Settings,Employee record is created using selected field. ,Zaposlenika rekord je stvorio pomoću odabranog polja. DocType: Sales Order,Not Applicable,Nije primjenjivo -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Majstor za odmor . +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Majstor za odmor . DocType: Material Request Item,Required Date,Potrebna Datum DocType: Delivery Note,Billing Address,Adresa za naplatu apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,Unesite kod artikal . @@ -428,7 +429,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,Unesite skladište za koje Materijal Zahtjev će biti podignuta DocType: Production Order,Additional Operating Cost,Dodatni operativnih troškova apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,kozmetika -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Spojiti , ova svojstva moraju biti isti za obje stavke" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Spojiti , ova svojstva moraju biti isti za obje stavke" DocType: Shipping Rule,Net Weight,Neto težina DocType: Employee,Emergency Phone,Hitna Telefon ,Serial No Warranty Expiry,Serijski Nema jamstva isteka @@ -486,17 +487,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Obračun i Status isporuke apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Ponovite Kupci DocType: Leave Control Panel,Allocate,Dodijeli -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Povrat robe +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Povrat robe DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Odaberite narudžbe iz kojih želite stvoriti radne naloge. DocType: Item,Delivered by Supplier (Drop Ship),Isporučuje Dobavljač (Drop Ship) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Plaća komponente. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Plaća komponente. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Baza potencijalnih kupaca. DocType: Authorization Rule,Customer or Item,Customer ili Stavka apps/erpnext/erpnext/config/crm.py +17,Customer database.,Šifarnik kupaca DocType: Quotation,Quotation To,Ponuda za DocType: Lead,Middle Income,Srednji Prihodi apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Otvaranje ( Cr ) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Uobičajeno mjerna jedinica za artikl {0} ne može se mijenjati izravno, jer ste već napravili neke transakcije (e) sa drugim UOM. Morat ćete stvoriti nove stavke koristiti drugačiji Uobičajeno UOM." +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Uobičajeno mjerna jedinica za artikl {0} ne može se mijenjati izravno, jer ste već napravili neke transakcije (e) sa drugim UOM. Morat ćete stvoriti nove stavke koristiti drugačiji Uobičajeno UOM." apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Dodijeljeni iznos ne može biti negativan DocType: Purchase Order Item,Billed Amt,Naplaćeni izn DocType: Warehouse,A logical Warehouse against which stock entries are made.,A logično Skladište protiv kojih su napravljeni unosa zaliha. @@ -515,14 +516,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Prodaja Porezi i naknade DocType: Employee,Organization Profile,Profil organizacije apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,Molimo postava numeriranje serija za sudjelovanje putem Podešavanje> numeriranja serije DocType: Employee,Reason for Resignation,Razlog za ostavku -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Predložak za ocjene rada . +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Predložak za ocjene rada . DocType: Payment Reconciliation,Invoice/Journal Entry Details,Račun / Journal Entry Detalji apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} ' {1} ' nije u fiskalnoj godini {2} DocType: Buying Settings,Settings for Buying Module,Postavke za kupovinu modul apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,Molimo prvo unesite Kupovina prijem DocType: Buying Settings,Supplier Naming By,Dobavljač nazivanje DocType: Activity Type,Default Costing Rate,Uobičajeno Costing Rate -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Održavanje Raspored +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Održavanje Raspored apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Zatim Cjenovna Pravila filtriraju se temelji na Kupca, Kupac Group, Teritorij, dobavljač, proizvođač tip, Kampanja, prodajni partner i sl." apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Neto promjena u zalihama DocType: Employee,Passport Number,Putovnica Broj @@ -561,7 +562,7 @@ DocType: Purchase Invoice,Quarterly,Kvartalno DocType: Selling Settings,Delivery Note Required,Potrebna je otpremnica DocType: Sales Order Item,Basic Rate (Company Currency),Osnovna stopa (valuta preduzeća) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush sirovine na osnovu -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,Unesite Detalji +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,Unesite Detalji DocType: Purchase Receipt,Other Details,Ostali detalji DocType: Account,Accounts,Konta apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,marketing @@ -574,7 +575,7 @@ DocType: Employee,Provide email id registered in company,Osigurati e id registri DocType: Hub Settings,Seller City,Prodavač City DocType: Email Digest,Next email will be sent on:,Sljedeća e-mail će biti poslan na: DocType: Offer Letter Term,Offer Letter Term,Ponuda Pismo Term -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Stavka ima varijante. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Stavka ima varijante. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Stavka {0} nije pronađena DocType: Bin,Stock Value,Stock vrijednost apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Tree Type @@ -582,7 +583,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Kol Potrošeno po jedinici DocType: Serial No,Warranty Expiry Date,Datum isteka jamstva DocType: Material Request Item,Quantity and Warehouse,Količina i skladišta DocType: Sales Invoice,Commission Rate (%),Komisija stopa (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Protiv vaučera Tip mora biti jedan od naloga prodaje, prodaje fakture ili Journal Entry" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Protiv vaučera Tip mora biti jedan od naloga prodaje, prodaje fakture ili Journal Entry" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Zračno-kosmički prostor DocType: Journal Entry,Credit Card Entry,Credit Card Entry apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Zadatak Tema @@ -669,10 +670,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Odgovornost apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Sankcionisano Iznos ne može biti veći od potraživanja Iznos u nizu {0}. DocType: Company,Default Cost of Goods Sold Account,Uobičajeno Nabavna vrednost prodate robe računa -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Popis Cijena ne bira +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Popis Cijena ne bira DocType: Employee,Family Background,Obitelj Pozadina DocType: Process Payroll,Send Email,Pošaljite e-mail -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Upozorenje: Invalid Prilog {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Upozorenje: Invalid Prilog {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Bez dozvole DocType: Company,Default Bank Account,Zadani bankovni račun apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Da biste filtrirali na osnovu stranke, izaberite Party prvog tipa" @@ -700,7 +701,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Upiti DocType: Features Setup,"To enable ""Point of Sale"" features",Da biste omogućili "Point of Sale" karakteristika DocType: Bin,Moving Average Rate,Premještanje prosječna stopa DocType: Production Planning Tool,Select Items,Odaberite artikle -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} {1} protiv Bill od {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} {1} protiv Bill od {2} DocType: Maintenance Visit,Completion Status,Završetak Status DocType: Sales Invoice Item,Target Warehouse,Ciljana galerija DocType: Item,Allow over delivery or receipt upto this percent,Dozvolite preko isporuke ili primitka upto ovu posto @@ -760,7 +761,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Majs apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},U nemogućnosti da pronađe termin u narednih {0} dana za operaciju {1} DocType: Production Order,Plan material for sub-assemblies,Plan materijal za podsklopove apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} mora biti aktivna -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,Molimo odaberite vrstu dokumenta prvi +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Molimo odaberite vrstu dokumenta prvi apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Goto Košarica apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Odustani Posjeta materijala {0} prije otkazivanja ovog održavanja pohod DocType: Salary Slip,Leave Encashment Amount,Ostavite Encashment Iznos @@ -778,7 +779,7 @@ DocType: Purchase Receipt,Range,Domet DocType: Supplier,Default Payable Accounts,Uobičajeno Računi dobavljača apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Zaposlenik {0} nije aktivan ili ne postoji DocType: Features Setup,Item Barcode,Barkod artikla -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Stavka Varijante {0} ažurirani +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Stavka Varijante {0} ažurirani DocType: Quality Inspection Reading,Reading 6,Čitanje 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Kupnja fakture Predujam DocType: Address,Shop,Prodavnica @@ -801,7 +802,7 @@ DocType: Salary Slip,Total in words,Ukupno je u riječima DocType: Material Request Item,Lead Time Date,Potencijalni kupac - datum apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,je obavezno. Možda Mjenjačnica zapis nije stvoren za apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Row # {0}: Navedite rednim brojem predmeta za {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Za 'proizvoda Bundle' stavki, Magacin, serijski broj i serijski broj smatrat će se iz 'Pakiranje List' stol. Ako Skladište i serijski broj su isti za sve pakovanje stavke za bilo 'Bundle proizvoda' stavku, te vrijednosti mogu se unijeti u glavnom Stavka stola, vrijednosti će se kopirati u 'Pakiranje List' stol." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Za 'proizvoda Bundle' stavki, Magacin, serijski broj i serijski broj smatrat će se iz 'Pakiranje List' stol. Ako Skladište i serijski broj su isti za sve pakovanje stavke za bilo 'Bundle proizvoda' stavku, te vrijednosti mogu se unijeti u glavnom Stavka stola, vrijednosti će se kopirati u 'Pakiranje List' stol." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Isporuke kupcima. DocType: Purchase Invoice Item,Purchase Order Item,Narudžbenica predmet apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Neizravni dohodak @@ -822,6 +823,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Odaberite plata i godina apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Idi na odgovarajuću grupu (obično Primjena sredstava> Kratkotrajna imovina> bankovnih računa i stvoriti novi račun (klikom na Dodaj djeteta) tipa "Banka" DocType: Workstation,Electricity Cost,Troškovi struje DocType: HR Settings,Don't send Employee Birthday Reminders,Ne šaljite podsjetnik za rođendan zaposlenika +,Employee Holiday Attendance,Zaposlenik Holiday Posjeta DocType: Opportunity,Walk In,Ulaz u apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Stock unosi DocType: Item,Inspection Criteria,Inspekcijski Kriteriji @@ -844,7 +846,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,S DocType: Journal Entry Account,Expense Claim,Rashodi polaganja apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Količina za {0} DocType: Leave Application,Leave Application,Ostavite aplikaciju -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Ostavite raspodjele alat +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Ostavite raspodjele alat DocType: Leave Block List,Leave Block List Dates,Ostavite datumi lista blokiranih DocType: Company,If Monthly Budget Exceeded (for expense account),Ako Mjesečni budžet prekoračena (za trošak računa) DocType: Workstation,Net Hour Rate,Neto Hour Rate @@ -854,7 +856,7 @@ DocType: Packing Slip Item,Packing Slip Item,Odreskom predmet DocType: POS Profile,Cash/Bank Account,Novac / bankovni račun apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Ukloniti stavke bez promjene u količini ili vrijednosti. DocType: Delivery Note,Delivery To,Dostava za -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Atribut sto je obavezno +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Atribut sto je obavezno DocType: Production Planning Tool,Get Sales Orders,Kreiraj narudžbe apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} ne može biti negativna apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Popust @@ -918,7 +920,7 @@ DocType: SMS Center,Total Characters,Ukupno Likovi apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},Molimo odaberite BOM BOM u polje za Stavka {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-Obrazac Račun Detalj DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Pomirenje Plaćanje fakture -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Doprinos% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Doprinos% DocType: Item,website page link,web stranica vode DocType: Company,Company registration numbers for your reference. Tax numbers etc.,Tvrtka registracijski brojevi za svoju referencu. Porezni brojevi itd. DocType: Sales Partner,Distributor,Distributer @@ -960,10 +962,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM konverzijski faktor DocType: Stock Settings,Default Item Group,Zadana grupa proizvoda apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Šifarnik dobavljača DocType: Account,Balance Sheet,Završni račun -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Troška Za Stavke sa Šifra ' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Troška Za Stavke sa Šifra ' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,Prodavač će dobiti podsjetnik na taj datum kako bi pravovremeno kontaktirao kupca apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Dalje računa može biti pod Grupe, ali unosa može biti protiv ne-Grupe" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Porez i drugih isplata plaća. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Porez i drugih isplata plaća. DocType: Lead,Lead,Potencijalni kupac DocType: Email Digest,Payables,Obveze DocType: Account,Warehouse,Skladište @@ -980,10 +982,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Nesaglašen Detalji DocType: Global Defaults,Current Fiscal Year,Tekuće fiskalne godine DocType: Global Defaults,Disable Rounded Total,Ugasiti zaokruženi iznos DocType: Lead,Call,Poziv -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,' Prijave ' ne može biti prazno +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,' Prijave ' ne može biti prazno apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Dupli red {0} sa istim {1} ,Trial Balance,Pretresno bilanca -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Postavljanje Zaposleni +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Postavljanje Zaposleni apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","Grid """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,Odaberite prefiks prvi apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,istraživanje @@ -992,7 +994,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,Korisnički ID apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Pogledaj Ledger apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Najstarije -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Stavka Grupa postoji s istim imenom , molimo promijenite ime stavku ili preimenovati stavku grupe" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Stavka Grupa postoji s istim imenom , molimo promijenite ime stavku ili preimenovati stavku grupe" DocType: Production Order,Manufacture against Sales Order,Proizvodnja protiv prodaje Reda apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Ostatak svijeta apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,Stavka {0} ne može imati Batch @@ -1017,7 +1019,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Odbijen galerija DocType: GL Entry,Against Voucher,Protiv Voucheru DocType: Item,Default Buying Cost Center,Zadani trošak kupnje apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Da biste dobili najbolje iz ERPNext, preporučujemo vam da malo vremena i gledati ove snimke pomoć." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Stavka {0} mora biti Prodaja artikla +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Stavka {0} mora biti Prodaja artikla apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,do DocType: Item,Lead Time in days,Olovo Vrijeme u danima ,Accounts Payable Summary,Računi se plaćaju Sažetak @@ -1043,7 +1045,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Poljoprivreda apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Vaši proizvodi ili usluge DocType: Mode of Payment,Mode of Payment,Način plaćanja -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Sajt slika treba da bude javni datoteke ili web stranice URL +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Sajt slika treba da bude javni datoteke ili web stranice URL apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,To jekorijen stavka grupa i ne može se mijenjati . DocType: Journal Entry Account,Purchase Order,Narudžbenica DocType: Warehouse,Warehouse Contact Info,Kontakt informacije skladišta @@ -1054,7 +1056,7 @@ DocType: Serial No,Serial No Details,Serijski nema podataka DocType: Purchase Invoice Item,Item Tax Rate,Poreska stopa artikla apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","Za {0}, samo kredit računa može biti povezan protiv drugog ulaska debit" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Otpremnica {0} nije potvrđena -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Stavka {0} mora bitisklopljen ugovor artikla +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Stavka {0} mora bitisklopljen ugovor artikla apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Kapitalni oprema apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Cijene Pravilo prvo se bira na temelju 'Nanesite na' terenu, koji može biti točka, točka Grupa ili Brand." DocType: Hub Settings,Seller Website,Prodavač Website @@ -1063,7 +1065,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Cilj DocType: Sales Invoice Item,Edit Description,Uredi opis apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Očekivani datum isporuke je manje nego što je planirano Ozljede Datum. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,za Supplier +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,za Supplier DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Postavljanje Vrsta računa pomaže u odabiru ovaj račun u prometu. DocType: Purchase Invoice,Grand Total (Company Currency),Sveukupno (valuta tvrtke) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Ukupno Odlazni @@ -1115,7 +1117,6 @@ DocType: Authorization Rule,Average Discount,Prosječni popust DocType: Address,Utilities,Komunalne usluge DocType: Purchase Invoice Item,Accounting,Računovodstvo DocType: Features Setup,Features Setup,Značajke konfiguracija -DocType: Item,Is Service Item,Je usluga apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Period aplikacija ne može biti razdoblje raspodjele izvan odsustva DocType: Activity Cost,Projects,Projekti apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,Odaberite Fiskalna godina @@ -1136,7 +1137,7 @@ DocType: Item,Maintain Stock,Održavati Stock apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Stock unosi već stvorene za proizvodnju Order apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Neto promjena u fiksnoj Asset DocType: Leave Control Panel,Leave blank if considered for all designations,Ostavite prazno ako smatra za sve oznake -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Punjenje tipa ' Stvarni ' u redu {0} ne mogu biti uključeni u točki Rate +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Punjenje tipa ' Stvarni ' u redu {0} ne mogu biti uključeni u točki Rate apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Od datuma i vremena DocType: Email Digest,For Company,Za tvrtke @@ -1145,8 +1146,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Dostava adresa Ime apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Šifarnik konta DocType: Material Request,Terms and Conditions Content,Uvjeti sadržaj -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,ne može biti veća od 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Stavka {0} nijestock Stavka +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,ne može biti veća od 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Stavka {0} nijestock Stavka DocType: Maintenance Visit,Unscheduled,Neplanski DocType: Employee,Owned,U vlasništvu DocType: Salary Slip Deduction,Depends on Leave Without Pay,Ovisi o neplaćeni odmor @@ -1168,7 +1169,7 @@ Used for Taxes and Charges","Porez detalj stol učitani iz stavka master kao str apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Zaposleni ne može prijaviti za sebe. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Ako je račun zamrznut , unosi dopušteno ograničene korisnike ." DocType: Email Digest,Bank Balance,Banka Balance -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Knjiženju za {0}: {1} može se vršiti samo u valuti: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Knjiženju za {0}: {1} može se vršiti samo u valuti: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Nema aktivnih struktura plata nađeni za zaposlenog {0} i mjesec DocType: Job Opening,"Job profile, qualifications required etc.","Profil posla , kvalifikacijama i sl." DocType: Journal Entry Account,Account Balance,Bilans konta @@ -1185,7 +1186,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,pod skupštin DocType: Shipping Rule Condition,To Value,Za vrijednost DocType: Supplier,Stock Manager,Stock Manager apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Izvor skladište je obvezno za redom {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Odreskom +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Odreskom apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,najam ureda apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Postavke Setup SMS gateway apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Uvoz nije uspio! @@ -1229,7 +1230,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM detalji - broj DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Dodatni popust Iznos (Company valuta) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Pogreška : {0} > {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,Molimo stvoriti novi račun iz kontnog plana . -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Održavanje Posjetite +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Održavanje Posjetite apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Kupac> Korisnička Group> Regija DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Dostupno Batch Količina na Skladište DocType: Time Log Batch Detail,Time Log Batch Detail,Vrijeme Log Batch Detalj @@ -1238,7 +1239,7 @@ DocType: Leave Block List,Block Holidays on important days.,Blok Holidays o važ ,Accounts Receivable Summary,Potraživanja Pregled apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,Molimo postavite korisniku ID polja u rekord zaposlenog da postavite uloga zaposlenih DocType: UOM,UOM Name,UOM Ime -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Doprinos Iznos +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Doprinos Iznos DocType: Sales Invoice,Shipping Address,Adresa isporuke DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,Ovaj alat pomaže vam da ažurirate ili popraviti količinu i vrednovanje zaliha u sistemu. To se obično koristi za usklađivanje vrijednosti sistema i ono što zaista postoji u skladištima. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,Riječima će biti vidljivo nakon što spremite otpremnicu. @@ -1279,7 +1280,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Za praćenje stavki pomoću barkod. Vi ćete biti u mogućnosti da unesete stavke u otpremnici i prodaje Računa skeniranjem barkod stavke. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Ponovo pošaljite mail plaćanja DocType: Dependent Task,Dependent Task,Zavisna Task -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Faktor pretvorbe za zadani jedinica mjere mora biti jedan u nizu {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Faktor pretvorbe za zadani jedinica mjere mora biti jedan u nizu {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Ostavite tipa {0} ne može biti duži od {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Pokušajte planiraju operacije za X dana unaprijed. DocType: HR Settings,Stop Birthday Reminders,Zaustavi Rođendan Podsjetnici @@ -1289,7 +1290,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Pogledaj apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Neto promjena u gotovini DocType: Salary Structure Deduction,Salary Structure Deduction,Plaća Struktura Odbitak -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Jedinica mjere {0} je ušao više od jednom u konverzije Factor tablici +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Jedinica mjere {0} je ušao više od jednom u konverzije Factor tablici apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Plaćanje Zahtjev već postoji {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Troškovi Izdata Predmeti apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Količina ne smije biti više od {0} @@ -1318,7 +1319,7 @@ DocType: BOM Item,BOM Item,BOM proizvod DocType: Appraisal,For Employee,Za zaposlenom apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Red {0}: Advance protiv Dobavljač mora biti debitne DocType: Company,Default Values,Default vrijednosti -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Row {0}: iznos plaćanja ne može biti negativna +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Row {0}: iznos plaćanja ne može biti negativna DocType: Expense Claim,Total Amount Reimbursed,Ukupan iznos nadoknađeni apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Protiv Dobavljač fakture {0} od {1} DocType: Customer,Default Price List,Zadani cjenik @@ -1346,8 +1347,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Jam DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Zamijenite određenom BOM u svim ostalim Boms u kojem se koristi. To će zamijeniti stare BOM link, ažurirati troškova i regenerirati ""BOM eksplozije Stavka"" stola po nove BOM" DocType: Shopping Cart Settings,Enable Shopping Cart,Enable Košarica DocType: Employee,Permanent Address,Stalna adresa -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Stavka {0} mora bitiusluga artikla . -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Unaprijed plaćeni protiv {0} {1} ne može biti veći \ od Grand Ukupno {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Odaberite Šifra DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Smanjite odbitak za ostaviti bez plaća (lwp) @@ -1403,12 +1403,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Glavni apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Varijanta DocType: Naming Series,Set prefix for numbering series on your transactions,Postavite prefiks za numeriranje niza na svoje transakcije +DocType: Employee Attendance Tool,Employees HTML,Zaposleni HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Zaustavljen nalog ne može prekinuti. Otpušiti otkazati . -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Uobičajeno BOM ({0}) mora biti aktivna za ovu stavku ili njegove predložak +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Uobičajeno BOM ({0}) mora biti aktivna za ovu stavku ili njegove predložak DocType: Employee,Leave Encashed?,Ostavite Encashed? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Opportunity Od polje je obavezno DocType: Item,Variants,Varijante -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Provjerite narudžbenice +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Provjerite narudžbenice DocType: SMS Center,Send To,Pošalji na adresu apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Nema dovoljno ravnotežu dopust za dozvolu tipa {0} DocType: Payment Reconciliation Payment,Allocated amount,Izdvojena iznosu @@ -1509,7 +1510,7 @@ DocType: Sales Person,Name and Employee ID,Ime i ID zaposlenika apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,Datum dospijeća ne može biti prije datuma objavljivanja DocType: Website Item Group,Website Item Group,Web stranica artikla Grupa apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Carine i porezi -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,Unesite Referentni datum +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,Unesite Referentni datum apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Payment Gateway nalog nije konfiguriran apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} unosa isplate ne može biti filtrirani po {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,Sto za stavku koja će se prikazati u Web Site @@ -1530,7 +1531,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Rezolucija o Brodu DocType: Quality Inspection Reading,Acceptance Criteria,Kriterij prihvaćanja DocType: Item Attribute,Attribute Name,Atributi Ime -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Stavka {0} mora biti Prodaja ili usluga artikla u {1} DocType: Item Group,Show In Website,Pokaži Na web stranice apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Grupa DocType: Task,Expected Time (in hours),Očekivano trajanje (u satima) @@ -1562,7 +1562,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Iznos transporta ,Pending Amount,Iznos na čekanju DocType: Purchase Invoice Item,Conversion Factor,Konverzijski faktor DocType: Purchase Order,Delivered,Isporučeno -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Postavljanje dolazni poslužitelj za poslove e-ID . ( npr. jobs@example.com ) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Postavljanje dolazni poslužitelj za poslove e-ID . ( npr. jobs@example.com ) DocType: Purchase Receipt,Vehicle Number,Broj vozila DocType: Purchase Invoice,The date on which recurring invoice will be stop,Datum na koji se ponavlja faktura će se zaustaviti apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Ukupno izdvojene lišće {0} ne može biti manja od već odobrenih lišće {1} za period @@ -1579,7 +1579,7 @@ DocType: HR Settings,HR Settings,Podešavanja ljudskih resursa apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Rashodi Tužba se čeka odobrenje . SamoRashodi Odobritelj može ažurirati status . DocType: Purchase Invoice,Additional Discount Amount,Dodatni popust Iznos DocType: Leave Block List Allow,Leave Block List Allow,Ostavite Blok Popis Dopustite -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Skraćeno ne može biti prazan ili prostora +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Skraćeno ne može biti prazan ili prostora apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Grupa Non-grupa apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,sportovi apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Ukupno Actual @@ -1603,7 +1603,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},Faktor UOM pretvorbe je potrebno u redu {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Datum rasprodaja ne može biti prije datuma check u redu {0} DocType: Salary Slip,Deduction,Odbitak -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Stavka Cijena je dodao za {0} u {1} Cjenik +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Stavka Cijena je dodao za {0} u {1} Cjenik DocType: Address Template,Address Template,Predložak adrese apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,Unesite zaposlenih Id ove prodaje osoba DocType: Territory,Classification of Customers by region,Klasifikacija Kupci po regiji @@ -1620,7 +1620,7 @@ DocType: Employee,Date of Birth,Datum rođenja apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Artikal {0} je već vraćen DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** Fiskalna godina ** predstavlja finansijske godine. Svi računovodstvene stavke i drugih većih transakcija se prate protiv ** Fiskalna godina **. DocType: Opportunity,Customer / Lead Address,Kupac / Olovo Adresa -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Upozorenje: Invalid SSL certifikat o prilogu {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Upozorenje: Invalid SSL certifikat o prilogu {0} DocType: Production Order Operation,Actual Operation Time,Stvarni Operation Time DocType: Authorization Rule,Applicable To (User),Odnosi se na (Upute) DocType: Purchase Taxes and Charges,Deduct,Odbiti @@ -1637,7 +1637,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Split otpremnici u paketima. apps/erpnext/erpnext/hooks.py +69,Shipments,Pošiljke DocType: Purchase Order Item,To be delivered to customer,Dostaviti kupcu -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Vrijeme Log Status moraju biti dostavljeni. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Vrijeme Log Status moraju biti dostavljeni. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,Serijski broj {0} ne pripada nijednoj Skladište apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Row # DocType: Purchase Invoice,In Words (Company Currency),Riječima (valuta tvrtke) @@ -1654,7 +1654,7 @@ DocType: Leave Application,Total Leave Days,Ukupno Ostavite Dani DocType: Email Digest,Note: Email will not be sent to disabled users,Napomena: E-mail neće biti poslan invalide apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Odaberite preduzeće... DocType: Leave Control Panel,Leave blank if considered for all departments,Ostavite prazno ako smatra za sve odjele -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Vrste zapošljavanja ( trajni ugovor , pripravnik i sl. ) ." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Vrste zapošljavanja ( trajni ugovor , pripravnik i sl. ) ." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} je obavezno za točku {1} DocType: Currency Exchange,From Currency,Od novca apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Molimo odaberite Izdvojena količina, vrsta fakture i fakture Broj u atleast jednom redu" @@ -1673,7 +1673,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,U procesu DocType: Authorization Rule,Itemwise Discount,Itemwise Popust DocType: Purchase Order Item,Reference Document Type,Referentni dokument Tip -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} protiv naloga prodaje {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} protiv naloga prodaje {1} DocType: Account,Fixed Asset,Dugotrajne imovine apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Serijalizovanoj zaliha DocType: Activity Type,Default Billing Rate,Uobičajeno Billing Rate @@ -1683,7 +1683,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Naloga prodaje na isplatu DocType: Expense Claim Detail,Expense Claim Detail,Rashodi Zahtjev Detalj apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Time logova: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,Molimo odaberite ispravan račun +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,Molimo odaberite ispravan račun DocType: Item,Weight UOM,Težina UOM DocType: Employee,Blood Group,Krvna grupa DocType: Purchase Invoice Item,Page Break,Prijelom stranice @@ -1718,7 +1718,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM rekurzija : {0} ne može biti roditelj ili dijete od {2} DocType: Production Order Operation,Completed Qty,Završen Kol apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","Za {0}, samo debitne račune mogu povezati protiv druge kreditne unos" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Cjenik {0} je onemogućen +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Cjenik {0} je onemogućen DocType: Manufacturing Settings,Allow Overtime,Omogućiti Prekovremeni rad apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} serijski brojevi potrebni za Stavka {1}. Ste dali za {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Trenutno Vrednovanje Rate @@ -1769,7 +1769,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},No S apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Slučaj broj ne može biti 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,Ako imate prodajnog tima i prodaja partnerima (partneri) mogu biti označene i održavati svoj doprinos u prodajne aktivnosti DocType: Item,Show a slideshow at the top of the page,Prikaži slideshow na vrhu stranice -DocType: Item,"Allow in Sales Order of type ""Service""",Dozvolite u naloga prodaje tipa "Servis" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,prodavaonice DocType: Time Log,Projects Manager,Projekti Manager DocType: Serial No,Delivery Time,Vrijeme isporuke @@ -1784,6 +1783,7 @@ DocType: Rename Tool,Rename Tool,Preimenovanje alat apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Update cost DocType: Item Reorder,Item Reorder,Ponovna narudžba artikla apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Prijenos materijala +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Stavka {0} mora biti prodaje stavka u {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Navedite operacija, operativni troškovi i dati jedinstven radom najkasnije do svojih operacija ." DocType: Purchase Invoice,Price List Currency,Cjenik valuta DocType: Naming Series,User must always select,Korisničko uvijek mora odabrati @@ -1804,7 +1804,7 @@ DocType: Appraisal,Employee,Zaposlenik apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Uvoz e-mail od apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Pozovi kao korisnika DocType: Features Setup,After Sale Installations,Nakon prodaje postrojenja -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} je u potpunosti naplaćeno +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} je u potpunosti naplaćeno DocType: Workstation Working Hour,End Time,End Time apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Standardni uvjeti ugovora za prodaju ili kupnju. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Grupa po jamcu @@ -1830,7 +1830,7 @@ DocType: Upload Attendance,Attendance To Date,Gledatelja do danas apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Postavljanje dolazni poslužitelj za id prodaja e-mail . ( npr. sales@example.com ) DocType: Warranty Claim,Raised By,Povišena Do DocType: Payment Gateway Account,Payment Account,Plaćanje računa -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,Navedite Tvrtka postupiti +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,Navedite Tvrtka postupiti apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Neto promjena u Potraživanja apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,kompenzacijski Off DocType: Quality Inspection Reading,Accepted,Prihvaćeno @@ -1842,14 +1842,14 @@ DocType: Shipping Rule,Shipping Rule Label,Naziv pravila transporta apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Sirovine ne može biti prazan. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Nije mogao ažurirati zaliha, faktura sadrži drop shipping stavke." DocType: Newsletter,Test,Test -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Kao što postoje postojećih zaliha transakcije za ovu stavku, \ ne možete promijeniti vrijednosti 'Ima Serial Ne', 'Ima serijski br', 'Je li Stock Stavka' i 'Vrednovanje metoda'" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Brzi unos u dnevniku apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,Ne možete promijeniti brzinu ako BOM spomenuo agianst bilo predmet DocType: Employee,Previous Work Experience,Radnog iskustva DocType: Stock Entry,For Quantity,Za količina apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},Unesite Planirano Qty za točku {0} na redu {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} nije podnesen +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} nije podnesen apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Zahtjevi za stavke. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Poseban proizvodnja kako će biti izrađen za svakog gotovog dobrom stavke. DocType: Purchase Invoice,Terms and Conditions1,Odredbe i Conditions1 @@ -1874,6 +1874,7 @@ DocType: Notification Control,Expense Claim Approved Message,Rashodi Zahtjev Odo DocType: Email Digest,How frequently?,Koliko često? DocType: Purchase Receipt,Get Current Stock,Kreiraj trenutne zalihe apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Drvo Bill of Materials +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Mark Present apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Održavanje datum početka ne može biti prije datuma isporuke za rednim brojem {0} DocType: Production Order,Actual End Date,Stvarni datum završetka DocType: Authorization Rule,Applicable To (Role),Odnosi se na (uloga) @@ -1888,7 +1889,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Ugovor Datum završetka mora biti veći od dana ulaska u DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,A treće strane distributera / trgovca / komisije agent / affiliate / prodavače koji prodaje kompanije proizvoda za proviziju. DocType: Customer Group,Has Child Node,Je li čvor dijete -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} protiv narudžbenicu {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} protiv narudžbenicu {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Unesite statičke parametre URL ovdje (npr. pošiljatelj = ERPNext, username = ERPNext, lozinkom = 1234 itd.)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} ni na koji aktivno fiskalne godine. Za više detalja provjerite {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Ovo je primjer web stranica automatski generira iz ERPNext @@ -1936,7 +1937,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Dodavanje ili Oduzeti: Bilo da želite dodati ili oduzeti porez." DocType: Purchase Receipt Item,Recd Quantity,RecD Količina apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Ne može proizvesti više predmeta {0} od prodajnog naloga količina {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Stock upis {0} nije podnesen +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Stock upis {0} nije podnesen DocType: Payment Reconciliation,Bank / Cash Account,Banka / Cash račun DocType: Tax Rule,Billing City,Billing Grad DocType: Global Defaults,Hide Currency Symbol,Sakrij simbol valute @@ -1962,7 +1963,7 @@ DocType: Salary Structure,Total Earning,Ukupna zarada DocType: Purchase Receipt,Time at which materials were received,Vrijeme u kojem su materijali primili apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Moj Adrese DocType: Stock Ledger Entry,Outgoing Rate,Odlazni Rate -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Organizacija grana majstor . +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Organizacija grana majstor . apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,ili DocType: Sales Order,Billing Status,Status naplate apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,komunalna Troškovi @@ -2000,7 +2001,7 @@ DocType: Bin,Reserved Quantity,Rezervirano Količina DocType: Landed Cost Voucher,Purchase Receipt Items,Primka proizvoda apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Prilagođavanje Obrasci DocType: Account,Income Account,Konto prihoda -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Isporuka +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Isporuka DocType: Stock Reconciliation Item,Current Qty,Trenutno Količina DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",Pogledajte "stopa materijali na temelju troškova" u odjeljak DocType: Appraisal Goal,Key Responsibility Area,Područje odgovornosti @@ -2012,9 +2013,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,bon DocType: Notification Control,Purchase Order Message,Poruka narudžbenice DocType: Tax Rule,Shipping Country,Dostava Country DocType: Upload Attendance,Upload HTML,Prenesi HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","Ukupno unaprijed ({0}) protiv Order {1} ne može biti veći od Grand \ - Ukupno ({2})" DocType: Employee,Relieving Date,Rasterećenje Datum apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Cijene Pravilo je napravljen prebrisati Cjenik / definirati postotak popusta, na temelju nekih kriterija." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Skladište se može mijenjati samo preko Stock Stupanje / Dostavnica / kupiti primitka @@ -2024,8 +2022,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Porez apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Ako je odabrano cijene Pravilo je napravljen za 'Cijena', to će prepisati cijenu s liste. Pravilnik o cenama cijena konačnu cijenu, tako da nema daljnje popust treba primijeniti. Stoga, u transakcijama poput naloga prodaje, narudžbenice itd, to će biti učitani u 'Rate' na terenu, nego 'Cijena List Rate ""na terenu." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Trag vodi prema tip industrije . DocType: Item Supplier,Item Supplier,Dobavljač artikla -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,Unesite kod Predmeta da se hrpa nema -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},Molimo odabir vrijednosti za {0} quotation_to {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,Unesite kod Predmeta da se hrpa nema +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},Molimo odabir vrijednosti za {0} quotation_to {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Sve adrese. DocType: Company,Stock Settings,Stock Postavke apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Spajanje je moguće samo ako sljedeće osobine su iste u oba zapisa. Grupa je, Root Tip, Društvo" @@ -2048,7 +2046,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Broj čeka DocType: Payment Tool Detail,Payment Tool Detail,Alat plaćanja Detail ,Sales Browser,prodaja preglednik DocType: Journal Entry,Total Credit,Ukupna kreditna -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Upozorenje: Još {0} {1} # postoji protiv ulaska zaliha {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Upozorenje: Još {0} {1} # postoji protiv ulaska zaliha {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Lokalno apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Zajmovi i predujmovi (aktiva) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Dužnici @@ -2068,8 +2066,8 @@ DocType: Price List,Price List Master,Cjenik Master DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,"Sve Sales Transakcije mogu biti označena protiv više osoba ** ** Sales, tako da možete postaviti i pratiti ciljeve." ,S.O. No.,S.O. Ne. DocType: Production Order Operation,Make Time Log,Make Time Log -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Molimo podesite Ponovno redj količinu -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},Molimo stvoriti kupac iz Olovo {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Molimo podesite Ponovno redj količinu +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},Molimo stvoriti kupac iz Olovo {0} DocType: Price List,Applicable for Countries,Za zemlje u apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Računari apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,To jekorijen skupini kupaca i ne može se mijenjati . @@ -2117,7 +2115,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Billin DocType: Payment Reconciliation Invoice,Outstanding Amount,Izvanredna Iznos DocType: Project Task,Working,Rad DocType: Stock Ledger Entry,Stock Queue (FIFO),Kataloški red (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Odaberite vrijeme Evidencije. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Odaberite vrijeme Evidencije. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} ne pripada Društvu {1} DocType: Account,Round Off,Zaokružiti ,Requested Qty,Traženi Kol @@ -2155,7 +2153,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Kreiraj relevantne ulaze apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Računovodstvo Entry za Stock DocType: Sales Invoice,Sales Team1,Prodaja Team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Artikal {0} ne postoji +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Artikal {0} ne postoji DocType: Sales Invoice,Customer Address,Kupac Adresa DocType: Payment Request,Recipient and Message,Primalac i poruka DocType: Purchase Invoice,Apply Additional Discount On,Nanesite dodatni popust na @@ -2174,7 +2172,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Mute-mail apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Hrana , piće i duhan" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL ili BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Mogu samo napraviti uplatu protiv nenaplaćenu {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Mogu samo napraviti uplatu protiv nenaplaćenu {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Proviziju ne može biti veća od 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Minimum Inventar Level DocType: Stock Entry,Subcontract,Podugovor @@ -2192,9 +2190,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Software apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Boja DocType: Maintenance Visit,Scheduled,Planirano apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Molimo odaberite Stavka u kojoj "Je Stock Stavka" je "ne" i "Da li je prodaja Stavka" je "Da", a nema drugog Bundle proizvoda" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Ukupno unaprijed ({0}) protiv Order {1} ne može biti veći od Grand Ukupno ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Odaberite Mjesečni Distribucija nejednako distribuirati mete širom mjeseci. DocType: Purchase Invoice Item,Valuation Rate,Vrednovanje Stopa -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Cjenik valuta ne bira +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Cjenik valuta ne bira apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,Stavka Row {0}: {1} Kupovina Prijem ne postoji u gore 'Kupovina Primici' stol apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Zaposlenik {0} već podnijela zahtjev za {1} od {2} i {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Projekt datum početka @@ -2206,6 +2205,7 @@ DocType: Quality Inspection,Inspection Type,Inspekcija Tip apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},Odaberite {0} DocType: C-Form,C-Form No,C-Obrazac br DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,Unmarked Posjeta apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,istraživač apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,Molimo spremite Newsletter prije slanja apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Ime ili e-obavezno @@ -2231,7 +2231,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Potvrđ DocType: Payment Gateway,Gateway,Gateway apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Dobavljač> proizvođač tip apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Unesite olakšavanja datum . -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,"Ostavite samo one prijave sa statusom "" Odobreno"" može se podnijeti" apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Naziv adrese je obavezan. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,"Unesite naziv kampanje, ako je izvor upit je kampanja" @@ -2246,10 +2246,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Prihvaćeno skladište DocType: Bank Reconciliation Detail,Posting Date,Objavljivanje Datum DocType: Item,Valuation Method,Vrednovanje metoda apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Nije moguće pronaći tečaja HNB {0} do {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Mark Half Day DocType: Sales Invoice,Sales Team,Prodajni tim apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Dupli unos DocType: Serial No,Under Warranty,Pod jamstvo -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Error] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Error] DocType: Sales Order,In Words will be visible once you save the Sales Order.,U riječi će biti vidljiv nakon što spremite prodajnog naloga. ,Employee Birthday,Zaposlenik Rođendan apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,venture Capital @@ -2272,6 +2273,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,Troška s postojećim transakcija ne može se prevesti u skupini DocType: Account,Depreciation,Amortizacija apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Dobavljač (s) +DocType: Employee Attendance Tool,Employee Attendance Tool,Zaposlenik Tool Posjeta DocType: Supplier,Credit Limit,Kreditni limit apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Odaberite vrstu transakcije DocType: GL Entry,Voucher No,Bon Ne @@ -2298,7 +2300,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Korijen račun ne može biti izbrisan ,Is Primary Address,Je primarna adresa DocType: Production Order,Work-in-Progress Warehouse,Rad u tijeku Warehouse -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Reference # {0} od {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Reference # {0} od {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Upravljanje Adrese DocType: Pricing Rule,Item Code,Šifra artikla DocType: Production Planning Tool,Create Production Orders,Stvaranje radne naloge @@ -2325,7 +2327,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Banka pomirenje apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Get Updates apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Materijal Zahtjev {0} je otkazan ili zaustavljen apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Dodati nekoliko uzorku zapisa -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Ostavite Management +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Ostavite Management apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Grupa po računu DocType: Sales Order,Fully Delivered,Potpuno Isporučeno DocType: Lead,Lower Income,Donja Prihodi @@ -2340,6 +2342,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"' Od datuma ' mora biti poslije ' To Date """ ,Stock Projected Qty,Stock Projekcija Kol apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Korisnik {0} ne pripada projicirati {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Označena Posjećenost HTML DocType: Sales Order,Customer's Purchase Order,Narudžbenica kupca DocType: Warranty Claim,From Company,Iz Društva apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,"Vrijednost, ili kol" @@ -2404,6 +2407,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Wire Transfer apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,Odaberite bankovni račun DocType: Newsletter,Create and Send Newsletters,Kreiranje i slanje newsletter +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Provjerite sve DocType: Sales Order,Recurring Order,Ponavljajući Order DocType: Company,Default Income Account,Zadani račun prihoda apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Kupac Group / kupaca @@ -2435,6 +2439,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Vratiti protiv fakturi DocType: Item,Warranty Period (in days),Jamstveni period (u danima) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Neto novčani tok od operacije apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,na primjer PDV +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Mark zaposlenih Prisustvo u Bulk apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Stavka 4 DocType: Journal Entry Account,Journal Entry Account,Journal Entry račun DocType: Shopping Cart Settings,Quotation Series,Citat serije @@ -2579,14 +2584,14 @@ DocType: Task,Actual Start Date (via Time Logs),Stvarni datum Start (putem Time DocType: Stock Reconciliation Item,Before reconciliation,Prije nego pomirenje apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Za {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Porezi i naknade uvrštenja (Društvo valuta) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Stavka Porezna Row {0} mora imati račun tipa poreza ili prihoda i rashoda ili naplativ +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Stavka Porezna Row {0} mora imati račun tipa poreza ili prihoda i rashoda ili naplativ DocType: Sales Order,Partly Billed,Djelomično Naplaćeno DocType: Item,Default BOM,Zadani BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,Molimo vas da ponovno tipa naziv firme za potvrdu apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Ukupno Outstanding Amt DocType: Time Log Batch,Total Hours,Ukupno vrijeme DocType: Journal Entry,Printing Settings,Printing Settings -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Ukupno zaduženje mora biti jednak ukupnom kreditnom . +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Ukupno zaduženje mora biti jednak ukupnom kreditnom . apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Automobilska industrija apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Od otpremnici DocType: Time Log,From Time,S vremena @@ -2633,7 +2638,7 @@ DocType: Purchase Invoice Item,Image View,Prikaz slike DocType: Issue,Opening Time,Radno vrijeme apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,Od i Do datuma zahtijevanih apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Vrijednosni papiri i robne razmjene -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Uobičajeno mjerna jedinica za varijantu '{0}' mora biti isti kao u obrascu '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Uobičajeno mjerna jedinica za varijantu '{0}' mora biti isti kao u obrascu '{1}' DocType: Shipping Rule,Calculate Based On,Izračun zasnovan na DocType: Delivery Note Item,From Warehouse,Od Skladište DocType: Purchase Taxes and Charges,Valuation and Total,Vrednovanje i Total @@ -2655,7 +2660,7 @@ DocType: Leave Application,Follow via Email,Slijedite putem e-maila DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Iznos poreza Nakon iznosa popusta apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Dijete računa postoji za taj račun . Ne možete izbrisati ovaj račun . apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Ili meta Količina ili ciljani iznos je obvezna -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},Ne default BOM postoji točke {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},Ne default BOM postoji točke {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,Molimo najprije odaberite Datum knjiženja apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Otvaranje Datum bi trebao biti prije zatvaranja datum DocType: Leave Control Panel,Carry Forward,Prenijeti @@ -2733,7 +2738,7 @@ DocType: Leave Type,Is Encash,Je li unovčiti DocType: Purchase Invoice,Mobile No,Mobitel Nema DocType: Payment Tool,Make Journal Entry,Make Journal Entry DocType: Leave Allocation,New Leaves Allocated,Novi Leaves Dodijeljeni -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Projekt - mudar podaci nisu dostupni za ponudu +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Projekt - mudar podaci nisu dostupni za ponudu DocType: Project,Expected End Date,Očekivani Datum završetka DocType: Appraisal Template,Appraisal Template Title,Procjena Predložak Naslov apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,trgovački @@ -2781,6 +2786,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,In apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Navedite DocType: Offer Letter,Awaiting Response,Čeka se odgovor apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Iznad +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Time Prijavite se Fakturisana DocType: Salary Slip,Earning & Deduction,Zarada & Odbitak apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Konto {0} ne može biti grupa konta apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Izborni . Ova postavka će se koristiti za filtriranje u raznim transakcijama . @@ -2851,14 +2857,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Uspješno obrisane sve transakcije koje se odnose na ove kompanije! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Kao i na datum apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Probni rad -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Glavno skladište je obvezno za skladišni proizvod. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Glavno skladište je obvezno za skladišni proizvod. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Isplata plaće za mjesec {0} i godina {1} DocType: Stock Settings,Auto insert Price List rate if missing,Auto umetak Cjenik stopa ako nedostaje apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Ukupno uplaćeni iznos ,Transferred Qty,prebačen Kol apps/erpnext/erpnext/config/learn.py +11,Navigating,Navigacija apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,planiranje -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Nađite vremena Prijavite Hrpa +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Nađite vremena Prijavite Hrpa apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Izdao DocType: Project,Total Billing Amount (via Time Logs),Ukupan iznos naplate (putem Time Dnevnici) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Prodajemo ovaj artikal @@ -2866,7 +2872,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Količina bi trebao biti veći od 0 DocType: Journal Entry,Cash Entry,Cash Entry DocType: Sales Partner,Contact Desc,Kontakt ukratko -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Tip lišća poput casual, bolovanja i sl." +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Tip lišća poput casual, bolovanja i sl." DocType: Email Digest,Send regular summary reports via Email.,Pošalji redovne zbirne izvještaje putem e-maila. DocType: Brand,Item Manager,Stavka Manager DocType: Cost Center,Add rows to set annual budgets on Accounts.,Dodaj redak za izračun godišnjeg proračuna. @@ -2881,7 +2887,7 @@ DocType: GL Entry,Party Type,Party Tip apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Sirovina ne mogu biti isti kao glavni predmet DocType: Item Attribute Value,Abbreviation,Skraćenica apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Ne authroized od {0} prelazi granice -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Plaća predložak majstor . +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Plaća predložak majstor . DocType: Leave Type,Max Days Leave Allowed,Max Dani Ostavite dopuštenih apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Set poreza Pravilo za košarica DocType: Payment Tool,Set Matching Amounts,Set Matching Iznosi @@ -2894,7 +2900,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Ponude DocType: Stock Settings,Role Allowed to edit frozen stock,Uloga dopuštenih urediti smrznute zalihe ,Territory Target Variance Item Group-Wise,Teritorij Target varijance artikla Group - Wise apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Sve grupe kupaca -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} je obavezno. Možda Mjenjačnica zapis nije stvoren za {1} na {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} je obavezno. Možda Mjenjačnica zapis nije stvoren za {1} na {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Porez Template je obavezno. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Konto {0}: Nadređeni konto {1} ne postoji DocType: Purchase Invoice Item,Price List Rate (Company Currency),Cjenik stopa (Društvo valuta) @@ -2914,8 +2920,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Stavka Wise Porezna Det ,Item-wise Price List Rate,Stavka - mudar Cjenovnik Ocijenite apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Dobavljač Ponuda DocType: Quotation,In Words will be visible once you save the Quotation.,U riječi će biti vidljiv nakon što spremite ponudu. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} je zaustavljen -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Barkod {0} se već koristi u artiklu {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} je zaustavljen +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Barkod {0} se već koristi u artiklu {1} DocType: Lead,Add to calendar on this date,Dodaj u kalendar na ovaj datum apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Pravila za dodavanjem troškove prijevoza . apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Najave događaja @@ -2942,8 +2948,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,St apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Atleast jednom skladištu je obavezno DocType: Serial No,Out of Warranty,Od jamstvo DocType: BOM Replace Tool,Replace,Zamijeniti -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} protiv prodaje fakture {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Unesite zadanu jedinicu mjere +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} protiv prodaje fakture {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Unesite zadanu jedinicu mjere DocType: Purchase Invoice Item,Project Name,Naziv projekta DocType: Supplier,Mention if non-standard receivable account,Spomenuti ako nestandardni potraživanja račun DocType: Journal Entry Account,If Income or Expense,Ako prihoda i rashoda @@ -2968,7 +2974,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Fiskalna godina: {0} ne postoji DocType: Currency Exchange,To Currency,Valutno DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Dopusti sljedeći korisnici odobriti ostavite aplikacije za blok dana. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Vrste Rashodi zahtjevu. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Vrste Rashodi zahtjevu. DocType: Item,Taxes,Porezi apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Platio i nije dostavila DocType: Project,Default Cost Center,Standard Cost Center @@ -2998,7 +3004,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Row # {0}: {1} Serial No ne odgovara {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Casual dopust DocType: Batch,Batch ID,ID serije -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Napomena : {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Napomena : {0} ,Delivery Note Trends,Trendovi otpremnica apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Ovonedeljnom Pregled apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} mora bitikupljen ili pod-ugovori stavka u nizu {1} @@ -3038,6 +3044,7 @@ DocType: Project Task,Pending Review,U tijeku pregled apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Kliknite ovdje da plati DocType: Task,Total Expense Claim (via Expense Claim),Ukupni rashodi potraživanja (preko rashodi potraživanje) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Customer Id +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Mark Odsutan apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Vrijeme da mora biti veći od s vremena DocType: Journal Entry Account,Exchange Rate,Tečaj apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Prodajnog naloga {0} nije podnesen @@ -3085,7 +3092,7 @@ DocType: Item Group,Default Expense Account,Zadani račun rashoda DocType: Employee,Notice (days),Obavijest (dani ) DocType: Tax Rule,Sales Tax Template,Porez na promet Template DocType: Employee,Encashment Date,Encashment Datum -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Protiv vaučera Tip mora biti jedan od narudžbenice, fakturi ili Journal Entry" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Protiv vaučera Tip mora biti jedan od narudžbenice, fakturi ili Journal Entry" DocType: Account,Stock Adjustment,Stock Podešavanje apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Uobičajeno aktivnosti Troškovi postoji aktivnost Tip - {0} DocType: Production Order,Planned Operating Cost,Planirani operativnih troškova @@ -3139,6 +3146,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Napišite Off Entry DocType: BOM,Rate Of Materials Based On,Stopa materijali na temelju apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Analitike podrške +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Poništi sve apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Tvrtka je nestalo u skladištima {0} DocType: POS Profile,Terms and Conditions,Odredbe i uvjeti apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},Za datum mora biti unutar fiskalne godine. Pod pretpostavkom da bi datum = {0} @@ -3160,7 +3168,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Za postavljanje ove fiskalne godine kao zadano , kliknite na "" Set as Default '" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Postavljanje dolazni poslužitelj za podršku e-mail ID . ( npr. support@example.com ) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Nedostatak Qty -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Stavka varijanta {0} postoji sa istim atributima +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Stavka varijanta {0} postoji sa istim atributima DocType: Salary Slip,Salary Slip,Plaća proklizavanja apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,' To Date ' je potrebno DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Generirajte pakovanje Slips za pakete dostaviti. Koristi se za obavijesti paket broja, sadržaj paket i njegove težine." @@ -3208,7 +3216,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Pogleda DocType: Item Attribute Value,Attribute Value,Vrijednost atributa apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","Email ID mora biti jedinstven , već postoji za {0}" ,Itemwise Recommended Reorder Level,Itemwise Preporučio redoslijeda Level -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,Odaberite {0} Prvi +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,Odaberite {0} Prvi DocType: Features Setup,To get Item Group in details table,Da biste dobili predmeta Group u tablici pojedinosti apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Batch {0} od {1} Stavka je istekla. DocType: Sales Invoice,Commission,Provizija @@ -3263,7 +3271,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Get Outstanding Vaučeri DocType: Warranty Claim,Resolved By,Riješen Do DocType: Appraisal,Start Date,Datum početka -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Dodijeli odsustva za period. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Dodijeli odsustva za period. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Čekovi i depoziti pogrešno spašava apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Kliknite ovdje za provjeru apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Konto {0}: Ne može se označiti kao nadređeni konto samom sebi @@ -3283,7 +3291,7 @@ DocType: Employee,Educational Qualification,Obrazovne kvalifikacije DocType: Workstation,Operating Costs,Operativni troškovi DocType: Employee Leave Approver,Employee Leave Approver,Zaposlenik dopust Odobritelj apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} je uspješno dodan u newsletter listu. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Row {0}: Unos Ponovno red već postoji za to skladište {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Row {0}: Unos Ponovno red već postoji za to skladište {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Ne može proglasiti izgubili , jer citat je napravio ." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Kupovina Master Manager apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Proizvodnja Red {0} mora biti podnesen @@ -3307,7 +3315,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Prodajni računi {0} su već potvrđeni apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Završetak Datum DocType: Purchase Invoice Item,Amount (Company Currency),Iznos (valuta preduzeća) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Organizacija jedinica ( odjela ) majstor . +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Organizacija jedinica ( odjela ) majstor . apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Unesite valjane mobilne br DocType: Budget Detail,Budget Detail,Proračun Detalj apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,Unesite poruku prije slanja @@ -3323,13 +3331,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Primljeni i prihvaćeni ,Serial No Service Contract Expiry,Serijski Bez isteka Ugovor o pružanju usluga DocType: Item,Unit of Measure Conversion,Jedinica mjere pretvorbe apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Zaposleni se ne može mijenjati -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Ne možete kreditnim i debitnim isti račun u isto vrijeme +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Ne možete kreditnim i debitnim isti račun u isto vrijeme DocType: Naming Series,Help HTML,HTML pomoć apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Ukupno bi trebalo biti dodijeljena weightage 100 % . To je {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Dodatak za prekomjerno {0} prešao za točku {1} DocType: Address,Name of person or organization that this address belongs to.,Ime osobe ili organizacije kojoj ova adresa pripada. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Vaši dobavljači -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,Ne mogu se postaviti kao izgubljen kao prodajnog naloga je napravio . +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,Ne mogu se postaviti kao izgubljen kao prodajnog naloga je napravio . apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,Drugi strukture plata {0} je aktivna zaposlenika {1}. Molimo vas da svoj status 'Inactive' za nastavak. DocType: Purchase Invoice,Contact,Kontakt apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Dobili od @@ -3338,11 +3346,11 @@ DocType: Lead,Converted,Pretvoreno DocType: Item,Has Serial No,Ima serijski br DocType: Employee,Date of Issue,Datum izdavanja apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: Od {0} {1} za -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Sajt Slika {0} prilogu Stavka {1} ne može biti pronađena +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Sajt Slika {0} prilogu Stavka {1} ne može biti pronađena DocType: Issue,Content Type,Vrsta sadržaja apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Računar DocType: Item,List this Item in multiple groups on the website.,Popis ovaj predmet u više grupa na web stranici. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,Molimo provjerite Multi opciju valuta kako bi se omogućilo račune sa drugoj valuti +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,Molimo provjerite Multi opciju valuta kako bi se omogućilo račune sa drugoj valuti apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Detaljnije: {0} ne postoji u sustavu apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Niste ovlašteni za postavljanje Frozen vrijednost DocType: Payment Reconciliation,Get Unreconciled Entries,Kreiraj neusklađene ulaze @@ -3352,14 +3360,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Što učinit DocType: Delivery Note,To Warehouse,Za skladište apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Konto {0} je upisan više od jednom za fiskalnu godinu {1} ,Average Commission Rate,Prosječna stopa komisija -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,' Je rednim brojem ' ne može biti ' Da ' za ne - stock stavke +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,' Je rednim brojem ' ne može biti ' Da ' za ne - stock stavke apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Gledatelji ne može biti označena za budući datum DocType: Pricing Rule,Pricing Rule Help,Cijene Pravilo Pomoć DocType: Purchase Taxes and Charges,Account Head,Zaglavlje konta apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Update dodatne troškove za izračun troškova spustio stavki apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Električna DocType: Stock Entry,Total Value Difference (Out - In),Ukupna vrijednost Razlika (Out - In) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Red {0}: kursa obavezna +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Red {0}: kursa obavezna apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},Korisnik ID nije postavljen za zaposlenika {0} DocType: Stock Entry,Default Source Warehouse,Zadano izvorno skladište DocType: Item,Customer Code,Kupac Šifra @@ -3378,15 +3386,15 @@ DocType: Notification Control,Sales Invoice Message,Poruka prodajnog računa apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Zatvaranje računa {0} mora biti tipa odgovornosti / Equity DocType: Authorization Rule,Based On,Na osnovu DocType: Sales Order Item,Ordered Qty,Naručena kol -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Stavka {0} je onemogućeno +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Stavka {0} je onemogućeno DocType: Stock Settings,Stock Frozen Upto,Kataloški Frozen Upto apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Period od perioda i datumima obavezno ponavljaju {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Projekt aktivnost / zadatak. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Generiranje plaće gaćice +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Generiranje plaće gaćice apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Kupnja treba provjeriti, ako je primjenjivo za odabrano kao {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Rabatt mora biti manji od 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Otpis Iznos (poduzeća Valuta) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Row # {0}: Molimo set Ponovno redj količinu +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Row # {0}: Molimo set Ponovno redj količinu DocType: Landed Cost Voucher,Landed Cost Voucher,Sleteo Cost vaučera apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},Molimo postavite {0} DocType: Purchase Invoice,Repeat on Day of Month,Ponovite na dan u mjesecu @@ -3439,7 +3447,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Uobičajeno Work in Progress Skladište apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Zadane postavke za računovodstvene poslove. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Očekivani datum ne može biti prije Materijal Zahtjev Datum -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Stavka {0} mora bitiProdaja artikla +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Stavka {0} mora bitiProdaja artikla DocType: Naming Series,Update Series Number,Update serije Broj DocType: Account,Equity,pravičnost DocType: Sales Order,Printing Details,Printing Detalji @@ -3491,7 +3499,7 @@ DocType: Task,Review Date,Recenzija Datum DocType: Purchase Invoice,Advance Payments,Avansna plaćanja DocType: Purchase Taxes and Charges,On Net Total,Na Net Total apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Target skladište u redu {0} mora biti ista kao Production Order -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,No dozvolu za korištenje alat za plaćanje +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,No dozvolu za korištenje alat za plaćanje apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,'Obavijest E-mail adrese' nije specificirano ponavljaju% s apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Valuta ne mogu se mijenjati nakon što unose preko neke druge valute DocType: Company,Round Off Account,Zaokružiti račun @@ -3514,7 +3522,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Količina predmeta dobije nakon proizvodnju / pakiranje od navedenih količina sirovina DocType: Payment Reconciliation,Receivable / Payable Account,Potraživanja / Account plaćaju DocType: Delivery Note Item,Against Sales Order Item,Protiv naloga prodaje Item -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},Molimo navedite vrijednost atributa za atribut {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},Molimo navedite vrijednost atributa za atribut {0} DocType: Item,Default Warehouse,Glavno skladište DocType: Task,Actual End Date (via Time Logs),Stvarni Završni datum (via vrijeme Dnevnici) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Budžet se ne može dodijeliti protiv grupe računa {0} @@ -3539,10 +3547,10 @@ DocType: Lead,Blog Subscriber,Blog pretplatnik apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Stvaranje pravila za ograničavanje prometa na temelju vrijednosti . DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Ako je označeno, Ukupan broj. radnih dana će uključiti odmor, a to će smanjiti vrijednost plaća po danu" DocType: Purchase Invoice,Total Advance,Ukupno predujma -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Obrada Payroll +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Obrada Payroll DocType: Opportunity Item,Basic Rate,Osnovna stopa DocType: GL Entry,Credit Amount,Iznos kredita -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Postavi kao Lost +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Postavi kao Lost apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Plaćanje potvrda o primitku DocType: Supplier,Credit Days Based On,Credit Dani Na osnovu DocType: Tax Rule,Tax Rule,Porez pravilo @@ -3572,7 +3580,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Prihvaćena količina apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} ne postoji apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Mjenice podignuta na kupce. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Project Id -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},No red {0}: Iznos ne može biti veći od čekanju Iznos protiv rashodi potraživanje {1}. Na čekanju iznos je {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},No red {0}: Iznos ne može biti veći od čekanju Iznos protiv rashodi potraživanje {1}. Na čekanju iznos je {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} pretplatnika dodao DocType: Maintenance Schedule,Schedule,Raspored DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Definirati budžeta za ovu troškova Centra. Za postavljanje budžet akciju, pogledajte "Lista preduzeća"" @@ -3633,19 +3641,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS profil DocType: Payment Gateway Account,Payment URL Message,Plaćanje URL Poruka apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Sezonski za postavljanje budžeta, ciljeva itd" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Row {0}: Plaćanje iznosu koji ne može biti veći od preostali iznos +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Row {0}: Plaćanje iznosu koji ne može biti veći od preostali iznos apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Ukupno Neplaćeni -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Vrijeme Log nije naplatnih -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Stavka {0} je predložak, odaberite jednu od njegovih varijanti" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Vrijeme Log nije naplatnih +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Stavka {0} je predložak, odaberite jednu od njegovih varijanti" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Kupac apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Neto plaća ne može biti negativna -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Molimo vas da unesete ručno protiv vaučera +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Molimo vas da unesete ručno protiv vaučera DocType: SMS Settings,Static Parameters,Statički parametri DocType: Purchase Order,Advance Paid,Advance Paid DocType: Item,Item Tax,Porez artikla apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Materijal dobavljaču apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Akcizama Račun DocType: Expense Claim,Employees Email Id,Zaposlenici Email ID +DocType: Employee Attendance Tool,Marked Attendance,Označena Posjeta apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Kratkoročne obveze apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Pošalji masovne SMS poruke svojim kontaktima DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Razmislite poreza ili pristojbi za @@ -3668,7 +3677,7 @@ DocType: Item Attribute,Numeric Values,Brojčane vrijednosti apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Priložiti logo DocType: Customer,Commission Rate,Komisija Stopa apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Make Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Blok ostaviti aplikacija odjelu. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Blok ostaviti aplikacija odjelu. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Košarica je prazna DocType: Production Order,Actual Operating Cost,Stvarni operativnih troškova apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Korijen ne može se mijenjati . @@ -3687,7 +3696,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,Automatski kreirati Materijal Zahtjev ako količina padne ispod tog nivoa ,Item-wise Purchase Register,Stavka-mudar Kupnja Registracija DocType: Batch,Expiry Date,Datum isteka -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Da biste postavili Ponovno redj nivo, stavka mora biti kupovine stavke ili Proizvodnja artikla" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Da biste postavili Ponovno redj nivo, stavka mora biti kupovine stavke ili Proizvodnja artikla" ,Supplier Addresses and Contacts,Supplier Adrese i kontakti apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,Molimo odaberite kategoriju prvi apps/erpnext/erpnext/config/projects.py +18,Project master.,Projekt majstor. diff --git a/erpnext/translations/ca.csv b/erpnext/translations/ca.csv index b6e653b710..660e5b7fee 100644 --- a/erpnext/translations/ca.csv +++ b/erpnext/translations/ca.csv @@ -164,14 +164,14 @@ DocType: Journal Entry Account,Credit in Company Currency,Crèdit en moneda Comp DocType: Delivery Note,Installation Status,Estat d'instal·lació apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},+ Acceptat Rebutjat Quantitat ha de ser igual a la quantitat rebuda per article {0} DocType: Item,Supply Raw Materials for Purchase,Materials Subministrament primeres per a la Compra -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,L'Article {0} ha de ser un article de compra +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,L'Article {0} ha de ser un article de compra DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Descarregueu la plantilla, omplir les dades adequades i adjuntar l'arxiu modificat. Totes les dates i empleat combinació en el període seleccionat vindrà a la plantilla, amb els registres d'assistència existents" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,L'article {0} no està actiu o ha arribat al final de la seva vida DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,S'actualitzarà després de la presentació de la factura de venda. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Per incloure l'impost a la fila {0} en la tarifa d'article, els impostos a les files {1} també han de ser inclosos" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Ajustaments per al Mòdul de Recursos Humans +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Per incloure l'impost a la fila {0} en la tarifa d'article, els impostos a les files {1} també han de ser inclosos" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Ajustaments per al Mòdul de Recursos Humans DocType: SMS Center,SMS Center,Centre d'SMS DocType: BOM Replace Tool,New BOM,Nova llista de materials apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Lot Registres de temps per a la facturació. @@ -199,7 +199,7 @@ DocType: Offer Letter,Select Terms and Conditions,Selecciona Termes i Condicions DocType: Production Planning Tool,Sales Orders,Ordres de venda DocType: Purchase Taxes and Charges,Valuation,Valoració ,Purchase Order Trends,Compra Tendències Sol·licitar -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Assignar fulles per a l'any. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Assignar fulles per a l'any. DocType: Earning Type,Earning Type,Tipus Earning DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Planificació de la capacitat Desactivar i seguiment de temps DocType: Bank Reconciliation,Bank Account,Compte Bancari @@ -237,7 +237,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Especificacions d'article al Web DocType: Payment Tool,Reference No,Referència número apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Absència bloquejada -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Article {0} ha arribat a la seva fi de vida del {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Article {0} ha arribat a la seva fi de vida del {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Anual DocType: Stock Reconciliation Item,Stock Reconciliation Item,Estoc Reconciliació article DocType: Stock Entry,Sales Invoice No,Factura No @@ -249,7 +249,7 @@ DocType: Item,Minimum Order Qty,Quantitat de comanda mínima DocType: Pricing Rule,Supplier Type,Tipus de Proveïdor DocType: Item,Publish in Hub,Publicar en el Hub ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,L'article {0} està cancel·lat +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,L'article {0} està cancel·lat apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Sol·licitud de materials DocType: Bank Reconciliation,Update Clearance Date,Actualització Data Liquidació DocType: Item,Purchase Details,Informació de compra @@ -261,11 +261,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Quantitat Rebutjada DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","El camp disponible a la nota de lliurament, oferta, factura de venda, ordres de venda" DocType: SMS Settings,SMS Sender Name,SMS Nom del remitent DocType: Contact,Is Primary Contact,És Contacte principal +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Temps de registre ha estat processada per lots per a la facturació DocType: Notification Control,Notification Control,Control de Notificació DocType: Lead,Suggestions,Suggeriments DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Pressupostos Set-Group savi article sobre aquest territori. També pot incloure l'estacionalitat mitjançant l'establiment de la Distribució. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},Si us plau ingressi grup de comptes dels pares per al magatzem {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Pagament contra {0} {1} no pot ser més gran que Destacat Suma {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Pagament contra {0} {1} no pot ser més gran que Destacat Suma {2} DocType: Supplier,Address HTML,Adreça HTML DocType: Lead,Mobile No.,No mòbil DocType: Maintenance Schedule,Generate Schedule,Generar Calendari @@ -282,7 +283,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Sincronitzat amb Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Contrasenya Incorrecta DocType: Item,Variant Of,Variant de -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Article {0} ha de ser Servei d'articles apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',Completat Quantitat no pot ser major que 'Cant de Fabricació' DocType: Period Closing Voucher,Closing Account Head,Tancant el Compte principal DocType: Employee,External Work History,Historial de treball extern @@ -294,10 +294,10 @@ DocType: Newsletter,Newsletter,Newsletter DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Notificació per correu electrònic a la creació de la Sol·licitud de materials automàtica DocType: Journal Entry,Multi Currency,Multi moneda DocType: Payment Reconciliation Invoice,Invoice Type,Tipus de Factura -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Nota de lliurament +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Nota de lliurament apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Configuració d'Impostos apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,"Entrada de pagament ha estat modificat després es va tirar d'ell. Si us plau, tiri d'ella de nou." -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} entrat dues vegades en l'Impost d'article +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} entrat dues vegades en l'Impost d'article apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Resum per a aquesta setmana i activitats pendents DocType: Workstation,Rent Cost,Cost de lloguer apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Selecciona el mes i l'any @@ -308,7 +308,7 @@ DocType: Shipping Rule,Valid for Countries,Vàlid per als Països DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Tots els camps relacionats amb la importació com la divisa, taxa de conversió, el total de l'import, els imports acumulats, etc estan disponibles en el rebut de compra, oferta de compra, factura de compra, ordres de compra, etc." apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,Aquest article és una plantilla i no es pot utilitzar en les transaccions. Atributs article es copiaran en les variants menys que s'estableix 'No Copy' apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Total de la comanda Considerat -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Designació de l'empleat (per exemple, director general, director, etc.)." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Designació de l'empleat (per exemple, director general, director, etc.)." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,"Si us plau, introdueixi 'Repetiu el Dia del Mes' valor del camp" DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,Canvi al qual la divisa del client es converteix la moneda base del client DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Disponible a la llista de materials, nota de lliurament, factura de compra, ordre de producció, ordres de compra, rebut de compra, factura de venda, ordres de venda, entrada d'estoc, fulla d'hores" @@ -357,7 +357,7 @@ DocType: Workstation,Consumable Cost,Cost de consumibles apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) ha de tenir paper 'Deixar aprovador' DocType: Purchase Receipt,Vehicle Date,Data de Vehicles apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Metge -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Motiu de pèrdua +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Motiu de pèrdua apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Estació de treball està tancada en les següents dates segons Llista de vacances: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Oportunitats DocType: Employee,Single,Solter @@ -385,14 +385,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Partner de Canal DocType: Account,Old Parent,Antic Pare DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,Personalitza el text d'introducció que va com una part d'aquest correu electrònic. Cada transacció té un text introductori independent. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),No incloure símbols (ex. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Gerent de vendes apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,La configuració global per a tots els processos de fabricació. DocType: Accounts Settings,Accounts Frozen Upto,Comptes bloquejats fins a DocType: SMS Log,Sent On,Enviar on -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Atribut {0} seleccionat diverses vegades en la taula Atributs +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Atribut {0} seleccionat diverses vegades en la taula Atributs DocType: HR Settings,Employee record is created using selected field. ,Es crea el registre d'empleat utilitzant el camp seleccionat. DocType: Sales Order,Not Applicable,No Aplicable -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Mestre de vacances. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Mestre de vacances. DocType: Material Request Item,Required Date,Data Requerit DocType: Delivery Note,Billing Address,Direcció De Enviament apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,"Si us plau, introduïu el codi d'article." @@ -428,7 +429,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,Si us plau indica el Magatzem en què es faràa la Sol·licitud de materials DocType: Production Order,Additional Operating Cost,Cost addicional de funcionament apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Productes cosmètics -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Per fusionar, propietats han de ser el mateix per a tots dos articles" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Per fusionar, propietats han de ser el mateix per a tots dos articles" DocType: Shipping Rule,Net Weight,Pes Net DocType: Employee,Emergency Phone,Telèfon d'Emergència ,Serial No Warranty Expiry,Venciment de la garantia del número de sèrie @@ -486,17 +487,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Facturació i Lliurament Estat apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Repetiu els Clients DocType: Leave Control Panel,Allocate,Assignar -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Devolucions de vendes +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Devolucions de vendes DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Seleccioneu ordres de venda a partir del qual vol crear ordres de producció. DocType: Item,Delivered by Supplier (Drop Ship),Lliurat pel proveïdor (nau) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Components salarials. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Components salarials. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Base de dades de clients potencials. DocType: Authorization Rule,Customer or Item,Client o article apps/erpnext/erpnext/config/crm.py +17,Customer database.,Base de dades de clients. DocType: Quotation,Quotation To,Oferta per DocType: Lead,Middle Income,Ingrés Mig apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Obertura (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Unitat de mesura per defecte per a l'article {0} no es pot canviar directament perquè ja ha realitzat alguna transacció (s) amb una altra UOM. Vostè haurà de crear un nou element a utilitzar un UOM predeterminat diferent. +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Unitat de mesura per defecte per a l'article {0} no es pot canviar directament perquè ja ha realitzat alguna transacció (s) amb una altra UOM. Vostè haurà de crear un nou element a utilitzar un UOM predeterminat diferent. apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Suma assignat no pot ser negatiu DocType: Purchase Order Item,Billed Amt,Quantitat facturada DocType: Warehouse,A logical Warehouse against which stock entries are made.,Un Magatzem lògic contra el qual es fan les entrades en existències. @@ -515,14 +516,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Els impostos i càrrecs de venda DocType: Employee,Organization Profile,Perfil de l'organització apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,"Si us plau, configureu sèries de numeració per a l'assistència a través de Configuració> Sèries de numeració" DocType: Employee,Reason for Resignation,Motiu del cessament -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Plantilla per a les avaluacions d'acompliment. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Plantilla per a les avaluacions d'acompliment. DocType: Payment Reconciliation,Invoice/Journal Entry Details,Factura / Diari Detalls de l'entrada apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' no en l'exercici fiscal {2} DocType: Buying Settings,Settings for Buying Module,Ajustaments del mòdul de Compres apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,Si us plau primer entra el rebut de compra DocType: Buying Settings,Supplier Naming By,NOmenament de proveïdors per DocType: Activity Type,Default Costing Rate,Taxa d'Incompliment Costea -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Programa de manteniment +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Programa de manteniment apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Llavors Tarifes de Preu es filtren sobre la base de client, grup de clients, Territori, Proveïdor, Tipus Proveïdor, Campanya, soci de vendes, etc." apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Canvi net en l'Inventari DocType: Employee,Passport Number,Nombre de Passaport @@ -561,7 +562,7 @@ DocType: Purchase Invoice,Quarterly,Trimestral DocType: Selling Settings,Delivery Note Required,Nota de lliurament Obligatòria DocType: Sales Order Item,Basic Rate (Company Currency),Tarifa Bàsica (En la divisa de la companyia) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush matèries primeres Based On -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,Entra els detalls de l'article +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,Entra els detalls de l'article DocType: Purchase Receipt,Other Details,Altres detalls DocType: Account,Accounts,Comptes apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Màrqueting @@ -574,7 +575,7 @@ DocType: Employee,Provide email id registered in company,Provide email id regist DocType: Hub Settings,Seller City,Ciutat del venedor DocType: Email Digest,Next email will be sent on:,El següent correu electrònic s'enviarà a: DocType: Offer Letter Term,Offer Letter Term,Present Carta Termini -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,L'article té variants. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,L'article té variants. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Article {0} no trobat DocType: Bin,Stock Value,Estoc Valor apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Tipus Arbre @@ -582,7 +583,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Quantitat consumida per unitat DocType: Serial No,Warranty Expiry Date,Data final de garantia DocType: Material Request Item,Quantity and Warehouse,Quantitat i Magatzem DocType: Sales Invoice,Commission Rate (%),Comissió (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Contra val Type ha de ser un comandes de venda, factura de venda o entrada de diari" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Contra val Type ha de ser un comandes de venda, factura de venda o entrada de diari" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Aeroespacial DocType: Journal Entry,Credit Card Entry,Introducció d'una targeta de crèdit apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Tasca Assumpte @@ -669,10 +670,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Responsabilitat apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Import sancionat no pot ser major que la reclamació Quantitat a la fila {0}. DocType: Company,Default Cost of Goods Sold Account,Cost per defecte del compte mercaderies venudes -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Llista de preus no seleccionat +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Llista de preus no seleccionat DocType: Employee,Family Background,Antecedents de família DocType: Process Payroll,Send Email,Enviar per correu electrònic -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Advertència: no vàlida Adjunt {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Advertència: no vàlida Adjunt {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,No permission DocType: Company,Default Bank Account,Compte bancari per defecte apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Per filtrar la base de la festa, seleccioneu Partit Escrigui primer" @@ -700,7 +701,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Consu DocType: Features Setup,"To enable ""Point of Sale"" features",Per habilitar les característiques de "Punt de Venda" DocType: Bin,Moving Average Rate,Moving Average Rate DocType: Production Planning Tool,Select Items,Seleccionar elements -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} contra Bill {1} {2} de data +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} contra Bill {1} {2} de data DocType: Maintenance Visit,Completion Status,Estat de finalització DocType: Sales Invoice Item,Target Warehouse,Magatzem destí DocType: Item,Allow over delivery or receipt upto this percent,Permetre sobre el lliurament o recepció fins aquest percentatge @@ -760,7 +761,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Tipu apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Incapaç de trobar la ranura de temps en els pròxims {0} dies per a l'operació {1} DocType: Production Order,Plan material for sub-assemblies,Material de Pla de subconjunts apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} ha d'estar activa -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,Si us plau. Primer seleccioneu el tipus de document +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Si us plau. Primer seleccioneu el tipus de document apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Anar a la cistella apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Cancel·la Visites Materials {0} abans de cancel·lar aquesta visita de manteniment DocType: Salary Slip,Leave Encashment Amount,Deixa Cobrament Monto @@ -778,7 +779,7 @@ DocType: Purchase Receipt,Range,Abast DocType: Supplier,Default Payable Accounts,Comptes per Pagar per defecte apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,L'Empleat {0} no està actiu o no existeix DocType: Features Setup,Item Barcode,Codi de barres d'article -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Article Variants {0} actualitza +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Article Variants {0} actualitza DocType: Quality Inspection Reading,Reading 6,Lectura 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Factura de compra anticipada DocType: Address,Shop,Botiga @@ -801,7 +802,7 @@ DocType: Salary Slip,Total in words,Total en paraules DocType: Material Request Item,Lead Time Date,Termini d'execució Data apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,és obligatori. Potser no es crea registre de canvi de divisa per apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Fila #{0}: Si us plau especifica el número de sèrie per l'article {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Pels articles 'Producte Bundle', Magatzem, Serial No i lots No serà considerat en el quadre 'Packing List'. Si Warehouse i lots No són les mateixes per a tots els elements d'embalatge per a qualsevol element 'Producte Bundle', aquests valors es poden introduir a la taula principal de l'article, els valors es copiaran a la taula "Packing List '." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Pels articles 'Producte Bundle', Magatzem, Serial No i lots No serà considerat en el quadre 'Packing List'. Si Warehouse i lots No són les mateixes per a tots els elements d'embalatge per a qualsevol element 'Producte Bundle', aquests valors es poden introduir a la taula principal de l'article, els valors es copiaran a la taula "Packing List '." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Enviaments a clients. DocType: Purchase Invoice Item,Purchase Order Item,Ordre de compra d'articles apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Ingressos Indirectes @@ -822,6 +823,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Seleccioneu nòmina Any i apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Anar al grup apropiat (generalment Aplicació de Fons> Actiu Circulant> Comptes Bancàries i crear un nou compte (fent clic a Afegeix nen) de tipus "Banc" DocType: Workstation,Electricity Cost,Cost d'electricitat DocType: HR Settings,Don't send Employee Birthday Reminders,No envieu Empleat recordatoris d'aniversari +,Employee Holiday Attendance,Empleat d'Assistència de vacances DocType: Opportunity,Walk In,Walk In apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Entrades d'arxiu DocType: Item,Inspection Criteria,Criteris d'Inspecció @@ -844,7 +846,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,O DocType: Journal Entry Account,Expense Claim,Compte de despeses apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Quantitat de {0} DocType: Leave Application,Leave Application,Deixar Aplicació -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Deixa Eina d'Assignació +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Deixa Eina d'Assignació DocType: Leave Block List,Leave Block List Dates,Deixa llista de blocs dates DocType: Company,If Monthly Budget Exceeded (for expense account),Si Pressupost Mensual excedit (per compte de despeses) DocType: Workstation,Net Hour Rate,Hora taxa neta @@ -854,7 +856,7 @@ DocType: Packing Slip Item,Packing Slip Item,Albarà d'article DocType: POS Profile,Cash/Bank Account,Compte de Caixa / Banc apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Elements retirats sense canvi en la quantitat o el valor. DocType: Delivery Note,Delivery To,Lliurar a -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Taula d'atributs és obligatori +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Taula d'atributs és obligatori DocType: Production Planning Tool,Get Sales Orders,Rep ordres de venda apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} no pot ser negatiu apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Descompte @@ -918,7 +920,7 @@ DocType: SMS Center,Total Characters,Personatges totals apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},Seleccioneu la llista de materials en el camp de llista de materials per al punt {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-Form Invoice Detail DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Factura de Pagament de Reconciliació -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Contribució% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Contribució% DocType: Item,website page link,website page link DocType: Company,Company registration numbers for your reference. Tax numbers etc.,"Els números de registre de l'empresa per la seva referència. Nombres d'impostos, etc." DocType: Sales Partner,Distributor,Distribuïdor @@ -960,10 +962,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM factor de conversió DocType: Stock Settings,Default Item Group,Grup d'articles predeterminat apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Base de dades de proveïdors. DocType: Account,Balance Sheet,Balanç -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Centre de cost per l'article amb Codi d'article ' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Centre de cost per l'article amb Codi d'article ' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,La seva persona de vendes es posarà un avís en aquesta data per posar-se en contacte amb el client apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Altres comptes es poden fer en grups, però les entrades es poden fer contra els no Grups" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Impostos i altres deduccions salarials. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Impostos i altres deduccions salarials. DocType: Lead,Lead,Client potencial DocType: Email Digest,Payables,Comptes per Pagar DocType: Account,Warehouse,Magatzem @@ -980,10 +982,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Detalls de Pagament DocType: Global Defaults,Current Fiscal Year,Any fiscal actual DocType: Global Defaults,Disable Rounded Total,Desactivar total arrodonit DocType: Lead,Call,Truca -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'Entrades' no pot estar buit +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'Entrades' no pot estar buit apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Duplicar fila {0} amb el mateix {1} ,Trial Balance,Balanç provisional -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Configuració d'Empleats +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Configuració d'Empleats apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","Grid """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,Seleccioneu el prefix primer apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Recerca @@ -992,7 +994,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,ID d'usuari apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Veure Ledger apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Earliest -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Hi ha un grup d'articles amb el mateix nom, si us plau, canvieu el nom de l'article o del grup d'articles" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Hi ha un grup d'articles amb el mateix nom, si us plau, canvieu el nom de l'article o del grup d'articles" DocType: Production Order,Manufacture against Sales Order,Fabricació contra ordre de vendes apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Resta del món apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,L'article {0} no pot tenir per lots @@ -1017,7 +1019,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Magatzem no conformitats DocType: GL Entry,Against Voucher,Contra justificant DocType: Item,Default Buying Cost Center,Centres de cost de compres predeterminat apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Per obtenir el millor de ERPNext, us recomanem que es prengui un temps i veure aquests vídeos d'ajuda." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,L'Article {0} ha de ser article de Vendes +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,L'Article {0} ha de ser article de Vendes apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,a DocType: Item,Lead Time in days,Termini d'execució en dies ,Accounts Payable Summary,Comptes per Pagar Resum @@ -1043,7 +1045,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Agricultura apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Els Productes o Serveis de la teva companyia DocType: Mode of Payment,Mode of Payment,Forma de pagament -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Lloc web imatge ha de ser un arxiu públic o URL del lloc web +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Lloc web imatge ha de ser un arxiu públic o URL del lloc web apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,This is a root item group and cannot be edited. DocType: Journal Entry Account,Purchase Order,Ordre De Compra DocType: Warehouse,Warehouse Contact Info,Informació del contacte del magatzem @@ -1054,7 +1056,7 @@ DocType: Serial No,Serial No Details,Serial No Detalls DocType: Purchase Invoice Item,Item Tax Rate,Element Tipus impositiu apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","Per {0}, només els comptes de crèdit es poden vincular amb un altre seient de dèbit" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,La Nota de lliurament {0} no està presentada -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Article {0} ha de ser un subcontractada article +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Article {0} ha de ser un subcontractada article apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Capital Equipments apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Regla preus es selecciona per primera basada en 'Aplicar On' camp, que pot ser d'article, grup d'articles o Marca." DocType: Hub Settings,Seller Website,Venedor Lloc Web @@ -1063,7 +1065,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Meta DocType: Sales Invoice Item,Edit Description,Descripció apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Data prevista de lliurament és menor que la data d'inici prevista. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,Per Proveïdor +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,Per Proveïdor DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Configurar el Tipus de compte ajuda en la selecció d'aquest compte en les transaccions. DocType: Purchase Invoice,Grand Total (Company Currency),Total (En la moneda de la companyia) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Sortint total @@ -1115,7 +1117,6 @@ DocType: Authorization Rule,Average Discount,Descompte Mig DocType: Address,Utilities,Utilitats DocType: Purchase Invoice Item,Accounting,Comptabilitat DocType: Features Setup,Features Setup,Característiques del programa d'instal·lació -DocType: Item,Is Service Item,És un servei apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Període d'aplicació no pot ser període d'assignació llicència fos DocType: Activity Cost,Projects,Projectes apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,Seleccioneu l'any fiscal @@ -1136,7 +1137,7 @@ DocType: Item,Maintain Stock,Mantenir Stock apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Imatges de entrades ja creades per Ordre de Producció apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Canvi net en actius fixos DocType: Leave Control Panel,Leave blank if considered for all designations,Deixar en blanc si es considera per a totes les designacions -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Càrrec del tipus 'real' a la fila {0} no pot ser inclòs en la partida Rate +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Càrrec del tipus 'real' a la fila {0} no pot ser inclòs en la partida Rate apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,A partir de data i hora DocType: Email Digest,For Company,Per a l'empresa @@ -1145,8 +1146,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Nom de l'Adreça d'enviament apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Pla General de Comptabilitat DocType: Material Request,Terms and Conditions Content,Contingut de Termes i Condicions -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,no pot ser major que 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Article {0} no és un article d'estoc +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,no pot ser major que 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Article {0} no és un article d'estoc DocType: Maintenance Visit,Unscheduled,No programada DocType: Employee,Owned,Propietat de DocType: Salary Slip Deduction,Depends on Leave Without Pay,Depèn de la llicència sense sou @@ -1168,7 +1169,7 @@ Used for Taxes and Charges","Impost taula de detalls descarregui de mestre d'art apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Empleat no pot informar-se a si mateix. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Si el compte està bloquejat, només es permeten entrades alguns usuaris." DocType: Email Digest,Bank Balance,Balanç de Banc -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Entrada de Comptabilitat per a {0}: {1} només pot fer-se en moneda: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Entrada de Comptabilitat per a {0}: {1} només pot fer-se en moneda: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,No Estructura Salarial actiu que es troba per a l'empleat {0} i el mes DocType: Job Opening,"Job profile, qualifications required etc.","Perfil del lloc, formació necessària, etc." DocType: Journal Entry Account,Account Balance,Saldo del compte @@ -1185,7 +1186,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Sub Assemblie DocType: Shipping Rule Condition,To Value,Per Valor DocType: Supplier,Stock Manager,Gerent apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Magatzem d'origen obligatori per a la fila {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Llista de presència +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Llista de presència apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,lloguer de l'oficina apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Paràmetres de configuració de Porta de SMS apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Error en importar! @@ -1229,7 +1230,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,Detall del BOM No DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Import addicional de descompte (moneda Company) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Error: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,"Si us plau, creu un nou compte de Pla de Comptes." -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Manteniment Visita +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Manteniment Visita apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Client> Grup de Clients> Territori DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Disponible lot Quantitat en magatzem DocType: Time Log Batch Detail,Time Log Batch Detail,Detall del registre de temps @@ -1238,7 +1239,7 @@ DocType: Leave Block List,Block Holidays on important days.,Vacances de Bloc en ,Accounts Receivable Summary,Comptes per Cobrar Resum apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,"Si us plau, estableix camp ID d'usuari en un registre d'empleat per establir Rol d'empleat" DocType: UOM,UOM Name,Nom UDM -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Quantitat aportada +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Quantitat aportada DocType: Sales Invoice,Shipping Address,Adreça d'nviament DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,Aquesta eina us ajuda a actualitzar o corregir la quantitat i la valoració dels estocs en el sistema. Normalment s'utilitza per sincronitzar els valors del sistema i el que realment hi ha en els magatzems. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,En paraules seran visibles un cop que es guarda l'albarà de lliurament. @@ -1279,7 +1280,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Per realitzar un seguiment d'elements mitjançant codi de barres. Vostè serà capaç d'entrar en els elements de la nota de lliurament i la factura de venda mitjançant l'escaneig de codi de barres de l'article. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Torneu a enviar el pagament per correu electrònic DocType: Dependent Task,Dependent Task,Tasca dependent -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Factor de conversió per a la unitat de mesura per defecte ha de ser d'1 a la fila {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Factor de conversió per a la unitat de mesura per defecte ha de ser d'1 a la fila {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Una absència del tipus {0} no pot ser de més de {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Intenta operacions per a la planificació de X dies d'antelació. DocType: HR Settings,Stop Birthday Reminders,Aturar recordatoris d'aniversari @@ -1289,7 +1290,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Veure apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Canvi Net en Efectiu DocType: Salary Structure Deduction,Salary Structure Deduction,Salary Structure Deduction -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,La unitat de mesura {0} s'ha introduït més d'una vegada a la taula de valors de conversió +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,La unitat de mesura {0} s'ha introduït més d'una vegada a la taula de valors de conversió apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Sol·licitud de pagament ja existeix {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Cost d'articles Emeses apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},La quantitat no ha de ser més de {0} @@ -1318,7 +1319,7 @@ DocType: BOM Item,BOM Item,Article BOM DocType: Appraisal,For Employee,Per als Empleats apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Fila {0}: Avanç contra el Proveïdor ha de afeblir DocType: Company,Default Values,Valors Predeterminats -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Fila {0}: Quantitat de pagament no pot ser negatiu +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Fila {0}: Quantitat de pagament no pot ser negatiu DocType: Expense Claim,Total Amount Reimbursed,Suma total reemborsat apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Contra Proveïdor Factura {0} {1} datat DocType: Customer,Default Price List,Llista de preus per defecte @@ -1346,8 +1347,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Rec DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Reemplaçar una llista de materials(BOM) a totes les altres llistes de materials(BOM) on s'utilitza. Substituirà l'antic enllaç de llista de materials(BOM), s'actualitzarà el cost i es regenerarà la taula ""BOM Explosionat"", segons la nova llista de materials" DocType: Shopping Cart Settings,Enable Shopping Cart,Habilita Compres DocType: Employee,Permanent Address,Adreça Permanent -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Article {0} ha de ser un element de servei. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Avançament pagat contra {0} {1} no pot ser major \ de Gran Total {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Seleccioneu el codi de l'article DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Reduir Deducció per absències sense sou (LWP) @@ -1403,12 +1403,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Inici apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Variant DocType: Naming Series,Set prefix for numbering series on your transactions,Establir prefix de numeracions seriades a les transaccions +DocType: Employee Attendance Tool,Employees HTML,Els empleats HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Detingut ordre no es pot cancel·lar. Unstop per cancel·lar. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Per defecte la llista de materials ({0}) ha d'estar actiu per aquest material o la seva plantilla +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Per defecte la llista de materials ({0}) ha d'estar actiu per aquest material o la seva plantilla DocType: Employee,Leave Encashed?,Leave Encashed? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Oportunitat de camp és obligatori DocType: Item,Variants,Variants -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Feu l'Ordre de Compra +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Feu l'Ordre de Compra DocType: SMS Center,Send To,Enviar a apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},There is not enough leave balance for Leave Type {0} DocType: Payment Reconciliation Payment,Allocated amount,Monto assignat @@ -1509,7 +1510,7 @@ DocType: Sales Person,Name and Employee ID,Nom i ID d'empleat apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,Data de venciment no pot ser anterior Data de comptabilització DocType: Website Item Group,Website Item Group,Lloc web Grup d'articles apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Taxes i impostos -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,"Si us plau, introduïu la data de referència" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,"Si us plau, introduïu la data de referència" apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Pagament de comptes de porta d'enllaç no està configurat apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} entrades de pagament no es poden filtrar per {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,Taula d'article que es mostra en el lloc web @@ -1530,7 +1531,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Resolució Detalls DocType: Quality Inspection Reading,Acceptance Criteria,Criteris d'acceptació DocType: Item Attribute,Attribute Name,Nom del Atribut -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Article {0} ha de ser Vendes o Servei d'articles en {1} DocType: Item Group,Show In Website,Mostra en el lloc web apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Grup DocType: Task,Expected Time (in hours),Temps esperat (en hores) @@ -1562,7 +1562,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Total de l'enviament ,Pending Amount,A l'espera de l'Import DocType: Purchase Invoice Item,Conversion Factor,Factor de conversió DocType: Purchase Order,Delivered,Alliberat -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Setup incoming server for jobs email id. (e.g. jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Setup incoming server for jobs email id. (e.g. jobs@example.com) DocType: Purchase Receipt,Vehicle Number,Nombre de vehicles DocType: Purchase Invoice,The date on which recurring invoice will be stop,La data en què s'atura la factura recurrent apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Total de fulls assignades {0} no pot ser inferior a les fulles ja aprovats {1} per al període @@ -1579,7 +1579,7 @@ DocType: HR Settings,HR Settings,Configuració de recursos humans apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,El compte de despeses està pendent d'aprovació. Només l'aprovador de despeses pot actualitzar l'estat. DocType: Purchase Invoice,Additional Discount Amount,Import addicional de descompte DocType: Leave Block List Allow,Leave Block List Allow,Leave Block List Allow -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abbr no pot estar en blanc o l'espai +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abbr no pot estar en blanc o l'espai apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Grup de No-Grup apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Esports apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Actual total @@ -1603,7 +1603,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},Es requereix el factor de conversió de la UOM a la fila {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},La data de liquidació no pot ser anterior a la data de verificació a la fila {0} DocType: Salary Slip,Deduction,Deducció -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Article Preu afegit per {0} en Preu de llista {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Article Preu afegit per {0} en Preu de llista {1} DocType: Address Template,Address Template,Plantilla de Direcció apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,Introdueixi Empleat Id d'aquest venedor DocType: Territory,Classification of Customers by region,Classificació dels clients per regió @@ -1620,7 +1620,7 @@ DocType: Employee,Date of Birth,Data de naixement apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Article {0} ja s'ha tornat DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** Any Fiscal ** representa un exercici financer. Els assentaments comptables i altres transaccions importants es segueixen contra ** Any Fiscal **. DocType: Opportunity,Customer / Lead Address,Client / Direcció Plom -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Avís: certificat SSL no vàlid en la inclinació {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Avís: certificat SSL no vàlid en la inclinació {0} DocType: Production Order Operation,Actual Operation Time,Temps real de funcionament DocType: Authorization Rule,Applicable To (User),Aplicable a (Usuari) DocType: Purchase Taxes and Charges,Deduct,Deduir @@ -1637,7 +1637,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Dividir nota de lliurament en paquets. apps/erpnext/erpnext/hooks.py +69,Shipments,Els enviaments DocType: Purchase Order Item,To be delivered to customer,Per ser lliurat al client -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Hora de registre d'estat ha de ser presentada. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Hora de registre d'estat ha de ser presentada. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,Número de sèrie {0} no pertany a cap magatzem apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Fila # DocType: Purchase Invoice,In Words (Company Currency),En paraules (Divisa de la Companyia) @@ -1654,7 +1654,7 @@ DocType: Leave Application,Total Leave Days,Dies totals d'absències DocType: Email Digest,Note: Email will not be sent to disabled users,Nota: El correu electrònic no serà enviat als usuaris amb discapacitat apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Seleccioneu l'empresa ... DocType: Leave Control Panel,Leave blank if considered for all departments,Deixar en blanc si es considera per a tots els departaments -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Tipus d'ocupació (permanent, contractats, intern etc.)." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Tipus d'ocupació (permanent, contractats, intern etc.)." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} és obligatori per l'article {1} DocType: Currency Exchange,From Currency,De la divisa apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Seleccioneu suma assignat, Tipus factura i número de factura en almenys una fila" @@ -1673,7 +1673,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,En procés DocType: Authorization Rule,Itemwise Discount,Descompte d'articles DocType: Purchase Order Item,Reference Document Type,Referència Tipus de document -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} en contra d'ordres de venda {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} en contra d'ordres de venda {1} DocType: Account,Fixed Asset,Actius Fixos apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Inventari serialitzat DocType: Activity Type,Default Billing Rate,Per defecte Facturació Tarifa @@ -1683,7 +1683,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Ordres de venda al Pagament DocType: Expense Claim Detail,Expense Claim Detail,Reclamació de detall de despesa apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Registres de temps de creació: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,Seleccioneu el compte correcte +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,Seleccioneu el compte correcte DocType: Item,Weight UOM,UDM del pes DocType: Employee,Blood Group,Grup sanguini DocType: Purchase Invoice Item,Page Break,Salt de pàgina @@ -1718,7 +1718,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM recursiu: {0} no pot ser pare o fill de {2} DocType: Production Order Operation,Completed Qty,Quantitat completada apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","Per {0}, només els comptes de dèbit poden ser enllaçats amb una altra entrada de crèdit" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,La llista de preus {0} està deshabilitada +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,La llista de preus {0} està deshabilitada DocType: Manufacturing Settings,Allow Overtime,Permetre Overtime apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} Números de sèrie necessaris per Punt {1}. Vostè ha proporcionat {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Valoració actual Taxa @@ -1769,7 +1769,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Núm apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Cas No. No pot ser 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,Si vostè té equip de vendes i Venda Partners (Socis de canal) que poden ser etiquetats i mantenir la seva contribució en l'activitat de vendes DocType: Item,Show a slideshow at the top of the page,Mostra una presentació de diapositives a la part superior de la pàgina -DocType: Item,"Allow in Sales Order of type ""Service""",Deixi d'ordres de venda de "Servei" Tipus apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Botigues DocType: Time Log,Projects Manager,Gerent de Projectes DocType: Serial No,Delivery Time,Temps de Lliurament @@ -1784,6 +1783,7 @@ DocType: Rename Tool,Rename Tool,Eina de canvi de nom apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Actualització de Costos DocType: Item Reorder,Item Reorder,Punt de reorden apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Transferir material +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Element {0} ha de ser un article de venda en {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Especifiqueu les operacions, el cost d'operació i dona una número d'operació únic a les operacions." DocType: Purchase Invoice,Price List Currency,Price List Currency DocType: Naming Series,User must always select,Usuari sempre ha de seleccionar @@ -1804,7 +1804,7 @@ DocType: Appraisal,Employee,Empleat apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Importació de correu electrònic De apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Convida com usuari DocType: Features Setup,After Sale Installations,Instal·lacions després de venda -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} està totalment facturat +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} està totalment facturat DocType: Workstation Working Hour,End Time,Hora de finalització apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Condicions contractuals estàndard per Vendes o la compra. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Agrupa per comprovants @@ -1830,7 +1830,7 @@ DocType: Upload Attendance,Attendance To Date,Assistència fins a la Data apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Configuració del servidor d'entrada de correu electrònic d'identificació de les vendes. (Per exemple sales@example.com) DocType: Warranty Claim,Raised By,Raised By DocType: Payment Gateway Account,Payment Account,Compte de Pagament -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,"Si us plau, especifiqui l'empresa per a procedir" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,"Si us plau, especifiqui l'empresa per a procedir" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Canvi net en els comptes per cobrar apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Compensatori DocType: Quality Inspection Reading,Accepted,Acceptat @@ -1842,14 +1842,14 @@ DocType: Shipping Rule,Shipping Rule Label,Regla Etiqueta d'enviament apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Matèries primeres no poden estar en blanc. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","No s'ha pogut actualitzar valors, factura conté els articles de l'enviament de la gota." DocType: Newsletter,Test,Prova -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Com que hi ha transaccions d'accions existents per aquest concepte, \ no pot canviar els valors de 'no té de sèrie', 'Té lot n', 'És de la Element "i" Mètode de valoració'" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Seient Ràpida apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,No es pot canviar la tarifa si el BOM va cap a un article DocType: Employee,Previous Work Experience,Experiència laboral anterior DocType: Stock Entry,For Quantity,Per Quantitat apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},Si us plau entra la quantitat Planificada per l'article {0} a la fila {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} no es presenta +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} no es presenta apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Sol·licituds d'articles. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Per a la producció per separat es crearà per a cada bon article acabat. DocType: Purchase Invoice,Terms and Conditions1,Termes i Condicions 1 @@ -1874,6 +1874,7 @@ DocType: Notification Control,Expense Claim Approved Message,Missatge Reclamaci DocType: Email Digest,How frequently?,Amb quina freqüència? DocType: Purchase Receipt,Get Current Stock,Obtenir Stock actual apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Arbre de la llista de materials +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Marc Present apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Data d'inici de manteniment no pot ser abans de la data de lliurament pel número de sèrie {0} DocType: Production Order,Actual End Date,Data de finalització actual DocType: Authorization Rule,Applicable To (Role),Aplicable a (Rol) @@ -1888,7 +1889,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,La Data de finalització del contracte ha de ser major que la data d'inici DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,Un distribuïdor de tercers / distribuïdor / comissió de l'agent / de la filial / distribuïdor que ven els productes de les empreses d'una comissió. DocType: Customer Group,Has Child Node,Té Node Nen -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} contra l'Ordre de Compra {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} contra l'Ordre de Compra {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Introduïu els paràmetres d'URL estàtiques aquí (Ex. Remitent = ERPNext, nom d'usuari = ERPNext, password = 1234 etc.)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} no en qualsevol any fiscal activa. Per a més detalls de verificació {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Aquest és un lloc web d'exemple d'auto-generada a partir ERPNext @@ -1936,7 +1937,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Afegir o deduir: Si vostè vol afegir o deduir l'impost." DocType: Purchase Receipt Item,Recd Quantity,Recd Quantitat apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},No es pot produir més Article {0} que en la quantitat de comandes de client {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Entrada de la {0} no es presenta +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Entrada de la {0} no es presenta DocType: Payment Reconciliation,Bank / Cash Account,Compte Bancari / Efectiu DocType: Tax Rule,Billing City,Facturació Ciutat DocType: Global Defaults,Hide Currency Symbol,Amaga Símbol de moneda @@ -1962,7 +1963,7 @@ DocType: Salary Structure,Total Earning,Benefici total DocType: Purchase Receipt,Time at which materials were received,Moment en què es van rebre els materials apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Els meus Direccions DocType: Stock Ledger Entry,Outgoing Rate,Sortint Rate -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Organization branch master. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Organization branch master. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,o DocType: Sales Order,Billing Status,Estat de facturació apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Despeses de serveis públics @@ -2000,7 +2001,7 @@ DocType: Bin,Reserved Quantity,Quantitat reservades DocType: Landed Cost Voucher,Purchase Receipt Items,Rebut de compra d'articles apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Formes Personalització DocType: Account,Income Account,Compte d'ingressos -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Lliurament +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Lliurament DocType: Stock Reconciliation Item,Current Qty,Quantitat actual DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section","Vegeu ""Taxa de materials basats en"" a la Secció Costea" DocType: Appraisal Goal,Key Responsibility Area,Àrea de Responsabilitat clau @@ -2012,9 +2013,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,Com DocType: Notification Control,Purchase Order Message,Missatge de les Ordres de Compra DocType: Tax Rule,Shipping Country,País d'enviament DocType: Upload Attendance,Upload HTML,Pujar HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","Avanç total ({0}) en contra de l'ordre {1} no pot ser major \ - que el Gran Total ({2})" DocType: Employee,Relieving Date,Data Alleujar apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Regla de preus està feta per a sobreescriure la llista de preus/defineix percentatge de descompte, en base a algun criteri." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Magatzem només es pot canviar a través d'entrada d'estoc / Nota de lliurament / recepció de compra @@ -2024,8 +2022,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Impos apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Si Regla preus seleccionada està fet per a 'Preu', sobreescriurà Llista de Preus. Regla preu El preu és el preu final, així que no hi ha descompte addicional s'ha d'aplicar. Per tant, en les transaccions com comandes de venda, ordres de compra, etc, es va anar a buscar al camp ""Rate"", en lloc de camp 'Preu de llista Rate'." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Seguiment dels clients potencials per tipus d'indústria. DocType: Item Supplier,Item Supplier,Article Proveïdor -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,"Si us plau, introduïu el codi d'article per obtenir lots no" -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},Please select a value for {0} quotation_to {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,"Si us plau, introduïu el codi d'article per obtenir lots no" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},Please select a value for {0} quotation_to {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Totes les direccions. DocType: Company,Stock Settings,Ajustaments d'estocs apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","La fusió només és possible si les propietats són les mateixes en tots dos registres. És el Grup, Tipus Arrel, Company" @@ -2048,7 +2046,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Número de Xec DocType: Payment Tool Detail,Payment Tool Detail,Detall mitjà de Pagament ,Sales Browser,Analista de Vendes DocType: Journal Entry,Total Credit,Crèdit Total -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Hi ha un altre {0} # {1} contra l'entrada de població {2}: Són els +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Hi ha un altre {0} # {1} contra l'entrada de població {2}: Són els apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Local apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Préstecs i bestretes (Actius) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Deutors @@ -2068,8 +2066,8 @@ DocType: Price List,Price List Master,Llista de preus Mestre DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,Totes les transaccions de venda es poden etiquetar contra múltiples venedors ** ** perquè pugui establir i monitoritzar metes. ,S.O. No.,S.O. No. DocType: Production Order Operation,Make Time Log,Feu l'hora de registre -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Si us plau ajust la quantitat de comanda -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},"Si us plau, crea Client a partir del client potencial {0}" +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Si us plau ajust la quantitat de comanda +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},"Si us plau, crea Client a partir del client potencial {0}" DocType: Price List,Applicable for Countries,Aplicable per als Països apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Ordinadors apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,Es tracta d'un grup de clients de l'arrel i no es pot editar. @@ -2117,7 +2115,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Factur DocType: Payment Reconciliation Invoice,Outstanding Amount,Quantitat Pendent DocType: Project Task,Working,Treballant DocType: Stock Ledger Entry,Stock Queue (FIFO),Estoc de cua (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Seleccioneu registres de temps +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Seleccioneu registres de temps apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} no pertany a l'empresa {1} DocType: Account,Round Off,Arrodonir ,Requested Qty,Sol·licitat Quantitat @@ -2155,7 +2153,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Obtenir assentaments corresponents apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Entrada Comptabilitat de Stock DocType: Sales Invoice,Sales Team1,Equip de Vendes 1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Article {0} no existeix +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Article {0} no existeix DocType: Sales Invoice,Customer Address,Direcció del client DocType: Payment Request,Recipient and Message,Del destinatari i el missatge DocType: Purchase Invoice,Apply Additional Discount On,Aplicar addicional de descompte en les @@ -2174,7 +2172,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Silenciar-mail apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Alimentació, begudes i tabac" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL o BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Només es pot fer el pagament contra facturats {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Només es pot fer el pagament contra facturats {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,La Comissió no pot ser major que 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Nivell d'inventari mínim DocType: Stock Entry,Subcontract,Subcontracte @@ -2192,9 +2190,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Programari apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Color DocType: Maintenance Visit,Scheduled,Programat apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Seleccioneu l'ítem on "És de la Element" és "No" i "És d'articles de venda" és "Sí", i no hi ha un altre paquet de producte" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),avanç total ({0}) contra l'Ordre {1} no pot ser major que el total general ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Seleccioneu Distribució Mensual de distribuir de manera desigual a través d'objectius mesos. DocType: Purchase Invoice Item,Valuation Rate,Tarifa de Valoració -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,No s'ha escollit una divisa per la llista de preus +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,No s'ha escollit una divisa per la llista de preus apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,Article Fila {0}: Compra de Recepció {1} no existeix a la taulat 'Rebuts de compra' apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},L'Empleat {0} ja ha sol·licitat {1} entre {2} i {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Projecte Data d'Inici @@ -2206,6 +2205,7 @@ DocType: Quality Inspection,Inspection Type,Tipus d'Inspecció apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},Seleccioneu {0} DocType: C-Form,C-Form No,C-Form No DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,L'assistència sense marcar apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Investigador apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,"Si us plau, guardi el butlletí abans d'enviar-" apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Nom o Email és obligatori @@ -2231,7 +2231,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Confirm DocType: Payment Gateway,Gateway,Porta d'enllaç apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Proveïdor > Tipus Proveïdor apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Please enter relieving date. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,"Només es poden presentar les Aplicacions d'absència amb estat ""Aprovat""" apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Títol d'adreça obligatori. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,Introduïu el nom de la campanya si la font de la investigació és la campanya @@ -2246,10 +2246,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Magatzem Acceptat DocType: Bank Reconciliation Detail,Posting Date,Data de publicació DocType: Item,Valuation Method,Mètode de Valoració apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},No es pot trobar el tipus de canvi per a {0} a {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Medi Dia Marcos DocType: Sales Invoice,Sales Team,Equip de vendes apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Entrada duplicada DocType: Serial No,Under Warranty,Sota Garantia -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Error] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Error] DocType: Sales Order,In Words will be visible once you save the Sales Order.,En paraules seran visibles un cop que es guarda la comanda de vendes. ,Employee Birthday,Aniversari d'Empleat apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Venture Capital @@ -2272,6 +2273,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,Un Centre de costos amb transaccions existents no es pot convertir en grup DocType: Account,Depreciation,Depreciació apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Proveïdor (s) +DocType: Employee Attendance Tool,Employee Attendance Tool,Empleat Eina Assistència DocType: Supplier,Credit Limit,Límit de Crèdit apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Seleccioneu el tipus de transacció DocType: GL Entry,Voucher No,Número de comprovant @@ -2298,7 +2300,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Compte root no es pot esborrar ,Is Primary Address,És Direcció Primària DocType: Production Order,Work-in-Progress Warehouse,Magatzem de treballs en procés -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Referència #{0} amb data {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Referència #{0} amb data {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Administrar Direccions DocType: Pricing Rule,Item Code,Codi de l'article DocType: Production Planning Tool,Create Production Orders,Crear ordres de producció @@ -2325,7 +2327,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Conciliació bancària apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Obtenir actualitzacions apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Material de Sol·licitud {0} es cancel·la o s'atura apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Afegir uns registres d'exemple -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Deixa Gestió +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Deixa Gestió apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Agrupa Per Comptes DocType: Sales Order,Fully Delivered,Totalment Lliurat DocType: Lead,Lower Income,Lower Income @@ -2340,6 +2342,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','Des de la data' ha de ser després de 'A data' ,Stock Projected Qty,Quantitat d'estoc previst apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Client {0} no pertany a projectar {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Assistència marcat HTML DocType: Sales Order,Customer's Purchase Order,Àrea de clients Ordre de Compra DocType: Warranty Claim,From Company,Des de l'empresa apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Valor o Quantitat @@ -2404,6 +2407,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Transferència Bancària apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,Seleccioneu el compte bancari DocType: Newsletter,Create and Send Newsletters,Crear i enviar butlletins de notícies +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Marqueu totes les DocType: Sales Order,Recurring Order,Ordre Recurrent DocType: Company,Default Income Account,Compte d'Ingressos predeterminat apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Grup de Clients / Client @@ -2435,6 +2439,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Retorn Contra Compra F DocType: Item,Warranty Period (in days),Període de garantia (en dies) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Efectiu net de les operacions apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,"per exemple, l'IVA" +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,L'assistència dels empleats en la marca a granel apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Article 4 DocType: Journal Entry Account,Journal Entry Account,Compte entrada de diari DocType: Shopping Cart Settings,Quotation Series,Sèrie Cotització @@ -2580,14 +2585,14 @@ DocType: Task,Actual Start Date (via Time Logs),Data d'inici real (a través DocType: Stock Reconciliation Item,Before reconciliation,Abans de la reconciliació apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Per {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Impostos i Càrrecs Afegits (Divisa de la Companyia) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,La fila de l'impost d'article {0} ha de tenir en compte el tipus d'impostos o ingressos o despeses o imposable +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,La fila de l'impost d'article {0} ha de tenir en compte el tipus d'impostos o ingressos o despeses o imposable DocType: Sales Order,Partly Billed,Parcialment Facturat DocType: Item,Default BOM,BOM predeterminat apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,"Si us plau, torneu a escriure nom de l'empresa per confirmar" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Viu total Amt DocType: Time Log Batch,Total Hours,Total d'hores DocType: Journal Entry,Printing Settings,Paràmetres d'impressió -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Dèbit total ha de ser igual al total de crèdit. La diferència és {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Dèbit total ha de ser igual al total de crèdit. La diferència és {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Automòbil apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,De la nota de lliurament DocType: Time Log,From Time,From Time @@ -2635,7 +2640,7 @@ DocType: Purchase Invoice Item,Image View,Veure imatges DocType: Issue,Opening Time,Temps d'obertura apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,Des i Fins a la data sol·licitada apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Securities & Commodity Exchanges -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Unitat de mesura per defecte per Variant '{0}' ha de ser el mateix que a la plantilla '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Unitat de mesura per defecte per Variant '{0}' ha de ser el mateix que a la plantilla '{1}' DocType: Shipping Rule,Calculate Based On,Calcula a causa del DocType: Delivery Note Item,From Warehouse,De Magatzem DocType: Purchase Taxes and Charges,Valuation and Total,Valoració i total @@ -2657,7 +2662,7 @@ DocType: Leave Application,Follow via Email,Seguiu per correu electrònic DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Suma d'impostos Després del Descompte apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Compte Nen existeix per aquest compte. No es pot eliminar aquest compte. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Cal la Quantitat destí i la origen -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},No hi ha una llista de materials per defecte d'article {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},No hi ha una llista de materials per defecte d'article {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,Seleccioneu Data de comptabilització primer apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Data d'obertura ha de ser abans de la data de Tancament DocType: Leave Control Panel,Carry Forward,Portar endavant @@ -2735,7 +2740,7 @@ DocType: Leave Type,Is Encash,És convertirà en efectiu DocType: Purchase Invoice,Mobile No,Número de Mòbil DocType: Payment Tool,Make Journal Entry,Feu entrada de diari DocType: Leave Allocation,New Leaves Allocated,Noves absències Assignades -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Dades-Project savi no està disponible per a la cita +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Dades-Project savi no està disponible per a la cita DocType: Project,Expected End Date,Esperat Data de finalització DocType: Appraisal Template,Appraisal Template Title,Títol de plantilla d'avaluació apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Comercial @@ -2783,6 +2788,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,Re apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,"Si us plau, especifiqueu un" DocType: Offer Letter,Awaiting Response,Espera de la resposta apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Per sobre de +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Hora de registre ha estat qualificada DocType: Salary Slip,Earning & Deduction,Guanyar i Deducció apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,El Compte {0} no pot ser un grup apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Opcional. Aquest ajust s'utilitza per filtrar en diverses transaccions. @@ -2853,14 +2859,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Eliminat correctament totes les transaccions relacionades amb aquesta empresa! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Com en la data apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Probation -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,El magatzem predeterminat és obligatòria pels articles d'estoc +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,El magatzem predeterminat és obligatòria pels articles d'estoc apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},El pagament del salari corresponent al mes {0} i {1} anys DocType: Stock Settings,Auto insert Price List rate if missing,Acte inserit taxa Llista de Preus si falta apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Suma total de pagament ,Transferred Qty,Quantitat Transferida apps/erpnext/erpnext/config/learn.py +11,Navigating,Navegació apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Planificació -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Fer un registre de temps +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Fer un registre de temps apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Emès DocType: Project,Total Billing Amount (via Time Logs),Suma total de facturació (a través dels registres de temps) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Venem aquest article @@ -2868,7 +2874,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Quantitat ha de ser més gran que 0 DocType: Journal Entry,Cash Entry,Entrada Efectiu DocType: Sales Partner,Contact Desc,Descripció del Contacte -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Tipus de fulles com casual, malalts, etc." +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Tipus de fulles com casual, malalts, etc." DocType: Email Digest,Send regular summary reports via Email.,Enviar informes periòdics resumits per correu electrònic. DocType: Brand,Item Manager,Administració d'elements DocType: Cost Center,Add rows to set annual budgets on Accounts.,Afegir files per establir els pressupostos anuals de Comptes. @@ -2883,7 +2889,7 @@ DocType: GL Entry,Party Type,Tipus Partit apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,La matèria primera no pot ser la mateixa que article principal DocType: Item Attribute Value,Abbreviation,Abreviatura apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,No distribuïdor oficial autoritzat des {0} excedeix els límits -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Salary template master. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Salary template master. DocType: Leave Type,Max Days Leave Allowed,Màxim de dies d'absència permesos apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Estableixi la regla fiscal de carret de la compra DocType: Payment Tool,Set Matching Amounts,Establir sumes a joc @@ -2896,7 +2902,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Cotitza DocType: Stock Settings,Role Allowed to edit frozen stock,Paper animals d'editar estoc congelat ,Territory Target Variance Item Group-Wise,Territori de destinació Variància element de grup-Wise apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Tots els Grups de clients -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} és obligatori. Potser el registre de canvi de divisa no es crea per {1} a {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} és obligatori. Potser el registre de canvi de divisa no es crea per {1} a {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Plantilla d'impostos és obligatori. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Compte {0}: el compte superior {1} no existeix DocType: Purchase Invoice Item,Price List Rate (Company Currency),Tarifa de preus (en la moneda de la companyia) @@ -2916,8 +2922,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Detall d'impostos de to ,Item-wise Price List Rate,Llista de Preus de tarifa d'article apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Cita Proveïdor DocType: Quotation,In Words will be visible once you save the Quotation.,En paraules seran visibles un cop que es guarda la Cotització. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} està aturat -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Barcode {0} ja utilitzat en el punt {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} està aturat +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Barcode {0} ja utilitzat en el punt {1} DocType: Lead,Add to calendar on this date,Afegir al calendari en aquesta data apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Regles per afegir les despeses d'enviament. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Pròxims esdeveniments @@ -2944,8 +2950,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,St apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Almenys un magatzem és obligatori DocType: Serial No,Out of Warranty,Fora de la Garantia DocType: BOM Replace Tool,Replace,Reemplaçar -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} contra factura Vendes {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Si us plau ingressi Unitat de mesura per defecte +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} contra factura Vendes {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Si us plau ingressi Unitat de mesura per defecte DocType: Purchase Invoice Item,Project Name,Nom del projecte DocType: Supplier,Mention if non-standard receivable account,Esmenteu si compta per cobrar no estàndard DocType: Journal Entry Account,If Income or Expense,Si ingressos o despeses @@ -2970,7 +2976,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Any fiscal: {0} no existeix DocType: Currency Exchange,To Currency,Per moneda DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Deixi els següents usuaris per aprovar sol·licituds de llicència per a diversos dies de bloc. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Tipus de Compte de despeses. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Tipus de Compte de despeses. DocType: Item,Taxes,Impostos apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,A càrrec i no lliurats DocType: Project,Default Cost Center,Centre de cost predeterminat @@ -3000,7 +3006,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Fila # {0}: Nombre de sèrie {1} no coincideix amb {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Deixar Casual DocType: Batch,Batch ID,Identificació de lots -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Nota: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Nota: {0} ,Delivery Note Trends,Nota de lliurament Trends apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Resum de la setmana apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} ha de ser un article de compra o de subcontractació a la fila {1} @@ -3040,6 +3046,7 @@ DocType: Project Task,Pending Review,Pendent de Revisió apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Feu clic aquí per pagar DocType: Task,Total Expense Claim (via Expense Claim),Reclamació de despeses totals (a través de despeses) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,ID del client +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Marc Absent apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Per Temps ha de ser més gran que From Time DocType: Journal Entry Account,Exchange Rate,Tipus De Canvi apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Comanda de client {0} no es presenta @@ -3087,7 +3094,7 @@ DocType: Item Group,Default Expense Account,Compte de Despeses predeterminat DocType: Employee,Notice (days),Avís (dies) DocType: Tax Rule,Sales Tax Template,Plantilla d'Impost a les Vendes DocType: Employee,Encashment Date,Data Cobrament -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Contra val Type ha de ser un ordre de compra, factura de compra o entrada de diari" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Contra val Type ha de ser un ordre de compra, factura de compra o entrada de diari" DocType: Account,Stock Adjustment,Ajust d'estoc apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Hi Cost per defecte per al tipus d'activitat Activitat - {0} DocType: Production Order,Planned Operating Cost,Planejat Cost de funcionament @@ -3141,6 +3148,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Escriu Off Entrada DocType: BOM,Rate Of Materials Based On,Tarifa de materials basats en apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Analtyics Suport +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,desactivar tot apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Falta Empresa als magatzems {0} DocType: POS Profile,Terms and Conditions,Condicions apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},Per a la data ha d'estar dins de l'any fiscal. Suposant Per Data = {0} @@ -3162,7 +3170,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Per establir aquest any fiscal predeterminat, feu clic a ""Estableix com a predeterminat""" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Configuració del servidor d'entrada per l'id de suport per correu electrònic. (Per exemple support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Quantitat escassetat -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Hi ha la variant d'article {0} amb mateixos atributs +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Hi ha la variant d'article {0} amb mateixos atributs DocType: Salary Slip,Salary Slip,Slip Salari apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,'Per Dóna't' es requereix DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Generar albarans paquets que es lliuraran. S'utilitza per notificar el nombre de paquets, el contingut del paquet i el seu pes." @@ -3210,7 +3218,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Veure o DocType: Item Attribute Value,Attribute Value,Atribut Valor apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","L'adreça de correu electrònic ha de ser única, ja existeix per {0}" ,Itemwise Recommended Reorder Level,Nivell d'articles recomanat per a tornar a passar comanda -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,Seleccioneu {0} primer +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,Seleccioneu {0} primer DocType: Features Setup,To get Item Group in details table,Per obtenir Grup d'articles a la taula detalls apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Lot {0} de {1} article ha expirat. DocType: Sales Invoice,Commission,Comissió @@ -3265,7 +3273,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Get Outstanding Vouchers DocType: Warranty Claim,Resolved By,Resolta Per DocType: Appraisal,Start Date,Data De Inici -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Assignar absències per un període. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Assignar absències per un període. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Els xecs i dipòsits esborren de forma incorrecta apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Fes clic aquí per verificar apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Compte {0}: No es pot assignar com compte principal @@ -3285,7 +3293,7 @@ DocType: Employee,Educational Qualification,Capacitació per a l'Educació DocType: Workstation,Operating Costs,Costos Operatius DocType: Employee Leave Approver,Employee Leave Approver,Empleat Deixar aprovador apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} ha estat afegit amb èxit al llistat de Newsletter. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Fila {0}: Una entrada Reordenar ja existeix per aquest magatzem {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Fila {0}: Una entrada Reordenar ja existeix per aquest magatzem {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","No es pot declarar com perdut, perquè s'han fet ofertes" DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Administraodr principal de compres apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,L'Ordre de Producció {0} ha d'estar Presentada @@ -3309,7 +3317,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Factura {0} ja s'ha presentat apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Data d'acabament DocType: Purchase Invoice Item,Amount (Company Currency),Import (Companyia moneda) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Unitat d'Organització (departament) mestre. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Unitat d'Organització (departament) mestre. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Entra números de mòbil vàlids DocType: Budget Detail,Budget Detail,Detall del Pressupost apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,"Si us plau, escriviu el missatge abans d'enviar-" @@ -3325,13 +3333,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Rebut i acceptat ,Serial No Service Contract Expiry,Número de sèrie del contracte de venciment del servei DocType: Item,Unit of Measure Conversion,Unitat de conversió de la mesura apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Empleat no es pot canviar -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,No es pot configurar el mateix compte com crèdit i dèbit a la vegada +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,No es pot configurar el mateix compte com crèdit i dèbit a la vegada DocType: Naming Series,Help HTML,Ajuda HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},El pes total assignat ha de ser 100%. És {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Permissió de superació {0} superat per l'article {1} DocType: Address,Name of person or organization that this address belongs to.,Nom de la persona o organització a la que pertany aquesta direcció. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Els seus Proveïdors -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,No es pot establir tan perdut com està feta d'ordres de venda. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,No es pot establir tan perdut com està feta d'ordres de venda. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,"Una altra estructura salarial {0} està activa per l'empleat {1}. Si us plau, passeu el seu estat a 'inactiu' per seguir." DocType: Purchase Invoice,Contact,Contacte apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Rebut des @@ -3341,11 +3349,11 @@ DocType: Item,Has Serial No,No té de sèrie DocType: Employee,Date of Issue,Data d'emissió apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: Des {0} de {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Fila # {0}: Conjunt de Proveïdors per a l'element {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Lloc web Imatge {0} unit a l'article {1} no es pot trobar +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Lloc web Imatge {0} unit a l'article {1} no es pot trobar DocType: Issue,Content Type,Tipus de Contingut apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Ordinador DocType: Item,List this Item in multiple groups on the website.,Fes una llista d'articles en diversos grups en el lloc web. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,"Si us plau, consulti l'opció Multi moneda per permetre comptes amb una altra moneda" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,"Si us plau, consulti l'opció Multi moneda per permetre comptes amb una altra moneda" apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Article: {0} no existeix en el sistema apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,No estàs autoritzat per establir el valor bloquejat DocType: Payment Reconciliation,Get Unreconciled Entries,Aconsegueix entrades no reconciliades @@ -3355,14 +3363,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Què fa? DocType: Delivery Note,To Warehouse,Magatzem destí apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Compte {0} s'ha introduït més d'una vegada per a l'any fiscal {1} ,Average Commission Rate,Comissió de Tarifes mitjana -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'Té Num de Sèrie' no pot ser 'Sí' per a items que no estan a l'estoc +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'Té Num de Sèrie' no pot ser 'Sí' per a items que no estan a l'estoc apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,No es poden entrar assistències per dates futures DocType: Pricing Rule,Pricing Rule Help,Ajuda de la Regla de preus DocType: Purchase Taxes and Charges,Account Head,Cap Compte apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Actualització dels costos addicionals per al càlcul del preu al desembarcament d'articles apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Elèctric DocType: Stock Entry,Total Value Difference (Out - In),Diferència Total Valor (Out - En) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Fila {0}: Tipus de canvi és obligatori +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Fila {0}: Tipus de canvi és obligatori apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},ID d'usuari no entrat per l'Empleat {0} DocType: Stock Entry,Default Source Warehouse,Magatzem d'origen predeterminat DocType: Item,Customer Code,Codi de Client @@ -3381,15 +3389,15 @@ DocType: Notification Control,Sales Invoice Message,Missatge de Factura de vende apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Compte {0} Cloenda ha de ser de Responsabilitat / Patrimoni DocType: Authorization Rule,Based On,Basat en DocType: Sales Order Item,Ordered Qty,Quantitat demanada -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Article {0} està deshabilitat +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Article {0} està deshabilitat DocType: Stock Settings,Stock Frozen Upto,Estoc bloquejat fins a apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Període Des i Període Per dates obligatòries per als recurrents {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Activitat del projecte / tasca. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Generar Salari Slips +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Generar Salari Slips apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Compra de comprovar, si es selecciona aplicable Perquè {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Descompte ha de ser inferior a 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Escriu Off Import (Companyia moneda) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Fila # {0}: Configureu la quantitat de comanda +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Fila # {0}: Configureu la quantitat de comanda DocType: Landed Cost Voucher,Landed Cost Voucher,Val Landed Cost apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},"Si us plau, estableix {0}" DocType: Purchase Invoice,Repeat on Day of Month,Repetiu el Dia del Mes @@ -3442,7 +3450,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Per defecte Work In Progress Magatzem apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Ajustos predeterminats per a les operacions comptables. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Data prevista no pot ser anterior material Data de sol·licitud -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,L'Article {0} ha de ser un article de Vendes +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,L'Article {0} ha de ser un article de Vendes DocType: Naming Series,Update Series Number,Actualització Nombre Sèries DocType: Account,Equity,Equitat DocType: Sales Order,Printing Details,Impressió Detalls @@ -3494,7 +3502,7 @@ DocType: Task,Review Date,Data de revisió DocType: Purchase Invoice,Advance Payments,Pagaments avançats DocType: Purchase Taxes and Charges,On Net Total,En total net apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,El magatzem de destinació de la fila {0} ha de ser igual que l'Ordre de Producció -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,No té permís per utilitzar l'eina de Pagament +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,No té permís per utilitzar l'eina de Pagament apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,«Notificació adreces de correu electrònic 'no especificats per recurrent% s apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Moneda no es pot canviar després de fer entrades utilitzant alguna altra moneda DocType: Company,Round Off Account,Per arrodonir el compte @@ -3517,7 +3525,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Quantitat de punt obtingut després de la fabricació / reempaque de determinades quantitats de matèries primeres DocType: Payment Reconciliation,Receivable / Payable Account,Compte de cobrament / pagament DocType: Delivery Note Item,Against Sales Order Item,Contra l'Ordre de Venda d'articles -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},"Si us plau, especifiqui Atribut Valor de l'atribut {0}" +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},"Si us plau, especifiqui Atribut Valor de l'atribut {0}" DocType: Item,Default Warehouse,Magatzem predeterminat DocType: Task,Actual End Date (via Time Logs),Actual Data de finalització (a través dels registres de temps) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Pressupost no es pot assignar contra comptes de grup {0} @@ -3542,10 +3550,10 @@ DocType: Lead,Blog Subscriber,Bloc subscriptor apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Crear regles per restringir les transaccions basades en valors. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Si es marca, número total. de dies de treball s'inclouran els festius, i això reduirà el valor de Salari per dia" DocType: Purchase Invoice,Total Advance,Avanç total -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Processament de Nòmina +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Processament de Nòmina DocType: Opportunity Item,Basic Rate,Tarifa Bàsica DocType: GL Entry,Credit Amount,Suma de crèdit -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Establir com a Perdut +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Establir com a Perdut apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Pagament de rebuts Nota DocType: Supplier,Credit Days Based On,Dies crèdit basat en DocType: Tax Rule,Tax Rule,Regla Fiscal @@ -3575,7 +3583,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Quantitat Acceptada apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} no existeix apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Factures enviades als clients. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Identificació del projecte -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Fila n {0}: Munto no pot ser major que l'espera Monto al Compte de despeses de {1}. A l'espera de Monto és {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Fila n {0}: Munto no pot ser major que l'espera Monto al Compte de despeses de {1}. A l'espera de Monto és {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} abonats afegir DocType: Maintenance Schedule,Schedule,Horari DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Definir Pressupost per a aquest centre de cost. Per configurar l'acció de pressupost, vegeu "Llista de l'Empresa"" @@ -3636,19 +3644,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS Perfil DocType: Payment Gateway Account,Payment URL Message,Pagament URL Missatge apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","L'estacionalitat d'establir pressupostos, objectius, etc." -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Fila {0}: Quantitat de pagament no pot ser superior a quantitat lliurada +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Fila {0}: Quantitat de pagament no pot ser superior a quantitat lliurada apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Total no pagat -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Registre d'hores no facturable -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Article {0} és una plantilla, per favor seleccioni una de les seves variants" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Registre d'hores no facturable +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Article {0} és una plantilla, per favor seleccioni una de les seves variants" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Comprador apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Salari net no pot ser negatiu -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Introduïu manualment la partida dels comprovants +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Introduïu manualment la partida dels comprovants DocType: SMS Settings,Static Parameters,Paràmetres estàtics DocType: Purchase Order,Advance Paid,Bestreta pagada DocType: Item,Item Tax,Impost d'article apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Materials de Proveïdor apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Impostos Especials Factura DocType: Expense Claim,Employees Email Id,Empleats Identificació de l'email +DocType: Employee Attendance Tool,Marked Attendance,assistència marcada apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Passiu exigible apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Enviar SMS massiu als seus contactes DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Consider Tax or Charge for @@ -3671,7 +3680,7 @@ DocType: Item Attribute,Numeric Values,Els valors numèrics apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Adjuntar Logo DocType: Customer,Commission Rate,Percentatge de comissió apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Fer Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Bloquejar sol·licituds d'absències per departament. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Bloquejar sol·licituds d'absències per departament. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,El carret està buit DocType: Production Order,Actual Operating Cost,Cost de funcionament real apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Root no es pot editar. @@ -3690,7 +3699,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,Creació automàtica de sol·licitud de materials si la quantitat és inferior a aquest nivell ,Item-wise Purchase Register,Registre de compra d'articles DocType: Batch,Expiry Date,Data De Caducitat -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Per establir el nivell de comanda, article ha de ser un article de compra o fabricació d'articles" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Per establir el nivell de comanda, article ha de ser un article de compra o fabricació d'articles" ,Supplier Addresses and Contacts,Adreces i contactes dels proveïdors apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,"Si us plau, Selecciona primer la Categoria" apps/erpnext/erpnext/config/projects.py +18,Project master.,Projecte mestre. diff --git a/erpnext/translations/cs.csv b/erpnext/translations/cs.csv index 1395f84ca7..38b95f8928 100644 --- a/erpnext/translations/cs.csv +++ b/erpnext/translations/cs.csv @@ -164,14 +164,14 @@ DocType: Journal Entry Account,Credit in Company Currency,Úvěrové společnost DocType: Delivery Note,Installation Status,Stav instalace apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Schválené + Zamítnuté množství se musí rovnat množství Přijaté u položky {0} DocType: Item,Supply Raw Materials for Purchase,Dodávky suroviny pro nákup -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Bod {0} musí být Nákup položky +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Bod {0} musí být Nákup položky DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Stáhněte si šablony, vyplňte potřebné údaje a přiložte upravený soubor. Všechny termíny a zaměstnanec kombinaci ve zvoleném období přijde v šabloně, se stávajícími evidence docházky" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,"Bod {0} není aktivní, nebo byl dosažen konec života" DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Bude aktualizováno po odeslání faktury. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Chcete-li zahrnout daně na řádku v poměru Položka {0}, daně v řádcích {1} musí být zahrnuty" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Nastavení pro HR modul +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Chcete-li zahrnout daně na řádku v poměru Položka {0}, daně v řádcích {1} musí být zahrnuty" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Nastavení pro HR modul DocType: SMS Center,SMS Center,SMS centrum DocType: BOM Replace Tool,New BOM,New BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Batch čas Záznamy pro fakturaci. @@ -199,7 +199,7 @@ DocType: Offer Letter,Select Terms and Conditions,Vyberte Podmínky DocType: Production Planning Tool,Sales Orders,Prodejní objednávky DocType: Purchase Taxes and Charges,Valuation,Ocenění ,Purchase Order Trends,Nákupní objednávka trendy -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Přidělit listy za rok. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Přidělit listy za rok. DocType: Earning Type,Earning Type,Výdělek Type DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Zakázat Plánování kapacit a Time Tracking DocType: Bank Reconciliation,Bank Account,Bankovní účet @@ -237,7 +237,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Položka webových stránek Specifikace DocType: Payment Tool,Reference No,Referenční číslo apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Absence blokována -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Položka {0} dosáhla konce své životnosti na {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Položka {0} dosáhla konce své životnosti na {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Roční DocType: Stock Reconciliation Item,Stock Reconciliation Item,Reklamní Odsouhlasení Item DocType: Stock Entry,Sales Invoice No,Prodejní faktuře č @@ -249,7 +249,7 @@ DocType: Item,Minimum Order Qty,Minimální objednávka Množství DocType: Pricing Rule,Supplier Type,Dodavatel Type DocType: Item,Publish in Hub,Publikovat v Hub ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Položka {0} je zrušen +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Položka {0} je zrušen apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Požadavek na materiál DocType: Bank Reconciliation,Update Clearance Date,Aktualizace Výprodej Datum DocType: Item,Purchase Details,Nákup Podrobnosti @@ -261,11 +261,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Odmíntnuté množství DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Pole k dispozici v dodací list, cenovou nabídku, prodejní faktury odběratele" DocType: SMS Settings,SMS Sender Name,SMS Sender Name DocType: Contact,Is Primary Contact,Je primárně Kontakt +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Time Log byl dávkované pro fakturaci DocType: Notification Control,Notification Control,Oznámení Control DocType: Lead,Suggestions,Návrhy DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Set Položka Skupina-moudrý rozpočty na tomto území. Můžete také sezónnosti nastavením distribuce. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},"Prosím, zadejte mateřskou skupinu účtu pro sklad {0}" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Platba proti {0} {1} nemůže být větší než dlužné částky {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Platba proti {0} {1} nemůže být větší než dlužné částky {2} DocType: Supplier,Address HTML,Adresa HTML DocType: Lead,Mobile No.,Mobile No. DocType: Maintenance Schedule,Generate Schedule,Generování plán @@ -282,7 +283,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Synchronizovány Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Špatné Heslo DocType: Item,Variant Of,Varianta -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Položka {0} musí být Service Item apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',"Dokončené množství nemůže být větší než ""Množství do výroby""" DocType: Period Closing Voucher,Closing Account Head,Závěrečný účet hlava DocType: Employee,External Work History,Vnější práce History @@ -294,10 +294,10 @@ DocType: Newsletter,Newsletter,Newsletter DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Upozornit e-mailem na tvorbu automatických Materiál Poptávka DocType: Journal Entry,Multi Currency,Více měn DocType: Payment Reconciliation Invoice,Invoice Type,Typ faktury -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Dodací list +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Dodací list apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Nastavení Daně apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,"Vstup Platba byla změněna poté, co ji vytáhl. Prosím, vytáhněte ji znovu." -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} vloženo dvakrát v Daňové Položce +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} vloženo dvakrát v Daňové Položce apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Shrnutí pro tento týden a probíhajícím činnostem DocType: Workstation,Rent Cost,Rent Cost apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Vyberte měsíc a rok @@ -308,7 +308,7 @@ DocType: Shipping Rule,Valid for Countries,"Platí pro země," DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Všech souvisejících oblastech, jako je dovozní měně, přepočítací koeficient, dovoz celkem, dovoz celkovém součtu etc jsou k dispozici v dokladu o koupi, dodavatelů nabídky, faktury, objednávky apod" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"Tento bod je šablona a nemůže být použit v transakcích. Atributy položky budou zkopírovány do variant, pokud je nastaveno ""No Copy""" apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Celková objednávka Zvážil -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Označení zaměstnanců (např CEO, ředitel atd.)." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Označení zaměstnanců (např CEO, ředitel atd.)." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,"Prosím, zadejte ""Opakujte dne měsíce"" hodnoty pole" DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,"Sazba, za kterou je měna zákazníka převedena na základní měnu zákazníka" DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","K dispozici v BOM, dodací list, fakturu, výrobní zakázky, objednávky, doklad o koupi, prodejní faktury odběratele, Stock vstupu, časový rozvrh" @@ -357,7 +357,7 @@ DocType: Workstation,Consumable Cost,Spotřební Cost apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',"{0} ({1}), musí mít roli ""Schvalovatel dovolených""" DocType: Purchase Receipt,Vehicle Date,Datum Vehicle apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Lékařský -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Důvod ztráty +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Důvod ztráty apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Workstation je uzavřena v následujících dnech podle Prázdninový Seznam: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Příležitosti DocType: Employee,Single,Jednolůžkový @@ -385,14 +385,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Channel Partner DocType: Account,Old Parent,Staré nadřazené DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,"Přizpůsobte si úvodní text, který jede jako součást tohoto e-mailu. Každá transakce je samostatný úvodní text." +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Nezahrnují symboly (např. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Sales manažer ve skupině Master apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Globální nastavení pro všechny výrobní procesy. DocType: Accounts Settings,Accounts Frozen Upto,Účty Frozen aľ DocType: SMS Log,Sent On,Poslán na -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Atribut {0} vybraný několikrát v atributech tabulce +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Atribut {0} vybraný několikrát v atributech tabulce DocType: HR Settings,Employee record is created using selected field. ,Záznam Zaměstnanec je vytvořena pomocí vybrané pole. DocType: Sales Order,Not Applicable,Nehodí se -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Holiday master. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Holiday master. DocType: Material Request Item,Required Date,Požadovaná data DocType: Delivery Note,Billing Address,Fakturační adresa apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,"Prosím, zadejte kód položky." @@ -428,7 +429,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,"Prosím, zadejte sklad, který bude materiál žádosti předložené" DocType: Production Order,Additional Operating Cost,Další provozní náklady apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Kosmetika -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Chcete-li sloučit, tyto vlastnosti musí být stejné pro obě položky" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Chcete-li sloučit, tyto vlastnosti musí být stejné pro obě položky" DocType: Shipping Rule,Net Weight,Hmotnost DocType: Employee,Emergency Phone,Nouzový telefon ,Serial No Warranty Expiry,Pořadové č záruční lhůty @@ -486,17 +487,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Fakturace a Delivery Status apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Opakujte zákazníci DocType: Leave Control Panel,Allocate,Přidělit -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Sales Return +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Sales Return DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,"Vyberte prodejní objednávky, ze kterého chcete vytvořit výrobní zakázky." DocType: Item,Delivered by Supplier (Drop Ship),Dodává Dodavatelem (Drop Ship) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Mzdové složky. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Mzdové složky. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Databáze potenciálních zákazníků. DocType: Authorization Rule,Customer or Item,Zákazník nebo položka apps/erpnext/erpnext/config/crm.py +17,Customer database.,Databáze zákazníků. DocType: Quotation,Quotation To,Nabídka k DocType: Lead,Middle Income,Středními příjmy apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Otvor (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Výchozí měrná jednotka bodu {0} nemůže být změněna přímo, protože jste už nějaké transakce (y) s jiným nerozpuštěných. Budete muset vytvořit novou položku použít jiný výchozí UOM." +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Výchozí měrná jednotka bodu {0} nemůže být změněna přímo, protože jste už nějaké transakce (y) s jiným nerozpuštěných. Budete muset vytvořit novou položku použít jiný výchozí UOM." apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Přidělená částka nemůže být záporná DocType: Purchase Order Item,Billed Amt,Účtovaného Amt DocType: Warehouse,A logical Warehouse against which stock entries are made.,"Logická Warehouse na položky, které mohou být vyrobeny." @@ -515,14 +516,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Prodej Daně a poplatky DocType: Employee,Organization Profile,Profil organizace apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,"Prosím, nastavení číslování série pro Účast přes Nastavení> Série číslování" DocType: Employee,Reason for Resignation,Důvod rezignace -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Šablona pro hodnocení výkonu. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Šablona pro hodnocení výkonu. DocType: Payment Reconciliation,Invoice/Journal Entry Details,Faktura / Zápis do deníku Podrobnosti apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' není v fiskálním roce {2} DocType: Buying Settings,Settings for Buying Module,Nastavení pro nákup modul apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,"Prosím, zadejte první doklad o zakoupení" DocType: Buying Settings,Supplier Naming By,Dodavatel Pojmenování By DocType: Activity Type,Default Costing Rate,Výchozí kalkulace Rate -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Plán údržby +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Plán údržby apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Pak se pravidla pro tvorbu cen jsou odfiltrovány založeny na zákazníka, skupiny zákazníků, území, dodavatel, dodavatel typ, kampaň, obchodní partner atd" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Čistá Změna stavu zásob DocType: Employee,Passport Number,Číslo pasu @@ -561,7 +562,7 @@ DocType: Purchase Invoice,Quarterly,Čtvrtletně DocType: Selling Settings,Delivery Note Required,Delivery Note Povinné DocType: Sales Order Item,Basic Rate (Company Currency),Basic Rate (Company měny) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Se zpětným suroviny na základě -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,"Prosím, zadejte podrobnosti položky" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,"Prosím, zadejte podrobnosti položky" DocType: Purchase Receipt,Other Details,Další podrobnosti DocType: Account,Accounts,Účty apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Marketing @@ -574,7 +575,7 @@ DocType: Employee,Provide email id registered in company,Poskytnout e-mail id za DocType: Hub Settings,Seller City,Prodejce City DocType: Email Digest,Next email will be sent on:,Další e-mail bude odeslán dne: DocType: Offer Letter Term,Offer Letter Term,Nabídka Letter Term -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Položka má varianty. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Položka má varianty. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Položka {0} nebyl nalezen DocType: Bin,Stock Value,Reklamní Value apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Tree Type @@ -582,7 +583,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Množství spotřebované na j DocType: Serial No,Warranty Expiry Date,Záruka Datum vypršení platnosti DocType: Material Request Item,Quantity and Warehouse,Množství a sklad DocType: Sales Invoice,Commission Rate (%),Výše provize (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Proti poukazu Type musí být jedním z prodejní objednávky, prodejní faktury nebo Journal Entry" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Proti poukazu Type musí být jedním z prodejní objednávky, prodejní faktury nebo Journal Entry" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Aerospace DocType: Journal Entry,Credit Card Entry,Vstup Kreditní karta apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Úkol Předmět @@ -669,10 +670,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Odpovědnost apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Sankcionována Částka nemůže být větší než reklamace Částka v řádku {0}. DocType: Company,Default Cost of Goods Sold Account,Výchozí Náklady na prodané zboží účtu -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Ceník není zvolen +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Ceník není zvolen DocType: Employee,Family Background,Rodinné poměry DocType: Process Payroll,Send Email,Odeslat email -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Varování: Neplatná Příloha {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Varování: Neplatná Příloha {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Nemáte oprávnění DocType: Company,Default Bank Account,Výchozí Bankovní účet apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Chcete-li filtrovat na základě Party, vyberte typ Party první" @@ -700,7 +701,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Podpo DocType: Features Setup,"To enable ""Point of Sale"" features",Chcete-li povolit "Point of Sale" představuje DocType: Bin,Moving Average Rate,Klouzavý průměr DocType: Production Planning Tool,Select Items,Vyberte položky -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} proti účtence {1} ze dne {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} proti účtence {1} ze dne {2} DocType: Maintenance Visit,Completion Status,Dokončení Status DocType: Sales Invoice Item,Target Warehouse,Target Warehouse DocType: Item,Allow over delivery or receipt upto this percent,Nechte přes dodávku nebo příjem aľ tohoto procenta @@ -760,7 +761,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Devi apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Nelze najít časový úsek v příštích {0} dní k provozu {1} DocType: Production Order,Plan material for sub-assemblies,Plán materiál pro podsestavy apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} musí být aktivní -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,Vyberte první typ dokumentu +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Vyberte první typ dokumentu apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Goto košík apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Zrušit Materiál Návštěvy {0} před zrušením tohoto návštěv údržby DocType: Salary Slip,Leave Encashment Amount,Částka proplacené dovolené @@ -778,7 +779,7 @@ DocType: Purchase Receipt,Range,Rozsah DocType: Supplier,Default Payable Accounts,Výchozí úplatu účty apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Zaměstnanec {0} není aktivní nebo neexistuje DocType: Features Setup,Item Barcode,Položka Barcode -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Bod Varianty {0} aktualizováno +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Bod Varianty {0} aktualizováno DocType: Quality Inspection Reading,Reading 6,Čtení 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Záloha přijaté faktury DocType: Address,Shop,Obchod @@ -801,7 +802,7 @@ DocType: Salary Slip,Total in words,Celkem slovy DocType: Material Request Item,Lead Time Date,Datum a čas Leadu apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,je povinné. Možná chybí záznam směnného kurzu pro apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Row # {0}: Zadejte Pořadové číslo k bodu {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Pro "produktem Bundle předměty, sklad, sériové číslo a dávkové No bude považována ze" Balení seznam 'tabulky. Pokud Warehouse a Batch No jsou stejné pro všechny balení položky pro jakoukoli "Výrobek balík" položky, tyto hodnoty mohou být zapsány do hlavní tabulky položky, budou hodnoty zkopírovány do "Balení seznam" tabulku." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Pro "produktem Bundle předměty, sklad, sériové číslo a dávkové No bude považována ze" Balení seznam 'tabulky. Pokud Warehouse a Batch No jsou stejné pro všechny balení položky pro jakoukoli "Výrobek balík" položky, tyto hodnoty mohou být zapsány do hlavní tabulky položky, budou hodnoty zkopírovány do "Balení seznam" tabulku." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Zásilky zákazníkům. DocType: Purchase Invoice Item,Purchase Order Item,Položka vydané objednávky apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Nepřímé příjmy @@ -822,6 +823,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Vyberte Payroll rok a mě apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Přejděte na příslušné skupiny (obvykle využití finančních prostředků> oběžných aktiv> bankovních účtů a vytvořit nový účet (kliknutím na Přidat dítě) typu "Bank" DocType: Workstation,Electricity Cost,Cena elektřiny DocType: HR Settings,Don't send Employee Birthday Reminders,Neposílejte zaměstnance připomenutí narozenin +,Employee Holiday Attendance,Zaměstnanec Holiday Účast DocType: Opportunity,Walk In,Vejít apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Sklad Příspěvky DocType: Item,Inspection Criteria,Inspekční Kritéria @@ -844,7 +846,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,A DocType: Journal Entry Account,Expense Claim,Hrazení nákladů apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Množství pro {0} DocType: Leave Application,Leave Application,Požadavek na absenci -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Nástroj pro přidělování dovolených +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Nástroj pro přidělování dovolených DocType: Leave Block List,Leave Block List Dates,Nechte Block List termíny DocType: Company,If Monthly Budget Exceeded (for expense account),Pokud Měsíční rozpočet překročen (pro výdajového účtu) DocType: Workstation,Net Hour Rate,Net Hour Rate @@ -854,7 +856,7 @@ DocType: Packing Slip Item,Packing Slip Item,Balení Slip Item DocType: POS Profile,Cash/Bank Account,Hotovostní / Bankovní účet apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Odstraněné položky bez změny množství nebo hodnoty. DocType: Delivery Note,Delivery To,Doručení do -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Atribut tabulka je povinné +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Atribut tabulka je povinné DocType: Production Planning Tool,Get Sales Orders,Získat Prodejní objednávky apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} nemůže být negativní apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Sleva @@ -918,7 +920,7 @@ DocType: SMS Center,Total Characters,Celkový počet znaků apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},Vyberte kusovník Bom oblasti k bodu {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-Form Faktura Detail DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Platba Odsouhlasení faktury -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Příspěvek% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Příspěvek% DocType: Item,website page link,webové stránky odkaz na stránku DocType: Company,Company registration numbers for your reference. Tax numbers etc.,Registrace firmy čísla pro váš odkaz. Daňové čísla atd DocType: Sales Partner,Distributor,Distributor @@ -960,10 +962,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM Conversion Factor DocType: Stock Settings,Default Item Group,Výchozí bod Group apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Databáze dodavatelů. DocType: Account,Balance Sheet,Rozvaha -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',"Nákladové středisko u položky s Kód položky """ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',"Nákladové středisko u položky s Kód položky """ DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,"Váš obchodní zástupce dostane upomínku na tento den, aby kontaktoval zákazníka" apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Další účty mohou být vyrobeny v rámci skupiny, ale údaje lze proti non-skupin" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Daňové a jiné platové srážky. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Daňové a jiné platové srážky. DocType: Lead,Lead,Lead DocType: Email Digest,Payables,Závazky DocType: Account,Warehouse,Sklad @@ -980,10 +982,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Smířit platbě DocType: Global Defaults,Current Fiscal Year,Aktuální fiskální rok DocType: Global Defaults,Disable Rounded Total,Zakázat Zaoblený Celkem DocType: Lead,Call,Volání -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,"""Záznamy"" nemohou být prázdné" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,"""Záznamy"" nemohou být prázdné" apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Duplicitní řádek {0} se stejným {1} ,Trial Balance,Trial Balance -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Nastavení Zaměstnanci +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Nastavení Zaměstnanci apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","Grid """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,"Prosím, vyberte první prefix" apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Výzkum @@ -992,7 +994,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,User ID apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,View Ledger apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Nejstarší -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Položka Group existuje se stejným názvem, prosím, změnit název položky nebo přejmenovat skupinu položek" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Položka Group existuje se stejným názvem, prosím, změnit název položky nebo přejmenovat skupinu položek" DocType: Production Order,Manufacture against Sales Order,Výroba na odběratele apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Zbytek světa apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,Položka {0} nemůže mít dávku @@ -1017,7 +1019,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Zamítnuto Warehouse DocType: GL Entry,Against Voucher,Proti poukazu DocType: Item,Default Buying Cost Center,Výchozí Center Nákup Cost apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Chcete-li získat to nejlepší z ERPNext, doporučujeme vám nějaký čas trvat, a sledovat tyto nápovědy videa." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Položka {0} musí být Sales Item +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Položka {0} musí být Sales Item apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,na DocType: Item,Lead Time in days,Čas leadu ve dnech ,Accounts Payable Summary,Splatné účty Shrnutí @@ -1043,7 +1045,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Zemědělství apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Vaše Produkty nebo Služby DocType: Mode of Payment,Mode of Payment,Způsob platby -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Webové stránky Image by měla být veřejná souboru nebo webové stránky URL +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Webové stránky Image by měla být veřejná souboru nebo webové stránky URL apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,Jedná se o skupinu kořen položky a nelze upravovat. DocType: Journal Entry Account,Purchase Order,Vydaná objednávka DocType: Warehouse,Warehouse Contact Info,Sklad Kontaktní informace @@ -1054,7 +1056,7 @@ DocType: Serial No,Serial No Details,Serial No Podrobnosti DocType: Purchase Invoice Item,Item Tax Rate,Sazba daně položky apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","Pro {0}, tak úvěrové účty mohou být propojeny na jinou položku debetní" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Delivery Note {0} není předložena -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Položka {0} musí být Subdodavatelské Item +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Položka {0} musí být Subdodavatelské Item apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Kapitálové Vybavení apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Ceny Pravidlo je nejprve vybrána na základě ""Použít na"" oblasti, které mohou být položky, položky skupiny nebo značky." DocType: Hub Settings,Seller Website,Prodejce Website @@ -1063,7 +1065,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Cíl DocType: Sales Invoice Item,Edit Description,Upravit popis apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Očekávané datum dodání je menší než plánované datum zahájení. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,Pro Dodavatele +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,Pro Dodavatele DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Nastavení typu účtu pomáhá při výběru tohoto účtu v transakcích. DocType: Purchase Invoice,Grand Total (Company Currency),Celkový součet (Měna společnosti) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Celkem Odchozí @@ -1115,7 +1117,6 @@ DocType: Authorization Rule,Average Discount,Průměrná sleva DocType: Address,Utilities,Utilities DocType: Purchase Invoice Item,Accounting,Účetnictví DocType: Features Setup,Features Setup,Nastavení Funkcí -DocType: Item,Is Service Item,Je Service Item apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Období pro podávání žádostí nemůže být alokační období venku volno DocType: Activity Cost,Projects,Projekty apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,"Prosím, vyberte Fiskální rok" @@ -1136,7 +1137,7 @@ DocType: Item,Maintain Stock,Udržovat Stock apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Fotky Položky již vytvořené pro výrobní zakázku apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Čistá změna ve stálých aktiv DocType: Leave Control Panel,Leave blank if considered for all designations,"Ponechte prázdné, pokud se to považuje za všechny označení" -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,"Obvinění z typu ""Aktuální"" v řádku {0} nemůže být zařazena do položky Rate" +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,"Obvinění z typu ""Aktuální"" v řádku {0} nemůže být zařazena do položky Rate" apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Od datetime DocType: Email Digest,For Company,Pro Společnost @@ -1145,8 +1146,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Název dodací adresy apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Diagram účtů DocType: Material Request,Terms and Conditions Content,Podmínky Content -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,nemůže být větší než 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Položka {0} není skladem +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,nemůže být větší než 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Položka {0} není skladem DocType: Maintenance Visit,Unscheduled,Neplánovaná DocType: Employee,Owned,Vlastník DocType: Salary Slip Deduction,Depends on Leave Without Pay,Závisí na dovolené bez nároku na mzdu @@ -1168,7 +1169,7 @@ Used for Taxes and Charges","Tax detail tabulka staženy z položky pána jako apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Zaměstnanec nemůže odpovídat sám sobě. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","V případě, že účet je zamrzlý, položky mohou omezeným uživatelům." DocType: Email Digest,Bank Balance,Bank Balance -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Účetní záznam pro {0}: {1} mohou být prováděny pouze v měně: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Účetní záznam pro {0}: {1} mohou být prováděny pouze v měně: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Žádný aktivní Struktura Plat nalezených pro zaměstnance {0} a měsíc DocType: Job Opening,"Job profile, qualifications required etc.","Profil Job, požadované kvalifikace atd." DocType: Journal Entry Account,Account Balance,Zůstatek na účtu @@ -1185,7 +1186,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Podsestavy DocType: Shipping Rule Condition,To Value,Chcete-li hodnota DocType: Supplier,Stock Manager,Reklamní manažer apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Source sklad je povinná pro řadu {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Balení Slip +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Balení Slip apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Pronájem kanceláře apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Nastavení SMS brány apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Import se nezdařil! @@ -1229,7 +1230,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM Detail No DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Dodatečná sleva Částka (Měna Company) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Chyba: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,"Prosím, vytvořte nový účet z grafu účtů." -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Maintenance Visit +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Maintenance Visit apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Zákazník> Zákazník Group> Territory DocType: Sales Invoice Item,Available Batch Qty at Warehouse,K dispozici šarže Množství ve skladu DocType: Time Log Batch Detail,Time Log Batch Detail,Time Log Batch Detail @@ -1238,7 +1239,7 @@ DocType: Leave Block List,Block Holidays on important days.,Blokové Dovolená n ,Accounts Receivable Summary,Pohledávky Shrnutí apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,Prosím nastavte uživatelské ID pole v záznamu zaměstnanců nastavit role zaměstnance DocType: UOM,UOM Name,UOM Name -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Výše příspěvku +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Výše příspěvku DocType: Sales Invoice,Shipping Address,Dodací adresa DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,"Tento nástroj vám pomůže aktualizovat nebo opravit množství a ocenění zásob v systému. To se obvykle používá k synchronizaci hodnot systému a to, co ve skutečnosti existuje ve vašich skladech." DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,"Ve slovech budou viditelné, jakmile uložíte doručení poznámku." @@ -1279,7 +1280,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Chcete-li sledovat položky pomocí čárového kódu. Budete mít možnost zadat položky dodacího listu a prodejní faktury snímáním čárového kódu položky. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Znovu poslat e-mail Payment DocType: Dependent Task,Dependent Task,Závislý Task -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},"Konverzní faktor pro výchozí měrnou jednotku, musí být 1 v řádku {0}" +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},"Konverzní faktor pro výchozí měrnou jednotku, musí být 1 v řádku {0}" apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Absence typu {0} nemůže být delší než {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Zkuste plánování operací pro X dní předem. DocType: HR Settings,Stop Birthday Reminders,Zastavit připomenutí narozenin @@ -1289,7 +1290,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Zobrazit apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Čistá změna v hotovosti DocType: Salary Structure Deduction,Salary Structure Deduction,Plat Struktura Odpočet -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Měrná jednotka {0} byl zadán více než jednou v konverzním faktorem tabulce +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Měrná jednotka {0} byl zadán více než jednou v konverzním faktorem tabulce apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Platba Poptávka již existuje {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Náklady na vydaných položek apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Množství nesmí být větší než {0} @@ -1318,7 +1319,7 @@ DocType: BOM Item,BOM Item,BOM Item DocType: Appraisal,For Employee,Pro zaměstnance apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Řádek {0}: Advance proti dodavatelem musí být odepsat DocType: Company,Default Values,Výchozí hodnoty -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Row {0}: Částka platby nemůže být záporný +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Row {0}: Částka platby nemůže být záporný DocType: Expense Claim,Total Amount Reimbursed,Celkové částky proplacené apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Proti faktuře dodavatele {0} ze dne {1} DocType: Customer,Default Price List,Výchozí Ceník @@ -1346,8 +1347,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Rek DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Nahradit konkrétní kusovník ve všech ostatních kusovníky, kde se používá. To nahradí původní odkaz kusovníku, aktualizujte náklady a regenerovat ""BOM explozi položku"" tabulku podle nového BOM" DocType: Shopping Cart Settings,Enable Shopping Cart,Povolit Nákupní košík DocType: Employee,Permanent Address,Trvalé bydliště -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Položka {0} musí být služba položky. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Vyplacena záloha proti {0} {1} nemůže být větší \ než Grand Celkem {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,"Prosím, vyberte položku kód" DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Snížit Odpočet o dovolenou bez nároku na odměnu (LWP) @@ -1403,12 +1403,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Hlavní apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Varianta DocType: Naming Series,Set prefix for numbering series on your transactions,Nastavit prefix pro číslování série na vašich transakcí +DocType: Employee Attendance Tool,Employees HTML,zaměstnanci HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Zastaveno příkaz nelze zrušit. Uvolnit zrušit. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Výchozí BOM ({0}) musí být aktivní pro tuto položku nebo jeho šablony +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Výchozí BOM ({0}) musí být aktivní pro tuto položku nebo jeho šablony DocType: Employee,Leave Encashed?,Dovolená proplacena? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Opportunity Ze hřiště je povinné DocType: Item,Variants,Varianty -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Proveďte objednávky +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Proveďte objednávky DocType: SMS Center,Send To,Odeslat apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Není dost bilance dovolenou na vstup typ {0} DocType: Payment Reconciliation Payment,Allocated amount,Přidělené sumy @@ -1509,7 +1510,7 @@ DocType: Sales Person,Name and Employee ID,Jméno a ID zaměstnance apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,Datum splatnosti nesmí být před odesláním Datum DocType: Website Item Group,Website Item Group,Website Item Group apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Odvody a daně -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,"Prosím, zadejte Referenční den" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,"Prosím, zadejte Referenční den" apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Platební brána účet není nakonfigurován apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} platební položky mohou není možné filtrovat {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,"Tabulka k bodu, který se zobrazí na webových stránkách" @@ -1530,7 +1531,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Rozlišení Podrobnosti DocType: Quality Inspection Reading,Acceptance Criteria,Kritéria přijetí DocType: Item Attribute,Attribute Name,Název atributu -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Položka {0} musí být prodej či servis položku v {1} DocType: Item Group,Show In Website,Show pro webové stránky apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Skupina DocType: Task,Expected Time (in hours),Předpokládaná doba (v hodinách) @@ -1562,7 +1562,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Částka - doprava ,Pending Amount,Čeká Částka DocType: Purchase Invoice Item,Conversion Factor,Konverzní faktor DocType: Purchase Order,Delivered,Dodává -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Nastavení příchozí server pro úlohy e-mailovou id. (Např jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Nastavení příchozí server pro úlohy e-mailovou id. (Např jobs@example.com) DocType: Purchase Receipt,Vehicle Number,Číslo vozidla DocType: Purchase Invoice,The date on which recurring invoice will be stop,"Datum, kdy opakující se faktura bude zastaví" apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Celkové přidělené listy {0} nemůže být nižší než již schválených listy {1} pro období @@ -1579,7 +1579,7 @@ DocType: HR Settings,HR Settings,Nastavení HR apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Úhrada výdajů čeká na schválení. Pouze schalovatel výdajů může aktualizovat stav. DocType: Purchase Invoice,Additional Discount Amount,Dodatečná sleva Částka DocType: Leave Block List Allow,Leave Block List Allow,Nechte Block List Povolit -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Zkrácená nemůže být prázdné nebo prostor +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Zkrácená nemůže být prázdné nebo prostor apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Skupina na Non-Group apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Sportovní apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Celkem Aktuální @@ -1603,7 +1603,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},UOM Konverzní faktor je nutné v řadě {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Datum vůle nemůže být před přihlášením dnem v řadě {0} DocType: Salary Slip,Deduction,Dedukce -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Položka Cena přidán pro {0} v Ceníku {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Položka Cena přidán pro {0} v Ceníku {1} DocType: Address Template,Address Template,Šablona adresy apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,"Prosím, zadejte ID zaměstnance z tohoto prodeje osoby" DocType: Territory,Classification of Customers by region,Rozdělení zákazníků podle krajů @@ -1620,7 +1620,7 @@ DocType: Employee,Date of Birth,Datum narození apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Bod {0} již byla vrácena DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** Fiskální rok ** představuje finanční rok. Veškeré účetní záznamy a další významné transakce jsou sledovány proti ** fiskální rok **. DocType: Opportunity,Customer / Lead Address,Zákazník / Lead Address -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Varování: Neplatný certifikát SSL na přílohu {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Varování: Neplatný certifikát SSL na přílohu {0} DocType: Production Order Operation,Actual Operation Time,Aktuální Provozní doba DocType: Authorization Rule,Applicable To (User),Vztahující se na (Uživatel) DocType: Purchase Taxes and Charges,Deduct,Odečíst @@ -1637,7 +1637,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Rozdělit dodací list do balíčků. apps/erpnext/erpnext/hooks.py +69,Shipments,Zásilky DocType: Purchase Order Item,To be delivered to customer,Chcete-li být doručeno zákazníkovi -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Time Log Status musí být předloženy. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Time Log Status musí být předloženy. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,"Pořadové číslo {0} nepatří do skladu," apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Řádek č. DocType: Purchase Invoice,In Words (Company Currency),Slovy (měna společnosti) @@ -1654,7 +1654,7 @@ DocType: Leave Application,Total Leave Days,Celkový počet dnů dovolené DocType: Email Digest,Note: Email will not be sent to disabled users,Poznámka: E-mail se nepodařilo odeslat pro zdravotně postižené uživatele apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Vyberte společnost ... DocType: Leave Control Panel,Leave blank if considered for all departments,"Ponechte prázdné, pokud se to považuje za všechna oddělení" -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Druhy pracovního poměru (trvalý, smluv, stážista atd.)" +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Druhy pracovního poměru (trvalý, smluv, stážista atd.)" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} je povinná k položce {1} DocType: Currency Exchange,From Currency,Od Měny apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Prosím, vyberte alokovaná částka, typ faktury a číslo faktury v aspoň jedné řadě" @@ -1673,7 +1673,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,V procesu DocType: Authorization Rule,Itemwise Discount,Itemwise Sleva DocType: Purchase Order Item,Reference Document Type,Referenční Typ dokumentu -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} proti Prodejní objednávce {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} proti Prodejní objednávce {1} DocType: Account,Fixed Asset,Základní Jmění apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Serialized Zásoby DocType: Activity Type,Default Billing Rate,Výchozí fakturace Rate @@ -1683,7 +1683,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Prodejní objednávky na platby DocType: Expense Claim Detail,Expense Claim Detail,Detail úhrady výdajů apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Čas Záznamy vytvořil: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,"Prosím, vyberte správný účet" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,"Prosím, vyberte správný účet" DocType: Item,Weight UOM,Hmotnostní jedn. DocType: Employee,Blood Group,Krevní Skupina DocType: Purchase Invoice Item,Page Break,Zalomení stránky @@ -1718,7 +1718,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM rekurze: {0} nemůže být rodič nebo dítě {2} DocType: Production Order Operation,Completed Qty,Dokončené Množství apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","Pro {0}, tak debetní účty mohou být spojeny proti jinému připsání" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Ceník {0} je zakázána +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Ceník {0} je zakázána DocType: Manufacturing Settings,Allow Overtime,Povolit Přesčasy apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} Sériová čísla požadované pro položky {1}. Poskytli jste {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Aktuální ocenění Rate @@ -1769,7 +1769,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},No P apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Případ č nemůže být 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,"Máte-li prodejní tým a prodej Partners (obchodních partnerů), které mohou být označeny a udržovat svůj příspěvek v prodejní činnosti" DocType: Item,Show a slideshow at the top of the page,Ukazují prezentaci v horní části stránky -DocType: Item,"Allow in Sales Order of type ""Service""",Povolit v prodejní objednávce typu "služby" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Obchody DocType: Time Log,Projects Manager,Správce projektů DocType: Serial No,Delivery Time,Dodací lhůta @@ -1784,6 +1783,7 @@ DocType: Rename Tool,Rename Tool,Přejmenování apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Aktualizace Cost DocType: Item Reorder,Item Reorder,Položka Reorder apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Přenos materiálu +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Item {0} musí být Sales položka v {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Zadejte operací, provozní náklady a dávají jedinečnou operaci ne své operace." DocType: Purchase Invoice,Price List Currency,Ceník Měna DocType: Naming Series,User must always select,Uživatel musí vždy vybrat @@ -1804,7 +1804,7 @@ DocType: Appraisal,Employee,Zaměstnanec apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Importovat e-maily z apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Pozvat jako Uživatel DocType: Features Setup,After Sale Installations,Po prodeji instalací -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} je plně fakturováno +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} je plně fakturováno DocType: Workstation Working Hour,End Time,End Time apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Standardní smluvní podmínky pro prodej nebo koupi. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Seskupit podle Poukazu @@ -1830,7 +1830,7 @@ DocType: Upload Attendance,Attendance To Date,Účast na data apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Nastavení příchozí server pro prodej e-mailovou id. (Např sales@example.com) DocType: Warranty Claim,Raised By,Vznesené DocType: Payment Gateway Account,Payment Account,Platební účet -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,Uveďte prosím společnost pokračovat +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,Uveďte prosím společnost pokračovat apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Čistá změna objemu pohledávek apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Vyrovnávací Off DocType: Quality Inspection Reading,Accepted,Přijato @@ -1842,14 +1842,14 @@ DocType: Shipping Rule,Shipping Rule Label,Přepravní Pravidlo Label apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Suroviny nemůže být prázdný. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Nelze aktualizovat zásob, faktura obsahuje pokles lodní dopravy zboží." DocType: Newsletter,Test,Test -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Jak tam jsou stávající skladové transakce pro tuto položku, \ nemůžete změnit hodnoty "Má sériové číslo", "má Batch Ne", "Je skladem" a "ocenění Method"" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Rychlý vstup Journal apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,"Nemůžete změnit sazbu, kdyby BOM zmínil agianst libovolné položky" DocType: Employee,Previous Work Experience,Předchozí pracovní zkušenosti DocType: Stock Entry,For Quantity,Pro Množství apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},"Prosím, zadejte Plánované Množství k bodu {0} na řádku {1}" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} není odesláno +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} není odesláno apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Žádosti o položky. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Samostatná výroba objednávka bude vytvořena pro každého hotového dobrou položku. DocType: Purchase Invoice,Terms and Conditions1,Podmínky a podmínek1 @@ -1874,6 +1874,7 @@ DocType: Notification Control,Expense Claim Approved Message,Zpráva o schválen DocType: Email Digest,How frequently?,Jak často? DocType: Purchase Receipt,Get Current Stock,Získejte aktuální stav apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Strom Bill materiálů +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Mark Současnost apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Datum zahájení údržby nemůže být před datem dodání pro pořadové číslo {0} DocType: Production Order,Actual End Date,Skutečné datum ukončení DocType: Authorization Rule,Applicable To (Role),Vztahující se na (Role) @@ -1888,7 +1889,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Smlouva Datum ukončení musí být větší než Datum spojování DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,"Distributor / dealer / jednatel / partner / prodejce, který prodává produkty společnosti za provizi." DocType: Customer Group,Has Child Node,Má děti Node -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} proti nákupní objednávce {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} proti nákupní objednávce {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Zadejte statické parametry url zde (Např odesílatel = ERPNext, username = ERPNext, password. = 1234 atd.)," apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} není v žádném aktivním fiskálním roce. Pro více informací zkontrolujte {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,To je příklad webové stránky automaticky generované z ERPNext @@ -1936,7 +1937,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Přidat nebo odečítat: Ať už chcete přidat nebo odečíst daň." DocType: Purchase Receipt Item,Recd Quantity,Recd Množství apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Nelze produkují více položku {0} než prodejní objednávky množství {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Sklad Entry {0} není předložena +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Sklad Entry {0} není předložena DocType: Payment Reconciliation,Bank / Cash Account,Bank / Peněžní účet DocType: Tax Rule,Billing City,Fakturace City DocType: Global Defaults,Hide Currency Symbol,Skrýt symbol měny @@ -1962,7 +1963,7 @@ DocType: Salary Structure,Total Earning,Celkem Zisk DocType: Purchase Receipt,Time at which materials were received,"Čas, kdy bylo přijato materiály" apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Moje Adresy DocType: Stock Ledger Entry,Outgoing Rate,Odchozí Rate -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Organizace větev master. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Organizace větev master. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,nebo DocType: Sales Order,Billing Status,Status Fakturace apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Utility Náklady @@ -2000,7 +2001,7 @@ DocType: Bin,Reserved Quantity,Vyhrazeno Množství DocType: Landed Cost Voucher,Purchase Receipt Items,Položky příjemky apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Přizpůsobení Formuláře DocType: Account,Income Account,Účet příjmů -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Dodávka +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Dodávka DocType: Stock Reconciliation Item,Current Qty,Aktuální Množství DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section","Viz ""Hodnotit materiálů na bázi"" v kapitole Costing" DocType: Appraisal Goal,Key Responsibility Area,Key Odpovědnost Area @@ -2012,9 +2013,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,Vou DocType: Notification Control,Purchase Order Message,Zprávy vydané objenávky DocType: Tax Rule,Shipping Country,Země dodání DocType: Upload Attendance,Upload HTML,Nahrát HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","Celkem předem ({0}) na objednávku {1} nemůže být větší než \ - celkovém součtu ({2})" DocType: Employee,Relieving Date,Uvolnění Datum apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Ceny Pravidlo je vyrobena přepsat Ceník / definovat slevy procenta, na základě určitých kritérií." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Sklad je možné provést pouze prostřednictvím Burzy Entry / dodací list / doklad o zakoupení @@ -2024,8 +2022,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Daň apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Je-li zvolena Ceny pravidlo je určen pro ""Cena"", přepíše ceníku. Ceny Pravidlo cena je konečná cena, a proto by měla být použita žádná další sleva. Proto, v transakcích, jako odběratele, objednávky atd, bude stažen v oboru ""sazbou"", spíše než poli ""Ceník sazby""." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Trasa vede od průmyslu typu. DocType: Item Supplier,Item Supplier,Položka Dodavatel -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,"Prosím, zadejte kód položky se dostat dávku no" -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},Vyberte prosím hodnotu pro {0} quotation_to {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,"Prosím, zadejte kód položky se dostat dávku no" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},Vyberte prosím hodnotu pro {0} quotation_to {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Všechny adresy. DocType: Company,Stock Settings,Stock Nastavení apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Spojení je možné pouze tehdy, pokud tyto vlastnosti jsou stejné v obou záznamech. Je Group, Root Type, Company" @@ -2048,7 +2046,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Šek číslo DocType: Payment Tool Detail,Payment Tool Detail,Detail platební nástroj ,Sales Browser,Sales Browser DocType: Journal Entry,Total Credit,Celkový Credit -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Upozornění: dalším {0} č. {1} existuje proti pohybu skladu {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Upozornění: dalším {0} č. {1} existuje proti pohybu skladu {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Místní apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Úvěry a zálohy (aktiva) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Dlužníci @@ -2068,8 +2066,8 @@ DocType: Price List,Price List Master,Ceník Master DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,"Všechny prodejní transakce mohou být označeny proti více ** prodejcům **, takže si můžete nastavit a sledovat cíle." ,S.O. No.,SO Ne. DocType: Production Order Operation,Make Time Log,Udělejte si čas Přihlásit -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Prosím nastavte množství objednací -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},Prosím vytvořte Zákazník z olova {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Prosím nastavte množství objednací +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},Prosím vytvořte Zákazník z olova {0} DocType: Price List,Applicable for Countries,Pro země apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Počítače apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,"To je kořen skupiny zákazníků, a nelze upravovat." @@ -2117,7 +2115,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Faktur DocType: Payment Reconciliation Invoice,Outstanding Amount,Dlužné částky DocType: Project Task,Working,Pracovní DocType: Stock Ledger Entry,Stock Queue (FIFO),Sklad fronty (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Vyberte Time Protokoly. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Vyberte Time Protokoly. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} nepatří do Společnosti {1} DocType: Account,Round Off,Zaokrouhlit ,Requested Qty,Požadované množství @@ -2155,7 +2153,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Získat příslušné zápisy apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Účetní položka na skladě DocType: Sales Invoice,Sales Team1,Sales Team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Bod {0} neexistuje +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Bod {0} neexistuje DocType: Sales Invoice,Customer Address,Zákazník Address DocType: Payment Request,Recipient and Message,Příjemce a zpráv DocType: Purchase Invoice,Apply Additional Discount On,Použít dodatečné Sleva na @@ -2174,7 +2172,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Mute Email apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Potraviny, nápoje a tabák" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL nebo BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Lze provést pouze platbu proti nevyfakturované {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Lze provést pouze platbu proti nevyfakturované {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Rychlost Komise nemůže být větší než 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Minimální úroveň zásob DocType: Stock Entry,Subcontract,Subdodávka @@ -2192,9 +2190,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Software apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Barevné DocType: Maintenance Visit,Scheduled,Plánované apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Prosím, vyberte položku, kde "Je skladem," je "Ne" a "je Sales Item" "Ano" a není tam žádný jiný produkt Bundle" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Celková záloha ({0}) na objednávku {1} nemůže být větší než celkový součet ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Vyberte měsíční výplatou na nerovnoměrně distribuovat cílů napříč měsíců. DocType: Purchase Invoice Item,Valuation Rate,Ocenění Rate -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Ceníková Měna není zvolena +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Ceníková Měna není zvolena apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,"Bod Row {0}: doklad o koupi, {1} neexistuje v tabulce ""kupní příjmy""" apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Zaměstnanec {0} již požádal o {1} mezi {2} a {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Datum zahájení projektu @@ -2206,6 +2205,7 @@ DocType: Quality Inspection,Inspection Type,Kontrola Type apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},"Prosím, vyberte {0}" DocType: C-Form,C-Form No,C-Form No DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,Neoznačené Návštěvnost apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Výzkumník apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,Uložte Newsletter před odesláním apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Jméno nebo e-mail je povinné @@ -2231,7 +2231,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Potvrze DocType: Payment Gateway,Gateway,Brána apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Dodavatel> Dodavatel Type apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Zadejte zmírnění datum. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,"Nechte pouze aplikace s status ""schváleno"" může být předloženy" apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Adresa Název je povinný. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,"Zadejte název kampaně, pokud zdroj šetření je kampaň" @@ -2246,10 +2246,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Schválené Sklad DocType: Bank Reconciliation Detail,Posting Date,Datum zveřejnění DocType: Item,Valuation Method,Ocenění Method apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Nepodařilo se najít kurz pro {0} do {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Mark Půldenní DocType: Sales Invoice,Sales Team,Prodejní tým apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Duplicitní záznam DocType: Serial No,Under Warranty,V rámci záruky -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Chyba] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Chyba] DocType: Sales Order,In Words will be visible once you save the Sales Order.,"Ve slovech budou viditelné, jakmile uložíte prodejní objednávky." ,Employee Birthday,Narozeniny zaměstnance apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Venture Capital @@ -2272,6 +2273,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,Nákladové středisko se stávajícími transakcemi nelze převést do skupiny DocType: Account,Depreciation,Znehodnocení apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Dodavatel (é) +DocType: Employee Attendance Tool,Employee Attendance Tool,Docházky zaměstnanců Tool DocType: Supplier,Credit Limit,Úvěrový limit apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Vyberte typ transakce DocType: GL Entry,Voucher No,Voucher No @@ -2298,7 +2300,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Root účet nemůže být smazán ,Is Primary Address,Je Hlavní adresa DocType: Production Order,Work-in-Progress Warehouse,Work-in-Progress sklad -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Reference # {0} ze dne {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Reference # {0} ze dne {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Správa adres DocType: Pricing Rule,Item Code,Kód položky DocType: Production Planning Tool,Create Production Orders,Vytvoření výrobní zakázky @@ -2325,7 +2327,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Bank Odsouhlasení apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Získat aktualizace apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Materiál Request {0} je zrušena nebo zastavena apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Přidat několik ukázkových záznamů -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Správa absencí +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Správa absencí apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Seskupit podle účtu DocType: Sales Order,Fully Delivered,Plně Dodáno DocType: Lead,Lower Income,S nižšími příjmy @@ -2340,6 +2342,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"""Datum DO"" musí být po ""Datum OD""" ,Stock Projected Qty,Reklamní Plánovaná POČET apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Zákazník {0} nepatří k projektu {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Výrazná Účast HTML DocType: Sales Order,Customer's Purchase Order,Zákazníka Objednávka DocType: Warranty Claim,From Company,Od Společnosti apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Hodnota nebo Množství @@ -2404,6 +2407,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Bankovní převod apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,"Prosím, vyberte bankovní účet" DocType: Newsletter,Create and Send Newsletters,Vytvoření a odeslání Zpravodaje +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Zkontrolovat vše DocType: Sales Order,Recurring Order,Opakující se objednávky DocType: Company,Default Income Account,Účet Default příjmů apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Zákazník Group / Customer @@ -2435,6 +2439,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Návrat proti nákupn DocType: Item,Warranty Period (in days),Záruční doba (ve dnech) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Čistý peněžní tok z provozní apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,např. DPH +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Účast Mark zaměstnanců hromadně apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Bod 4 DocType: Journal Entry Account,Journal Entry Account,Zápis do deníku Účet DocType: Shopping Cart Settings,Quotation Series,Číselná řada nabídek @@ -2580,14 +2585,14 @@ DocType: Task,Actual Start Date (via Time Logs),Skutečné datum Start (přes Ti DocType: Stock Reconciliation Item,Before reconciliation,Před smíření apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Chcete-li {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Daně a poplatky Přidal (Company měna) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,"Položka Tax Row {0} musí mít účet typu daní či výnosů nebo nákladů, nebo Vyměřovací" +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,"Položka Tax Row {0} musí mít účet typu daní či výnosů nebo nákladů, nebo Vyměřovací" DocType: Sales Order,Partly Billed,Částečně Účtovaný DocType: Item,Default BOM,Výchozí BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,Prosím re-typ název společnosti na potvrzení apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Celkem Vynikající Amt DocType: Time Log Batch,Total Hours,Celkem hodin DocType: Journal Entry,Printing Settings,Tisk Nastavení -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Celkové inkaso musí rovnat do celkového kreditu. Rozdíl je {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Celkové inkaso musí rovnat do celkového kreditu. Rozdíl je {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Automobilový apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Z Dodacího Listu DocType: Time Log,From Time,Času od @@ -2634,7 +2639,7 @@ DocType: Purchase Invoice Item,Image View,Image View DocType: Issue,Opening Time,Otevírací doba apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,Data OD a DO jsou vyžadována apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Cenné papíry a komoditních burzách -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Výchozí měrná jednotka varianty '{0}' musí být stejný jako v Template '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Výchozí měrná jednotka varianty '{0}' musí být stejný jako v Template '{1}' DocType: Shipping Rule,Calculate Based On,Vypočítat založené na DocType: Delivery Note Item,From Warehouse,Ze skladu DocType: Purchase Taxes and Charges,Valuation and Total,Oceňování a Total @@ -2656,7 +2661,7 @@ DocType: Leave Application,Follow via Email,Sledovat e-mailem DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Částka daně po slevě Částka apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Dětské konto existuje pro tento účet. Nemůžete smazat tento účet. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Buď cílové množství nebo cílová částka je povinná -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},No default BOM existuje pro bod {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},No default BOM existuje pro bod {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,"Prosím, vyberte nejprve Datum zveřejnění" apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Datum zahájení by měla být před uzávěrky DocType: Leave Control Panel,Carry Forward,Převádět @@ -2734,7 +2739,7 @@ DocType: Leave Type,Is Encash,Je inkasovat DocType: Purchase Invoice,Mobile No,Mobile No DocType: Payment Tool,Make Journal Entry,Proveďte položka deníku DocType: Leave Allocation,New Leaves Allocated,Nové Listy Přidělené -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Data dle projektu nejsou k dispozici pro nabídku +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Data dle projektu nejsou k dispozici pro nabídku DocType: Project,Expected End Date,Očekávané datum ukončení DocType: Appraisal Template,Appraisal Template Title,Posouzení Template Název apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Obchodní @@ -2782,6 +2787,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,In apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Uveďte prosím DocType: Offer Letter,Awaiting Response,Čeká odpověď apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Výše +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Time Log bylo účtováno DocType: Salary Slip,Earning & Deduction,Výdělek a dedukce apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Účet {0} nemůže být skupina apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Volitelné. Toto nastavení bude použito k filtrování v různých transakcí. @@ -2852,14 +2858,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Úspěšně vypouští všechny transakce související s tímto společnosti! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Stejně jako u Date apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Zkouška -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Výchozí Sklad je povinný pro živočišnou položky. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Výchozí Sklad je povinný pro živočišnou položky. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Platba platu za měsíc {0} a rok {1} DocType: Stock Settings,Auto insert Price List rate if missing,"Auto vložka Ceník sazba, pokud chybí" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Celkem uhrazené částky ,Transferred Qty,Přenesená Množství apps/erpnext/erpnext/config/learn.py +11,Navigating,Navigace apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Plánování -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Udělejte si čas Log Batch +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Udělejte si čas Log Batch apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Vydáno DocType: Project,Total Billing Amount (via Time Logs),Celkem Billing Částka (přes Time Záznamy) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Nabízíme k prodeji tuto položku @@ -2867,7 +2873,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Množství by měla být větší než 0 DocType: Journal Entry,Cash Entry,Cash Entry DocType: Sales Partner,Contact Desc,Kontakt Popis -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Typ ponechává jako neformální, nevolnosti atd." +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Typ ponechává jako neformální, nevolnosti atd." DocType: Email Digest,Send regular summary reports via Email.,Zasílat pravidelné souhrnné zprávy e-mailem. DocType: Brand,Item Manager,Manažer Položka DocType: Cost Center,Add rows to set annual budgets on Accounts.,Přidat řádky stanovit roční rozpočty na účtech. @@ -2882,7 +2888,7 @@ DocType: GL Entry,Party Type,Typ Party apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Surovina nemůže být stejný jako hlavní bod DocType: Item Attribute Value,Abbreviation,Zkratka apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Není authroized od {0} překročí limity -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Plat master šablona. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Plat master šablona. DocType: Leave Type,Max Days Leave Allowed,Max Days Leave povolena apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Sada Daňové Pravidlo pro nákupního košíku DocType: Payment Tool,Set Matching Amounts,Nastavit Odpovídající Částky @@ -2895,7 +2901,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Nabídk DocType: Stock Settings,Role Allowed to edit frozen stock,Role povoleno upravovat zmrazené zásoby ,Territory Target Variance Item Group-Wise,Území Cílová Odchylka Item Group-Wise apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Všechny skupiny zákazníků -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} je povinné. Možná není vytvořen záznam směnného kurzu pro {1} na {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} je povinné. Možná není vytvořen záznam směnného kurzu pro {1} na {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Daňová šablona je povinné. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Účet {0}: Nadřazený účet {1} neexistuje DocType: Purchase Invoice Item,Price List Rate (Company Currency),Ceník Rate (Company měny) @@ -2915,8 +2921,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Položka Wise Tax Detai ,Item-wise Price List Rate,Item-moudrý Ceník Rate apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Dodavatel Nabídka DocType: Quotation,In Words will be visible once you save the Quotation.,"Ve slovech budou viditelné, jakmile uložíte nabídku." -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} je zastaven -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Čárový kód {0} již použit u položky {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} je zastaven +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Čárový kód {0} již použit u položky {1} DocType: Lead,Add to calendar on this date,Přidat do kalendáře k tomuto datu apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Pravidla pro přidávání náklady na dopravu. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Připravované akce @@ -2943,8 +2949,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,St apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Alespoň jeden sklad je povinný DocType: Serial No,Out of Warranty,Out of záruky DocType: BOM Replace Tool,Replace,Vyměnit -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} proti vystavené faktuře {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,"Prosím, zadejte výchozí měrnou jednotku" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} proti vystavené faktuře {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,"Prosím, zadejte výchozí měrnou jednotku" DocType: Purchase Invoice Item,Project Name,Název projektu DocType: Supplier,Mention if non-standard receivable account,Zmínka v případě nestandardní pohledávky účet DocType: Journal Entry Account,If Income or Expense,Pokud je výnos nebo náklad @@ -2969,7 +2975,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Fiskální rok: {0} neexistuje DocType: Currency Exchange,To Currency,Chcete-li měny DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Nechte následující uživatelé schválit Žádost o dovolenou. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Druhy výdajů nároku. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Druhy výdajů nároku. DocType: Item,Taxes,Daně apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Placená a není doručení DocType: Project,Default Cost Center,Výchozí Center Náklady @@ -2999,7 +3005,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Řádek # {0}: Výrobní číslo {1} neodpovídá {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Casual Leave DocType: Batch,Batch ID,Šarže ID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Poznámka: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Poznámka: {0} ,Delivery Note Trends,Dodací list Trendy apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Tento týden Shrnutí apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},"{0} musí být Zakoupená, nebo Subdodavatelská položka v řádku {1}" @@ -3039,6 +3045,7 @@ DocType: Project Task,Pending Review,Čeká Review apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Klikněte zde platit DocType: Task,Total Expense Claim (via Expense Claim),Total Expense Claim (via Expense nároku) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Zákazník Id +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Mark Absent apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Chcete-li čas musí být větší než From Time DocType: Journal Entry Account,Exchange Rate,Exchange Rate apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Prodejní objednávky {0} není předložena @@ -3086,7 +3093,7 @@ DocType: Item Group,Default Expense Account,Výchozí výdajového účtu DocType: Employee,Notice (days),Oznámení (dny) DocType: Tax Rule,Sales Tax Template,Daň z prodeje Template DocType: Employee,Encashment Date,Inkaso Datum -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Proti poukazu Type musí být jedním z objednávky, faktury nebo Journal Entry" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Proti poukazu Type musí být jedním z objednávky, faktury nebo Journal Entry" DocType: Account,Stock Adjustment,Reklamní Nastavení apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Existuje Náklady Výchozí aktivity pro Typ aktivity - {0} DocType: Production Order,Planned Operating Cost,Plánované provozní náklady @@ -3140,6 +3147,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Odepsat Vstup DocType: BOM,Rate Of Materials Based On,Hodnotit materiálů na bázi apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Podpora Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Zrušte všechny apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Společnost chybí ve skladech {0} DocType: POS Profile,Terms and Conditions,Podmínky apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},"Chcete-li data by měla být v rámci fiskálního roku. Za předpokladu, že To Date = {0}" @@ -3161,7 +3169,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Chcete-li nastavit tento fiskální rok jako výchozí, klikněte na tlačítko ""Nastavit jako výchozí""" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Nastavení příchozí server pro podporu e-mailovou id. (Např support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Nedostatek Množství -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Bod varianta {0} existuje s stejné atributy +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Bod varianta {0} existuje s stejné atributy DocType: Salary Slip,Salary Slip,Výplatní páska apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,"""Datum DO"" je povinné" DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Generování balení pásky pro obaly mají být dodány. Používá se k oznámit číslo balíku, obsah balení a jeho hmotnost." @@ -3209,7 +3217,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Zobrazi DocType: Item Attribute Value,Attribute Value,Hodnota atributu apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","E-mail id musí být jedinečný, již existuje {0}" ,Itemwise Recommended Reorder Level,Itemwise Doporučené Změna pořadí Level -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,"Prosím, nejprve vyberte {0}" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,"Prosím, nejprve vyberte {0}" DocType: Features Setup,To get Item Group in details table,Chcete-li získat položku Group v tabulce Rozpis apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Batch {0} z {1} bodu vypršela. DocType: Sales Invoice,Commission,Provize @@ -3264,7 +3272,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Získejte Vynikající poukazy DocType: Warranty Claim,Resolved By,Vyřešena DocType: Appraisal,Start Date,Datum zahájení -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Přidělit listy dobu. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Přidělit listy dobu. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Šeky a Vklady nesprávně vymazány apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Klikněte zde pro ověření apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Účet {0}: nelze přiřadit sebe jako nadřazený účet @@ -3284,7 +3292,7 @@ DocType: Employee,Educational Qualification,Vzdělávací Kvalifikace DocType: Workstation,Operating Costs,Provozní náklady DocType: Employee Leave Approver,Employee Leave Approver,Zaměstnanec Leave schvalovač apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} byl úspěšně přidán do našeho seznamu novinek. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Row {0}: Položka Změna pořadí již pro tento sklad existuje {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Row {0}: Položka Změna pořadí již pro tento sklad existuje {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Nelze prohlásit za ztracený, protože citace byla provedena." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Nákup Hlavní manažer apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Výrobní zakázka {0} musí být předloženy @@ -3308,7 +3316,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Prodejní faktury {0} již byla odeslána apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Dokončení Datum DocType: Purchase Invoice Item,Amount (Company Currency),Částka (Měna Společnosti) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Organizace jednotka (departement) master. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Organizace jednotka (departement) master. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Zadejte platné mobilní nos DocType: Budget Detail,Budget Detail,Detail Rozpočtu apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,"Prosím, zadejte zprávu před odesláním" @@ -3324,13 +3332,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Obdrženo a přijato ,Serial No Service Contract Expiry,Pořadové číslo Servisní smlouva vypršení platnosti DocType: Item,Unit of Measure Conversion,Jednotka míry konverze apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Zaměstnanec nemůže být změněn -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Nemůžete dělat kreditní a debetní záznam na stejný účet ve stejnou dobu. +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Nemůžete dělat kreditní a debetní záznam na stejný účet ve stejnou dobu. DocType: Naming Series,Help HTML,Nápověda HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Celková weightage přiřazen by měla být 100%. Je {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Příspěvek na nadměrné {0} přešel k bodu {1} DocType: Address,Name of person or organization that this address belongs to.,"Jméno osoby nebo organizace, která tato adresa patří." apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Vaši Dodavatelé -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,"Nelze nastavit jako Ztraceno, protože je přijata objednávka." +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,"Nelze nastavit jako Ztraceno, protože je přijata objednávka." apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,"Další platovou strukturu {0} je aktivní pro zaměstnance {1}. Prosím, aby jeho stav ""neaktivní"" pokračovat." DocType: Purchase Invoice,Contact,Kontakt apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Přijaté Od @@ -3340,11 +3348,11 @@ DocType: Item,Has Serial No,Má Sériové číslo DocType: Employee,Date of Issue,Datum vydání apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: Od {0} do {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Řádek # {0}: Nastavte Dodavatel pro položku {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Webové stránky Image {0} připojuje k bodu {1} nelze nalézt +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Webové stránky Image {0} připojuje k bodu {1} nelze nalézt DocType: Issue,Content Type,Typ obsahu apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Počítač DocType: Item,List this Item in multiple groups on the website.,Seznam tuto položku ve více skupinách na internetových stránkách. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,"Prosím, zkontrolujte více měn možnost povolit účty s jinou měnu" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,"Prosím, zkontrolujte více měn možnost povolit účty s jinou měnu" apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Položka: {0} neexistuje v systému apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Nejste oprávněni stanovit hodnotu Zmražení DocType: Payment Reconciliation,Get Unreconciled Entries,Získat smířit záznamů @@ -3354,14 +3362,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Co to dělá DocType: Delivery Note,To Warehouse,Do skladu apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Účet {0} byl zadán více než jednou za fiskální rok {1} ,Average Commission Rate,Průměrná cena Komise -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,"""Má sériové číslo"", nemůže být ""Ano"" pro neskladové zboží" +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,"""Má sériové číslo"", nemůže být ""Ano"" pro neskladové zboží" apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Účast nemůže být označen pro budoucí data DocType: Pricing Rule,Pricing Rule Help,Ceny Pravidlo Help DocType: Purchase Taxes and Charges,Account Head,Účet Head apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Aktualizace dodatečné náklady pro výpočet vyložené náklady položek apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Elektrický DocType: Stock Entry,Total Value Difference (Out - In),Celková hodnota Rozdíl (Out - In) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Řádek {0}: Exchange Rate je povinné +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Řádek {0}: Exchange Rate je povinné apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},User ID není nastavena pro zaměstnance {0} DocType: Stock Entry,Default Source Warehouse,Výchozí zdroj Warehouse DocType: Item,Customer Code,Code zákazníků @@ -3380,15 +3388,15 @@ DocType: Notification Control,Sales Invoice Message,Prodejní faktury Message apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Závěrečný účet {0} musí být typu odpovědnosti / Equity DocType: Authorization Rule,Based On,Založeno na DocType: Sales Order Item,Ordered Qty,Objednáno Množství -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Položka {0} je zakázána +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Položka {0} je zakázána DocType: Stock Settings,Stock Frozen Upto,Reklamní Frozen aľ apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},"Období od a období, k datům povinné pro opakované {0}" apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Projektová činnost / úkol. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Generování výplatních páskách +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Generování výplatních páskách apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Nákup musí být zkontrolováno, v případě potřeby pro vybrán jako {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Sleva musí být menší než 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Odepsat Částka (Company měny) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Řádek # {0}: Prosím nastavte množství objednací +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Řádek # {0}: Prosím nastavte množství objednací DocType: Landed Cost Voucher,Landed Cost Voucher,Přistálo Náklady Voucher apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},Prosím nastavte {0} DocType: Purchase Invoice,Repeat on Day of Month,Opakujte na den v měsíci @@ -3441,7 +3449,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Výchozí práci ve skladu Progress apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Výchozí nastavení účetních transakcí. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Očekávané datum nemůže být před Materiál Poptávka Datum -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Bod {0} musí být prodejní položky +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Bod {0} musí být prodejní položky DocType: Naming Series,Update Series Number,Aktualizace Series Number DocType: Account,Equity,Hodnota majetku DocType: Sales Order,Printing Details,Tisk detailů @@ -3493,7 +3501,7 @@ DocType: Task,Review Date,Review Datum DocType: Purchase Invoice,Advance Payments,Zálohové platby DocType: Purchase Taxes and Charges,On Net Total,On Net Celkem apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Target sklad v řádku {0} musí být stejná jako výrobní zakázky -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Nemáte oprávnění k použití platební nástroj +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Nemáte oprávnění k použití platební nástroj apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,"""E-mailové adresy pro oznámení"" nejsou uvedeny pro opakující se %s" apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Měna nemůže být změněn po provedení položky pomocí jiné měně DocType: Company,Round Off Account,Zaokrouhlovací účet @@ -3516,7 +3524,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Množství položky získané po výrobě / přebalení z daných množství surovin DocType: Payment Reconciliation,Receivable / Payable Account,Pohledávky / závazky účet DocType: Delivery Note Item,Against Sales Order Item,Proti položce přijaté objednávky -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},Uveďte prosím atributu Hodnota atributu {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},Uveďte prosím atributu Hodnota atributu {0} DocType: Item,Default Warehouse,Výchozí Warehouse DocType: Task,Actual End Date (via Time Logs),Skutečné Datum ukončení (přes Time Záznamy) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Rozpočet nemůže být přiřazena na skupinový účet {0} @@ -3541,10 +3549,10 @@ DocType: Lead,Blog Subscriber,Blog Subscriber apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Vytvoření pravidla pro omezení transakce na základě hodnot. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Pokud je zaškrtnuto, Total no. pracovních dnů bude zahrnovat dovolenou, a to sníží hodnotu platu za každý den" DocType: Purchase Invoice,Total Advance,Total Advance -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Zpracování mezd +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Zpracování mezd DocType: Opportunity Item,Basic Rate,Basic Rate DocType: GL Entry,Credit Amount,Výše úvěru -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Nastavit jako Lost +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Nastavit jako Lost apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Doklad o zaplacení Note DocType: Supplier,Credit Days Based On,Úvěrové Dny Based On DocType: Tax Rule,Tax Rule,Daňové Pravidlo @@ -3574,7 +3582,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Schválené Množství apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} neexistuje apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Směnky vznesené zákazníkům. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,ID projektu -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},"Řádek č {0}: Částka nemůže být větší než Čekající Částka proti Expense nároku {1}. Do doby, než množství je {2}" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},"Řádek č {0}: Částka nemůže být větší než Čekající Částka proti Expense nároku {1}. Do doby, než množství je {2}" apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} odběratelé přidáni DocType: Maintenance Schedule,Schedule,Plán DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Definovat rozpočtu pro tento nákladového střediska. Chcete-li nastavit rozpočet akce, viz "Seznam firem"" @@ -3635,19 +3643,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS Profile DocType: Payment Gateway Account,Payment URL Message,Platba URL Message apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Sezónnost pro nastavení rozpočtů, cíle atd." -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Row {0}: Platba Částka nesmí být vyšší než dlužná částka +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Row {0}: Platba Částka nesmí být vyšší než dlužná částka apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Celkem Neplacené -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Time Log není zúčtovatelné -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Položka {0} je šablona, prosím vyberte jednu z jeho variant" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Time Log není zúčtovatelné +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Položka {0} je šablona, prosím vyberte jednu z jeho variant" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Kupec apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Net plat nemůže být záporný -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Zadejte prosím podle dokladů ručně +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Zadejte prosím podle dokladů ručně DocType: SMS Settings,Static Parameters,Statické parametry DocType: Purchase Order,Advance Paid,Vyplacené zálohy DocType: Item,Item Tax,Daň Položky apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Materiál Dodavateli apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Spotřební Faktura DocType: Expense Claim,Employees Email Id,Zaměstnanci Email Id +DocType: Employee Attendance Tool,Marked Attendance,Výrazná Návštěvnost apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Krátkodobé závazky apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Posílat hromadné SMS vašim kontaktům DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Zvažte daň či poplatek za @@ -3670,7 +3679,7 @@ DocType: Item Attribute,Numeric Values,Číselné hodnoty apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Připojit Logo DocType: Customer,Commission Rate,Výše provize apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Udělat Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Aplikace Block dovolené podle oddělení. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Aplikace Block dovolené podle oddělení. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Košík je prázdný DocType: Production Order,Actual Operating Cost,Skutečné provozní náklady apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Root nelze upravovat. @@ -3689,7 +3698,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,"Automatické vytvoření Materiál žádosti, pokud množství klesne pod tuto úroveň" ,Item-wise Purchase Register,Item-moudrý Nákup Register DocType: Batch,Expiry Date,Datum vypršení platnosti -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Chcete-li nastavit úroveň objednací, položka musí být Nákup položka nebo výrobní položky" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Chcete-li nastavit úroveň objednací, položka musí být Nákup položka nebo výrobní položky" ,Supplier Addresses and Contacts,Dodavatel Adresy a kontakty apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,Nejdřív vyberte kategorii apps/erpnext/erpnext/config/projects.py +18,Project master.,Master Project. diff --git a/erpnext/translations/da-DK.csv b/erpnext/translations/da-DK.csv index dfa60470b2..15ce9fa742 100644 --- a/erpnext/translations/da-DK.csv +++ b/erpnext/translations/da-DK.csv @@ -144,13 +144,13 @@ DocType: Production Order Operation,Show Time Logs,Vis Time Logs DocType: Delivery Note,Installation Status,Installation status apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Accepteret + Afvist skal være lig med Modtaget mængde for vare {0} DocType: Item,Supply Raw Materials for Purchase,Supply råstoffer til Indkøb -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Vare {0} skal være et køb Vare +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Vare {0} skal være et køb Vare DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Download skabelon, fylde relevante data og vedhæfte den ændrede fil. Alle datoer og medarbejder kombination i den valgte periode vil komme i skabelonen, med eksisterende fremmøde optegnelser" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,Vare {0} er ikke aktiv eller slutningen af livet er nået DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Vil blive opdateret efter Sales Invoice er indgivet. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Hvis du vil medtage skat i række {0} i Item sats, skatter i rækker {1} skal også medtages" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Indstillinger for HR modul +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Hvis du vil medtage skat i række {0} i Item sats, skatter i rækker {1} skal også medtages" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Indstillinger for HR modul DocType: SMS Center,SMS Center,SMS-center DocType: BOM Replace Tool,New BOM,Ny BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Batch Time Logs for fakturering. @@ -178,7 +178,7 @@ DocType: Offer Letter,Select Terms and Conditions,Vælg Betingelser DocType: Production Planning Tool,Sales Orders,Salgsordrer DocType: Purchase Taxes and Charges,Valuation,Værdiansættelse ,Purchase Order Trends,Indkøbsordre Trends -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Afsætte blade for året. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Afsætte blade for året. DocType: Earning Type,Earning Type,Optjening Type DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Deaktiver kapacitetsplanlægning og tidsregistrering DocType: Bank Reconciliation,Bank Account,Bankkonto @@ -213,7 +213,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Item Website Specification DocType: Payment Tool,Reference No,Referencenummer apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Lad Blokeret -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Vare {0} har nået slutningen af sin levetid på {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Vare {0} har nået slutningen af sin levetid på {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Årligt DocType: Stock Reconciliation Item,Stock Reconciliation Item,Stock Afstemning Item DocType: Stock Entry,Sales Invoice No,Salg faktura nr @@ -225,7 +225,7 @@ DocType: Item,Minimum Order Qty,Minimum Antal DocType: Pricing Rule,Supplier Type,Leverandør Type DocType: Item,Publish in Hub,Offentliggør i Hub ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Vare {0} er aflyst +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Vare {0} er aflyst apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Materiale Request DocType: Bank Reconciliation,Update Clearance Date,Opdatering Clearance Dato DocType: Item,Purchase Details,Køb Detaljer @@ -253,7 +253,6 @@ apps/erpnext/erpnext/config/crm.py +90,Manage Sales Person Tree.,Administrer Sal DocType: Item,Synced With Hub,Synkroniseret med Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Forkert Adgangskode DocType: Item,Variant Of,Variant af -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Vare {0} skal være service Item apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',Afsluttet Antal kan ikke være større end 'antal til Fremstilling' DocType: Period Closing Voucher,Closing Account Head,Lukning konto Hoved DocType: Employee,External Work History,Ekstern Work History @@ -264,10 +263,10 @@ DocType: Employee,Job Profile,Job profil DocType: Newsletter,Newsletter,Nyhedsbrev DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Give besked på mail om oprettelse af automatiske Materiale Request DocType: Payment Reconciliation Invoice,Invoice Type,Faktura type -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Følgeseddel +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Følgeseddel apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Opsætning Skatter apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,"Betaling indtastning er blevet ændret, efter at du trak det. Venligst trække det igen." -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} indtastet to gange i vareafgift +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} indtastet to gange i vareafgift DocType: Workstation,Rent Cost,Leje Omkostninger apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Vælg måned og år DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Indtast email id adskilt af kommaer, vil faktura blive sendt automatisk på bestemt dato" @@ -275,7 +274,7 @@ DocType: Employee,Company Email,Firma Email DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Alle import- relaterede områder som valuta, konverteringsfrekvens, samlede import, import grand total etc er tilgængelige i købskvittering, leverandør Citat, købsfaktura, Indkøbsordre etc." apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"Dette element er en skabelon, og kan ikke anvendes i transaktioner. Item attributter kopieres over i varianterne medmindre 'Ingen Copy "er indstillet" apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Samlet Order Anses -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Medarbejder betegnelse (f.eks CEO, direktør osv.)" +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Medarbejder betegnelse (f.eks CEO, direktør osv.)" apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,Indtast 'Gentag på dag i måneden »felt værdi DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,"Hastighed, hvormed kunden Valuta omdannes til kundens basisvaluta" DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Fås i BOM, følgeseddel, købsfaktura, produktionsordre, Indkøbsordre, kvittering, Sales Invoice, Sales Order, Stock indtastning, Timesheet" @@ -317,7 +316,7 @@ DocType: Landed Cost Item,Applicable Charges,Gældende gebyrer DocType: Workstation,Consumable Cost,Forbrugsmaterialer Cost apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',"{0} ({1}), skal have rollen 'Godkendelse af fravær'" apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Medicinsk -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Årsag til at miste +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Årsag til at miste apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Workstation er lukket på følgende datoer som pr Holiday List: {0} DocType: Employee,Single,Enkeltværelse DocType: Issue,Attachment,Attachment @@ -348,7 +347,7 @@ DocType: Accounts Settings,Accounts Frozen Upto,Regnskab Frozen Op DocType: SMS Log,Sent On,Sendt On DocType: HR Settings,Employee record is created using selected field. ,Medarbejder rekord er oprettet ved hjælp valgte felt. DocType: Sales Order,Not Applicable,Gælder ikke -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Ferie mester. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Ferie mester. DocType: Material Request Item,Required Date,Nødvendig Dato DocType: Delivery Note,Billing Address,Faktureringsadresse apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,Indtast venligst Item Code. @@ -381,7 +380,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,Indtast venligst Warehouse for hvilke Materiale Request vil blive rejst DocType: Production Order,Additional Operating Cost,Yderligere driftsomkostninger apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Kosmetik -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","At fusionere, skal følgende egenskaber være ens for begge poster" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","At fusionere, skal følgende egenskaber være ens for begge poster" DocType: Shipping Rule,Net Weight,Vægt DocType: Employee,Emergency Phone,Emergency Phone ,Serial No Warranty Expiry,Seriel Ingen garanti Udløb @@ -430,9 +429,9 @@ DocType: Warranty Claim,Resolution,Opløsning apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66,Payable Account,Betales konto apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Gentag Kunder DocType: Leave Control Panel,Allocate,Tildele -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Salg Return +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Salg Return DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,"Vælg salgsordrer, som du ønsker at skabe produktionsordrer." -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Løn komponenter. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Løn komponenter. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Database over potentielle kunder. apps/erpnext/erpnext/config/crm.py +17,Customer database.,Kundedatabase. DocType: Quotation,Quotation To,Citat Til @@ -456,13 +455,13 @@ DocType: Sales Invoice,Sales Taxes and Charges,Salg Skatter og Afgifter DocType: Employee,Organization Profile,Organisation profil apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,Venligst setup nummerering serie for Deltagelse via Setup> Nummerering Series DocType: Employee,Reason for Resignation,Årsag til Udmeldelse -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Skabelon til præstationsvurderinger. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Skabelon til præstationsvurderinger. DocType: Payment Reconciliation,Invoice/Journal Entry Details,Faktura / Kassekladde Detaljer apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' ikke i regnskabsåret {2} DocType: Buying Settings,Settings for Buying Module,Indstillinger til køb modul apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,Indtast venligst kvittering først DocType: Buying Settings,Supplier Naming By,Leverandør Navngivning Af -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Vedligeholdelse Skema +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Vedligeholdelse Skema apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Så Priser Regler filtreres ud baseret på kunden, Kunde Group, Territory, leverandør, leverandør Type, Kampagne, Sales Partner etc." DocType: Employee,Passport Number,Passport Number apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +82,Manager,Leder @@ -498,7 +497,7 @@ DocType: Journal Entry,Bill No,Bill Ingen DocType: Purchase Invoice,Quarterly,Kvartalsvis DocType: Selling Settings,Delivery Note Required,Følgeseddel Nødvendig DocType: Sales Order Item,Basic Rate (Company Currency),Basic Rate (Company Valuta) -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,Indtast venligst item detaljer +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,Indtast venligst item detaljer DocType: Purchase Receipt,Other Details,Andre detaljer DocType: Account,Accounts,Konti apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Marketing @@ -509,7 +508,7 @@ DocType: Employee,Provide email id registered in company,Giv email id er registr DocType: Hub Settings,Seller City,Sælger By DocType: Email Digest,Next email will be sent on:,Næste email vil blive sendt på: DocType: Offer Letter Term,Offer Letter Term,Tilbyd Letter Term -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Element har varianter. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Element har varianter. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Vare {0} ikke fundet DocType: Bin,Stock Value,Stock Value apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Tree Type @@ -517,7 +516,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Antal Consumed Per Unit DocType: Serial No,Warranty Expiry Date,Garanti Udløbsdato DocType: Material Request Item,Quantity and Warehouse,Mængde og Warehouse DocType: Sales Invoice,Commission Rate (%),Kommissionen Rate (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Imod Voucher type skal være en af kundeordre, Salg Faktura eller Kassekladde" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Imod Voucher type skal være en af kundeordre, Salg Faktura eller Kassekladde" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Aerospace DocType: Journal Entry,Credit Card Entry,Credit Card indtastning apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Task Emne @@ -584,7 +583,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Ansvar apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Sanktioneret Beløb kan ikke være større end krav Beløb i Row {0}. DocType: Company,Default Cost of Goods Sold Account,Standard vareforbrug konto -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Prisliste ikke valgt +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Prisliste ikke valgt DocType: Employee,Family Background,Familie Baggrund DocType: Process Payroll,Send Email,Send Email apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Ingen Tilladelse @@ -612,7 +611,7 @@ DocType: Email Digest,Email Digest Settings,E-mail-Digest-indstillinger apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Support forespørgsler fra kunder. DocType: Bin,Moving Average Rate,Glidende gennemsnit Rate DocType: Production Planning Tool,Select Items,Vælg emner -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} mod regning {1} dateret {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} mod regning {1} dateret {2} DocType: Maintenance Visit,Completion Status,Afslutning status DocType: Sales Invoice Item,Target Warehouse,Target Warehouse DocType: Item,Allow over delivery or receipt upto this percent,Tillad løbet levering eller modtagelse op denne procent @@ -667,7 +666,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Valu apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Kan ikke finde Time Slot i de næste {0} dage til Operation {1} DocType: Production Order,Plan material for sub-assemblies,Plan materiale til sub-enheder apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} skal være aktiv -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,Vælg dokumenttypen først +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Vælg dokumenttypen først apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,"Annuller Materiale Besøg {0}, før den annullerer denne vedligeholdelse Besøg" DocType: Salary Slip,Leave Encashment Amount,Lad Indløsning Beløb apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +209,Serial No {0} does not belong to Item {1},Løbenummer {0} ikke hører til Vare {1} @@ -683,7 +682,7 @@ DocType: Purchase Receipt,Range,Range DocType: Supplier,Default Payable Accounts,Standard betales Konti apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Medarbejder {0} er ikke aktiv eller findes ikke DocType: Features Setup,Item Barcode,Item Barcode -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Item Varianter {0} opdateret +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Item Varianter {0} opdateret DocType: Quality Inspection Reading,Reading 6,Læsning 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Købsfaktura Advance DocType: Address,Shop,Butik @@ -704,7 +703,7 @@ DocType: Payment Request,Paid,Betalt DocType: Salary Slip,Total in words,I alt i ord DocType: Material Request Item,Lead Time Date,Leveringstid Dato apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Row # {0}: Angiv Serial Nej for Item {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","For 'Product Bundle' elementer, Warehouse, Serial No og Batch Ingen vil blive betragtet fra "Packing List 'bord. Hvis Warehouse og Batch Ingen er ens for alle emballage poster for enhver "Product Bundle 'post, kan indtastes disse værdier i de vigtigste element tabellen, vil værdierne blive kopieret til" Packing List' bord." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","For 'Product Bundle' elementer, Warehouse, Serial No og Batch Ingen vil blive betragtet fra "Packing List 'bord. Hvis Warehouse og Batch Ingen er ens for alle emballage poster for enhver "Product Bundle 'post, kan indtastes disse værdier i de vigtigste element tabellen, vil værdierne blive kopieret til" Packing List' bord." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Forsendelser til kunderne. DocType: Purchase Invoice Item,Purchase Order Item,Indkøbsordre Item apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Indirekte Indkomst @@ -742,7 +741,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,A DocType: Journal Entry Account,Expense Claim,Expense krav apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Antal for {0} DocType: Leave Application,Leave Application,Forlad Application -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Lad Tildeling Tool +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Lad Tildeling Tool DocType: Leave Block List,Leave Block List Dates,Lad Block List Datoer DocType: Workstation,Net Hour Rate,Net Hour Rate DocType: Landed Cost Purchase Receipt,Landed Cost Purchase Receipt,Landed Cost kvittering @@ -808,7 +807,7 @@ DocType: SMS Center,Total Characters,Total tegn apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},Vælg BOM i BOM vilkår for Item {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-Form Faktura Detail DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Betaling Afstemning Faktura -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Bidrag% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Bidrag% DocType: Item,website page link,webside link DocType: Company,Company registration numbers for your reference. Tax numbers etc.,Firma registreringsnumre til din reference. Skat numre etc. DocType: Sales Partner,Distributor,Distributør @@ -845,10 +844,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM Conversion Factor DocType: Stock Settings,Default Item Group,Standard Punkt Group apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Leverandør database. DocType: Account,Balance Sheet,Balance -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Cost Center For Item med Item Code ' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Cost Center For Item med Item Code ' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,Dit salg person vil få en påmindelse på denne dato for at kontakte kunden apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Kan gøres yderligere konti under grupper, men oplysningerne kan gøres mod ikke-grupper" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Skat og andre løn fradrag. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Skat og andre løn fradrag. DocType: Lead,Lead,Bly DocType: Email Digest,Payables,Gæld DocType: Account,Warehouse,Warehouse @@ -865,10 +864,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Ikke-afstemte Betal DocType: Global Defaults,Current Fiscal Year,Indeværende finansår DocType: Global Defaults,Disable Rounded Total,Deaktiver Afrundet Total DocType: Lead,Call,Opkald -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'Indlæg' kan ikke være tomt +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'Indlæg' kan ikke være tomt apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Duplicate række {0} med samme {1} ,Trial Balance,Trial Balance -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Opsætning af Medarbejdere +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Opsætning af Medarbejdere apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid """,Grid " apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,Vælg venligst præfiks først apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Forskning @@ -876,7 +875,7 @@ DocType: Maintenance Visit Purpose,Work Done,Arbejde Udført DocType: Contact,User ID,Bruger-id apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Vis Ledger apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Tidligste -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Findes et Element Group med samme navn, skal du ændre elementet navn eller omdøbe varegruppe" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Findes et Element Group med samme navn, skal du ændre elementet navn eller omdøbe varegruppe" DocType: Production Order,Manufacture against Sales Order,Fremstilling mod kundeordre apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Resten af verden apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,Item {0} kan ikke have Batch @@ -899,7 +898,7 @@ DocType: Address,Address Type,Adressetype DocType: Purchase Receipt,Rejected Warehouse,Afvist Warehouse DocType: GL Entry,Against Voucher,Mod Voucher DocType: Item,Default Buying Cost Center,Standard købsomkostninger center -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Vare {0} skal være Sales Item +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Vare {0} skal være Sales Item DocType: Item,Lead Time in days,Lead Time i dage ,Accounts Payable Summary,Kreditorer Resumé apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +189,Not authorized to edit frozen Account {0},Ikke autoriseret til at redigere frosne konto {0} @@ -932,7 +931,7 @@ DocType: Serial No,Serial No Details,Serial Ingen Oplysninger DocType: Purchase Invoice Item,Item Tax Rate,Item Skat apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry",For {0} kan kun kredit konti knyttes mod en anden debet post apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Levering Note {0} er ikke indsendt -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Vare {0} skal være en underentreprise Vare +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Vare {0} skal være en underentreprise Vare apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Capital Udstyr apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Prisfastsættelse Regel først valgt baseret på "Apply On 'felt, som kan være Item, punkt Group eller Brand." DocType: Hub Settings,Seller Website,Sælger Website @@ -940,7 +939,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +143,Total allocated perc apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +111,Production Order status is {0},Produktionsordre status er {0} DocType: Appraisal Goal,Goal,Goal apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Forventet leveringsdato er mindre end planlagt startdato. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,For Leverandøren +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,For Leverandøren DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Indstilling Kontotype hjælper med at vælge denne konto i transaktioner. DocType: Purchase Invoice,Grand Total (Company Currency),Grand Total (Company Valuta) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Samlet Udgående @@ -988,7 +987,6 @@ DocType: Authorization Rule,Average Discount,Gennemsnitlig rabat DocType: Address,Utilities,Forsyningsvirksomheder DocType: Purchase Invoice Item,Accounting,Regnskab DocType: Features Setup,Features Setup,Features Setup -DocType: Item,Is Service Item,Er service Item DocType: Activity Cost,Projects,Projekter apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,Vælg venligst regnskabsår apps/erpnext/erpnext/controllers/buying_controller.py +23,From {0} | {1} {2},Fra {0} | {1} {2} @@ -1007,7 +1005,7 @@ DocType: Purchase Invoice Item,Item Tax Amount,Item Skat Beløb DocType: Item,Maintain Stock,Vedligehold Stock apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Stock Entries allerede skabt til produktionsordre DocType: Leave Control Panel,Leave blank if considered for all designations,Lad stå tomt hvis det anses for alle betegnelser -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Afgift af typen 'Actual "i rækken {0} kan ikke indgå i Item Rate +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Afgift af typen 'Actual "i rækken {0} kan ikke indgå i Item Rate apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Fra datotid DocType: Email Digest,For Company,For Company @@ -1016,8 +1014,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Forsendelse Adresse Navn apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Kontoplan DocType: Material Request,Terms and Conditions Content,Vilkår og betingelser Indhold -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,må ikke være større end 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Vare {0} er ikke et lager Vare +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,må ikke være større end 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Vare {0} er ikke et lager Vare DocType: Maintenance Visit,Unscheduled,Uplanlagt DocType: Employee,Owned,Ejet DocType: Salary Slip Deduction,Depends on Leave Without Pay,Afhænger Leave uden løn @@ -1050,7 +1048,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Sub forsamlin DocType: Shipping Rule Condition,To Value,Til Value DocType: Supplier,Stock Manager,Stock manager apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Kilde lageret er obligatorisk for rækken {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Packing Slip +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Packing Slip apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Kontorleje apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Opsætning SMS gateway-indstillinger apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Import mislykkedes! @@ -1092,7 +1090,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM Detail Nej DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Yderligere Discount Beløb (Company Valuta) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Fejl: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,Opret ny konto fra kontoplanen. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Vedligeholdelse Besøg +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Vedligeholdelse Besøg apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Kunde> Customer Group> Territory DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Tilgængelig Batch Antal på Warehouse DocType: Time Log Batch Detail,Time Log Batch Detail,Time Log Batch Detail @@ -1101,7 +1099,7 @@ DocType: Leave Block List,Block Holidays on important days.,Bloker Ferie på vig ,Accounts Receivable Summary,Debitor Resumé apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,Indstil Bruger-id feltet i en Medarbejder rekord at indstille Medarbejder Rolle DocType: UOM,UOM Name,UOM Navn -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Bidrag Beløb +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Bidrag Beløb DocType: Sales Invoice,Shipping Address,Forsendelse Adresse DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,Dette værktøj hjælper dig med at opdatere eller fastsætte mængden og værdiansættelse på lager i systemet. Det bruges typisk til at synkronisere systemets værdier og hvad der rent faktisk eksisterer i dine lagre. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,"I Ord vil være synlig, når du gemmer følgesedlen." @@ -1137,7 +1135,7 @@ DocType: Production Planning Tool,Select Sales Orders,Vælg salgsordrer ,Material Requests for which Supplier Quotations are not created,Materielle Anmodning om hvilke Leverandør Citater ikke er skabt DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,At spore elementer ved hjælp af stregkode. Du vil være i stand til at indtaste poster i følgeseddel og salgsfaktura ved at scanne stregkoden på varen. DocType: Dependent Task,Dependent Task,Afhængig Opgave -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Omregningsfaktor for standard Måleenhed skal være 1 i række {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Omregningsfaktor for standard Måleenhed skal være 1 i række {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Ferie af typen {0} må ikke være længere end {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Prøv at planlægge operationer for X dage i forvejen. DocType: HR Settings,Stop Birthday Reminders,Stop Fødselsdag Påmindelser @@ -1146,7 +1144,7 @@ DocType: Payment Tool Detail,Payment Amount,Betaling Beløb apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +46,Consumed Amount,Forbrugt Mængde apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Vis DocType: Salary Structure Deduction,Salary Structure Deduction,Løn Struktur Fradrag -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Måleenhed {0} er indtastet mere end én gang i Conversion Factor Table +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Måleenhed {0} er indtastet mere end én gang i Conversion Factor Table apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Omkostninger ved Udstedte Varer apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Mængde må ikke være mere end {0} DocType: Quotation Item,Quotation Item,Citat Vare @@ -1170,7 +1168,7 @@ apps/erpnext/erpnext/support/doctype/issue/issue.py +58,My Issues,Mine Issues DocType: BOM Item,BOM Item,BOM Item DocType: Appraisal,For Employee,For Medarbejder DocType: Company,Default Values,Standardværdier -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Række {0}: Betaling beløb kan ikke være negativ +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Række {0}: Betaling beløb kan ikke være negativ DocType: Expense Claim,Total Amount Reimbursed,Samlede godtgjorte beløb apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Imod Leverandør Faktura {0} dateret {1} DocType: Customer,Default Price List,Standard prisliste @@ -1195,7 +1193,6 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Gar DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Udskift en bestemt BOM i alle andre styklister, hvor det bruges. Det vil erstatte den gamle BOM linket, opdatere omkostninger og regenerere "BOM Explosion Item" tabel som pr ny BOM" DocType: Shopping Cart Settings,Enable Shopping Cart,Aktiver Indkøbskurv DocType: Employee,Permanent Address,Permanent adresse -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Vare {0} skal være en service Item. apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Vælg emne kode DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Reducer Fradrag for Leave uden løn (LWP) DocType: Territory,Territory Manager,Territory manager @@ -1244,11 +1241,11 @@ apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Main apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Variant DocType: Naming Series,Set prefix for numbering series on your transactions,Sæt præfiks for nummerering serie om dine transaktioner apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Stoppet ordre kan ikke annulleres. Unstop at annullere. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Standard BOM ({0}) skal være aktiv for dette element eller dens skabelon +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Standard BOM ({0}) skal være aktiv for dette element eller dens skabelon DocType: Employee,Leave Encashed?,Efterlad indkasseres? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Mulighed Fra feltet er obligatorisk DocType: Item,Variants,Varianter -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Make indkøbsordre +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Make indkøbsordre DocType: SMS Center,Send To,Send til apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Der er ikke nok orlov balance for Leave Type {0} DocType: Payment Reconciliation Payment,Allocated amount,Tildelte beløb @@ -1340,7 +1337,7 @@ DocType: Sales Person,Name and Employee ID,Navn og Medarbejder ID apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,"Forfaldsdato kan ikke være, før Udstationering Dato" DocType: Website Item Group,Website Item Group,Website Item Group apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Told og afgifter -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,Indtast Referencedato +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,Indtast Referencedato apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} betalingssystemer poster ikke kan filtreres af {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,"Tabel til Vare, der vil blive vist i Web Site" DocType: Purchase Order Item Supplied,Supplied Qty,Medfølgende Antal @@ -1359,7 +1356,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Opløsning Detaljer DocType: Quality Inspection Reading,Acceptance Criteria,Acceptkriterier DocType: Item Attribute,Attribute Name,Attribut Navn -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Vare {0} skal være Salg eller service Item i {1} DocType: Item Group,Show In Website,Vis I Website apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Gruppe DocType: Task,Expected Time (in hours),Forventet tid (i timer) @@ -1389,7 +1385,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Forsendelse Mængde ,Pending Amount,Afventer Beløb DocType: Purchase Invoice Item,Conversion Factor,Konvertering Factor DocType: Purchase Order,Delivered,Leveret -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Opsætning indgående server for job email id. (F.eks jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Opsætning indgående server for job email id. (F.eks jobs@example.com) DocType: Purchase Invoice,The date on which recurring invoice will be stop,"Den dato, hvor tilbagevendende faktura vil blive stoppe" DocType: Journal Entry,Accounts Receivable,Tilgodehavender ,Supplier-Wise Sales Analytics,Forhandler-Wise Sales Analytics @@ -1404,7 +1400,7 @@ DocType: HR Settings,HR Settings,HR-indstillinger apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Expense krav afventer godkendelse. Kun Expense Godkender kan opdatere status. DocType: Purchase Invoice,Additional Discount Amount,Yderligere Discount Beløb DocType: Leave Block List Allow,Leave Block List Allow,Lad Block List Tillad -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Forkortelsen kan ikke være tom eller bestå af mellemrum +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Forkortelsen kan ikke være tom eller bestå af mellemrum apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Sport apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Samlede faktiske apps/erpnext/erpnext/public/js/setup_wizard.js +292,Unit,Enhed @@ -1455,7 +1451,7 @@ DocType: Supplier Quotation,Manufacturing Manager,Produktion manager apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +191,Serial No {0} is under warranty upto {1},Løbenummer {0} er under garanti op {1} apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Split følgeseddel i pakker. apps/erpnext/erpnext/hooks.py +69,Shipments,Forsendelser -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Time Log status skal indsendes. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Time Log status skal indsendes. apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Row # DocType: Purchase Invoice,In Words (Company Currency),I Words (Company Valuta) DocType: Pricing Rule,Supplier,Leverandør @@ -1471,7 +1467,7 @@ DocType: Leave Application,Total Leave Days,Total feriedage DocType: Email Digest,Note: Email will not be sent to disabled users,Bemærk: E-mail vil ikke blive sendt til handicappede brugere apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Vælg Company ... DocType: Leave Control Panel,Leave blank if considered for all departments,Lad stå tomt hvis det anses for alle afdelinger -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Typer af beskæftigelse (permanent, kontrakt, praktikant osv)." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Typer af beskæftigelse (permanent, kontrakt, praktikant osv)." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} er obligatorisk for Item {1} DocType: Currency Exchange,From Currency,Fra Valuta apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Vælg tildelte beløb, Faktura Type og Fakturanummer i mindst én række" @@ -1488,7 +1484,7 @@ DocType: Bin,Ordered Quantity,Bestilt Mængde apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for builders""",fx "Byg værktøjer til bygherrer" DocType: Quality Inspection,In Process,I Process DocType: Authorization Rule,Itemwise Discount,Itemwise Discount -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} mod salgsordre {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} mod salgsordre {1} DocType: Account,Fixed Asset,Fast Asset DocType: Time Log Batch,Total Billing Amount,Samlet Billing Beløb apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py +47,Receivable Account,Tilgodehavende konto @@ -1527,7 +1523,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM rekursion: {0} kan ikke være forælder eller barn af {2} DocType: Production Order Operation,Completed Qty,Afsluttet Antal apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry",For {0} kan kun betalingskort konti knyttes mod en anden kredit post -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Prisliste {0} er deaktiveret +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Prisliste {0} er deaktiveret DocType: Manufacturing Settings,Allow Overtime,Tillad Overarbejde DocType: Stock Reconciliation Item,Current Valuation Rate,Aktuel Værdiansættelse Rate DocType: Item,Customer Item Codes,Kunde Item Koder @@ -1576,7 +1572,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Inge apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Case No. ikke være 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,Hvis du har salgsteam og salg Partners (Channel Partners) de kan mærkes og vedligeholde deres bidrag i salget aktivitet DocType: Item,Show a slideshow at the top of the page,Vis et diasshow på toppen af siden -DocType: Item,"Allow in Sales Order of type ""Service""",Tillad i kundeordre af typen "Service" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Butikker DocType: Time Log,Projects Manager,Projekter manager DocType: Serial No,Delivery Time,Leveringstid @@ -1608,7 +1603,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +349,Quantity in r DocType: Appraisal,Employee,Medarbejder apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Import Email Fra DocType: Features Setup,After Sale Installations,Efter salg Installationer -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} er fuldt faktureret +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} er fuldt faktureret DocType: Workstation Working Hour,End Time,End Time apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Standard kontraktvilkår for Salg eller Indkøb. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Gruppe af Voucher @@ -1633,7 +1628,7 @@ DocType: Upload Attendance,Attendance To Date,Fremmøde til dato apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Opsætning indgående server til salg email id. (F.eks sales@example.com) DocType: Warranty Claim,Raised By,Rejst af DocType: Payment Gateway Account,Payment Account,Betaling konto -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,Angiv venligst Company for at fortsætte +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,Angiv venligst Company for at fortsætte apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Kompenserende Off DocType: Quality Inspection Reading,Accepted,Accepteret apps/erpnext/erpnext/setup/doctype/company/company.js +24,Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone.,"Kontroller, at du virkelig ønsker at slette alle transaktioner for dette selskab. Dine stamdata vil forblive som den er. Denne handling kan ikke fortrydes." @@ -1642,13 +1637,13 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Shipping Rule,Shipping Rule Label,Forsendelse Rule Label apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Raw Materials kan ikke være tom. DocType: Newsletter,Test,Prøve -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Da der er eksisterende lagertransaktioner til denne vare, \ du ikke kan ændre værdierne af "Har Serial Nej ',' Har Batch Nej ',' Er Stock Item" og "værdiansættelsesmetode '" apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,"Du kan ikke ændre kurs, hvis BOM nævnt agianst ethvert element" DocType: Employee,Previous Work Experience,Tidligere erhvervserfaring DocType: Stock Entry,For Quantity,For Mængde apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},Indtast venligst Planned Antal for Item {0} på rækken {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} er ikke indsendt +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} er ikke indsendt apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Anmodning om. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,"Vil blive oprettet separat produktion, for hver færdigvare god element." DocType: Purchase Invoice,Terms and Conditions1,Vilkår og forhold1 @@ -1684,7 +1679,7 @@ DocType: Campaign,Campaign-.####,Kampagne -. #### apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Kontrakt Slutdato skal være større end Dato for Sammenføjning DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,"En tredjepart, distributør/forhandler/sælger/affiliate/butik der, der sælger selskabernes varer/tjenesteydelser mod provision." DocType: Customer Group,Has Child Node,Har Child Node -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} mod indkøbsordre {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} mod indkøbsordre {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Indtast statiske url parametre her (F.eks. Afsender = ERPNext, brugernavn = ERPNext, password = 1234 mm)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} ikke i noget aktiv regnskabsår. For flere detaljer tjek {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Dette er et eksempel website auto-genereret fra ERPNext @@ -1712,7 +1707,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Add or Deduct: Whether you want to add or deduct the tax.","Standard skat skabelon, der kan anvendes på alle købstransaktioner. Denne skabelon kan indeholde liste over skatte- hoveder og også andre bekostning hoveder som "Shipping", "forsikring", "Håndtering" osv #### Bemærk Skatteprocenten du definerer her, vil være standard skattesats for alle ** Varer * *. Hvis der er ** Varer **, der har forskellige satser, skal de tilsættes i ** Item Skat ** bord i ** Item ** mester. #### Beskrivelse af kolonner 1. Beregning Type: - Dette kan være på ** Net Total ** (dvs. summen af grundbeløb). - ** På Forrige Row Total / Beløb ** (for kumulative skatter eller afgifter). Hvis du vælger denne mulighed, vil skatten blive anvendt som en procentdel af den forrige række (på skatteområdet tabel) beløb eller total. - ** Faktisk ** (som nævnt). 2. Konto Hoved: Account Finans hvorunder denne afgift vil være reserveret 3. Cost Center: Hvis skatten / afgiften er en indtægt (som shipping) eller omkostninger det skal reserveres mod en Cost Center. 4. Beskrivelse: Beskrivelse af skat (som vil blive trykt i fakturaer / citater). 5. Pris: Skatteprocent. 6. Beløb: Skat beløb. 7. Samlet: Kumulativ total til dette punkt. 8. Indtast Række: Hvis baseret på "Forrige Row alt" kan du vælge den række nummer, som vil blive taget som en base for denne beregning (standard er den forrige række). 9. Overvej Skat eller Gebyr for: I dette afsnit kan du angive, om skatten / afgiften er kun for værdiansættelse (ikke en del af det samlede) eller kun for total (ikke tilføre værdi til emnet) eller til begge. 10. Tilføj eller fratrække: Uanset om du ønsker at tilføje eller fratrække afgiften." DocType: Purchase Receipt Item,Recd Quantity,RECD Mængde apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Kan ikke producere mere Item {0} end Sales Order mængde {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Stock indtastning {0} er ikke indsendt +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Stock indtastning {0} er ikke indsendt DocType: Payment Reconciliation,Bank / Cash Account,Bank / kontantautomat konto DocType: Global Defaults,Hide Currency Symbol,Skjul Valuta Symbol apps/erpnext/erpnext/config/accounts.py +174,"e.g. Bank, Cash, Credit Card","fx Bank, Kontant, Kreditkort" @@ -1736,7 +1731,7 @@ DocType: Salary Structure,Total Earning,Samlet Earning DocType: Purchase Receipt,Time at which materials were received,"Tidspunkt, hvor materialer blev modtaget" apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Mine Adresser DocType: Stock Ledger Entry,Outgoing Rate,Udgående Rate -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Organisation gren mester. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Organisation gren mester. DocType: Sales Order,Billing Status,Fakturering status apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Utility Udgifter apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +65,90-Above,90-Above @@ -1778,8 +1773,6 @@ DocType: Cost Center,Cost Center,Cost center apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,Voucher # DocType: Notification Control,Purchase Order Message,Indkøbsordre Message DocType: Upload Attendance,Upload HTML,Upload HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})",Total forhånd ({0}) mod Order {1} kan ikke være større \ end Grand Total ({2}) DocType: Employee,Relieving Date,Lindre Dato apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Prisfastsættelse Regel er lavet til at overskrive Prisliste / definere rabatprocent, baseret på nogle kriterier." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Warehouse kan kun ændres via Stock indtastning / følgeseddel / kvittering @@ -1789,8 +1782,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Indko apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Hvis valgte Prisfastsættelse Regel er lavet til "pris", vil det overskrive prislisten. Prisfastsættelse Regel prisen er den endelige pris, så ingen yderligere rabat bør anvendes. Derfor i transaktioner som Sales Order, Indkøbsordre osv, det vil blive hentet i "Rate 'felt, snarere end' Prisliste Rate 'område." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Spor fører af Industry Type. DocType: Item Supplier,Item Supplier,Vare Leverandør -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,Indtast venligst Item Code for at få batchnr -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},Vælg en værdi for {0} quotation_to {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,Indtast venligst Item Code for at få batchnr +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},Vælg en værdi for {0} quotation_to {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Alle adresser. DocType: Company,Stock Settings,Stock Indstillinger apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Sammenlægning er kun muligt, hvis følgende egenskaber er ens i begge poster. Er koncernens, Root Type, Firma" @@ -1812,7 +1805,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Check Number DocType: Payment Tool Detail,Payment Tool Detail,Betaling Tool Detail ,Sales Browser,Salg Browser DocType: Journal Entry,Total Credit,Total Credit -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Advarsel: En anden {0} # {1} eksisterer mod lager post {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Advarsel: En anden {0} # {1} eksisterer mod lager post {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Lokal apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Udlån (aktiver) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Debitorer @@ -1831,7 +1824,7 @@ DocType: Price List,Price List Master,Prisliste Master DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,"Alt salg Transaktioner kan mærkes mod flere ** Sales Personer **, så du kan indstille og overvåge mål." ,S.O. No.,SÅ No. DocType: Production Order Operation,Make Time Log,Make Time Log -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},Opret Kunden fra Lead {0} +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},Opret Kunden fra Lead {0} apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Computere apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,Dette er en rod kundegruppe og kan ikke redigeres. apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +39,Please setup your chart of accounts before you start Accounting Entries,"Venligst opsætning din kontoplan, før du starter bogføring" @@ -1865,7 +1858,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Billin DocType: Payment Reconciliation Invoice,Outstanding Amount,Udestående beløb DocType: Project Task,Working,Working DocType: Stock Ledger Entry,Stock Queue (FIFO),Stock kø (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Vælg Time Logs. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Vælg Time Logs. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} ikke tilhører selskabet {1} DocType: Account,Round Off,Afrunde ,Requested Qty,Anmodet Antal @@ -1900,7 +1893,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Få relevante oplysninger apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Regnskab Punktet om Stock DocType: Sales Invoice,Sales Team1,Salg TEAM1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Element {0} eksisterer ikke +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Element {0} eksisterer ikke DocType: Sales Invoice,Customer Address,Kunde Adresse DocType: Purchase Invoice,Apply Additional Discount On,Påfør Yderligere Rabat på DocType: Account,Root Type,Root Type @@ -1935,7 +1928,7 @@ DocType: Maintenance Visit,Scheduled,Planlagt apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Vælg Item hvor "Er Stock Item" er "Nej" og "Er Sales Item" er "Ja", og der er ingen anden Product Bundle" DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Vælg Månedlig Distribution til ujævnt distribuere mål på tværs måneder. DocType: Purchase Invoice Item,Valuation Rate,Værdiansættelse Rate -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Pris List Valuta ikke valgt +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Pris List Valuta ikke valgt apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,Item Row {0}: kvittering {1} findes ikke i ovenstående 'Køb Kvitteringer' bord apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Medarbejder {0} har allerede ansøgt om {1} mellem {2} og {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Projekt startdato @@ -1968,7 +1961,7 @@ apps/erpnext/erpnext/config/crm.py +53,Logs for maintaining sms delivery status, apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Bekræftet apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Leverandør> Leverandør type apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Indtast lindre dato. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,Kun Lad Applikationer med status "Godkendt" kan indsendes apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Adresse Titel er obligatorisk. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,"Indtast navnet på kampagne, hvis kilden undersøgelsesudvalg er kampagne" @@ -1985,7 +1978,7 @@ DocType: Item,Valuation Method,Værdiansættelsesmetode DocType: Sales Invoice,Sales Team,Salgsteam apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Duplicate entry DocType: Serial No,Under Warranty,Under Garanti -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Fejl] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Fejl] DocType: Sales Order,In Words will be visible once you save the Sales Order.,"I Ord vil være synlig, når du gemmer Sales Order." ,Employee Birthday,Medarbejder Fødselsdag apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Venture Capital @@ -2028,7 +2021,7 @@ DocType: Quotation Item,Against Doctype,Mod DOCTYPE DocType: Delivery Note,Track this Delivery Note against any Project,Spor dette Delivery Note mod enhver Project apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Root-konto kan ikke slettes DocType: Production Order,Work-in-Progress Warehouse,Work-in-Progress Warehouse -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Henvisning # {0} dateret {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Henvisning # {0} dateret {1} DocType: Pricing Rule,Item Code,Item Code DocType: Production Planning Tool,Create Production Orders,Opret produktionsordrer DocType: Serial No,Warranty / AMC Details,Garanti / AMC Detaljer @@ -2052,7 +2045,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Bank Afstemning apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Hent opdateringer apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Materiale Request {0} er aflyst eller stoppet apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Tilføj et par prøve optegnelser -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Lad Management +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Lad Management apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Gruppe af konto DocType: Sales Order,Fully Delivered,Fuldt Leveres DocType: Lead,Lower Income,Lavere indkomst @@ -2283,13 +2276,13 @@ DocType: Task,Actual Start Date (via Time Logs),Faktiske startdato (via Time Log DocType: Stock Reconciliation Item,Before reconciliation,Før forsoning apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Til {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Skatter og Afgifter Tilføjet (Company Valuta) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Item Skat Row {0} skal have højde for typen Skat eller indtægt eller omkostning eller Afgiftspligtens +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Item Skat Row {0} skal have højde for typen Skat eller indtægt eller omkostning eller Afgiftspligtens DocType: Sales Order,Partly Billed,Delvist Billed DocType: Item,Default BOM,Standard BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,Prøv venligst igen typen firmanavn for at bekræfte apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Total Enestående Amt DocType: Time Log Batch,Total Hours,Total Hours -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Samlet Debit skal være lig med Total Credit. Forskellen er {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Samlet Debit skal være lig med Total Credit. Forskellen er {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Automotive apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Fra følgeseddel DocType: Time Log,From Time,Fra Time @@ -2350,7 +2343,7 @@ DocType: Leave Application,Follow via Email,Følg via e-mail DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Skat Beløb Efter Discount Beløb apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Eksisterer barn konto til denne konto. Du kan ikke slette denne konto. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Enten target qty eller målbeløbet er obligatorisk -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},Ingen standard BOM eksisterer for Item {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},Ingen standard BOM eksisterer for Item {0} DocType: Leave Control Panel,Carry Forward,Carry Forward apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +54,Cost Center with existing transactions can not be converted to ledger,Cost Center med eksisterende transaktioner kan ikke konverteres til finans DocType: Department,Days for which Holidays are blocked for this department.,"Dage, som Holidays er blokeret for denne afdeling." @@ -2419,7 +2412,7 @@ DocType: Leave Type,Is Encash,Er indløse DocType: Purchase Invoice,Mobile No,Mobile Ingen DocType: Payment Tool,Make Journal Entry,Make Kassekladde DocType: Leave Allocation,New Leaves Allocated,Nye Blade Allokeret -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Projekt-wise data er ikke tilgængelig for Citat +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Projekt-wise data er ikke tilgængelig for Citat DocType: Project,Expected End Date,Forventet Slutdato DocType: Appraisal Template,Appraisal Template Title,Vurdering Template Titel apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Kommerciel @@ -2522,20 +2515,20 @@ DocType: Bank Reconciliation Detail,Cheque Date,Check Dato apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent account {1} does not belong to company: {2},Konto {0}: Forældre-konto {1} tilhører ikke virksomheden: {2} apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Succesfuld slettet alle transaktioner i forbindelse med dette selskab! apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Kriminalforsorgen -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Standard Warehouse er obligatorisk for lager Item. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Standard Warehouse er obligatorisk for lager Item. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Udbetaling af løn for måneden {0} og år {1} apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Samlet indbetalte beløb ,Transferred Qty,Overført Antal apps/erpnext/erpnext/config/learn.py +11,Navigating,Navigering apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Planlægning -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Make Time Log Batch +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Make Time Log Batch apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Udstedt DocType: Project,Total Billing Amount (via Time Logs),Total Billing Beløb (via Time Logs) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Vi sælger denne Vare apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65,Supplier Id,Leverandør id DocType: Journal Entry,Cash Entry,Cash indtastning DocType: Sales Partner,Contact Desc,Kontakt Desc -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Type blade som afslappet, syge etc." +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Type blade som afslappet, syge etc." DocType: Email Digest,Send regular summary reports via Email.,Send regelmæssige sammenfattende rapporter via e-mail. DocType: Brand,Item Manager,Item manager DocType: Cost Center,Add rows to set annual budgets on Accounts.,Tilføj rækker til at fastsætte årlige budgetter på Konti. @@ -2550,7 +2543,7 @@ DocType: GL Entry,Party Type,Party Type apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Råvarer kan ikke være samme som vigtigste element DocType: Item Attribute Value,Abbreviation,Forkortelse apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Ikke authroized da {0} overskrider grænser -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Løn skabelon mester. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Løn skabelon mester. DocType: Leave Type,Max Days Leave Allowed,Max Dage Leave tilladt DocType: Payment Tool,Set Matching Amounts,Set matchende Beløb DocType: Purchase Invoice,Taxes and Charges Added,Skatter og Afgifter Tilføjet @@ -2561,7 +2554,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Citater DocType: Stock Settings,Role Allowed to edit frozen stock,Rolle Tilladt at redigere frosne lager ,Territory Target Variance Item Group-Wise,Territory Target Variance Item Group-Wise apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Alle kundegrupper -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} er obligatorisk. Måske Valutaveksling record er ikke skabt for {1} til {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} er obligatorisk. Måske Valutaveksling record er ikke skabt for {1} til {2}. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Konto {0}: Forældre-konto {1} findes ikke DocType: Purchase Invoice Item,Price List Rate (Company Currency),Prisliste Rate (Company Valuta) DocType: Account,Temporary,Midlertidig @@ -2578,8 +2571,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Item Wise Tax Detail ,Item-wise Price List Rate,Item-wise Prisliste Rate apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Leverandør Citat DocType: Quotation,In Words will be visible once you save the Quotation.,"I Ord vil være synlig, når du gemmer tilbuddet." -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} er stoppet -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Stregkode {0} allerede brugt i Item {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} er stoppet +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Stregkode {0} allerede brugt i Item {1} DocType: Lead,Add to calendar on this date,Føj til kalender på denne dato apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Regler for at tilføje forsendelsesomkostninger. apps/erpnext/erpnext/support/doctype/warranty_claim/warranty_claim.py +20,Customer is required,Kunden er nødvendig @@ -2602,8 +2595,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,St apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Mindst én lageret er obligatorisk DocType: Serial No,Out of Warranty,Ud af garanti DocType: BOM Replace Tool,Replace,Udskifte -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} mod salgsfaktura {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Indtast venligst standard Måleenhed +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} mod salgsfaktura {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Indtast venligst standard Måleenhed DocType: Purchase Invoice Item,Project Name,Projektnavn DocType: Journal Entry Account,If Income or Expense,Hvis indtægter og omkostninger DocType: Features Setup,Item Batch Nos,Item Batch nr @@ -2627,7 +2620,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Fiscal År: {0} ikke eksisterer DocType: Currency Exchange,To Currency,Til Valuta DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Lad følgende brugere til at godkende Udfyld Ansøgninger om blok dage. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Typer af Expense krav. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Typer af Expense krav. DocType: Item,Taxes,Skatter DocType: Project,Default Cost Center,Standard Cost center DocType: Purchase Invoice,End Date,Slutdato @@ -2653,7 +2646,7 @@ DocType: Salary Structure Earning,Reduce Earning for Leave Without Pay (LWP),Red apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organization, other than yourself","Tilføj brugere til din organisation, andre end dig selv" apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Casual Leave DocType: Batch,Batch ID,Batch-id -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Bemærk: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Bemærk: {0} ,Delivery Note Trends,Følgeseddel Tendenser apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} skal være en Købt eller underentreprise element i række {1} apps/erpnext/erpnext/accounts/general_ledger.py +106,Account: {0} can only be updated via Stock Transactions,Konto: {0} kan kun opdateres via Stock Transaktioner @@ -2727,7 +2720,7 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Item Group,Default Expense Account,Standard udgiftskonto DocType: Employee,Notice (days),Varsel (dage) DocType: Employee,Encashment Date,Indløsning Dato -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Imod Voucher type skal være en af indkøbsordre, købsfaktura eller Kassekladde" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Imod Voucher type skal være en af indkøbsordre, købsfaktura eller Kassekladde" DocType: Account,Stock Adjustment,Stock Justering apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Standard Activity Omkostninger findes for Activity Type - {0} DocType: Production Order,Planned Operating Cost,Planlagt driftsomkostninger @@ -2843,7 +2836,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Se Lead DocType: Item Attribute Value,Attribute Value,Attribut Værdi apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","Email id skal være unikt, der allerede eksisterer for {0}" ,Itemwise Recommended Reorder Level,Itemwise Anbefalet genbestillings Level -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,Vælg {0} først +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,Vælg {0} først DocType: Features Setup,To get Item Group in details table,At få Item Group i detaljer tabel apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Batch {0} af Item {1} er udløbet. DocType: Sales Invoice,Commission,Kommissionen @@ -2879,7 +2872,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Få Udestående Vouchers DocType: Warranty Claim,Resolved By,Løst Af DocType: Appraisal,Start Date,Startdato -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Afsætte blade i en periode. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Afsætte blade i en periode. apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Klik her for at verificere apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Konto {0}: Konto kan ikke samtidig være forældre-konto DocType: Purchase Invoice Item,Price List Rate,Prisliste Rate @@ -2896,7 +2889,7 @@ DocType: Employee,Educational Qualification,Pædagogisk Kvalifikation DocType: Workstation,Operating Costs,Drifts- omkostninger DocType: Employee Leave Approver,Employee Leave Approver,Medarbejder Leave Godkender apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} er blevet føjet til vores nyhedsliste. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Række {0}: En Genbestil indgang findes allerede for dette lager {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Række {0}: En Genbestil indgang findes allerede for dette lager {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Kan ikke erklære så tabt, fordi Citat er blevet gjort." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Indkøb Master manager apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Produktionsordre {0} skal indsendes @@ -2920,7 +2913,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Salg Faktura {0} er allerede blevet indsendt apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Afslutning Dato DocType: Purchase Invoice Item,Amount (Company Currency),Beløb (Company Valuta) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Organisation enhed (departement) herre. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Organisation enhed (departement) herre. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Indtast venligst gyldige mobile nos DocType: Budget Detail,Budget Detail,Budget Detail apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,"Indtast venligst besked, før du sender" @@ -2936,13 +2929,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Modtaget og accepteret ,Serial No Service Contract Expiry,Løbenummer Service Kontrakt udløb DocType: Item,Unit of Measure Conversion,Måleenhed Conversion apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Medarbejder kan ikke ændres -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Du kan ikke kreditere og debitere samme konto på samme tid +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Du kan ikke kreditere og debitere samme konto på samme tid DocType: Naming Series,Help HTML,Hjælp HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Samlet weightage tildelt skulle være 100%. Det er {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Fradrag for over- {0} krydsede for Item {1} DocType: Address,Name of person or organization that this address belongs to.,"Navn på den person eller organisation, der denne adresse tilhører." apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Dine Leverandører -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,Kan ikke indstilles som Lost som Sales Order er foretaget. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,Kan ikke indstilles som Lost som Sales Order er foretaget. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,En anden Løn Struktur {0} er aktiv for medarbejder {1}. Venligst gøre sin status "Inaktiv" for at fortsætte. DocType: Purchase Invoice,Contact,Kontakt DocType: Features Setup,Exports,Eksport @@ -2961,7 +2954,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Hvad gør de DocType: Delivery Note,To Warehouse,Til Warehouse apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Konto {0} er indtastet mere end en gang for regnskabsåret {1} ,Average Commission Rate,Gennemsnitlig Kommissionens Rate -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'Har serienummer' kan ikke være 'Ja' for ikke-lagervare +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'Har serienummer' kan ikke være 'Ja' for ikke-lagervare apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Fremmøde kan ikke markeres for fremtidige datoer DocType: Pricing Rule,Pricing Rule Help,Prisfastsættelse Rule Hjælp DocType: Purchase Taxes and Charges,Account Head,Konto hoved @@ -2986,7 +2979,7 @@ DocType: Authorization Rule,Based On,Baseret på DocType: Sales Order Item,Ordered Qty,Bestilt Antal DocType: Stock Settings,Stock Frozen Upto,Stock Frozen Op apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Projektaktivitet / opgave. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Generer lønsedler +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Generer lønsedler apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Opkøb skal kontrolleres, om nødvendigt er valgt som {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Rabat skal være mindre end 100 DocType: Landed Cost Voucher,Landed Cost Voucher,Landed Cost Voucher @@ -3034,7 +3027,7 @@ DocType: Notification Control,Prompt for Email on Submission of,Spørg til Email apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70,Item {0} must be a stock Item,Vare {0} skal være en bestand Vare apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Standardindstillinger regnskabsmæssige transaktioner. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Forventet dato kan ikke være før Material Request Dato -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Vare {0} skal være en Sales Item +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Vare {0} skal være en Sales Item DocType: Naming Series,Update Series Number,Opdatering Series Number DocType: Account,Equity,Egenkapital DocType: Task,Closing Date,Closing Dato @@ -3083,7 +3076,7 @@ apps/erpnext/erpnext/config/stock.py +120,Price List master.,Pris List mester. DocType: Task,Review Date,Anmeldelse Dato DocType: Purchase Taxes and Charges,On Net Total,On Net Total apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Target lager i rækken {0} skal være samme som produktionsordre -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Ingen tilladelse til at bruge Betaling Tool +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Ingen tilladelse til at bruge Betaling Tool apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,'Notification Email Adresser' er ikke angivet for tilbagevendende %s DocType: Company,Round Off Account,Afrunde konto apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +84,Administrative Expenses,Administrationsomkostninger @@ -3128,7 +3121,7 @@ apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions b DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Hvis markeret, Total nej. af Arbejdsdage vil omfatte helligdage, og dette vil reducere værdien af Løn Per Day" DocType: Purchase Invoice,Total Advance,Samlet Advance DocType: Opportunity Item,Basic Rate,Grundlæggende Rate -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Sæt som Lost +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Sæt som Lost DocType: Supplier,Credit Days Based On,Credit Dage Baseret på DocType: Selling Settings,Maintain Same Rate Throughout Sales Cycle,Oprethold Samme Rate Gennem Sales Cycle DocType: Manufacturing Settings,Plan time logs outside Workstation Working Hours.,Planlæg tid logs uden Workstation arbejdstid. @@ -3154,7 +3147,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Accepteret Mængde apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} eksisterer ikke apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Regninger rejst til kunder. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Projekt-id -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Række Nej {0}: Beløb kan ikke være større end Afventer Beløb mod Expense krav {1}. Afventer Beløb er {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Række Nej {0}: Beløb kan ikke være større end Afventer Beløb mod Expense krav {1}. Afventer Beløb er {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} abonnenter tilføjet DocType: Maintenance Schedule,Schedule,Køreplan DocType: Account,Parent Account,Parent Konto @@ -3207,13 +3200,13 @@ DocType: Purchase Taxes and Charges,On Previous Row Amount,På Forrige Row Belø apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please enter Payment Amount in atleast one row,Indtast Betaling Beløb i mindst én række DocType: POS Profile,POS Profile,POS profil apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Sæsonudsving til indstilling budgetter, mål etc." -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Række {0}: Betaling Beløb kan ikke være større end udestående beløb +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Række {0}: Betaling Beløb kan ikke være større end udestående beløb apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Total Ulønnet -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Time Log ikke fakturerbare -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Vare {0} er en skabelon, skal du vælge en af dens varianter" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Time Log ikke fakturerbare +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Vare {0} er en skabelon, skal du vælge en af dens varianter" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Køber apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Nettoløn kan ikke være negativ -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Indtast Against Vouchers manuelt +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Indtast Against Vouchers manuelt DocType: SMS Settings,Static Parameters,Statiske parametre DocType: Purchase Order,Advance Paid,Advance Betalt DocType: Item,Item Tax,Item Skat @@ -3237,7 +3230,7 @@ DocType: Stock Entry,Repack,Pakke apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +6,You must Save the form before proceeding,"Du skal gemme formularen, før du fortsætter" apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Vedhæft Logo DocType: Customer,Commission Rate,Kommissionens Rate -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Blok orlov ansøgninger fra afdelingen. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Blok orlov ansøgninger fra afdelingen. DocType: Production Order,Actual Operating Cost,Faktiske driftsomkostninger apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Root kan ikke redigeres. apps/erpnext/erpnext/accounts/utils.py +197,Allocated amount can not greater than unadusted amount,Tildelte beløb kan ikke er større end unadusted beløb diff --git a/erpnext/translations/da.csv b/erpnext/translations/da.csv index b02939e485..c13f48d7e1 100644 --- a/erpnext/translations/da.csv +++ b/erpnext/translations/da.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,Kredit i Company Valut DocType: Delivery Note,Installation Status,Installation status apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Accepteret + Afvist skal være lig med Modtaget mængde for vare {0} DocType: Item,Supply Raw Materials for Purchase,Supply råstoffer til Indkøb -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Vare {0} skal være et køb Vare +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Vare {0} skal være et køb Vare DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Download skabelon, fylde relevante data og vedhæfte den ændrede fil. Alle datoer og medarbejder kombination i den valgte periode vil komme i skabelonen, med eksisterende fremmøde optegnelser" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,Vare {0} er ikke aktiv eller slutningen af livet er nået DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Vil blive opdateret efter Sales Invoice er indgivet. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Hvis du vil medtage skat i række {0} i Item sats, skatter i rækker {1} skal også medtages" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Indstillinger for HR modul +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Hvis du vil medtage skat i række {0} i Item sats, skatter i rækker {1} skal også medtages" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Indstillinger for HR modul DocType: SMS Center,SMS Center,SMS-center DocType: BOM Replace Tool,New BOM,Ny BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Batch Time Logs for fakturering. @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,Vælg Betingelser DocType: Production Planning Tool,Sales Orders,Salgsordrer DocType: Purchase Taxes and Charges,Valuation,Værdiansættelse ,Purchase Order Trends,Indkøbsordre Trends -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Afsætte blade for året. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Afsætte blade for året. DocType: Earning Type,Earning Type,Optjening Type DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Deaktiver kapacitetsplanlægning og tidsregistrering DocType: Bank Reconciliation,Bank Account,Bankkonto @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Item Website Specification DocType: Payment Tool,Reference No,Referencenummer apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Lad Blokeret -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Vare {0} har nået slutningen af sin levetid på {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Vare {0} har nået slutningen af sin levetid på {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Årligt DocType: Stock Reconciliation Item,Stock Reconciliation Item,Stock Afstemning Item DocType: Stock Entry,Sales Invoice No,Salg faktura nr @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,Minimum Antal DocType: Pricing Rule,Supplier Type,Leverandør Type DocType: Item,Publish in Hub,Offentliggør i Hub ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Vare {0} er aflyst +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Vare {0} er aflyst apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Materiale Request DocType: Bank Reconciliation,Update Clearance Date,Opdatering Clearance Dato DocType: Item,Purchase Details,Køb Detaljer @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Afvist Mængde DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Felt fås i Delivery Note, Citat, Sales Invoice, Sales Order" DocType: SMS Settings,SMS Sender Name,SMS Sender Name DocType: Contact,Is Primary Contact,Er Primær Kontaktperson +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Time Log blevet batched til fakturering DocType: Notification Control,Notification Control,Meddelelse Kontrol DocType: Lead,Suggestions,Forslag DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Set varegruppe-wise budgetter på denne Territory. Du kan også medtage sæsonudsving ved at indstille Distribution. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},Indtast venligst forælder konto gruppe for lager {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Betaling mod {0} {1} kan ikke være større end udestående beløb {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Betaling mod {0} {1} kan ikke være større end udestående beløb {2} DocType: Supplier,Address HTML,Adresse HTML DocType: Lead,Mobile No.,Mobil No. DocType: Maintenance Schedule,Generate Schedule,Generer Schedule @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Synkroniseret med Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Forkert Adgangskode DocType: Item,Variant Of,Variant af -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Vare {0} skal være service Item apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',Afsluttet Antal kan ikke være større end 'antal til Fremstilling' DocType: Period Closing Voucher,Closing Account Head,Lukning konto Hoved DocType: Employee,External Work History,Ekstern Work History @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,Nyhedsbrev DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Give besked på mail om oprettelse af automatiske Materiale Request DocType: Journal Entry,Multi Currency,Multi Valuta DocType: Payment Reconciliation Invoice,Invoice Type,Faktura type -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Følgeseddel +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Følgeseddel apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Opsætning Skatter apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,"Betaling indtastning er blevet ændret, efter at du trak det. Venligst trække det igen." -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} indtastet to gange i vareafgift +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} indtastet to gange i vareafgift apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Resumé for denne uge og verserende aktiviteter DocType: Workstation,Rent Cost,Leje Omkostninger apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Vælg måned og år @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,Gælder for lande DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Alle import- relaterede områder som valuta, konverteringsfrekvens, samlede import, import grand total etc er tilgængelige i købskvittering, leverandør Citat, købsfaktura, Indkøbsordre etc." apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"Dette element er en skabelon, og kan ikke anvendes i transaktioner. Item attributter kopieres over i varianterne medmindre 'Ingen Copy "er indstillet" apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Samlet Order Anses -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Medarbejder betegnelse (f.eks CEO, direktør osv.)" +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Medarbejder betegnelse (f.eks CEO, direktør osv.)" apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,Indtast 'Gentag på dag i måneden »felt værdi DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,"Hastighed, hvormed kunden Valuta omdannes til kundens basisvaluta" DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Fås i BOM, følgeseddel, købsfaktura, produktionsordre, Indkøbsordre, kvittering, Sales Invoice, Sales Order, Stock indtastning, Timesheet" @@ -355,7 +355,7 @@ DocType: Workstation,Consumable Cost,Forbrugsmaterialer Cost apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',"{0} ({1}), skal have rollen 'Godkendelse af fravær'" DocType: Purchase Receipt,Vehicle Date,Køretøj Dato apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Medicinsk -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Årsag til at miste +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Årsag til at miste apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Workstation er lukket på følgende datoer som pr Holiday List: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Muligheder DocType: Employee,Single,Enkeltværelse @@ -383,14 +383,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Channel Partner DocType: Account,Old Parent,Gammel Parent DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,"Tilpas den indledende tekst, der går som en del af denne e-mail. Hver transaktion har en separat indledende tekst." +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Må ikke indeholde symboler (tidl. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Salg Master manager apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Globale indstillinger for alle produktionsprocesser. DocType: Accounts Settings,Accounts Frozen Upto,Regnskab Frozen Op DocType: SMS Log,Sent On,Sendt On -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Attribut {0} valgt flere gange i attributter Tabel +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Attribut {0} valgt flere gange i attributter Tabel DocType: HR Settings,Employee record is created using selected field. ,Medarbejder rekord er oprettet ved hjælp valgte felt. DocType: Sales Order,Not Applicable,Gælder ikke -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Ferie mester. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Ferie mester. DocType: Material Request Item,Required Date,Nødvendig Dato DocType: Delivery Note,Billing Address,Faktureringsadresse apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,Indtast venligst Item Code. @@ -426,7 +427,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,Indtast venligst Warehouse for hvilke Materiale Request vil blive rejst DocType: Production Order,Additional Operating Cost,Yderligere driftsomkostninger apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Kosmetik -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","At fusionere, skal følgende egenskaber være ens for begge poster" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","At fusionere, skal følgende egenskaber være ens for begge poster" DocType: Shipping Rule,Net Weight,Vægt DocType: Employee,Emergency Phone,Emergency Phone ,Serial No Warranty Expiry,Seriel Ingen garanti Udløb @@ -481,17 +482,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Fakturering og levering status apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Gentag Kunder DocType: Leave Control Panel,Allocate,Tildele -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Salg Return +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Salg Return DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,"Vælg salgsordrer, som du ønsker at skabe produktionsordrer." DocType: Item,Delivered by Supplier (Drop Ship),Leveret af Leverandøren (Drop Ship) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Løn komponenter. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Løn komponenter. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Database over potentielle kunder. DocType: Authorization Rule,Customer or Item,Kunden eller emne apps/erpnext/erpnext/config/crm.py +17,Customer database.,Kundedatabase. DocType: Quotation,Quotation To,Citat Til DocType: Lead,Middle Income,Midterste indkomst apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Åbning (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Standard måleenhed for Item {0} kan ikke ændres direkte, fordi du allerede har gjort nogle transaktion (er) med en anden UOM. Du bliver nødt til at oprette en ny konto for at bruge en anden Standard UOM." +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Standard måleenhed for Item {0} kan ikke ændres direkte, fordi du allerede har gjort nogle transaktion (er) med en anden UOM. Du bliver nødt til at oprette en ny konto for at bruge en anden Standard UOM." apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Tildelte beløb kan ikke være negativ DocType: Purchase Order Item,Billed Amt,Billed Amt DocType: Warehouse,A logical Warehouse against which stock entries are made.,Et logisk varelager hvor lagerændringer foretages. @@ -510,14 +511,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Salg Skatter og Afgifter DocType: Employee,Organization Profile,Organisation profil apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,Venligst setup nummerering serie for Deltagelse via Setup> Nummerering Series DocType: Employee,Reason for Resignation,Årsag til Udmeldelse -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Skabelon til præstationsvurderinger. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Skabelon til præstationsvurderinger. DocType: Payment Reconciliation,Invoice/Journal Entry Details,Faktura / Kassekladde Detaljer apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' ikke i regnskabsåret {2} DocType: Buying Settings,Settings for Buying Module,Indstillinger til køb modul apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,Indtast venligst kvittering først DocType: Buying Settings,Supplier Naming By,Leverandør Navngivning Af DocType: Activity Type,Default Costing Rate,Standard Costing Rate -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Vedligeholdelse Skema +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Vedligeholdelse Skema apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Så Priser Regler filtreres ud baseret på kunden, Kunde Group, Territory, leverandør, leverandør Type, Kampagne, Sales Partner etc." apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Netto Ændring i Inventory DocType: Employee,Passport Number,Passport Number @@ -556,7 +557,7 @@ DocType: Purchase Invoice,Quarterly,Kvartalsvis DocType: Selling Settings,Delivery Note Required,Følgeseddel Nødvendig DocType: Sales Order Item,Basic Rate (Company Currency),Basic Rate (Company Valuta) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush råstoffer baseret på -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,Indtast venligst item detaljer +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,Indtast venligst item detaljer DocType: Purchase Receipt,Other Details,Andre detaljer DocType: Account,Accounts,Konti apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Marketing @@ -569,7 +570,7 @@ DocType: Employee,Provide email id registered in company,Giv email id er registr DocType: Hub Settings,Seller City,Sælger By DocType: Email Digest,Next email will be sent on:,Næste email vil blive sendt på: DocType: Offer Letter Term,Offer Letter Term,Tilbyd Letter Term -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Element har varianter. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Element har varianter. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Vare {0} ikke fundet DocType: Bin,Stock Value,Stock Value apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Tree Type @@ -577,7 +578,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Antal Consumed Per Unit DocType: Serial No,Warranty Expiry Date,Garanti Udløbsdato DocType: Material Request Item,Quantity and Warehouse,Mængde og Warehouse DocType: Sales Invoice,Commission Rate (%),Kommissionen Rate (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Imod Voucher type skal være en af kundeordre, Salg Faktura eller Kassekladde" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Imod Voucher type skal være en af kundeordre, Salg Faktura eller Kassekladde" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Aerospace DocType: Journal Entry,Credit Card Entry,Credit Card indtastning apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Task Emne @@ -645,10 +646,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Ansvar apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Sanktioneret Beløb kan ikke være større end krav Beløb i Row {0}. DocType: Company,Default Cost of Goods Sold Account,Standard vareforbrug konto -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Prisliste ikke valgt +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Prisliste ikke valgt DocType: Employee,Family Background,Familie Baggrund DocType: Process Payroll,Send Email,Send Email -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Advarsel: Ugyldig Attachment {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Advarsel: Ugyldig Attachment {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Ingen Tilladelse DocType: Company,Default Bank Account,Standard bankkonto apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Hvis du vil filtrere baseret på Party, skal du vælge Party Type først" @@ -676,7 +677,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Suppo DocType: Features Setup,"To enable ""Point of Sale"" features",For at aktivere "Point of Sale" funktioner DocType: Bin,Moving Average Rate,Glidende gennemsnit Rate DocType: Production Planning Tool,Select Items,Vælg emner -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} mod regning {1} dateret {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} mod regning {1} dateret {2} DocType: Maintenance Visit,Completion Status,Afslutning status DocType: Sales Invoice Item,Target Warehouse,Target Warehouse DocType: Item,Allow over delivery or receipt upto this percent,Tillad løbet levering eller modtagelse op denne procent @@ -736,7 +737,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Valu apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Kan ikke finde Time Slot i de næste {0} dage til Operation {1} DocType: Production Order,Plan material for sub-assemblies,Plan materiale til sub-enheder apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} skal være aktiv -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,Vælg dokumenttypen først +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Vælg dokumenttypen først apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Goto Kurv apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,"Annuller Materiale Besøg {0}, før den annullerer denne vedligeholdelse Besøg" DocType: Salary Slip,Leave Encashment Amount,Lad Indløsning Beløb @@ -754,7 +755,7 @@ DocType: Purchase Receipt,Range,Range DocType: Supplier,Default Payable Accounts,Standard betales Konti apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Medarbejder {0} er ikke aktiv eller findes ikke DocType: Features Setup,Item Barcode,Item Barcode -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Item Varianter {0} opdateret +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Item Varianter {0} opdateret DocType: Quality Inspection Reading,Reading 6,Læsning 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Købsfaktura Advance DocType: Address,Shop,Butik @@ -777,7 +778,7 @@ DocType: Salary Slip,Total in words,I alt i ord DocType: Material Request Item,Lead Time Date,Leveringstid Dato apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,er obligatorisk. Måske Valutaveksling rekord er ikke skabt til apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Row # {0}: Angiv Serial Nej for Item {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","For 'Product Bundle' elementer, Warehouse, Serial No og Batch Ingen vil blive betragtet fra "Packing List 'bord. Hvis Warehouse og Batch Ingen er ens for alle emballage poster for enhver "Product Bundle 'post, kan indtastes disse værdier i de vigtigste element tabellen, vil værdierne blive kopieret til" Packing List' bord." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","For 'Product Bundle' elementer, Warehouse, Serial No og Batch Ingen vil blive betragtet fra "Packing List 'bord. Hvis Warehouse og Batch Ingen er ens for alle emballage poster for enhver "Product Bundle 'post, kan indtastes disse værdier i de vigtigste element tabellen, vil værdierne blive kopieret til" Packing List' bord." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Forsendelser til kunderne. DocType: Purchase Invoice Item,Purchase Order Item,Indkøbsordre Item apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Indirekte Indkomst @@ -798,6 +799,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Vælg Payroll År og Mån apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Gå til den relevante gruppe (som regel Anvendelse af fondene> Omsætningsaktiver> bankkonti og oprette en ny konto (ved at klikke på Tilføj barn) af typen "Bank" DocType: Workstation,Electricity Cost,Elektricitet Omkostninger DocType: HR Settings,Don't send Employee Birthday Reminders,Send ikke Medarbejder Fødselsdag Påmindelser +,Employee Holiday Attendance,Medarbejder Holiday Deltagerliste DocType: Opportunity,Walk In,Walk In apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Stock Angivelser DocType: Item,Inspection Criteria,Inspektion Kriterier @@ -820,7 +822,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,A DocType: Journal Entry Account,Expense Claim,Expense krav apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Antal for {0} DocType: Leave Application,Leave Application,Forlad Application -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Lad Tildeling Tool +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Lad Tildeling Tool DocType: Leave Block List,Leave Block List Dates,Lad Block List Datoer DocType: Company,If Monthly Budget Exceeded (for expense account),Hvis Månedligt budget overskredet (for udgiftskonto) DocType: Workstation,Net Hour Rate,Net Hour Rate @@ -830,7 +832,7 @@ DocType: Packing Slip Item,Packing Slip Item,Packing Slip Vare DocType: POS Profile,Cash/Bank Account,Kontant / Bankkonto apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Fjernede elementer uden nogen ændringer i mængde eller værdi. DocType: Delivery Note,Delivery To,Levering Til -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Attributtabellen er obligatorisk +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Attributtabellen er obligatorisk DocType: Production Planning Tool,Get Sales Orders,Få salgsordrer apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} kan ikke være negativ apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Rabat @@ -894,7 +896,7 @@ DocType: SMS Center,Total Characters,Total tegn apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},Vælg BOM i BOM vilkår for Item {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-Form Faktura Detail DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Betaling Afstemning Faktura -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Bidrag% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Bidrag% DocType: Item,website page link,webside link DocType: Company,Company registration numbers for your reference. Tax numbers etc.,Firma registreringsnumre til din reference. Skat numre etc. DocType: Sales Partner,Distributor,Distributør @@ -936,10 +938,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM Conversion Factor DocType: Stock Settings,Default Item Group,Standard Punkt Group apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Leverandør database. DocType: Account,Balance Sheet,Balance -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Cost Center For Item med Item Code ' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Cost Center For Item med Item Code ' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,Dit salg person vil få en påmindelse på denne dato for at kontakte kunden apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Kan gøres yderligere konti under grupper, men oplysningerne kan gøres mod ikke-grupper" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Skat og andre løn fradrag. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Skat og andre løn fradrag. DocType: Lead,Lead,Emne DocType: Email Digest,Payables,Gæld DocType: Account,Warehouse,Warehouse @@ -956,10 +958,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Ikke-afstemte Betal DocType: Global Defaults,Current Fiscal Year,Indeværende finansår DocType: Global Defaults,Disable Rounded Total,Deaktiver Afrundet Total DocType: Lead,Call,Opkald -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'Indlæg' kan ikke være tomt +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'Indlæg' kan ikke være tomt apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Duplicate række {0} med samme {1} ,Trial Balance,Trial Balance -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Opsætning af Medarbejdere +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Opsætning af Medarbejdere apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid """,Grid " apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,Vælg venligst præfiks først apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Forskning @@ -968,7 +970,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,Bruger-id apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Vis Ledger apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Tidligste -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Findes et Element Group med samme navn, skal du ændre elementet navn eller omdøbe varegruppe" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Findes et Element Group med samme navn, skal du ændre elementet navn eller omdøbe varegruppe" DocType: Production Order,Manufacture against Sales Order,Fremstilling mod kundeordre apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Resten af verden apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,Item {0} kan ikke have Batch @@ -993,7 +995,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Afvist Warehouse DocType: GL Entry,Against Voucher,Mod Voucher DocType: Item,Default Buying Cost Center,Standard købsomkostninger center apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","For at få det bedste ud af ERPNext, anbefaler vi, at du tager lidt tid og se disse hjælpe videoer." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Vare {0} skal være Sales Item +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Vare {0} skal være Sales Item apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,til DocType: Item,Lead Time in days,Lead Time i dage ,Accounts Payable Summary,Kreditorer Resumé @@ -1019,7 +1021,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Landbrug apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Dine produkter eller tjenester DocType: Mode of Payment,Mode of Payment,Mode Betaling -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Website Billede bør være en offentlig fil eller webadresse +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Website Billede bør være en offentlig fil eller webadresse apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,Dette er en rod varegruppe og kan ikke redigeres. DocType: Journal Entry Account,Purchase Order,Indkøbsordre DocType: Warehouse,Warehouse Contact Info,Lager Kontakt Info @@ -1030,7 +1032,7 @@ DocType: Serial No,Serial No Details,Serial Ingen Oplysninger DocType: Purchase Invoice Item,Item Tax Rate,Item Skat apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry",For {0} kan kun kredit konti knyttes mod en anden debet post apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Levering Note {0} er ikke indsendt -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Vare {0} skal være en underentreprise Vare +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Vare {0} skal være en underentreprise Vare apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Capital Udstyr apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Prisfastsættelse Regel først valgt baseret på "Apply On 'felt, som kan være Item, punkt Group eller Brand." DocType: Hub Settings,Seller Website,Sælger Website @@ -1039,7 +1041,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Goal DocType: Sales Invoice Item,Edit Description,Edit Beskrivelse apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Forventet leveringsdato er mindre end planlagt startdato. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,For Leverandøren +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,For Leverandøren DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Indstilling Kontotype hjælper med at vælge denne konto i transaktioner. DocType: Purchase Invoice,Grand Total (Company Currency),Grand Total (Company Valuta) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Samlet Udgående @@ -1091,7 +1093,6 @@ DocType: Authorization Rule,Average Discount,Gennemsnitlig rabat DocType: Address,Utilities,Forsyningsvirksomheder DocType: Purchase Invoice Item,Accounting,Regnskab DocType: Features Setup,Features Setup,Features Setup -DocType: Item,Is Service Item,Er service Item apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Ansøgningsperiode kan ikke være uden for orlov tildelingsperiode DocType: Activity Cost,Projects,Projekter apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,Vælg venligst regnskabsår @@ -1112,7 +1113,7 @@ DocType: Item,Maintain Stock,Vedligehold Stock apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Stock Entries allerede skabt til produktionsordre apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Nettoændring i anlægsaktiver DocType: Leave Control Panel,Leave blank if considered for all designations,Lad stå tomt hvis det anses for alle betegnelser -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Afgift af typen 'Actual "i rækken {0} kan ikke indgå i Item Rate +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Afgift af typen 'Actual "i rækken {0} kan ikke indgå i Item Rate apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Fra datotid DocType: Email Digest,For Company,For Company @@ -1121,8 +1122,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Forsendelse Adresse Navn apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Kontoplan DocType: Material Request,Terms and Conditions Content,Vilkår og betingelser Indhold -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,må ikke være større end 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Vare {0} er ikke et lager Vare +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,må ikke være større end 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Vare {0} er ikke et lager Vare DocType: Maintenance Visit,Unscheduled,Uplanlagt DocType: Employee,Owned,Ejet DocType: Salary Slip Deduction,Depends on Leave Without Pay,Afhænger Leave uden løn @@ -1143,7 +1144,7 @@ Used for Taxes and Charges",Skat detalje tabel hentes fra post mester som en str apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Medarbejder kan ikke rapportere til ham selv. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Hvis kontoen er frossen, er poster lov til begrænsede brugere." DocType: Email Digest,Bank Balance,Bank Balance -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Regnskab Punktet om {0}: {1} kan kun foretages i valuta: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Regnskab Punktet om {0}: {1} kan kun foretages i valuta: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Ingen aktive Løn Struktur fundet for medarbejder {0} og måned DocType: Job Opening,"Job profile, qualifications required etc.","Jobprofil, kvalifikationer kræves etc." DocType: Journal Entry Account,Account Balance,Kontosaldo @@ -1160,7 +1161,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Sub forsamlin DocType: Shipping Rule Condition,To Value,Til Value DocType: Supplier,Stock Manager,Stock manager apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Kilde lageret er obligatorisk for rækken {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Packing Slip +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Packing Slip apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Kontorleje apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Opsætning SMS gateway-indstillinger apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Import mislykkedes! @@ -1204,7 +1205,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM Detail Nej DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Yderligere Discount Beløb (Company Valuta) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Fejl: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,Opret ny konto fra kontoplanen. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Vedligeholdelse Besøg +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Vedligeholdelse Besøg apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Kunde> Customer Group> Territory DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Tilgængelig Batch Antal på Warehouse DocType: Time Log Batch Detail,Time Log Batch Detail,Time Log Batch Detail @@ -1213,7 +1214,7 @@ DocType: Leave Block List,Block Holidays on important days.,Bloker Ferie på vig ,Accounts Receivable Summary,Debitor Resumé apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,Indstil Bruger-id feltet i en Medarbejder rekord at indstille Medarbejder Rolle DocType: UOM,UOM Name,UOM Navn -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Bidrag Beløb +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Bidrag Beløb DocType: Sales Invoice,Shipping Address,Forsendelse Adresse DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,Dette værktøj hjælper dig med at opdatere eller fastsætte mængden og værdiansættelse på lager i systemet. Det bruges typisk til at synkronisere systemets værdier og hvad der rent faktisk eksisterer i dine lagre. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,"I Ord vil være synlig, når du gemmer følgesedlen." @@ -1254,7 +1255,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,At spore elementer ved hjælp af stregkode. Du vil være i stand til at indtaste poster i følgeseddel og salgsfaktura ved at scanne stregkoden på varen. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Gensend Betaling E-mail DocType: Dependent Task,Dependent Task,Afhængig Opgave -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Omregningsfaktor for standard Måleenhed skal være 1 i række {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Omregningsfaktor for standard Måleenhed skal være 1 i række {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Ferie af typen {0} må ikke være længere end {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Prøv at planlægge operationer for X dage i forvejen. DocType: HR Settings,Stop Birthday Reminders,Stop Fødselsdag Påmindelser @@ -1264,7 +1265,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Vis apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Netto Ændring i Cash DocType: Salary Structure Deduction,Salary Structure Deduction,Løn Struktur Fradrag -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Måleenhed {0} er indtastet mere end én gang i Conversion Factor Table +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Måleenhed {0} er indtastet mere end én gang i Conversion Factor Table apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Betaling Anmodning findes allerede {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Omkostninger ved Udstedte Varer apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Mængde må ikke være mere end {0} @@ -1293,7 +1294,7 @@ DocType: BOM Item,BOM Item,BOM Item DocType: Appraisal,For Employee,For Medarbejder apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Række {0}: Advance mod Leverandøren skal debitere DocType: Company,Default Values,Standardværdier -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Række {0}: Betaling beløb kan ikke være negativ +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Række {0}: Betaling beløb kan ikke være negativ DocType: Expense Claim,Total Amount Reimbursed,Samlede godtgjorte beløb apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Imod Leverandør Faktura {0} dateret {1} DocType: Customer,Default Price List,Standard prisliste @@ -1321,8 +1322,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Gar DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Udskift en bestemt BOM i alle andre styklister, hvor det bruges. Det vil erstatte den gamle BOM linket, opdatere omkostninger og regenerere "BOM Explosion Item" tabel som pr ny BOM" DocType: Shopping Cart Settings,Enable Shopping Cart,Aktiver Indkøbskurv DocType: Employee,Permanent Address,Permanent adresse -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Vare {0} skal være en service Item. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Forskud mod {0} {1} kan ikke være større \ end Grand alt {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Vælg emne kode DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Reducer Fradrag for Leave uden løn (LWP) @@ -1378,12 +1378,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Main apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Variant DocType: Naming Series,Set prefix for numbering series on your transactions,Sæt præfiks for nummerering serie om dine transaktioner +DocType: Employee Attendance Tool,Employees HTML,Medarbejdere HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Stoppet ordre kan ikke annulleres. Unstop at annullere. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Standard BOM ({0}) skal være aktiv for dette element eller dens skabelon +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Standard BOM ({0}) skal være aktiv for dette element eller dens skabelon DocType: Employee,Leave Encashed?,Efterlad indkasseres? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Mulighed Fra feltet er obligatorisk DocType: Item,Variants,Varianter -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Make indkøbsordre +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Make indkøbsordre DocType: SMS Center,Send To,Send til apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Der er ikke nok orlov balance for Leave Type {0} DocType: Payment Reconciliation Payment,Allocated amount,Tildelte beløb @@ -1483,7 +1484,7 @@ DocType: Sales Person,Name and Employee ID,Navn og Medarbejder ID apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,"Forfaldsdato kan ikke være, før Udstationering Dato" DocType: Website Item Group,Website Item Group,Website Item Group apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Told og afgifter -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,Indtast Referencedato +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,Indtast Referencedato apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Betaling Gateway konto er ikke konfigureret apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} betalingssystemer poster ikke kan filtreres af {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,"Tabel til Vare, der vil blive vist i Web Site" @@ -1504,7 +1505,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Opløsning Detaljer DocType: Quality Inspection Reading,Acceptance Criteria,Acceptkriterier DocType: Item Attribute,Attribute Name,Attribut Navn -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Vare {0} skal være Salg eller service Item i {1} DocType: Item Group,Show In Website,Vis I Website apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Gruppe DocType: Task,Expected Time (in hours),Forventet tid (i timer) @@ -1536,7 +1536,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Forsendelse Mængde ,Pending Amount,Afventer Beløb DocType: Purchase Invoice Item,Conversion Factor,Konvertering Factor DocType: Purchase Order,Delivered,Leveret -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Opsætning indgående server for job email id. (F.eks jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Opsætning indgående server for job email id. (F.eks jobs@example.com) DocType: Purchase Receipt,Vehicle Number,Køretøjsnummer DocType: Purchase Invoice,The date on which recurring invoice will be stop,"Den dato, hvor tilbagevendende faktura vil blive stoppe" apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Samlede fordelte blade {0} kan ikke være mindre end allerede godkendte blade {1} for perioden @@ -1553,7 +1553,7 @@ DocType: HR Settings,HR Settings,HR-indstillinger apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Expense krav afventer godkendelse. Kun Expense Godkender kan opdatere status. DocType: Purchase Invoice,Additional Discount Amount,Yderligere Discount Beløb DocType: Leave Block List Allow,Leave Block List Allow,Lad Block List Tillad -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Forkortelsen kan ikke være tom eller bestå af mellemrum +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Forkortelsen kan ikke være tom eller bestå af mellemrum apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Gruppe til ikke-Group apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Sport apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Samlede faktiske @@ -1577,7 +1577,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},UOM Omregningsfaktor kræves i række {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Clearance dato kan ikke være før check dato i række {0} DocType: Salary Slip,Deduction,Fradrag -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Vare Pris tilføjet for {0} i prisliste {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Vare Pris tilføjet for {0} i prisliste {1} DocType: Address Template,Address Template,Adresse Skabelon apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,Indtast venligst Medarbejder Id dette salg person DocType: Territory,Classification of Customers by region,Klassifikation af kunder efter region @@ -1594,7 +1594,7 @@ DocType: Employee,Date of Birth,Fødselsdato apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Element {0} er allerede blevet returneret DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** Regnskabsår ** repræsenterer et regnskabsår. Alle regnskabsposteringer og andre større transaktioner spores mod ** regnskabsår **. DocType: Opportunity,Customer / Lead Address,Kunde / Lead Adresse -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Advarsel: Ugyldig SSL certifikat på vedhæftet fil {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Advarsel: Ugyldig SSL certifikat på vedhæftet fil {0} DocType: Production Order Operation,Actual Operation Time,Faktiske Operation Time DocType: Authorization Rule,Applicable To (User),Gælder for (Bruger) DocType: Purchase Taxes and Charges,Deduct,Fratrække @@ -1611,7 +1611,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Split følgeseddel i pakker. apps/erpnext/erpnext/hooks.py +69,Shipments,Forsendelser DocType: Purchase Order Item,To be delivered to customer,Der skal leveres til kunden -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Time Log status skal indsendes. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Time Log status skal indsendes. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,Løbenummer {0} tilhører ikke nogen Warehouse apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Row # DocType: Purchase Invoice,In Words (Company Currency),I Words (Company Valuta) @@ -1628,7 +1628,7 @@ DocType: Leave Application,Total Leave Days,Total feriedage DocType: Email Digest,Note: Email will not be sent to disabled users,Bemærk: E-mail vil ikke blive sendt til handicappede brugere apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Vælg Company ... DocType: Leave Control Panel,Leave blank if considered for all departments,Lad stå tomt hvis det anses for alle afdelinger -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Typer af beskæftigelse (permanent, kontrakt, praktikant osv)." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Typer af beskæftigelse (permanent, kontrakt, praktikant osv)." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} er obligatorisk for Item {1} DocType: Currency Exchange,From Currency,Fra Valuta apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Vælg tildelte beløb, Faktura Type og Fakturanummer i mindst én række" @@ -1647,7 +1647,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,I Process DocType: Authorization Rule,Itemwise Discount,Itemwise Discount DocType: Purchase Order Item,Reference Document Type,Referencedokument type -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} mod salgsordre {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} mod salgsordre {1} DocType: Account,Fixed Asset,Fast Asset apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Føljeton Inventory DocType: Activity Type,Default Billing Rate,Standard Billing Rate @@ -1657,7 +1657,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Sales Order til Betaling DocType: Expense Claim Detail,Expense Claim Detail,Expense krav Detail apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Time Logs oprettet: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,Vælg korrekt konto +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,Vælg korrekt konto DocType: Item,Weight UOM,Vægt UOM DocType: Employee,Blood Group,Blood Group DocType: Purchase Invoice Item,Page Break,Side Break @@ -1692,7 +1692,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM rekursion: {0} kan ikke være forælder eller barn af {2} DocType: Production Order Operation,Completed Qty,Afsluttet Antal apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry",For {0} kan kun betalingskort konti knyttes mod en anden kredit post -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Prisliste {0} er deaktiveret +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Prisliste {0} er deaktiveret DocType: Manufacturing Settings,Allow Overtime,Tillad Overarbejde apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,"{0} serienumre, der kræves for Item {1}. Du har givet {2}." DocType: Stock Reconciliation Item,Current Valuation Rate,Aktuel Værdiansættelse Rate @@ -1743,7 +1743,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Inge apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Case No. ikke være 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,Hvis du har salgsteam og salg Partners (Channel Partners) de kan mærkes og vedligeholde deres bidrag i salget aktivitet DocType: Item,Show a slideshow at the top of the page,Vis et diasshow på toppen af siden -DocType: Item,"Allow in Sales Order of type ""Service""",Tillad i kundeordre af typen "Service" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Butikker DocType: Time Log,Projects Manager,Projekter manager DocType: Serial No,Delivery Time,Leveringstid @@ -1758,6 +1757,7 @@ DocType: Rename Tool,Rename Tool,Omdøb Tool apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Opdatering Omkostninger DocType: Item Reorder,Item Reorder,Item Genbestil apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Transfer Materiale +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Vare {0} skal være en salgsvare i {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Angiv operationer, driftsomkostninger og giver en unik Operation nej til dine operationer." DocType: Purchase Invoice,Price List Currency,Pris List Valuta DocType: Naming Series,User must always select,Brugeren skal altid vælge @@ -1778,7 +1778,7 @@ DocType: Appraisal,Employee,Medarbejder apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Import Email Fra apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Inviter som Bruger DocType: Features Setup,After Sale Installations,Efter salg Installationer -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} er fuldt faktureret +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} er fuldt faktureret DocType: Workstation Working Hour,End Time,End Time apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Standard kontraktvilkår for Salg eller Indkøb. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Gruppe af Voucher @@ -1804,7 +1804,7 @@ DocType: Upload Attendance,Attendance To Date,Fremmøde til dato apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Opsætning indgående server til salg email id. (F.eks sales@example.com) DocType: Warranty Claim,Raised By,Rejst af DocType: Payment Gateway Account,Payment Account,Betaling konto -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,Angiv venligst Company for at fortsætte +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,Angiv venligst Company for at fortsætte apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Nettoændring i Debitor apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Kompenserende Off DocType: Quality Inspection Reading,Accepted,Accepteret @@ -1816,14 +1816,14 @@ DocType: Shipping Rule,Shipping Rule Label,Forsendelse Rule Label apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Raw Materials kan ikke være tom. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Kunne ikke opdatere lager, faktura indeholder drop shipping element." DocType: Newsletter,Test,Prøve -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Da der er eksisterende lagertransaktioner til denne vare, \ du ikke kan ændre værdierne af "Har Serial Nej ',' Har Batch Nej ',' Er Stock Item" og "værdiansættelsesmetode '" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Hurtig Kassekladde apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,"Du kan ikke ændre kurs, hvis BOM nævnt agianst ethvert element" DocType: Employee,Previous Work Experience,Tidligere erhvervserfaring DocType: Stock Entry,For Quantity,For Mængde apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},Indtast venligst Planned Antal for Item {0} på rækken {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} er ikke indsendt +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} er ikke indsendt apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Anmodning om. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,"Vil blive oprettet separat produktion, for hver færdigvare god element." DocType: Purchase Invoice,Terms and Conditions1,Vilkår og forhold1 @@ -1848,6 +1848,7 @@ DocType: Notification Control,Expense Claim Approved Message,Expense krav Godken DocType: Email Digest,How frequently?,Hvor ofte? DocType: Purchase Receipt,Get Current Stock,Få Aktuel Stock apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Tree of Bill of Materials +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Mark Present apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Vedligeholdelse startdato kan ikke være før leveringsdato for Serial Nej {0} DocType: Production Order,Actual End Date,Faktiske Slutdato DocType: Authorization Rule,Applicable To (Role),Gælder for (Rolle) @@ -1862,7 +1863,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Kontrakt Slutdato skal være større end Dato for Sammenføjning DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,"En tredjepart, distributør/forhandler/sælger/affiliate/butik der, der sælger selskabernes varer/tjenesteydelser mod provision." DocType: Customer Group,Has Child Node,Har Child Node -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} mod indkøbsordre {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} mod indkøbsordre {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Indtast statiske url parametre her (F.eks. Afsender = ERPNext, brugernavn = ERPNext, password = 1234 mm)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} ikke i noget aktiv regnskabsår. For flere detaljer tjek {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Dette er et eksempel website auto-genereret fra ERPNext @@ -1890,7 +1891,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Add or Deduct: Whether you want to add or deduct the tax.","Standard skat skabelon, der kan anvendes på alle købstransaktioner. Denne skabelon kan indeholde liste over skatte- hoveder og også andre bekostning hoveder som "Shipping", "forsikring", "Håndtering" osv #### Bemærk Skatteprocenten du definerer her, vil være standard skattesats for alle ** Varer * *. Hvis der er ** Varer **, der har forskellige satser, skal de tilsættes i ** Item Skat ** bord i ** Item ** mester. #### Beskrivelse af kolonner 1. Beregning Type: - Dette kan være på ** Net Total ** (dvs. summen af grundbeløb). - ** På Forrige Row Total / Beløb ** (for kumulative skatter eller afgifter). Hvis du vælger denne mulighed, vil skatten blive anvendt som en procentdel af den forrige række (på skatteområdet tabel) beløb eller total. - ** Faktisk ** (som nævnt). 2. Konto Hoved: Account Finans hvorunder denne afgift vil være reserveret 3. Cost Center: Hvis skatten / afgiften er en indtægt (som shipping) eller omkostninger det skal reserveres mod en Cost Center. 4. Beskrivelse: Beskrivelse af skat (som vil blive trykt i fakturaer / citater). 5. Pris: Skatteprocent. 6. Beløb: Skat beløb. 7. Samlet: Kumulativ total til dette punkt. 8. Indtast Række: Hvis baseret på "Forrige Row alt" kan du vælge den række nummer, som vil blive taget som en base for denne beregning (standard er den forrige række). 9. Overvej Skat eller Gebyr for: I dette afsnit kan du angive, om skatten / afgiften er kun for værdiansættelse (ikke en del af det samlede) eller kun for total (ikke tilføre værdi til emnet) eller til begge. 10. Tilføj eller fratrække: Uanset om du ønsker at tilføje eller fratrække afgiften." DocType: Purchase Receipt Item,Recd Quantity,RECD Mængde apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Kan ikke producere mere Item {0} end Sales Order mængde {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Stock indtastning {0} er ikke indsendt +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Stock indtastning {0} er ikke indsendt DocType: Payment Reconciliation,Bank / Cash Account,Bank / kontantautomat konto DocType: Tax Rule,Billing City,Fakturering By DocType: Global Defaults,Hide Currency Symbol,Skjul Valuta Symbol @@ -1916,7 +1917,7 @@ DocType: Salary Structure,Total Earning,Samlet Earning DocType: Purchase Receipt,Time at which materials were received,"Tidspunkt, hvor materialer blev modtaget" apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Mine Adresser DocType: Stock Ledger Entry,Outgoing Rate,Udgående Rate -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Organisation gren mester. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Organisation gren mester. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,eller DocType: Sales Order,Billing Status,Fakturering status apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Utility Udgifter @@ -1954,7 +1955,7 @@ DocType: Bin,Reserved Quantity,Reserveret Mængde DocType: Landed Cost Voucher,Purchase Receipt Items,Kvittering Varer apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Tilpasning Forms DocType: Account,Income Account,Indkomst konto -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Levering +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Levering DocType: Stock Reconciliation Item,Current Qty,Aktuel Antal DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",Se "Rate Of Materials Based On" i Costing afsnit DocType: Appraisal Goal,Key Responsibility Area,Key Responsibility Area @@ -1966,8 +1967,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,Vou DocType: Notification Control,Purchase Order Message,Indkøbsordre Message DocType: Tax Rule,Shipping Country,Forsendelse Land DocType: Upload Attendance,Upload HTML,Upload HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})",Total forhånd ({0}) mod Order {1} kan ikke være større \ end Grand Total ({2}) DocType: Employee,Relieving Date,Lindre Dato apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Prisfastsættelse Regel er lavet til at overskrive Prisliste / definere rabatprocent, baseret på nogle kriterier." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Warehouse kan kun ændres via Stock indtastning / følgeseddel / kvittering @@ -1977,8 +1976,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Indko apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Hvis valgte Prisfastsættelse Regel er lavet til "pris", vil det overskrive prislisten. Prisfastsættelse Regel prisen er den endelige pris, så ingen yderligere rabat bør anvendes. Derfor i transaktioner som Sales Order, Indkøbsordre osv, det vil blive hentet i "Rate 'felt, snarere end' Prisliste Rate 'område." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Spor fører af Industry Type. DocType: Item Supplier,Item Supplier,Vare Leverandør -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,Indtast venligst Item Code for at få batchnr -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},Vælg en værdi for {0} quotation_to {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,Indtast venligst Item Code for at få batchnr +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},Vælg en værdi for {0} quotation_to {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Alle adresser. DocType: Company,Stock Settings,Stock Indstillinger apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Sammenlægning er kun muligt, hvis følgende egenskaber er ens i begge poster. Er koncernens, Root Type, Firma" @@ -2001,7 +2000,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Check Number DocType: Payment Tool Detail,Payment Tool Detail,Betaling Tool Detail ,Sales Browser,Salg Browser DocType: Journal Entry,Total Credit,Total Credit -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Advarsel: En anden {0} # {1} eksisterer mod lager post {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Advarsel: En anden {0} # {1} eksisterer mod lager post {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Lokal apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Udlån (aktiver) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Debitorer @@ -2021,8 +2020,8 @@ DocType: Price List,Price List Master,Prisliste Master DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,"Alt salg Transaktioner kan mærkes mod flere ** Sales Personer **, så du kan indstille og overvåge mål." ,S.O. No.,SÅ No. DocType: Production Order Operation,Make Time Log,Make Time Log -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Venligst sæt genbestille mængde -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},Opret Kunden fra Lead {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Venligst sæt genbestille mængde +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},Opret Kunden fra Lead {0} DocType: Price List,Applicable for Countries,Gældende for lande apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Computere apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,Dette er en rod kundegruppe og kan ikke redigeres. @@ -2058,7 +2057,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Billin DocType: Payment Reconciliation Invoice,Outstanding Amount,Udestående beløb DocType: Project Task,Working,Working DocType: Stock Ledger Entry,Stock Queue (FIFO),Stock kø (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Vælg Time Logs. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Vælg Time Logs. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} ikke tilhører selskabet {1} DocType: Account,Round Off,Afrunde ,Requested Qty,Anmodet Antal @@ -2096,7 +2095,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Få relevante oplysninger apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Regnskab Punktet om Stock DocType: Sales Invoice,Sales Team1,Salg TEAM1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Element {0} eksisterer ikke +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Element {0} eksisterer ikke DocType: Sales Invoice,Customer Address,Kunde Adresse DocType: Payment Request,Recipient and Message,Modtager og besked DocType: Purchase Invoice,Apply Additional Discount On,Påfør Yderligere Rabat på @@ -2115,7 +2114,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Mute Email apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Mad, drikke og tobak" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL eller BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Kan kun gøre betaling mod faktureret {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Kan kun gøre betaling mod faktureret {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Provisionssats kan ikke være større end 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Minimum Inventory Level DocType: Stock Entry,Subcontract,Underleverance @@ -2133,9 +2132,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Software apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Farve DocType: Maintenance Visit,Scheduled,Planlagt apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Vælg Item hvor "Er Stock Item" er "Nej" og "Er Sales Item" er "Ja", og der er ingen anden Product Bundle" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Samlet forhånd ({0}) mod Order {1} kan ikke være større end Grand alt ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Vælg Månedlig Distribution til ujævnt distribuere mål på tværs måneder. DocType: Purchase Invoice Item,Valuation Rate,Værdiansættelse Rate -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Pris List Valuta ikke valgt +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Pris List Valuta ikke valgt apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,Item Row {0}: kvittering {1} findes ikke i ovenstående 'Køb Kvitteringer' bord apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Medarbejder {0} har allerede ansøgt om {1} mellem {2} og {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Projekt startdato @@ -2147,6 +2147,7 @@ DocType: Quality Inspection,Inspection Type,Inspektion Type apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},Vælg {0} DocType: C-Form,C-Form No,C-Form Ingen DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,umærket Deltagelse apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Forsker apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,Gem nyhedsbrevet før afsendelse apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Navn eller E-mail er obligatorisk @@ -2172,7 +2173,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Bekræf DocType: Payment Gateway,Gateway,Gateway apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Leverandør> Leverandør type apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Indtast lindre dato. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,Kun Lad Applikationer med status "Godkendt" kan indsendes apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Adresse Titel er obligatorisk. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,"Indtast navnet på kampagne, hvis kilden undersøgelsesudvalg er kampagne" @@ -2187,10 +2188,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Accepteret varelager DocType: Bank Reconciliation Detail,Posting Date,Udstationering Dato DocType: Item,Valuation Method,Værdiansættelsesmetode apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Kan ikke finde valutakurs for {0} til {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Mark Halvdags DocType: Sales Invoice,Sales Team,Salgsteam apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Duplicate entry DocType: Serial No,Under Warranty,Under Garanti -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Fejl] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Fejl] DocType: Sales Order,In Words will be visible once you save the Sales Order.,"I Ord vil være synlig, når du gemmer Sales Order." ,Employee Birthday,Medarbejder Fødselsdag apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Venture Capital @@ -2213,6 +2215,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,Cost Center med eksisterende transaktioner kan ikke konverteres til gruppe DocType: Account,Depreciation,Afskrivninger apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Leverandør (er) +DocType: Employee Attendance Tool,Employee Attendance Tool,Medarbejder Deltagerliste Værktøj DocType: Supplier,Credit Limit,Kreditgrænse apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Vælg type transaktion DocType: GL Entry,Voucher No,Blad nr @@ -2239,7 +2242,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Root-konto kan ikke slettes ,Is Primary Address,Er primære adresse DocType: Production Order,Work-in-Progress Warehouse,Work-in-Progress Warehouse -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Henvisning # {0} dateret {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Henvisning # {0} dateret {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Administrer Adresser DocType: Pricing Rule,Item Code,Item Code DocType: Production Planning Tool,Create Production Orders,Opret produktionsordrer @@ -2266,7 +2269,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Bank Afstemning apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Hent opdateringer apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Materiale Request {0} er aflyst eller stoppet apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Tilføj et par prøve optegnelser -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Lad Management +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Lad Management apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Gruppe af konto DocType: Sales Order,Fully Delivered,Fuldt Leveres DocType: Lead,Lower Income,Lavere indkomst @@ -2281,6 +2284,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','Fra dato' skal være efter 'Til dato' ,Stock Projected Qty,Stock Forventet Antal apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Kunden {0} ikke hører til projekt {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Markant Deltagelse HTML DocType: Sales Order,Customer's Purchase Order,Kundens Indkøbsordre DocType: Warranty Claim,From Company,Fra Company apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Værdi eller Antal @@ -2345,6 +2349,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Bankoverførsel apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,Vælg Bankkonto DocType: Newsletter,Create and Send Newsletters,Opret og send nyhedsbreve +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Kontroller alt DocType: Sales Order,Recurring Order,Tilbagevendende Order DocType: Company,Default Income Account,Standard Indkomst konto apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Customer Group / kunde @@ -2376,6 +2381,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Retur Against købsfak DocType: Item,Warranty Period (in days),Garantiperiode (i dage) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Netto kontant fra Operations apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,fx moms +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Mark Medarbejder Deltagelse i bulk apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Punkt 4 DocType: Journal Entry Account,Journal Entry Account,Kassekladde konto DocType: Shopping Cart Settings,Quotation Series,Citat Series @@ -2520,14 +2526,14 @@ DocType: Task,Actual Start Date (via Time Logs),Faktiske startdato (via Time Log DocType: Stock Reconciliation Item,Before reconciliation,Før forsoning apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Til {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Skatter og Afgifter Tilføjet (Company Valuta) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Item Skat Row {0} skal have højde for typen Skat eller indtægt eller omkostning eller Afgiftspligtens +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Item Skat Row {0} skal have højde for typen Skat eller indtægt eller omkostning eller Afgiftspligtens DocType: Sales Order,Partly Billed,Delvist Billed DocType: Item,Default BOM,Standard BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,Prøv venligst igen typen firmanavn for at bekræfte apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Total Enestående Amt DocType: Time Log Batch,Total Hours,Total Hours DocType: Journal Entry,Printing Settings,Udskrivning Indstillinger -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Samlet Debit skal være lig med Total Credit. Forskellen er {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Samlet Debit skal være lig med Total Credit. Forskellen er {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Automotive apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Fra følgeseddel DocType: Time Log,From Time,Fra Time @@ -2573,7 +2579,7 @@ DocType: Purchase Invoice Item,Image View,Billede View DocType: Issue,Opening Time,Åbning tid apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,Fra og Til dato kræves apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Værdipapirer og Commodity Exchanges -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Standard måleenhed for Variant '{0}' skal være samme som i skabelon '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Standard måleenhed for Variant '{0}' skal være samme som i skabelon '{1}' DocType: Shipping Rule,Calculate Based On,Beregn baseret på DocType: Delivery Note Item,From Warehouse,Fra Warehouse DocType: Purchase Taxes and Charges,Valuation and Total,Værdiansættelse og Total @@ -2595,7 +2601,7 @@ DocType: Leave Application,Follow via Email,Følg via e-mail DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Skat Beløb Efter Discount Beløb apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Eksisterer barn konto til denne konto. Du kan ikke slette denne konto. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Enten target qty eller målbeløbet er obligatorisk -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},Ingen standard BOM eksisterer for Item {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},Ingen standard BOM eksisterer for Item {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,Vælg Bogføringsdato først apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,"Åbning Dato bør være, før Closing Dato" DocType: Leave Control Panel,Carry Forward,Carry Forward @@ -2672,7 +2678,7 @@ DocType: Leave Type,Is Encash,Er indløse DocType: Purchase Invoice,Mobile No,Mobile Ingen DocType: Payment Tool,Make Journal Entry,Make Kassekladde DocType: Leave Allocation,New Leaves Allocated,Nye Blade Allokeret -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Projekt-wise data er ikke tilgængelig for Citat +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Projekt-wise data er ikke tilgængelig for Citat DocType: Project,Expected End Date,Forventet Slutdato DocType: Appraisal Template,Appraisal Template Title,Vurdering Template Titel apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Kommerciel @@ -2720,6 +2726,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,In apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Angiv en DocType: Offer Letter,Awaiting Response,Afventer svar apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Frem +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Time Log er blevet faktureret DocType: Salary Slip,Earning & Deduction,Earning & Fradrag apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Konto {0} kan ikke være en gruppe apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Valgfri. Denne indstilling vil blive brugt til at filtrere i forskellige transaktioner. @@ -2790,14 +2797,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Succesfuld slettet alle transaktioner i forbindelse med dette selskab! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Som på dato apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Kriminalforsorgen -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Standard Warehouse er obligatorisk for lager Item. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Standard Warehouse er obligatorisk for lager Item. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Udbetaling af løn for måneden {0} og år {1} DocType: Stock Settings,Auto insert Price List rate if missing,"Auto insert Prisliste sats, hvis der mangler" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Samlet indbetalte beløb ,Transferred Qty,Overført Antal apps/erpnext/erpnext/config/learn.py +11,Navigating,Navigering apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Planlægning -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Make Time Log Batch +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Make Time Log Batch apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Udstedt DocType: Project,Total Billing Amount (via Time Logs),Total Billing Beløb (via Time Logs) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Vi sælger denne Vare @@ -2805,7 +2812,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Mængde bør være større end 0 DocType: Journal Entry,Cash Entry,Cash indtastning DocType: Sales Partner,Contact Desc,Kontakt Desc -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Type blade som afslappet, syge etc." +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Type blade som afslappet, syge etc." DocType: Email Digest,Send regular summary reports via Email.,Send regelmæssige sammenfattende rapporter via e-mail. DocType: Brand,Item Manager,Item manager DocType: Cost Center,Add rows to set annual budgets on Accounts.,Tilføj rækker til at fastsætte årlige budgetter på Konti. @@ -2820,7 +2827,7 @@ DocType: GL Entry,Party Type,Party Type apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Råvarer kan ikke være samme som vigtigste element DocType: Item Attribute Value,Abbreviation,Forkortelse apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Ikke authroized da {0} overskrider grænser -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Løn skabelon mester. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Løn skabelon mester. DocType: Leave Type,Max Days Leave Allowed,Max Dage Leave tilladt apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Sæt Skat Regel for indkøbskurv DocType: Payment Tool,Set Matching Amounts,Set matchende Beløb @@ -2833,7 +2840,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Citater DocType: Stock Settings,Role Allowed to edit frozen stock,Rolle Tilladt at redigere frosne lager ,Territory Target Variance Item Group-Wise,Territory Target Variance Item Group-Wise apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Alle kundegrupper -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} er obligatorisk. Måske Valutaveksling record er ikke skabt for {1} til {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} er obligatorisk. Måske Valutaveksling record er ikke skabt for {1} til {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Skat Skabelon er obligatorisk. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Konto {0}: Forældre-konto {1} findes ikke DocType: Purchase Invoice Item,Price List Rate (Company Currency),Prisliste Rate (Company Valuta) @@ -2853,8 +2860,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Item Wise Tax Detail ,Item-wise Price List Rate,Item-wise Prisliste Rate apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Leverandør Citat DocType: Quotation,In Words will be visible once you save the Quotation.,"I Ord vil være synlig, når du gemmer tilbuddet." -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} er stoppet -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Stregkode {0} allerede brugt i Item {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} er stoppet +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Stregkode {0} allerede brugt i Item {1} DocType: Lead,Add to calendar on this date,Føj til kalender på denne dato apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Regler for at tilføje forsendelsesomkostninger. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Kommende begivenheder @@ -2880,8 +2887,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,St apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Mindst én lageret er obligatorisk DocType: Serial No,Out of Warranty,Ud af garanti DocType: BOM Replace Tool,Replace,Udskifte -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} mod salgsfaktura {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Indtast venligst standard Måleenhed +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} mod salgsfaktura {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Indtast venligst standard Måleenhed DocType: Purchase Invoice Item,Project Name,Projektnavn DocType: Supplier,Mention if non-standard receivable account,"Nævne, hvis ikke-standard tilgodehavende konto" DocType: Journal Entry Account,If Income or Expense,Hvis indtægter og omkostninger @@ -2906,7 +2913,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Fiscal År: {0} ikke eksisterer DocType: Currency Exchange,To Currency,Til Valuta DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Lad følgende brugere til at godkende Udfyld Ansøgninger om blok dage. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Typer af Expense krav. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Typer af Expense krav. DocType: Item,Taxes,Skatter apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Betalt og ikke leveret DocType: Project,Default Cost Center,Standard Cost center @@ -2936,7 +2943,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Række # {0}: Løbenummer {1} matcher ikke med {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Casual Leave DocType: Batch,Batch ID,Batch-id -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Bemærk: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Bemærk: {0} ,Delivery Note Trends,Følgeseddel Tendenser apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Denne uges Summary apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} skal være en Købt eller underentreprise element i række {1} @@ -2976,6 +2983,7 @@ DocType: Project Task,Pending Review,Afventer anmeldelse apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Klik her for at betale DocType: Task,Total Expense Claim (via Expense Claim),Total Expense krav (via Expense krav) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Kunde-id +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Mark Fraværende apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Til Time skal være større end From Time DocType: Journal Entry Account,Exchange Rate,Exchange Rate apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Sales Order {0} er ikke indsendt @@ -3023,7 +3031,7 @@ DocType: Item Group,Default Expense Account,Standard udgiftskonto DocType: Employee,Notice (days),Varsel (dage) DocType: Tax Rule,Sales Tax Template,Sales Tax Skabelon DocType: Employee,Encashment Date,Indløsning Dato -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Imod Voucher type skal være en af indkøbsordre, købsfaktura eller Kassekladde" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Imod Voucher type skal være en af indkøbsordre, købsfaktura eller Kassekladde" DocType: Account,Stock Adjustment,Stock Justering apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Standard Activity Omkostninger findes for Activity Type - {0} DocType: Production Order,Planned Operating Cost,Planlagt driftsomkostninger @@ -3077,6 +3085,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Skriv Off indtastning DocType: BOM,Rate Of Materials Based On,Rate Of materialer baseret på apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Support Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Fravælg alle apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Virksomheden mangler i pakhuse {0} DocType: POS Profile,Terms and Conditions,Betingelser apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},Til dato bør være inden regnskabsåret. Antages Til dato = {0} @@ -3098,7 +3107,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","For at indstille dette regnskabsår som standard, skal du klikke på 'Vælg som standard'" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Opsætning indgående server til support email id. (F.eks support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Mangel Antal -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Vare variant {0} eksisterer med samme attributter +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Vare variant {0} eksisterer med samme attributter DocType: Salary Slip,Salary Slip,Lønseddel apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,'Til dato' er nødvendig DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Generer pakkesedler for pakker, der skal leveres. Bruges til at anmelde pakke nummer, pakkens indhold og dens vægt." @@ -3146,7 +3155,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Se Lead DocType: Item Attribute Value,Attribute Value,Attribut Værdi apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","Email id skal være unikt, der allerede eksisterer for {0}" ,Itemwise Recommended Reorder Level,Itemwise Anbefalet genbestillings Level -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,Vælg {0} først +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,Vælg {0} først DocType: Features Setup,To get Item Group in details table,At få Item Group i detaljer tabel apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Batch {0} af Item {1} er udløbet. DocType: Sales Invoice,Commission,Kommissionen @@ -3190,7 +3199,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Få Udestående Vouchers DocType: Warranty Claim,Resolved By,Løst Af DocType: Appraisal,Start Date,Startdato -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Afsætte blade i en periode. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Afsætte blade i en periode. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Checks og Indskud forkert ryddet apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Klik her for at verificere apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Konto {0}: Konto kan ikke samtidig være forældre-konto @@ -3210,7 +3219,7 @@ DocType: Employee,Educational Qualification,Pædagogisk Kvalifikation DocType: Workstation,Operating Costs,Drifts- omkostninger DocType: Employee Leave Approver,Employee Leave Approver,Medarbejder Leave Godkender apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} er blevet føjet til vores nyhedsliste. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Række {0}: En Genbestil indgang findes allerede for dette lager {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Række {0}: En Genbestil indgang findes allerede for dette lager {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Kan ikke erklære så tabt, fordi Citat er blevet gjort." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Indkøb Master manager apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Produktionsordre {0} skal indsendes @@ -3234,7 +3243,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Salg Faktura {0} er allerede blevet indsendt apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Afslutning Dato DocType: Purchase Invoice Item,Amount (Company Currency),Beløb (Company Valuta) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Organisation enhed (departement) herre. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Organisation enhed (departement) herre. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Indtast venligst gyldige mobile nos DocType: Budget Detail,Budget Detail,Budget Detail apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,"Indtast venligst besked, før du sender" @@ -3250,13 +3259,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Modtaget og accepteret ,Serial No Service Contract Expiry,Løbenummer Service Kontrakt udløb DocType: Item,Unit of Measure Conversion,Måleenhed Conversion apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Medarbejder kan ikke ændres -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Du kan ikke kreditere og debitere samme konto på samme tid +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Du kan ikke kreditere og debitere samme konto på samme tid DocType: Naming Series,Help HTML,Hjælp HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Samlet weightage tildelt skulle være 100%. Det er {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Fradrag for over- {0} krydsede for Item {1} DocType: Address,Name of person or organization that this address belongs to.,"Navn på den person eller organisation, der denne adresse tilhører." apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Dine Leverandører -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,Kan ikke indstilles som Lost som Sales Order er foretaget. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,Kan ikke indstilles som Lost som Sales Order er foretaget. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,En anden Løn Struktur {0} er aktiv for medarbejder {1}. Venligst gøre sin status "Inaktiv" for at fortsætte. DocType: Purchase Invoice,Contact,Kontakt apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Modtaget fra @@ -3266,11 +3275,11 @@ DocType: Item,Has Serial No,Har Løbenummer DocType: Employee,Date of Issue,Udstedelsesdato apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: Fra {0} for {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Række # {0}: Indstil Leverandør for vare {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Website Billede {0} er knyttet til Vare {1} kan ikke findes +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Website Billede {0} er knyttet til Vare {1} kan ikke findes DocType: Issue,Content Type,Indholdstype apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Computer DocType: Item,List this Item in multiple groups on the website.,Liste denne vare i flere grupper på hjemmesiden. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,Kontroller venligst Multi Valuta indstilling for at tillade konti med anden valuta +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,Kontroller venligst Multi Valuta indstilling for at tillade konti med anden valuta apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Item: {0} findes ikke i systemet apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Du er ikke autoriseret til at fastsætte Frozen værdi DocType: Payment Reconciliation,Get Unreconciled Entries,Få ikke-afstemte Entries @@ -3280,14 +3289,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Hvad gør de DocType: Delivery Note,To Warehouse,Til Warehouse apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Konto {0} er indtastet mere end en gang for regnskabsåret {1} ,Average Commission Rate,Gennemsnitlig Kommissionens Rate -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'Har serienummer' kan ikke være 'Ja' for ikke-lagervare +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'Har serienummer' kan ikke være 'Ja' for ikke-lagervare apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Fremmøde kan ikke markeres for fremtidige datoer DocType: Pricing Rule,Pricing Rule Help,Prisfastsættelse Rule Hjælp DocType: Purchase Taxes and Charges,Account Head,Konto hoved apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Opdater yderligere omkostninger til at beregne landede udgifter til poster apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Elektrisk DocType: Stock Entry,Total Value Difference (Out - In),Samlet værdi Difference (Out - In) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Række {0}: Valutakursen er obligatorisk +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Række {0}: Valutakursen er obligatorisk apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},Bruger-id ikke indstillet til Medarbejder {0} DocType: Stock Entry,Default Source Warehouse,Standardkilde Warehouse DocType: Item,Customer Code,Customer Kode @@ -3306,15 +3315,15 @@ DocType: Notification Control,Sales Invoice Message,Salg Faktura Message apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Lukning konto {0} skal være af typen Ansvar / Equity DocType: Authorization Rule,Based On,Baseret på DocType: Sales Order Item,Ordered Qty,Bestilt Antal -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Konto {0} er deaktiveret +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Konto {0} er deaktiveret DocType: Stock Settings,Stock Frozen Upto,Stock Frozen Op apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Periode fra og periode datoer obligatorisk for tilbagevendende {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Projektaktivitet / opgave. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Generer lønsedler +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Generer lønsedler apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Opkøb skal kontrolleres, om nødvendigt er valgt som {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Rabat skal være mindre end 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Skriv Off Beløb (Company Valuta) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Række # {0}: Venligst sæt genbestille mængde +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Række # {0}: Venligst sæt genbestille mængde DocType: Landed Cost Voucher,Landed Cost Voucher,Landed Cost Voucher apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},Indstil {0} DocType: Purchase Invoice,Repeat on Day of Month,Gentag på Dag Måned @@ -3366,7 +3375,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Standard Work In Progress Warehouse apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Standardindstillinger regnskabsmæssige transaktioner. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Forventet dato kan ikke være før Material Request Dato -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Vare {0} skal være en Sales Item +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Vare {0} skal være en Sales Item DocType: Naming Series,Update Series Number,Opdatering Series Number DocType: Account,Equity,Egenkapital DocType: Sales Order,Printing Details,Udskrivning Detaljer @@ -3418,7 +3427,7 @@ DocType: Task,Review Date,Anmeldelse Dato DocType: Purchase Invoice,Advance Payments,Forudbetalinger DocType: Purchase Taxes and Charges,On Net Total,On Net Total apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Target lager i rækken {0} skal være samme som produktionsordre -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Ingen tilladelse til at bruge Betaling Tool +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Ingen tilladelse til at bruge Betaling Tool apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,'Notification Email Adresser' er ikke angivet for tilbagevendende %s apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Valuta kan ikke ændres efter at poster ved hjælp af nogle anden valuta DocType: Company,Round Off Account,Afrunde konto @@ -3441,7 +3450,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Mængde post opnået efter fremstilling / ompakning fra givne mængde råvarer DocType: Payment Reconciliation,Receivable / Payable Account,Tilgodehavende / Betales konto DocType: Delivery Note Item,Against Sales Order Item,Mod Sales Order Item -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},Angiv Attribut Værdi for attribut {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},Angiv Attribut Værdi for attribut {0} DocType: Item,Default Warehouse,Standard Warehouse DocType: Task,Actual End Date (via Time Logs),Faktiske Slutdato (via Time Logs) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Budget kan ikke tildeles mod Group konto {0} @@ -3466,10 +3475,10 @@ DocType: Lead,Blog Subscriber,Blog Subscriber apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Oprette regler til at begrænse transaktioner baseret på værdier. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Hvis markeret, Total nej. af Arbejdsdage vil omfatte helligdage, og dette vil reducere værdien af Løn Per Day" DocType: Purchase Invoice,Total Advance,Samlet Advance -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Behandling Payroll +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Behandling Payroll DocType: Opportunity Item,Basic Rate,Grundlæggende Rate DocType: GL Entry,Credit Amount,Credit Beløb -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Sæt som Lost +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Sæt som Lost apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Betaling Kvittering Bemærk DocType: Supplier,Credit Days Based On,Credit Dage Baseret på DocType: Tax Rule,Tax Rule,Skatteregel @@ -3499,7 +3508,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Accepteret Mængde apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} eksisterer ikke apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Regninger rejst til kunder. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Projekt-id -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Række Nej {0}: Beløb kan ikke være større end Afventer Beløb mod Expense krav {1}. Afventer Beløb er {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Række Nej {0}: Beløb kan ikke være større end Afventer Beløb mod Expense krav {1}. Afventer Beløb er {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} abonnenter tilføjet DocType: Maintenance Schedule,Schedule,Køreplan DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Definer budget for denne Cost Center. For at indstille budgettet handling, se "Company List"" @@ -3560,19 +3569,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS profil DocType: Payment Gateway Account,Payment URL Message,Betaling URL Besked apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Sæsonudsving til indstilling budgetter, mål etc." -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Række {0}: Betaling Beløb kan ikke være større end udestående beløb +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Række {0}: Betaling Beløb kan ikke være større end udestående beløb apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Total Ulønnet -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Time Log ikke fakturerbare -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Vare {0} er en skabelon, skal du vælge en af dens varianter" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Time Log ikke fakturerbare +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Vare {0} er en skabelon, skal du vælge en af dens varianter" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Køber apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Nettoløn kan ikke være negativ -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Indtast Against Vouchers manuelt +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Indtast Against Vouchers manuelt DocType: SMS Settings,Static Parameters,Statiske parametre DocType: Purchase Order,Advance Paid,Advance Betalt DocType: Item,Item Tax,Item Skat apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Materiale til leverandøren apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Skattestyrelsen Faktura DocType: Expense Claim,Employees Email Id,Medarbejdere Email Id +DocType: Employee Attendance Tool,Marked Attendance,Markant Deltagelse apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Kortfristede forpligtelser apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Send masse SMS til dine kontakter DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Overvej Skat eller Gebyr for @@ -3595,7 +3605,7 @@ DocType: Item Attribute,Numeric Values,Numeriske værdier apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Vedhæft Logo DocType: Customer,Commission Rate,Kommissionens Rate apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Make Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Blok orlov ansøgninger fra afdelingen. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Blok orlov ansøgninger fra afdelingen. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Er tom Indkøbskurv DocType: Production Order,Actual Operating Cost,Faktiske driftsomkostninger apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Root kan ikke redigeres. @@ -3614,7 +3624,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,Automatisk oprette Materiale Request hvis mængde falder under dette niveau ,Item-wise Purchase Register,Vare-wise Purchase Tilmeld DocType: Batch,Expiry Date,Udløbsdato -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","For at indstille genbestille niveau, skal post være et køb Item eller Manufacturing Vare" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","For at indstille genbestille niveau, skal post være et køb Item eller Manufacturing Vare" ,Supplier Addresses and Contacts,Leverandør Adresser og kontaktpersoner apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,Vælg Kategori først apps/erpnext/erpnext/config/projects.py +18,Project master.,Projekt mester. diff --git a/erpnext/translations/de.csv b/erpnext/translations/de.csv index b7148f62a7..05fb4d2170 100644 --- a/erpnext/translations/de.csv +++ b/erpnext/translations/de.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,(Gut)Haben in Unterneh DocType: Delivery Note,Installation Status,Installationsstatus apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Akzeptierte + abgelehnte Menge muss für diese Position {0} gleich der erhaltenen Menge sein DocType: Item,Supply Raw Materials for Purchase,Rohmaterial für Einkauf bereitstellen -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Artikel {0} muss ein Kaufartikel sein +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Artikel {0} muss ein Kaufartikel sein DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Vorlage herunterladen, passende Daten eintragen und geänderte Datei anfügen. Alle Termine und Mitarbeiter-Kombinationen im gewählten Zeitraum werden in die Vorlage übernommen, inklusive der bestehenden Anwesenheitslisten" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,Artikel {0} ist nicht aktiv oder hat das Ende der Lebensdauer erreicht DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,"Wird aktualisiert, wenn die Ausgangsrechnung übertragen wurde." -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Um Steuern im Artikelpreis in Zeile {0} einzubeziehen, müssen Steuern in den Zeilen {1} ebenfalls einbezogen sein" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Einstellungen für das Personal-Modul +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Um Steuern im Artikelpreis in Zeile {0} einzubeziehen, müssen Steuern in den Zeilen {1} ebenfalls einbezogen sein" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Einstellungen für das Personal-Modul DocType: SMS Center,SMS Center,SMS-Center DocType: BOM Replace Tool,New BOM,Neue Stückliste apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Zeitprotokolle für die Abrechnung bündeln @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,Bitte Geschäftsbedingungen au DocType: Production Planning Tool,Sales Orders,Kundenaufträge DocType: Purchase Taxes and Charges,Valuation,Bewertung ,Purchase Order Trends,Entwicklung Lieferantenaufträge -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Urlaube für ein Jahr zuordnen +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Urlaube für ein Jahr zuordnen DocType: Earning Type,Earning Type,Einkommensart DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Kapazitätsplanung und Zeiterfassung deaktivieren DocType: Bank Reconciliation,Bank Account,Bankkonto @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Artikel-Webseitenspezifikation DocType: Payment Tool,Reference No,Referenznr. apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Urlaub gesperrt -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Artikel {0} hat das Ende seiner Lebensdauer erreicht zum Datum {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Artikel {0} hat das Ende seiner Lebensdauer erreicht zum Datum {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Jährlich DocType: Stock Reconciliation Item,Stock Reconciliation Item,Bestandsabgleich-Artikel DocType: Stock Entry,Sales Invoice No,Ausgangsrechnungs-Nr. @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,Mindestbestellmenge DocType: Pricing Rule,Supplier Type,Lieferantentyp DocType: Item,Publish in Hub,Im Hub veröffentlichen ,Terretory,Region -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Artikel {0} wird storniert +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Artikel {0} wird storniert apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Materialanfrage DocType: Bank Reconciliation,Update Clearance Date,Abwicklungsdatum aktualisieren DocType: Item,Purchase Details,Einkaufsdetails @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Ausschuss-Menge DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Feld ist in Lieferschein, Angebot, Ausgangsrechnung, Kundenauftrag verfügbar" DocType: SMS Settings,SMS Sender Name,SMS-Absendername DocType: Contact,Is Primary Contact,Ist primärer Ansprechpartner +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Zeitprotokoll für Billing-Stapel worden DocType: Notification Control,Notification Control,Benachrichtungseinstellungen DocType: Lead,Suggestions,Vorschläge DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Artikelgruppenbezogene Budgets für diese Region erstellen. Durch Setzen der Auslieferungseinstellungen können auch saisonale Aspekte mit einbezogen werden. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},Bitte die übergeordnete Kontengruppe für das Lager {0} eingeben -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Zahlung zu {0} {1} kann nicht größer als ausstehender Betrag {2} sein +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Zahlung zu {0} {1} kann nicht größer als ausstehender Betrag {2} sein DocType: Supplier,Address HTML,Adresse im HTML-Format DocType: Lead,Mobile No.,Mobilfunknr. DocType: Maintenance Schedule,Generate Schedule,Zeitplan generieren @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Synchronisiert mit Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Falsches Passwort DocType: Item,Variant Of,Variante von -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Artikel {0} muss ein Dienstleistungsartikel sein apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',"Gefertigte Menge kann nicht größer sein als ""Menge für Herstellung""" DocType: Period Closing Voucher,Closing Account Head,Bezeichnung des Abschlusskontos DocType: Employee,External Work History,Externe Arbeits-Historie @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,Newsletter DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Bei Erstellung einer automatischen Materialanfrage per E-Mail benachrichtigen DocType: Journal Entry,Multi Currency,Unterschiedliche Währungen DocType: Payment Reconciliation Invoice,Invoice Type,Rechnungstyp -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Lieferschein +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Lieferschein apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Steuern einrichten apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,"Zahlungsbuchung wurde geändert, nachdem sie abgerufen wurde. Bitte erneut abrufen." -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} in Artikelsteuer doppelt eingegeben +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} in Artikelsteuer doppelt eingegeben apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Zusammenfassung für diese Woche und anstehende Aktivitäten DocType: Workstation,Rent Cost,Mietkosten apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Bitte Monat und Jahr auswählen @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,Gültig für folgende Länder DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Alle mit dem Import verknüpften Felder (wie z. B. Währung, Wechselkurs, Summe Import, Gesamtsumme Import usw.) sind in Kaufbeleg, Lieferantenangebot, Eingangsrechnung, Lieferantenauftrag usw. verfügbar" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"Dieser Artikel ist eine Vorlage und kann nicht in Transaktionen verwendet werden. Artikelattribute werden in die Varianten kopiert, es sein denn es wurde ""nicht kopieren"" ausgewählt" apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Geschätzte Summe der Bestellungen -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Mitarbeiterbezeichnung (z. B. Geschäftsführer, Direktor etc.)" +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Mitarbeiterbezeichnung (z. B. Geschäftsführer, Direktor etc.)" apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,"Bitte Feldwert ""Wiederholung an Tag von Monat"" eingeben" DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,"Kurs, zu dem die Kundenwährung in die Basiswährung des Kunden umgerechnet wird" DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Verfügbar in Stückliste, Lieferschein, Eingangsrechnung, Fertigungsauftrag, Lieferantenauftrag, Kaufbeleg, Ausgangsrechnung, Kundenauftrag, Lagerbuchung, Zeiterfassung" @@ -355,7 +355,7 @@ DocType: Workstation,Consumable Cost,Verbrauchskosten apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',"{0} ({1}) muss die Rolle ""Urlaubsgenehmiger"" haben" DocType: Purchase Receipt,Vehicle Date,Fahrzeug-Datum apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Medizinisch -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Grund für das Verlieren +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Grund für das Verlieren apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Arbeitsplatz ist an folgenden Tagen gemäß der Urlaubsliste geschlossen: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Chancen DocType: Employee,Single,Ledig @@ -383,14 +383,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Vertriebspartner DocType: Account,Old Parent,Alte übergeordnetes Element DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,"Einleitenden Text anpassen, der zu dieser E-Mail gehört. Jede Transaktion hat einen eigenen Einleitungstext." +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Fügen Sie keine Symbole (ex. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Hauptvertriebsleiter apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Allgemeine Einstellungen für alle Fertigungsprozesse DocType: Accounts Settings,Accounts Frozen Upto,Konten gesperrt bis DocType: SMS Log,Sent On,Gesendet am -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Attribut {0} mehrfach in Attributetabelle ausgewäht +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Attribut {0} mehrfach in Attributetabelle ausgewäht DocType: HR Settings,Employee record is created using selected field. ,Mitarbeiter-Datensatz wird erstellt anhand des ausgewählten Feldes. DocType: Sales Order,Not Applicable,Nicht anwenden -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Stammdaten zum Urlaub +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Stammdaten zum Urlaub DocType: Material Request Item,Required Date,Angefragtes Datum DocType: Delivery Note,Billing Address,Rechnungsadresse apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,Bitte die Artikelnummer eingeben @@ -426,7 +427,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,"Bitte das Lager eingeben, für das eine Materialanfrage erhoben wird" DocType: Production Order,Additional Operating Cost,Zusätzliche Betriebskosten apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Kosmetika -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Um zwei Produkte zusammenzuführen, müssen folgende Eigenschaften für beide Produkte gleich sein" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Um zwei Produkte zusammenzuführen, müssen folgende Eigenschaften für beide Produkte gleich sein" DocType: Shipping Rule,Net Weight,Nettogewicht DocType: Employee,Emergency Phone,Notruf ,Serial No Warranty Expiry,Ablaufdatum der Garantie zu Seriennummer @@ -483,17 +484,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Abrechnungs- und Lieferstatus apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Bestandskunden DocType: Leave Control Panel,Allocate,Zuweisen -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Umsatzrendite +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Umsatzrendite DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,"Kundenaufträge auswählen, aus denen Fertigungsaufträge erstellt werden sollen." DocType: Item,Delivered by Supplier (Drop Ship),Geliefert von Lieferant (Streckengeschäft) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Gehaltskomponenten +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Gehaltskomponenten apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Datenbank von potentiellen Kunden DocType: Authorization Rule,Customer or Item,Kunde oder Artikel apps/erpnext/erpnext/config/crm.py +17,Customer database.,Kundendatenbank DocType: Quotation,Quotation To,Angebot für DocType: Lead,Middle Income,Mittleres Einkommen apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Anfangssstand (Haben) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Die Standard-Maßeinheit für Artikel {0} kann nicht direkt geändert werden, weil Sie bereits einige Transaktionen mit einer anderen Maßeinheit durchgeführt haben. Sie müssen einen neuen Artikel erstellen, um eine andere Standard-Maßeinheit verwenden zukönnen." +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Die Standard-Maßeinheit für Artikel {0} kann nicht direkt geändert werden, weil Sie bereits einige Transaktionen mit einer anderen Maßeinheit durchgeführt haben. Sie müssen einen neuen Artikel erstellen, um eine andere Standard-Maßeinheit verwenden zukönnen." apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Zugewiesene Menge kann nicht negativ sein DocType: Purchase Order Item,Billed Amt,Rechnungsbetrag DocType: Warehouse,A logical Warehouse against which stock entries are made.,Ein logisches Lager zu dem Lagerbuchungen gemacht werden. @@ -512,14 +513,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Umsatzsteuern und Gebühren auf d DocType: Employee,Organization Profile,Firmenprofil apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,Bitte Seriennummerierung für Anwesenheiten über Setup > Seriennummerierung einstellen DocType: Employee,Reason for Resignation,Kündigungsgrund -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Vorlage für Mitarbeiterbeurteilungen +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Vorlage für Mitarbeiterbeurteilungen DocType: Payment Reconciliation,Invoice/Journal Entry Details,Einzelheiten zu Rechnungs-/Journalbuchungen apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' nicht im Geschäftsjahr {2} DocType: Buying Settings,Settings for Buying Module,Einstellungen für Einkaufsmodul apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,Bitte zuerst Kaufbeleg eingeben DocType: Buying Settings,Supplier Naming By,Bezeichnung des Lieferanten nach DocType: Activity Type,Default Costing Rate,Standardkosten -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Wartungsplan +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Wartungsplan apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Dann werden Preisregeln bezogen auf Kunde, Kundengruppe, Region, Lieferant, Lieferantentyp, Kampagne, Vertriebspartner usw. ausgefiltert" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Nettoveränderung des Bestands DocType: Employee,Passport Number,Passnummer @@ -558,7 +559,7 @@ DocType: Purchase Invoice,Quarterly,Quartalsweise DocType: Selling Settings,Delivery Note Required,Lieferschein erforderlich DocType: Sales Order Item,Basic Rate (Company Currency),Grundpreis (Firmenwährung) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Rückmeldung Rohmaterialien auf Basis von -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,Bitte Artikel-Details angeben +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,Bitte Artikel-Details angeben DocType: Purchase Receipt,Other Details,Sonstige Einzelheiten DocType: Account,Accounts,Rechnungswesen apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Marketing @@ -571,7 +572,7 @@ DocType: Employee,Provide email id registered in company,Geben Sie die in der Fi DocType: Hub Settings,Seller City,Stadt des Verkäufers DocType: Email Digest,Next email will be sent on:,Nächste E-Mail wird gesendet am: DocType: Offer Letter Term,Offer Letter Term,Gültigkeit des Angebotsschreibens -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Artikel hat Varianten. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Artikel hat Varianten. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Artikel {0} nicht gefunden DocType: Bin,Stock Value,Lagerwert apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Struktur-Typ @@ -579,7 +580,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Verbrauchte Menge pro Einheit DocType: Serial No,Warranty Expiry Date,Garantieablaufdatum DocType: Material Request Item,Quantity and Warehouse,Menge und Lager DocType: Sales Invoice,Commission Rate (%),Provisionssatz (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","""Gegenbeleg"" muss entweder ein Kundenauftrag, eine Eingangsrechnung oder eine Journalbuchung sein" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","""Gegenbeleg"" muss entweder ein Kundenauftrag, eine Eingangsrechnung oder eine Journalbuchung sein" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Luft- und Raumfahrt DocType: Journal Entry,Credit Card Entry,Kreditkarten-Buchung apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Aufgaben-Betreff @@ -666,10 +667,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Verbindlichkeit apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Genehmigter Betrag kann nicht größer als geforderter Betrag in Zeile {0} sein. DocType: Company,Default Cost of Goods Sold Account,Standard-Herstellkosten -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Preisliste nicht ausgewählt +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Preisliste nicht ausgewählt DocType: Employee,Family Background,Familiärer Hintergrund DocType: Process Payroll,Send Email,E-Mail absenden -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Warnung: Ungültige Anlage {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Warnung: Ungültige Anlage {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Keine Berechtigung DocType: Company,Default Bank Account,Standardbankkonto apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Um auf der Grundlage von Gruppen zu filtern, bitte zuerst den Gruppentyp wählen" @@ -697,7 +698,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Suppo DocType: Features Setup,"To enable ""Point of Sale"" features","Um ""Point of Sale""-Funktionen zu aktivieren" DocType: Bin,Moving Average Rate,Wert für den Gleitenden Durchschnitt DocType: Production Planning Tool,Select Items,Artikel auswählen -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} zu Rechnung {1} vom {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} zu Rechnung {1} vom {2} DocType: Maintenance Visit,Completion Status,Fertigstellungsstatus DocType: Sales Invoice Item,Target Warehouse,Eingangslager DocType: Item,Allow over delivery or receipt upto this percent,Überlieferung bis zu diesem Prozentsatz zulassen @@ -757,7 +758,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Stam apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},In den nächsten {0} Tagen kann für den Arbeitsgang {1} kein Zeitfenster gefunden werden DocType: Production Order,Plan material for sub-assemblies,Materialplanung für Unterbaugruppen apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,Stückliste {0} muss aktiv sein -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,Bitte zuerst den Dokumententyp auswählen +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Bitte zuerst den Dokumententyp auswählen apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Goto Wagen apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Materialkontrolle {0} stornieren vor Abbruch dieses Wartungsbesuchs DocType: Salary Slip,Leave Encashment Amount,Urlaubsgeld @@ -775,7 +776,7 @@ DocType: Purchase Receipt,Range,Bandbreite DocType: Supplier,Default Payable Accounts,Standard-Verbindlichkeitenkonten apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Mitarbeiter {0} ist nicht aktiv oder existiert nicht DocType: Features Setup,Item Barcode,Artikelbarcode -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Artikelvarianten {0} aktualisiert +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Artikelvarianten {0} aktualisiert DocType: Quality Inspection Reading,Reading 6,Ablesewert 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Vorkasse zur Eingangsrechnung DocType: Address,Shop,Laden @@ -798,7 +799,7 @@ DocType: Salary Slip,Total in words,Summe in Worten DocType: Material Request Item,Lead Time Date,Lieferzeit und -datum apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,ist zwingend erforderlich. Vielleicht wurde kein Datensatz für den Geldwechsel erstellt für apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Zeile #{0}: Bitte Seriennummer für Artikel {1} angeben -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Für Artikel aus ""Produkt-Bundles"" werden Lager, Seriennummer und Chargennummer aus der Tabelle ""Packliste"" berücksichtigt. Wenn Lager und Chargennummer für alle Packstücke in jedem Artikel eines Produkt-Bundles gleich sind, können diese Werte in die Tabelle ""Hauptpositionen"" eingetragen werden, Die Werte werden in die Tabelle ""Packliste"" kopiert." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Für Artikel aus ""Produkt-Bundles"" werden Lager, Seriennummer und Chargennummer aus der Tabelle ""Packliste"" berücksichtigt. Wenn Lager und Chargennummer für alle Packstücke in jedem Artikel eines Produkt-Bundles gleich sind, können diese Werte in die Tabelle ""Hauptpositionen"" eingetragen werden, Die Werte werden in die Tabelle ""Packliste"" kopiert." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Lieferungen an Kunden DocType: Purchase Invoice Item,Purchase Order Item,Lieferantenauftrags-Artikel apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Indirekte Erträge @@ -819,6 +820,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Jahr und Monat der Gehalt apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""","Zur entsprechenden Gruppe gehen (normalerweise ""Mittelverwendung"" > ""Umlaufvermögen"" > ""Bankkonten"") und durck Klicken auf ""Unterpunkt hinzufügen"" ein neues Konto vom Typ ""Bank"" erstellen" DocType: Workstation,Electricity Cost,Stromkosten DocType: HR Settings,Don't send Employee Birthday Reminders,Keine Mitarbeitergeburtstagserinnerungen senden +,Employee Holiday Attendance,Mitarbeiterferien Teilnahme DocType: Opportunity,Walk In,Laufkundschaft apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Lizenz Einträge DocType: Item,Inspection Criteria,Prüfkriterien @@ -841,7 +843,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,L DocType: Journal Entry Account,Expense Claim,Aufwandsabrechnung apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Menge für {0} DocType: Leave Application,Leave Application,Urlaubsantrag -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Urlaubszuordnungs-Werkzeug +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Urlaubszuordnungs-Werkzeug DocType: Leave Block List,Leave Block List Dates,Urlaubssperrenliste Termine DocType: Company,If Monthly Budget Exceeded (for expense account),Wenn das monatliche Budget überschritten ist (für Aufwandskonto) DocType: Workstation,Net Hour Rate,Nettostundensatz @@ -851,7 +853,7 @@ DocType: Packing Slip Item,Packing Slip Item,Position auf dem Packzettel DocType: POS Profile,Cash/Bank Account,Bar-/Bankkonto apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Artikel wurden ohne Veränderung der Menge oder des Wertes entfernt. DocType: Delivery Note,Delivery To,Lieferung an -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Attributtabelle ist zwingend erforderlich +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Attributtabelle ist zwingend erforderlich DocType: Production Planning Tool,Get Sales Orders,Kundenaufträge aufrufen apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} kann nicht negativ sein apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Rabatt @@ -915,7 +917,7 @@ DocType: SMS Center,Total Characters,Gesamtanzahl Zeichen apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},Bitte aus dem Stücklistenfeld eine Stückliste für Artikel {0} auswählen DocType: C-Form Invoice Detail,C-Form Invoice Detail,Kontakt-Formular Rechnungsdetail DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Rechnung zum Zahlungsabgleich -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Beitrag in % +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Beitrag in % DocType: Item,website page link,Webseiten-Verknüpfung DocType: Company,Company registration numbers for your reference. Tax numbers etc.,Meldenummern des Unternehmens für Ihre Unterlagen. Steuernummern usw. DocType: Sales Partner,Distributor,Lieferant @@ -957,10 +959,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,Maßeinheit-Umrechnungsfaktor DocType: Stock Settings,Default Item Group,Standard-Artikelgruppe apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Lieferantendatenbank DocType: Account,Balance Sheet,Bilanz -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Kostenstelle für den Artikel mit der Artikel-Nr. +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Kostenstelle für den Artikel mit der Artikel-Nr. DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,"Ihr Vertriebsmitarbeiter erhält an diesem Datum eine Erinnerung, den Kunden zu kontaktieren" apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Weitere Konten können unter Gruppen angelegt werden, aber Buchungen können zu nicht-Gruppen erstellt werden" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Steuer und sonstige Gehaltsabzüge +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Steuer und sonstige Gehaltsabzüge DocType: Lead,Lead,Lead DocType: Email Digest,Payables,Verbindlichkeiten DocType: Account,Warehouse,Lager @@ -977,10 +979,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Nicht abgeglichene DocType: Global Defaults,Current Fiscal Year,Laufendes Geschäftsjahr DocType: Global Defaults,Disable Rounded Total,Gerundete Gesamtsumme deaktivieren DocType: Lead,Call,Anruf -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,"""Buchungen"" kann nicht leer sein" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,"""Buchungen"" kann nicht leer sein" apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Doppelte Zeile {0} mit dem gleichen {1} ,Trial Balance,Probebilanz -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Mitarbeiter anlegen +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Mitarbeiter anlegen apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","Verzeichnis """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,Bitte zuerst Präfix auswählen apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Forschung @@ -989,7 +991,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,Benutzer-ID apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Hauptbuch anzeigen apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Frühestens -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group",Eine Artikelgruppe mit dem gleichen Namen existiert bereits. Bitte den Artikelnamen ändern oder die Artikelgruppe umbenennen +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group",Eine Artikelgruppe mit dem gleichen Namen existiert bereits. Bitte den Artikelnamen ändern oder die Artikelgruppe umbenennen DocType: Production Order,Manufacture against Sales Order,Auftragsfertigung apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Rest der Welt apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,Der Artikel {0} kann keine Charge haben @@ -1014,7 +1016,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Ausschusslager DocType: GL Entry,Against Voucher,Gegenbeleg DocType: Item,Default Buying Cost Center,Standard-Einkaufskostenstelle apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Um ERPNext bestmöglich zu nutzen, empfehlen wir Ihnen, sich die Zeit zu nehmen diese Hilfevideos anzusehen." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Artikel {0} muss ein Verkaufsartikel sein +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Artikel {0} muss ein Verkaufsartikel sein apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,nach DocType: Item,Lead Time in days,Lieferzeit in Tagen ,Accounts Payable Summary,Übersicht der Verbindlichkeiten @@ -1040,7 +1042,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Landwirtschaft apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Ihre Produkte oder Dienstleistungen DocType: Mode of Payment,Mode of Payment,Zahlungsweise -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Das Webseiten-Bild sollte eine öffentliche Datei oder eine Webseiten-URL sein +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Das Webseiten-Bild sollte eine öffentliche Datei oder eine Webseiten-URL sein apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,Dies ist eine Root-Artikelgruppe und kann nicht bearbeitet werden. DocType: Journal Entry Account,Purchase Order,Lieferantenauftrag DocType: Warehouse,Warehouse Contact Info,Kontaktinformation des Lager @@ -1051,7 +1053,7 @@ DocType: Serial No,Serial No Details,Details zur Seriennummer DocType: Purchase Invoice Item,Item Tax Rate,Artikelsteuersatz apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry",Für {0} können nur Habenkonten mit einer weiteren Sollbuchung verknüpft werden apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Lieferschein {0} wurde nicht übertragen -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Artikel {0} muss ein unterbeauftragter Artikel sein +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Artikel {0} muss ein unterbeauftragter Artikel sein apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Betriebsvermögen apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Die Preisregel wird zunächst basierend auf dem Feld ""Anwenden auf"" ausgewählt. Dieses kann ein Artikel, eine Artikelgruppe oder eine Marke sein." DocType: Hub Settings,Seller Website,Webseite des Verkäufers @@ -1060,7 +1062,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Ziel DocType: Sales Invoice Item,Edit Description,Beschreibung bearbeiten apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Voraussichtlicher Liefertermin liegt vor dem geplanten Starttermin. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,Für Lieferant +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,Für Lieferant DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Das Festlegen des Kontotyps hilft bei der Auswahl dieses Kontos bei Transaktionen. DocType: Purchase Invoice,Grand Total (Company Currency),Gesamtbetrag (Firmenwährung) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Summe Auslieferungen @@ -1112,7 +1114,6 @@ DocType: Authorization Rule,Average Discount,Durchschnittlicher Rabatt DocType: Address,Utilities,Dienstprogramme DocType: Purchase Invoice Item,Accounting,Buchhaltung DocType: Features Setup,Features Setup,Funktionen einstellen -DocType: Item,Is Service Item,Ist Dienstleistung apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Beantragter Zeitraum kann nicht außerhalb der beantragten Urlaubszeit liegen DocType: Activity Cost,Projects,Projekte apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,Bitte Geschäftsjahr auswählen @@ -1133,7 +1134,7 @@ DocType: Item,Maintain Stock,Lager verwalten apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Es wurden bereits Lagerbuchungen zum Fertigungsauftrag erstellt apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Nettoveränderung des Anlagevermögens DocType: Leave Control Panel,Leave blank if considered for all designations,"Freilassen, wenn für alle Einstufungen gültig" -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,"Kosten für den Typ ""real"" in Zeile {0} können nicht in den Artikelpreis mit eingeschlossen werden" +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,"Kosten für den Typ ""real"" in Zeile {0} können nicht in den Artikelpreis mit eingeschlossen werden" apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Von Datum und Uhrzeit DocType: Email Digest,For Company,Für Firma @@ -1142,8 +1143,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Lieferadresse apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Kontenplan DocType: Material Request,Terms and Conditions Content,Allgemeine Geschäftsbedingungen Inhalt -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,Kann nicht größer als 100 sein -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Artikel {0} ist kein Lagerartikel +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,Kann nicht größer als 100 sein +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Artikel {0} ist kein Lagerartikel DocType: Maintenance Visit,Unscheduled,Außerplanmäßig DocType: Employee,Owned,Im Besitz von DocType: Salary Slip Deduction,Depends on Leave Without Pay,Hängt von unbezahltem Urlaub ab @@ -1164,7 +1165,7 @@ Used for Taxes and Charges",Die Tabelle Steuerdetails wird aus dem Artikelstamm apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Mitarbeiter können nicht an sich selbst Bericht erstatten DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Wenn das Konto gesperrt ist, sind einem eingeschränkten Benutzerkreis Buchungen erlaubt." DocType: Email Digest,Bank Balance,Kontostand -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Eine Buchung für {0}: {1} kann nur in der Währung: {2} vorgenommen werden +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Eine Buchung für {0}: {1} kann nur in der Währung: {2} vorgenommen werden apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Keine aktive Gehaltsstruktur gefunden für Mitarbeiter {0} und Monat DocType: Job Opening,"Job profile, qualifications required etc.","Stellenbeschreibung, erforderliche Qualifikationen usw." DocType: Journal Entry Account,Account Balance,Kontostand @@ -1181,7 +1182,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Unterbaugrupp DocType: Shipping Rule Condition,To Value,Bis-Wert DocType: Supplier,Stock Manager,Leitung Lager apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Ausgangslager ist für Zeile {0} zwingend erforderlich -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Packzettel +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Packzettel apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Büromiete apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Einstellungen für SMS-Gateway verwalten apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Import fehlgeschlagen ! @@ -1225,7 +1226,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,Stückliste Detailnr. DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Zusätzlicher Rabatt (Firmenwährung) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Fehler: {0} > {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,Bitte neues Konto aus dem Kontenplan erstellen. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Wartungsbesuch +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Wartungsbesuch apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Kunde > Kundengruppe > Region DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Verfügbare Losgröße im Lager DocType: Time Log Batch Detail,Time Log Batch Detail,Zeitprotokollstapel-Detail @@ -1234,7 +1235,7 @@ DocType: Leave Block List,Block Holidays on important days.,Urlaub an wichtigen ,Accounts Receivable Summary,Übersicht der Forderungen apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,"Bitte in einem Mitarbeiterdatensatz das Feld Nutzer-ID setzen, um die Rolle Mitarbeiter zuzuweisen" DocType: UOM,UOM Name,Maßeinheit-Name -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Beitragshöhe +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Beitragshöhe DocType: Sales Invoice,Shipping Address,Versandadresse DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,"Dieses Werkzeug hilft Ihnen dabei, die Menge und die Bewertung von Bestand im System zu aktualisieren oder zu ändern. Es wird in der Regel verwendet, um die Systemwerte und den aktuellen Bestand Ihrer Lager zu synchronisieren." DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,"""In Worten"" wird sichtbar, sobald Sie den Lieferschein speichern." @@ -1275,7 +1276,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,"Wird verwendet, um Artikel über den Barcode nachzuverfolgen. Durch das Scannen des Artikelbarcodes können Artikel in einen Lieferschein und eine Ausgangsrechnung eingegeben werden." apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Erneut senden Zahlung per E-Mail DocType: Dependent Task,Dependent Task,Abhängige Aufgabe -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Umrechnungsfaktor für Standardmaßeinheit muss in Zeile {0} 1 sein +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Umrechnungsfaktor für Standardmaßeinheit muss in Zeile {0} 1 sein apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Abwesenheit vom Typ {0} kann nicht länger sein als {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Arbeitsgänge für X Tage im Voraus planen. DocType: HR Settings,Stop Birthday Reminders,Geburtstagserinnerungen ausschalten @@ -1285,7 +1286,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} anzeigen apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Nettoveränderung der Barmittel DocType: Salary Structure Deduction,Salary Structure Deduction,Gehaltsstruktur-Abzug -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Maßeinheit {0} wurde mehr als einmal in die Umrechnungsfaktor-Tabelle eingetragen +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Maßeinheit {0} wurde mehr als einmal in die Umrechnungsfaktor-Tabelle eingetragen apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Zahlungsanordnung bereits vorhanden ist {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Aufwendungen für in Umlauf gebrachte Artikel apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Menge darf nicht mehr als {0} sein @@ -1314,7 +1315,7 @@ DocType: BOM Item,BOM Item,Stücklisten-Artikel DocType: Appraisal,For Employee,Für Mitarbeiter apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Row {0}: Voraus gegen Lieferant muss belasten werden DocType: Company,Default Values,Standardwerte -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Zeile {0}: Zahlungsbetrag kann nicht negativ sein +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Zeile {0}: Zahlungsbetrag kann nicht negativ sein DocType: Expense Claim,Total Amount Reimbursed,Gesamterstattungsbetrag apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Zu Eingangsrechnung {0} vom {1} DocType: Customer,Default Price List,Standardpreisliste @@ -1342,8 +1343,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Gar DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Eine bestimmte Stückliste in allen anderen Stücklisten austauschen, in denen sie eingesetzt wird. Ersetzt die Verknüpfung zur alten Stücklisten, aktualisiert die Kosten und erstellt die Tabelle ""Stücklistenerweiterung Artikel"" nach der neuen Stückliste" DocType: Shopping Cart Settings,Enable Shopping Cart,Warenkorb aktivieren DocType: Employee,Permanent Address,Feste Adresse -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Artikel {0} muss ein Dienstleistungsartikel sein. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Anzahlung zu {0} {1} kann nicht größer sein als als Gesamtsumme {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Bitte Artikelnummer auswählen DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Abzug für unbezahlten Urlaub (LWP) vermindern @@ -1399,12 +1399,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Haupt apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Variante DocType: Naming Series,Set prefix for numbering series on your transactions,Präfix für die Seriennummerierung Ihrer Transaktionen festlegen +DocType: Employee Attendance Tool,Employees HTML,Mitarbeiter HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,"Angehaltener Auftrag kann nicht abgebrochen werden. Bitte zuerst fortsetzen, um dann abzubrechen." -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Standardstückliste ({0}) muss für diesen Artikel oder dessen Vorlage aktiv sein +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Standardstückliste ({0}) muss für diesen Artikel oder dessen Vorlage aktiv sein DocType: Employee,Leave Encashed?,Urlaub eingelöst? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,"Feld ""Opportunity von"" ist zwingend erforderlich" DocType: Item,Variants,Varianten -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Lieferantenauftrag erstellen +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Lieferantenauftrag erstellen DocType: SMS Center,Send To,Senden an apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Es gibt nicht genügend verfügbaren Urlaub für Urlaubstyp {0} DocType: Payment Reconciliation Payment,Allocated amount,Zugewiesene Menge @@ -1504,7 +1505,7 @@ DocType: Sales Person,Name and Employee ID,Name und Mitarbeiter-ID apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,Fälligkeitsdatum kann nicht vor dem Buchungsdatum liegen DocType: Website Item Group,Website Item Group,Webseiten-Artikelgruppe apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Zölle und Steuern -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,Bitte den Stichtag eingeben +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,Bitte den Stichtag eingeben apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Payment Gateway Konto ist nicht konfiguriert apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} Zahlungsbuchungen können nicht nach {1} gefiltert werden DocType: Item Website Specification,Table for Item that will be shown in Web Site,"Tabelle für Artikel, der auf der Webseite angezeigt wird" @@ -1525,7 +1526,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Details zur Entscheidung DocType: Quality Inspection Reading,Acceptance Criteria,Akzeptanzkriterien DocType: Item Attribute,Attribute Name,Attributname -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Artikel {0} muss ein Verkaufs- oder Dienstleistungsartikel sein in {1} DocType: Item Group,Show In Website,Auf der Webseite anzeigen apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Gruppe DocType: Task,Expected Time (in hours),Voraussichtliche Zeit (in Stunden) @@ -1557,7 +1557,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Versandbetrag ,Pending Amount,Ausstehender Betrag DocType: Purchase Invoice Item,Conversion Factor,Umrechnungsfaktor DocType: Purchase Order,Delivered,Geliefert -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),E-Mail-Adresse für Bewerbungen einrichten. (z. B. jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),E-Mail-Adresse für Bewerbungen einrichten. (z. B. jobs@example.com) DocType: Purchase Receipt,Vehicle Number,Fahrzeugnummer DocType: Purchase Invoice,The date on which recurring invoice will be stop,"Das Datum, an dem wiederkehrende Rechnungen angehalten werden" apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Die Gesamtmenge des beantragten Urlaubs {0} kann nicht kleiner sein als die bereits genehmigten Urlaube {1} für den Zeitraum @@ -1574,7 +1574,7 @@ DocType: HR Settings,HR Settings,Einstellungen zum Modul Personalwesen apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Aufwandsabrechnung wartet auf Bewilligung. Nur der Ausgabenbewilliger kann den Status aktualisieren. DocType: Purchase Invoice,Additional Discount Amount,Zusätzlicher Rabatt DocType: Leave Block List Allow,Leave Block List Allow,Urlaubssperrenliste zulassen -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,"""Abbr"" kann nicht leer oder Space sein" +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,"""Abbr"" kann nicht leer oder Space sein" apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Gruppe an konzernfremde apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Sport apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Summe Tatsächlich @@ -1598,7 +1598,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},Maßeinheit-Umrechnungsfaktor ist erforderlich in der Zeile {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Abwicklungsdatum kann nicht vor dem Prüfdatum in Zeile {0} liegen DocType: Salary Slip,Deduction,Abzug -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Artikel Preis hinzugefügt für {0} in Preisliste {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Artikel Preis hinzugefügt für {0} in Preisliste {1} DocType: Address Template,Address Template,Adressvorlage apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,Bitte die Mitarbeiter-ID dieses Vertriebsmitarbeiters angeben DocType: Territory,Classification of Customers by region,Einteilung der Kunden nach Region @@ -1615,7 +1615,7 @@ DocType: Employee,Date of Birth,Geburtsdatum apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Artikel {0} wurde bereits zurück gegeben DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,"""Geschäftsjahr"" steht für ein Finazgeschäftsjahr. Alle Buchungen und anderen größeren Transaktionen werden mit dem ""Geschäftsjahr"" verglichen." DocType: Opportunity,Customer / Lead Address,Kunden/Lead-Adresse -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Warnung: Ungültiges SSL-Zertifikat für Anlage {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Warnung: Ungültiges SSL-Zertifikat für Anlage {0} DocType: Production Order Operation,Actual Operation Time,Tatsächliche Betriebszeit DocType: Authorization Rule,Applicable To (User),Anwenden auf (Benutzer) DocType: Purchase Taxes and Charges,Deduct,Abziehen @@ -1632,7 +1632,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Lieferschein in Pakete aufteilen apps/erpnext/erpnext/hooks.py +69,Shipments,Lieferungen DocType: Purchase Order Item,To be delivered to customer,Zur Auslieferung an den Kunden -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,"Status des Zeitprotokolls muss ""übertragen"" sein" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,"Status des Zeitprotokolls muss ""übertragen"" sein" apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,Seriennummer {0} gehört zu keinem Lager apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Zeile # DocType: Purchase Invoice,In Words (Company Currency),In Worten (Firmenwährung) @@ -1649,7 +1649,7 @@ DocType: Leave Application,Total Leave Days,Urlaubstage insgesamt DocType: Email Digest,Note: Email will not be sent to disabled users,Hinweis: E-Mail wird nicht an gesperrte Nutzer gesendet apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Firma auswählen... DocType: Leave Control Panel,Leave blank if considered for all departments,"Freilassen, wenn für alle Abteilungen gültig" -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Art der Beschäftigung (Unbefristeter Vertrag, befristeter Vertrag, Praktikum etc.)" +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Art der Beschäftigung (Unbefristeter Vertrag, befristeter Vertrag, Praktikum etc.)" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} Artikel ist zwingend erfoderlich für {1} DocType: Currency Exchange,From Currency,Von Währung apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Bitte zugewiesenen Betrag, Rechnungsart und Rechnungsnummer in mindestens einer Zeile auswählen" @@ -1668,7 +1668,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,Während des Fertigungsprozesses DocType: Authorization Rule,Itemwise Discount,Artikelbezogener Rabatt DocType: Purchase Order Item,Reference Document Type,Referenz-Dokumententyp -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} zu Kundenauftrag{1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} zu Kundenauftrag{1} DocType: Account,Fixed Asset,Anlagevermögen apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Serialisierter Lagerbestand DocType: Activity Type,Default Billing Rate,Standard-Rechnungspreis @@ -1678,7 +1678,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Vom Kundenauftrag zum Zahlungseinang DocType: Expense Claim Detail,Expense Claim Detail,Aufwandsabrechnungsdetail apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Zeitprotokolle erstellt: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,Bitte richtiges Konto auswählen +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,Bitte richtiges Konto auswählen DocType: Item,Weight UOM,Gewichts-Maßeinheit DocType: Employee,Blood Group,Blutgruppe DocType: Purchase Invoice Item,Page Break,Seitenumbruch @@ -1713,7 +1713,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},Stücklisten-Rekursion: {0} kann nicht übergeordnetes Element oder Unterpunkt von {2} sein DocType: Production Order Operation,Completed Qty,Gefertigte Menge apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry",Für {0} können nur Sollkonten mit einer weiteren Habenbuchung verknüpft werden -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Preisliste {0} ist deaktiviert +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Preisliste {0} ist deaktiviert DocType: Manufacturing Settings,Allow Overtime,Überstunden zulassen apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} Seriennummern für Artikel {1} erforderlich. Sie haben {2} zur Verfügung gestellt. DocType: Stock Reconciliation Item,Current Valuation Rate,Aktueller Wertansatz @@ -1764,7 +1764,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Kein apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Fall-Nr. kann nicht 0 sein DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,"Wenn es ein Vertriebsteam und Handelspartner (Partner für Vertriebswege) gibt, können diese in der Übersicht der Vertriebsaktivitäten markiert und ihr Anteil an den Vertriebsaktivitäten eingepflegt werden" DocType: Item,Show a slideshow at the top of the page,Diaschau oben auf der Seite anzeigen -DocType: Item,"Allow in Sales Order of type ""Service""","Kundenaufträge des Typs ""Dienstleistung"" zulassen" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Lagerräume DocType: Time Log,Projects Manager,Projektleiter DocType: Serial No,Delivery Time,Zeitpunkt der Lieferung @@ -1779,6 +1778,7 @@ DocType: Rename Tool,Rename Tool,Werkzeug zum Umbenennen apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Kosten aktualisieren DocType: Item Reorder,Item Reorder,Artikelnachbestellung apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Material übergeben +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Artikel {0} muss ein Verkaufseinzelteil in sein {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.",Arbeitsgänge und Betriebskosten angeben und eine eindeutige Arbeitsgang-Nr. für diesen Arbeitsgang angeben. DocType: Purchase Invoice,Price List Currency,Preislistenwährung DocType: Naming Series,User must always select,Benutzer muss immer auswählen @@ -1799,7 +1799,7 @@ DocType: Appraisal,Employee,Mitarbeiter apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Import von E-Mails aus apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Als Benutzer einladen DocType: Features Setup,After Sale Installations,After Sale-Installationen -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} wird voll in Rechnung gestellt +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} wird voll in Rechnung gestellt DocType: Workstation Working Hour,End Time,Endzeit apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Allgemeine Vertragsbedingungen für den Verkauf und Einkauf apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Gruppieren nach Beleg @@ -1825,7 +1825,7 @@ DocType: Upload Attendance,Attendance To Date,Anwesenheit bis Datum apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),E-Mail-Adresse für den Vertrieb einrichten. (z. B. sales@example.com) DocType: Warranty Claim,Raised By,Gemeldet von DocType: Payment Gateway Account,Payment Account,Zahlungskonto -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,Bitte Firma angeben um fortzufahren +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,Bitte Firma angeben um fortzufahren apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Nettoveränderung der Forderungen apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Ausgleich für DocType: Quality Inspection Reading,Accepted,Genehmigt @@ -1837,14 +1837,14 @@ DocType: Shipping Rule,Shipping Rule Label,Bezeichnung der Versandregel apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Rohmaterial kann nicht leer sein apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Lager konnte nicht aktualisiert werden, Rechnung enthält Streckenhandel-Artikel." DocType: Newsletter,Test,Test -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Da es bestehende Lagertransaktionen für diesen Artikel gibt, können die Werte von ""Hat Seriennummer"", ""Hat Losnummer"", ""Ist Lagerartikel"" und ""Bewertungsmethode"" nicht geändert werden" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Schnellbuchung apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,"Sie können den Preis nicht ändern, wenn eine Stückliste für einen Artikel aufgeführt ist" DocType: Employee,Previous Work Experience,Vorherige Berufserfahrung DocType: Stock Entry,For Quantity,Für Menge apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},Bitte die geplante Menge für Artikel {0} in Zeile {1} eingeben -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} wurde nicht übertragen +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} wurde nicht übertragen apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Artikelanfragen DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Für jeden zu fertigenden Artikel wird ein separater Fertigungsauftrag erstellt. DocType: Purchase Invoice,Terms and Conditions1,Allgemeine Geschäftsbedingungen1 @@ -1869,6 +1869,7 @@ DocType: Notification Control,Expense Claim Approved Message,Benachrichtigung ü DocType: Email Digest,How frequently?,Wie häufig? DocType: Purchase Receipt,Get Current Stock,Aktuellen Lagerbestand aufrufen apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Stücklistenstruktur +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Mark Geschenk apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Startdatum der Wartung kann nicht vor dem Liefertermin für Seriennummer {0} liegen DocType: Production Order,Actual End Date,Tatsächliches Enddatum DocType: Authorization Rule,Applicable To (Role),Anwenden auf (Rolle) @@ -1883,7 +1884,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Vertragsende muss weiter in der Zukunft liegen als Eintrittsdatum sein DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,"Ein Drittanbieter/Händler/Kommissionär/verbundenes Unternehmen/Wiederverkäufer, der die Produkte auf Provisionsbasis verkauft." DocType: Customer Group,Has Child Node,Unterknoten vorhanden -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} zu Lieferantenauftrag {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} zu Lieferantenauftrag {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Statische URL-Parameter hier eingeben (z. B. Absender=ERPNext, Benutzername=ERPNext, Passwort=1234 usw.)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,"{0} {1} ist in keinem aktiven Geschäftsjahr. Für weitere Details, bitte {2} prüfen." apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,"Dies ist eine Beispiel-Webseite, von ERPNext automatisch generiert" @@ -1931,7 +1932,7 @@ Der Steuersatz, den sie hier definieren, wird der Standardsteuersatz für alle A 10. Hinzufügen oder abziehen: Gibt an, ob die Steuer/Abgabe hinzugefügt oder abgezogen wird." DocType: Purchase Receipt Item,Recd Quantity,Erhaltene Menge apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},"Es können nicht mehr Artikel {0} produziert werden, als die über Kundenaufträge bestellte Stückzahl {1}" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Lagerbuchung {0} wurde nicht übertragen +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Lagerbuchung {0} wurde nicht übertragen DocType: Payment Reconciliation,Bank / Cash Account,Bank / Geldkonto DocType: Tax Rule,Billing City,Stadt laut Rechnungsadresse DocType: Global Defaults,Hide Currency Symbol,Währungssymbol ausblenden @@ -1957,7 +1958,7 @@ DocType: Salary Structure,Total Earning,Gesamteinnahmen DocType: Purchase Receipt,Time at which materials were received,"Zeitpunkt, zu dem Materialien empfangen wurden" apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Meine Adressen DocType: Stock Ledger Entry,Outgoing Rate,Verkaufspreis -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Stammdaten zu Unternehmensfilialen +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Stammdaten zu Unternehmensfilialen apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,oder DocType: Sales Order,Billing Status,Abrechnungsstatus apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Versorgungsaufwendungen @@ -1995,7 +1996,7 @@ DocType: Bin,Reserved Quantity,Reservierte Menge DocType: Landed Cost Voucher,Purchase Receipt Items,Kaufbeleg-Artikel apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Formulare anpassen DocType: Account,Income Account,Ertragskonto -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Auslieferung +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Auslieferung DocType: Stock Reconciliation Item,Current Qty,Aktuelle Anzahl DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",Siehe „Anteil der zu Grunde liegenden Materialien“ im Abschnitt Kalkulation DocType: Appraisal Goal,Key Responsibility Area,Wichtigster Verantwortungsbereich @@ -2007,8 +2008,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,Bel DocType: Notification Control,Purchase Order Message,Lieferantenauftrags-Nachricht DocType: Tax Rule,Shipping Country,Zielland der Lieferung DocType: Upload Attendance,Upload HTML,HTML hochladen -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})",Summe der Anzahlungen ({0}) zu Bestellung {1} kann nicht größer sein als die Gesamtsumme ({2}) DocType: Employee,Relieving Date,Freistellungsdatum apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.",Die Preisregel überschreibt die Preisliste. Bitte einen Rabattsatz aufgrund bestimmter Kriterien definieren. DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Lager kann nur über Lagerbuchung / Lieferschein / Kaufbeleg geändert werden @@ -2018,8 +2017,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Einko apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Wenn für ""Preis"" eine Preisregel ausgewählt wurde, wird die Preisliste überschrieben. Der Preis aus der Preisregel ist der endgültige Preis, es sollte also kein weiterer Rabatt gewährt werden. Daher wird er in Transaktionen wie Kundenauftrag, Lieferantenauftrag etc., vorrangig aus dem Feld ""Preis"" gezogen, und dann erst aus dem Feld ""Preisliste""." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Leads nach Branchentyp nachverfolgen DocType: Item Supplier,Item Supplier,Artikellieferant -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,Bitte die Artikelnummer eingeben um die Chargennummer zu erhalten -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},Bitte einen Wert für {0} Angebot an {1} auswählen +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,Bitte die Artikelnummer eingeben um die Chargennummer zu erhalten +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},Bitte einen Wert für {0} Angebot an {1} auswählen apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Alle Adressen DocType: Company,Stock Settings,Lager-Einstellungen apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Zusammenführung ist nur möglich, wenn folgende Eigenschaften in beiden Datensätzen identisch sind: Gruppe, Root-Typ, Firma" @@ -2042,7 +2041,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Schecknummer DocType: Payment Tool Detail,Payment Tool Detail,Zahlungswerkzeug-Details ,Sales Browser,Vertriebs-Browser DocType: Journal Entry,Total Credit,Gesamt-Haben -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Achtung: Zu Lagerbuchung {2} gibt es eine andere Gegenbuchung {0} # {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Achtung: Zu Lagerbuchung {2} gibt es eine andere Gegenbuchung {0} # {1} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Lokal apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Darlehen und Anzahlungen (Aktiva) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Schuldner @@ -2062,8 +2061,8 @@ DocType: Price List,Price List Master,Preislisten-Vorlagen DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,"Alle Verkaufstransaktionen können für mehrere verschiedene ""Vertriebsmitarbeiter"" markiert werden, so dass Ziele festgelegt und überwacht werden können." ,S.O. No.,Nummer der Lieferantenbestellung DocType: Production Order Operation,Make Time Log,Zeitprotokoll erstellen -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Bitte Nachbestellmenge einstellen -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},Bitte Kunden aus Lead {0} erstellen +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Bitte Nachbestellmenge einstellen +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},Bitte Kunden aus Lead {0} erstellen DocType: Price List,Applicable for Countries,Anwenden für Länder apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Rechner apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,Dies ist eine Root-Kundengruppe und kann nicht bearbeitet werden. @@ -2111,7 +2110,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Abrech DocType: Payment Reconciliation Invoice,Outstanding Amount,Ausstehender Betrag DocType: Project Task,Working,In Bearbeitung DocType: Stock Ledger Entry,Stock Queue (FIFO),Lagerverfahren (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Bitte Zeitprotokolle auswählen. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Bitte Zeitprotokolle auswählen. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} gehört nicht zu Firma {1} DocType: Account,Round Off,Abschliessen ,Requested Qty,Angeforderte Menge @@ -2149,7 +2148,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Zutreffende Buchungen aufrufen apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Lagerbuchung DocType: Sales Invoice,Sales Team1,Verkaufsteam1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Artikel {0} existiert nicht +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Artikel {0} existiert nicht DocType: Sales Invoice,Customer Address,Kundenadresse DocType: Payment Request,Recipient and Message,Empfänger und Message DocType: Purchase Invoice,Apply Additional Discount On,Zusätzlichen Rabatt gewähren auf @@ -2168,7 +2167,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Mute Email apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Lebensmittel, Getränke und Tabak" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL oder BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Zahlung kann nur zu einer noch nicht abgerechneten {0} erstellt werden +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Zahlung kann nur zu einer noch nicht abgerechneten {0} erstellt werden apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Provisionssatz kann nicht größer als 100 sein apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Mindestbestandshöhe DocType: Stock Entry,Subcontract,Zulieferer @@ -2186,9 +2185,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Software apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Farbe DocType: Maintenance Visit,Scheduled,Geplant apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Bitte einen Artikel auswählen, bei dem ""Ist Lagerartikel"" mit ""Nein"" und ""Ist Verkaufsartikel"" mit ""Ja"" bezeichnet ist, und es kein anderes Produkt-Bundle gibt" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Insgesamt Voraus ({0}) gegen Bestellen {1} kann nicht größer sein als die Gesamtsumme ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,"Bitte ""Monatsweise Verteilung"" wählen, um Ziele ungleichmäßig über Monate zu verteilen." DocType: Purchase Invoice Item,Valuation Rate,Wertansatz -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Preislistenwährung nicht ausgewählt +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Preislistenwährung nicht ausgewählt apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,"Artikel Zeile {0}: Kaufbeleg {1} existiert nicht in der obigen Tabelle ""Eingangslieferscheine""" apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Mitarbeiter {0} hat sich bereits für {1} zwischen {2} und {3} beworben apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Startdatum des Projekts @@ -2200,6 +2200,7 @@ DocType: Quality Inspection,Inspection Type,Art der Prüfung apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},Bitte {0} auswählen DocType: C-Form,C-Form No,Kontakt-Formular-Nr. DocType: BOM,Exploded_items,Aufgelöste Artikel +DocType: Employee Attendance Tool,Unmarked Attendance,Unmarkierte Teilnahme apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Wissenschaftler apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,Bitte den Newsletter vor dem Senden speichern apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Name oder E-Mail-Adresse ist zwingend erforderlich @@ -2225,7 +2226,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Bestät DocType: Payment Gateway,Gateway,Tor apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Lieferant > Lieferantentyp apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Bitte Freistellungsdatum eingeben. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Menge +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Menge apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,"Nur Urlaubsanträge mit dem Status ""Genehmigt"" können übertragen werden" apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Adressbezeichnung muss zwingend angegeben werden. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,"Namen der Kampagne eingeben, wenn der Ursprung der Anfrage eine Kampagne ist" @@ -2240,10 +2241,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Annahmelager DocType: Bank Reconciliation Detail,Posting Date,Buchungsdatum DocType: Item,Valuation Method,Bewertungsmethode apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Wechselkurs für {0} zu {1} kann nicht gefunden werden +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Mark Halbtages DocType: Sales Invoice,Sales Team,Verkaufsteam apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Doppelter Eintrag/doppelte Buchung DocType: Serial No,Under Warranty,Innerhalb der Garantie -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Fehler] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Fehler] DocType: Sales Order,In Words will be visible once you save the Sales Order.,"""In Worten"" wird sichtbar, sobald Sie den Kundenauftrag speichern." ,Employee Birthday,Mitarbeiter-Geburtstag apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Risikokapital @@ -2266,6 +2268,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,Kostenstelle mit bestehenden Transaktionen kann nicht in eine Gruppe umgewandelt werden DocType: Account,Depreciation,Abschreibung apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Lieferant(en) +DocType: Employee Attendance Tool,Employee Attendance Tool,Angestellt-Anwesenheits-Tool DocType: Supplier,Credit Limit,Kreditlimit apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Bitte Transaktionstyp auswählen DocType: GL Entry,Voucher No,Belegnr. @@ -2292,7 +2295,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Root-Konto kann nicht gelöscht werden ,Is Primary Address,Ist Hauptadresse DocType: Production Order,Work-in-Progress Warehouse,Fertigungslager -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Referenz #{0} vom {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Referenz #{0} vom {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Adressen verwalten DocType: Pricing Rule,Item Code,Artikelnummer DocType: Production Planning Tool,Create Production Orders,Fertigungsaufträge erstellen @@ -2319,7 +2322,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Kontenabgleich apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Updates abholen apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Materialanfrage {0} wird storniert oder gestoppt apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Ein paar Beispieldatensätze hinzufügen -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Urlaube verwalten +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Urlaube verwalten apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Gruppieren nach Konto DocType: Sales Order,Fully Delivered,Komplett geliefert DocType: Lead,Lower Income,Niedrigeres Einkommen @@ -2334,6 +2337,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"""Von-Datum"" muss nach ""Bis-Datum"" liegen" ,Stock Projected Qty,Projizierter Lagerbestand apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Customer {0} gehört nicht zum Projekt {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Marked Teilnahme HTML DocType: Sales Order,Customer's Purchase Order,Kundenauftrag DocType: Warranty Claim,From Company,Von Firma apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Wert oder Menge @@ -2398,6 +2402,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Überweisung apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,Bitte ein Bankkonto auswählen DocType: Newsletter,Create and Send Newsletters,Newsletter erstellen und senden +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Alle prüfen DocType: Sales Order,Recurring Order,Wiederkehrende Bestellung DocType: Company,Default Income Account,Standard-Ertragskonto apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Kundengruppe / Kunde @@ -2429,6 +2434,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Zurück zur Einkaufsre DocType: Item,Warranty Period (in days),Garantiefrist (in Tagen) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Nettocashflow aus laufender Geschäftstätigkeit apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,z. B. Mehrwertsteuer +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Mark Mitarbeiter Teilnahme an Bulk apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Position 4 DocType: Journal Entry Account,Journal Entry Account,Journalbuchungskonto DocType: Shopping Cart Settings,Quotation Series,Nummernkreis für Angebote @@ -2573,14 +2579,14 @@ DocType: Task,Actual Start Date (via Time Logs),Tatsächliches Start-Datum (übe DocType: Stock Reconciliation Item,Before reconciliation,Vor Ausgleich apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},An {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Steuern und Gebühren hinzugerechnet (Firmenwährung) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,"Artikelsteuer Zeile {0} muss ein Konto vom Typ ""Steuer"" oder ""Erträge"" oder ""Aufwendungen"" oder ""Besteuerbar"" haben" +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,"Artikelsteuer Zeile {0} muss ein Konto vom Typ ""Steuer"" oder ""Erträge"" oder ""Aufwendungen"" oder ""Besteuerbar"" haben" DocType: Sales Order,Partly Billed,Teilweise abgerechnet DocType: Item,Default BOM,Standardstückliste apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,Bitte zum Bestätigen Firmenname erneut eingeben apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Offener Gesamtbetrag DocType: Time Log Batch,Total Hours,Summe der Stunden DocType: Journal Entry,Printing Settings,Druckeinstellungen -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Gesamt-Soll muss gleich Gesamt-Haben sein. Die Differenz ist {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Gesamt-Soll muss gleich Gesamt-Haben sein. Die Differenz ist {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Fahrzeugbau apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Von Lieferschein DocType: Time Log,From Time,Von-Zeit @@ -2626,7 +2632,7 @@ DocType: Purchase Invoice Item,Image View,Bildansicht DocType: Issue,Opening Time,Öffnungszeit apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,Von- und Bis-Daten erforderlich apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Wertpapier- & Rohstoffbörsen -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Standard-Maßeinheit für Variante '{0}' muss dieselbe wie in der Vorlage '{1}' sein +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Standard-Maßeinheit für Variante '{0}' muss dieselbe wie in der Vorlage '{1}' sein DocType: Shipping Rule,Calculate Based On,Berechnen auf Grundlage von DocType: Delivery Note Item,From Warehouse,Ab Lager DocType: Purchase Taxes and Charges,Valuation and Total,Bewertung und Summe @@ -2648,7 +2654,7 @@ DocType: Leave Application,Follow via Email,Per E-Mail nachverfolgen DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Steuerbetrag nach Abzug von Rabatt apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Für dieses Konto existiert ein Unterkonto. Sie können dieses Konto nicht löschen. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Entweder Zielstückzahl oder Zielmenge ist zwingend erforderlich -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},für Artikel {0} existiert keine Standardstückliste +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},für Artikel {0} existiert keine Standardstückliste apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,Bitte zuerst ein Buchungsdatum auswählen apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Eröffnungsdatum sollte vor dem Abschlussdatum liegen DocType: Leave Control Panel,Carry Forward,Übertragen @@ -2725,7 +2731,7 @@ DocType: Leave Type,Is Encash,Ist Inkasso DocType: Purchase Invoice,Mobile No,Mobilfunknummer DocType: Payment Tool,Make Journal Entry,Buchungssatz erstellen DocType: Leave Allocation,New Leaves Allocated,Neue Urlaubszuordnung -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Projektbezogene Daten sind für das Angebot nicht verfügbar +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Projektbezogene Daten sind für das Angebot nicht verfügbar DocType: Project,Expected End Date,Voraussichtliches Enddatum DocType: Appraisal Template,Appraisal Template Title,Bezeichnung der Bewertungsvorlage apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Werbung @@ -2773,6 +2779,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,In apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Bitte angeben DocType: Offer Letter,Awaiting Response,Warte auf Antwort apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Über +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Zeitprotokoll wurde Angekündigt DocType: Salary Slip,Earning & Deduction,Einkünfte & Abzüge apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Konto {0} kann keine Gruppe sein apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,"Optional. Diese Einstellung wird verwendet, um in verschiedenen Transaktionen zu filtern." @@ -2843,14 +2850,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Alle Transaktionen dieser Firma wurden erfolgreich gelöscht! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Zum apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Probezeit -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Standard-Lager ist für Lagerartikel zwingend notwendig. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Standard-Lager ist für Lagerartikel zwingend notwendig. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Zahlung des Gehalts für Monat {0} und Jahr {1} DocType: Stock Settings,Auto insert Price List rate if missing,"Preisliste automatisch einfügen, wenn sie fehlt" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Summe gezahlte Beträge ,Transferred Qty,Übergebene Menge apps/erpnext/erpnext/config/learn.py +11,Navigating,Navigieren apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Planung -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Zeitprotokollstapel erstellen +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Zeitprotokollstapel erstellen apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Ausgestellt DocType: Project,Total Billing Amount (via Time Logs),Gesamtumsatz (über Zeitprotokolle) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Wir verkaufen diesen Artikel @@ -2858,7 +2865,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Sollte Menge größer als 0 sein DocType: Journal Entry,Cash Entry,Kassenbuchung DocType: Sales Partner,Contact Desc,Kontakt-Beschr. -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Grund für Beurlaubung, wie Erholung, krank usw." +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Grund für Beurlaubung, wie Erholung, krank usw." DocType: Email Digest,Send regular summary reports via Email.,Regelmäßig zusammenfassende Berichte per E-Mail senden. DocType: Brand,Item Manager,Artikel-Manager DocType: Cost Center,Add rows to set annual budgets on Accounts.,Zeilen hinzufügen um Jahresbudgets in Konten festzulegen. @@ -2873,7 +2880,7 @@ DocType: GL Entry,Party Type,Gruppen-Typ apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Rohmaterial kann nicht dasselbe sein wie der Hauptartikel DocType: Item Attribute Value,Abbreviation,Abkürzung apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Keine Berechtigung da {0} die Höchstgrenzen überschreitet -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Stammdaten zur Gehaltsvorlage +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Stammdaten zur Gehaltsvorlage DocType: Leave Type,Max Days Leave Allowed,Maximal zulässige Urlaubstage apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Steuerregel für Einkaufswagen einstellen DocType: Payment Tool,Set Matching Amounts,Passende Beträge einstellen @@ -2886,7 +2893,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Angebot DocType: Stock Settings,Role Allowed to edit frozen stock,Rolle darf gesperrten Bestand bearbeiten ,Territory Target Variance Item Group-Wise,Artikelgruppenbezogene regionale Zielabweichung apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Alle Kundengruppen -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} ist zwingend erforderlich. Möglicherweise wurde der Datensatz für die Währungsumrechung für {1} bis {2} nicht erstellt. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} ist zwingend erforderlich. Möglicherweise wurde der Datensatz für die Währungsumrechung für {1} bis {2} nicht erstellt. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Steuer-Vorlage ist erforderlich. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Konto {0}: Hauptkonto {1} existiert nicht DocType: Purchase Invoice Item,Price List Rate (Company Currency),Preisliste (Firmenwährung) @@ -2906,8 +2913,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Artikelbezogene Steuer- ,Item-wise Price List Rate,Artikelbezogene Preisliste apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Lieferantenangebot DocType: Quotation,In Words will be visible once you save the Quotation.,"""In Worten"" wird sichtbar, sobald Sie das Angebot speichern." -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} ist beendet -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Barcode {0} wird bereits für Artikel {1} verwendet +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} ist beendet +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Barcode {0} wird bereits für Artikel {1} verwendet DocType: Lead,Add to calendar on this date,Zu diesem Datum in Kalender einfügen apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Regeln für das Hinzufügen von Versandkosten apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Kommende Veranstaltungen @@ -2933,8 +2940,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,St apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Mindestens ein Lager ist zwingend erforderlich DocType: Serial No,Out of Warranty,Außerhalb der Garantie DocType: BOM Replace Tool,Replace,Ersetzen -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} zu Verkaufsrechnung {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Bitte die Standardmaßeinheit eingeben +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} zu Verkaufsrechnung {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Bitte die Standardmaßeinheit eingeben DocType: Purchase Invoice Item,Project Name,Projektname DocType: Supplier,Mention if non-standard receivable account,"Vermerken, wenn es sich um kein Standard-Forderungskonto handelt" DocType: Journal Entry Account,If Income or Expense,Wenn Ertrag oder Aufwand @@ -2959,7 +2966,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Geschäftsjahr: {0} existiert nicht DocType: Currency Exchange,To Currency,In Währung DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,"Zulassen, dass die folgenden Benutzer Urlaubsanträge für Blöcke von Tagen genehmigen können." -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Arten der Aufwandsabrechnung +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Arten der Aufwandsabrechnung DocType: Item,Taxes,Steuern apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Bezahlt und nicht geliefert DocType: Project,Default Cost Center,Standardkostenstelle @@ -2989,7 +2996,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Zeile # {0}: Seriennummer {1} stimmt nicht mit {2} {3} überein apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Erholungsurlaub DocType: Batch,Batch ID,Chargen-ID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Hinweis: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Hinweis: {0} ,Delivery Note Trends,Entwicklung Lieferscheine apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Zusammenfassung dieser Woche apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} muss ein gekaufter oder unterbeauftragter Artikel in Zeile {1} sein @@ -3029,6 +3036,7 @@ DocType: Project Task,Pending Review,Wartet auf Überprüfung apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,"Klicken Sie hier, um zu zahlen" DocType: Task,Total Expense Claim (via Expense Claim),Gesamtbetrag der Aufwandsabrechnung (über Aufwandsabrechnung) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Kunden-ID +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Mark Absent apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Bis-Zeit muss nach Von-Zeit liegen DocType: Journal Entry Account,Exchange Rate,Wechselkurs apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Kundenauftrag {0} wurde nicht übertragen @@ -3076,7 +3084,7 @@ DocType: Item Group,Default Expense Account,Standardaufwandskonto DocType: Employee,Notice (days),Meldung(s)(-Tage) DocType: Tax Rule,Sales Tax Template,Umsatzsteuer-Vorlage DocType: Employee,Encashment Date,Inkassodatum -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","""Gegenbeleg"" muss entweder ein Lieferantenauftrag, eine Eingangsrechnung oder eine Journalbuchung sein" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","""Gegenbeleg"" muss entweder ein Lieferantenauftrag, eine Eingangsrechnung oder eine Journalbuchung sein" DocType: Account,Stock Adjustment,Bestandskorrektur apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Es gibt Standard-Aktivitätskosten für Aktivitätsart - {0} DocType: Production Order,Planned Operating Cost,Geplante Betriebskosten @@ -3130,6 +3138,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Abschreibungsbuchung DocType: BOM,Rate Of Materials Based On,Anteil der zu Grunde liegenden Materialien apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Support-Analyse +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Alle deaktivieren apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Firma fehlt in Lägern {0} DocType: POS Profile,Terms and Conditions,Allgemeine Geschäftsbedingungen apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},"Bis-Datum sollte im Geschäftsjahr liegen. Unter der Annahme, dass Bis-Datum = {0} ist" @@ -3151,7 +3160,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Um dieses Geschäftsjahr als Standard festzulegen, auf ""Als Standard festlegen"" anklicken" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),E-Mail-Adresse für den Support einrichten. (z. B. support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Engpassmenge -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Artikelvariante {0} mit denselben Attributen existiert +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Artikelvariante {0} mit denselben Attributen existiert DocType: Salary Slip,Salary Slip,Gehaltsabrechnung apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,"""Bis-Datum"" ist erforderlich," DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Packzettel für zu liefernde Pakete generieren. Wird verwendet, um Paketnummer, Packungsinhalt und das Gewicht zu dokumentieren." @@ -3199,7 +3208,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Leads a DocType: Item Attribute Value,Attribute Value,Attributwert apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}",E-Mail-ID muss einmalig sein; diese E-Mail-ID existiert bereits für {0} ,Itemwise Recommended Reorder Level,Empfohlener artikelbezogener Meldebestand -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,Bitte zuerst {0} auswählen +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,Bitte zuerst {0} auswählen DocType: Features Setup,To get Item Group in details table,Wird verwendet um eine detaillierte Tabelle der Artikelgruppe zu erhalten apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Charge {0} von Artikel {1} ist abgelaufen. DocType: Sales Invoice,Commission,Provision @@ -3254,7 +3263,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Offene Posten aufrufen DocType: Warranty Claim,Resolved By,Entschieden von DocType: Appraisal,Start Date,Startdatum -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Urlaube für einen Zeitraum zuordnen +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Urlaube für einen Zeitraum zuordnen apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Schecks und Kautionen fälschlicherweise gelöscht apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Hier klicken um die Richtigkeit zu bestätigen apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Konto {0}: Sie können dieses Konto sich selbst nicht als Über-Konto zuweisen @@ -3274,7 +3283,7 @@ DocType: Employee,Educational Qualification,Schulische Qualifikation DocType: Workstation,Operating Costs,Betriebskosten DocType: Employee Leave Approver,Employee Leave Approver,Urlaubsgenehmiger des Mitarbeiters apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} wurde erfolgreich zu unserer Newsletter-Liste hinzugefügt. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Zeile {0}: Es gibt bereits eine Nachbestellungsbuchung für dieses Lager {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Zeile {0}: Es gibt bereits eine Nachbestellungsbuchung für dieses Lager {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Kann nicht als verloren deklariert werden, da bereits ein Angebot erstellt wurde." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Einkaufsstammdaten-Manager apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Fertigungsauftrag {0} muss übertragen werden @@ -3298,7 +3307,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Ausgangsrechnung {0} wurde bereits übertragen apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Fertigstellungstermin DocType: Purchase Invoice Item,Amount (Company Currency),Betrag (Firmenwährung) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Stammdaten der Organisationseinheit (Abteilung) +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Stammdaten der Organisationseinheit (Abteilung) apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Bitte gültige Mobilnummern eingeben DocType: Budget Detail,Budget Detail,Budget-Detail apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,Bitte eine Nachricht vor dem Versenden eingeben @@ -3314,13 +3323,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Erhalten und bestätigt ,Serial No Service Contract Expiry,Ablaufdatum des Wartungsvertrags zu Seriennummer DocType: Item,Unit of Measure Conversion,Maßeinheit-Konvertierung apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Mitarbeiter kann nicht verändert werden -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Sie können ein Konto nicht gleichzeitig be- und entlasten +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Sie können ein Konto nicht gleichzeitig be- und entlasten DocType: Naming Series,Help HTML,HTML-Hilfe apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Summe der zugeordneten Gewichtungen sollte 100% sein. Sie ist {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Zustimmung für Artikel {1} bei Überschreitung von {0} DocType: Address,Name of person or organization that this address belongs to.,"Name der Person oder des Unternehmens, zu dem diese Adresse gehört." apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Ihre Lieferanten -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,"Kann nicht als verloren gekennzeichnet werden, da ein Kundenauftrag dazu existiert." +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,"Kann nicht als verloren gekennzeichnet werden, da ein Kundenauftrag dazu existiert." apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,"Eine andere Gehaltsstruktur {0} ist für diesen Mitarbeiter {1} aktiv. Bitte setzen Sie dessen Status auf ""inaktiv"" um fortzufahren." DocType: Purchase Invoice,Contact,Kontakt apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Erhalten von @@ -3330,11 +3339,11 @@ DocType: Item,Has Serial No,Hat Seriennummer DocType: Employee,Date of Issue,Ausstellungsdatum apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: Von {0} für {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Zeile #{0}: Lieferanten für Artikel {1} einstellen -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,"Das Webseiten-Bild {0}, das an Artikel {1} angehängt wurde, kann nicht gefunden werden" +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,"Das Webseiten-Bild {0}, das an Artikel {1} angehängt wurde, kann nicht gefunden werden" DocType: Issue,Content Type,Inhaltstyp apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Rechner DocType: Item,List this Item in multiple groups on the website.,Diesen Artikel in mehreren Gruppen auf der Webseite auflisten. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,"Bitte die Option ""Unterschiedliche Währungen"" aktivieren um Konten mit anderen Währungen zu erlauben" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,"Bitte die Option ""Unterschiedliche Währungen"" aktivieren um Konten mit anderen Währungen zu erlauben" apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Artikel: {0} ist nicht im System vorhanden apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Sie haben keine Berechtigung gesperrte Werte zu setzen DocType: Payment Reconciliation,Get Unreconciled Entries,Nicht zugeordnete Buchungen aufrufen @@ -3344,14 +3353,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Unternehmens DocType: Delivery Note,To Warehouse,An Lager apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Konto {0} wurde mehr als einmal für das Geschäftsjahr {1} erfasst ,Average Commission Rate,Durchschnittlicher Provisionssatz -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,"""Hat Seriennummer"" kann bei Nicht-Lagerartikeln nicht ""Ja"" sein" +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,"""Hat Seriennummer"" kann bei Nicht-Lagerartikeln nicht ""Ja"" sein" apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Die Anwesenheit kann nicht für zukünftige Termine markiert werden DocType: Pricing Rule,Pricing Rule Help,Hilfe zur Preisregel DocType: Purchase Taxes and Charges,Account Head,Kontobezeichnung apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Zusatzkosten aktualisieren um die Einstandskosten des Artikels zu kalkulieren apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Elektro DocType: Stock Entry,Total Value Difference (Out - In),Gesamt-Wertdifferenz (Aus - Ein) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Row {0}: Wechselkurs ist obligatorisch +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Row {0}: Wechselkurs ist obligatorisch apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},Benutzer-ID ist für Mitarbeiter {0} nicht eingegeben DocType: Stock Entry,Default Source Warehouse,Standard-Ausgangslager DocType: Item,Customer Code,Kunden-Nr. @@ -3370,15 +3379,15 @@ DocType: Notification Control,Sales Invoice Message,Mitteilung zur Ausgangsrechn apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Abschlußkonto {0} muss vom Typ Verbindlichkeiten/Eigenkapital sein DocType: Authorization Rule,Based On,Basiert auf DocType: Sales Order Item,Ordered Qty,Bestellte Menge -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Artikel {0} ist deaktiviert +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Artikel {0} ist deaktiviert DocType: Stock Settings,Stock Frozen Upto,Bestand gesperrt bis apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Ab-Zeitraum und Bis-Zeitraum sind zwingend erforderlich für wiederkehrende {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Projektaktivität/Aufgabe -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Gehaltsabrechnungen generieren +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Gehaltsabrechnungen generieren apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Einkauf muss ausgewählt sein, wenn ""Anwenden auf"" auf {0} gesetzt wurde" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Discount muss kleiner als 100 sein DocType: Purchase Invoice,Write Off Amount (Company Currency),Abschreibungs-Betrag (Firmenwährung) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Zeile #{0}: Bitte Nachbestellmenge angeben +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Zeile #{0}: Bitte Nachbestellmenge angeben DocType: Landed Cost Voucher,Landed Cost Voucher,Beleg über Einstandskosten apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},Bitte {0} setzen DocType: Purchase Invoice,Repeat on Day of Month,Wiederholen an Tag des Monats @@ -3431,7 +3440,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Standard-Fertigungslager apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Standardeinstellungen für Buchhaltungstransaktionen apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Voraussichtliches Datum kann nicht vor dem Datum der Materialanfrage liegen -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Artikel {0} muss ein Verkaufsartikel sein +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Artikel {0} muss ein Verkaufsartikel sein DocType: Naming Series,Update Series Number,Seriennummer aktualisieren DocType: Account,Equity,Eigenkapital DocType: Sales Order,Printing Details,Druckdetails @@ -3483,7 +3492,7 @@ DocType: Task,Review Date,Überprüfungsdatum DocType: Purchase Invoice,Advance Payments,Anzahlungen DocType: Purchase Taxes and Charges,On Net Total,Auf Nettosumme apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Eingangslager in Zeile {0} muss dem Fertigungsauftrag entsprechen -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,"Keine Berechtigung, das Zahlungswerkzeug zu benutzen" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,"Keine Berechtigung, das Zahlungswerkzeug zu benutzen" apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,"""Benachrichtigungs-E-Mail-Adresse"" nicht angegeben für das wiederkehrende Ereignis %s" apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,"Die Währung kann nicht geändert werden, wenn Buchungen in einer anderen Währung getätigt wurden" DocType: Company,Round Off Account,Abschlusskonto @@ -3506,7 +3515,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Menge eines Artikels nach der Herstellung/dem Umpacken auf Basis vorgegebener Mengen von Rohmaterial DocType: Payment Reconciliation,Receivable / Payable Account,Forderungen-/Verbindlichkeiten-Konto DocType: Delivery Note Item,Against Sales Order Item,Zu Kundenauftrags-Position -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},Bitte Attributwert für Attribut {0} angeben +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},Bitte Attributwert für Attribut {0} angeben DocType: Item,Default Warehouse,Standardlager DocType: Task,Actual End Date (via Time Logs),Tatsächliches Enddatum (über Zeitprotokoll) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Budget kann nicht einem Gruppenkonto {0} zugeordnet werden @@ -3531,10 +3540,10 @@ DocType: Lead,Blog Subscriber,Blog-Abonnent apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Regeln erstellen um Transaktionen auf Basis von Werten zu beschränken DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Wenn aktiviert, beinhaltet die Gesamtanzahl der Arbeitstage auch Urlaubstage und dies reduziert den Wert des Gehalts pro Tag." DocType: Purchase Invoice,Total Advance,Summe der Anzahlungen -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Gehaltsabrechnung verarbeiten +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Gehaltsabrechnung verarbeiten DocType: Opportunity Item,Basic Rate,Grundpreis DocType: GL Entry,Credit Amount,Guthaben-Summe -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,"Als ""verloren"" markieren" +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,"Als ""verloren"" markieren" apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Zahlungsnachweis DocType: Supplier,Credit Days Based On,Zahlungsziel basierend auf DocType: Tax Rule,Tax Rule,Steuer-Regel @@ -3564,7 +3573,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Angenommene Menge apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} existiert nicht apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Rechnungen an Kunden apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Projekt-ID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Zeile Nr. {0}: Betrag kann nicht größer als der ausstehende Betrag zur Aufwandsabrechnung {1} sein. Ausstehender Betrag ist {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Zeile Nr. {0}: Betrag kann nicht größer als der ausstehende Betrag zur Aufwandsabrechnung {1} sein. Ausstehender Betrag ist {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} Empfänger hinzugefügt DocType: Maintenance Schedule,Schedule,Zeitplan DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Budget für diese Kostenstelle definieren. Um das Budget wirksam werden zu lassen, bitte Unternehmensliste anschauen" @@ -3625,19 +3634,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,Verkaufsstellen-Profil DocType: Payment Gateway Account,Payment URL Message,Payment URL Nachricht apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Saisonbedingte Besonderheiten zu Budgets, Zielen usw." -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Zeile {0}: Zahlungsbetrag kann nicht größer als Ausstehender Betrag sein +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Zeile {0}: Zahlungsbetrag kann nicht größer als Ausstehender Betrag sein apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Summe Offene Beträge -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Zeitprotokoll ist nicht abrechenbar -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Artikel {0} ist eine Vorlage, bitte eine seiner Varianten wählen" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Zeitprotokoll ist nicht abrechenbar +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Artikel {0} ist eine Vorlage, bitte eine seiner Varianten wählen" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Käufer apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Nettolohn kann nicht negativ sein -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Bitte die Gegenbelege manuell eingeben +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Bitte die Gegenbelege manuell eingeben DocType: SMS Settings,Static Parameters,Statische Parameter DocType: Purchase Order,Advance Paid,Angezahlt DocType: Item,Item Tax,Artikelsteuer apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Material an den Lieferanten apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Verbrauch Rechnung DocType: Expense Claim,Employees Email Id,E-Mail-ID des Mitarbeiters +DocType: Employee Attendance Tool,Marked Attendance,Marked Teilnahme apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Kurzfristige Verbindlichkeiten apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Massen-SMS an Kontakte versenden DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Steuern oder Gebühren berücksichtigen für @@ -3660,7 +3670,7 @@ DocType: Item Attribute,Numeric Values,Numerische Werte apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Logo anhängen DocType: Customer,Commission Rate,Provisionssatz apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Variante erstellen -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Urlaubsanträge pro Abteilung sperren +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Urlaubsanträge pro Abteilung sperren apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Der Warenkorb ist leer DocType: Production Order,Actual Operating Cost,Tatsächliche Betriebskosten apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Root kann nicht bearbeitet werden. @@ -3679,7 +3689,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,"Automatisch Materialfrage erstellen, wenn die Menge unter diesen Wert fällt" ,Item-wise Purchase Register,Artikelbezogene Übersicht der Einkäufe DocType: Batch,Expiry Date,Verfalldatum -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Um den Meldebestand festzulegen, muss der Artikel ein Einkaufsartikel oder ein Fertigungsartiel sein" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Um den Meldebestand festzulegen, muss der Artikel ein Einkaufsartikel oder ein Fertigungsartiel sein" ,Supplier Addresses and Contacts,Lieferanten-Adressen und Kontaktdaten apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,Bitte zuerst Kategorie auswählen apps/erpnext/erpnext/config/projects.py +18,Project master.,Projekt-Stammdaten diff --git a/erpnext/translations/el.csv b/erpnext/translations/el.csv index 48c191165a..f8f93fe49c 100644 --- a/erpnext/translations/el.csv +++ b/erpnext/translations/el.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,Πιστωτικές DocType: Delivery Note,Installation Status,Κατάσταση εγκατάστασης apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Η αποδεκτή + η απορριπτέα ποσότητα πρέπει να είναι ίση με την ληφθείσα ποσότητα για το είδος {0} DocType: Item,Supply Raw Materials for Purchase,Παροχή Πρώτων Υλών για Αγορά -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Το είδος {0} πρέπει να είναι ένα είδος αγοράς +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Το είδος {0} πρέπει να είναι ένα είδος αγοράς DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Κατεβάστε το πρότυπο, συμπληρώστε τα κατάλληλα δεδομένα και επισυνάψτε το τροποποιημένο αρχείο. Όλες οι ημερομηνίες και ο συνδυασμός των υπαλλήλων στην επιλεγμένη περίοδο θα εμφανιστεί στο πρότυπο, με τους υπάρχοντες καταλόγους παρουσίας" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,Το είδος {0} δεν είναι ενεργό ή το τέλος της ζωής έχει περάσει DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Θα ενημερωθεί μετά τήν έκδοση του τιμολογίου πωλήσεων. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Για να περιληφθούν οι φόροι στη γραμμή {0} της τιμής είδους, οι φόροι στις γραμμές {1} πρέπει επίσης να συμπεριληφθούν" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Ρυθμίσεις για τη λειτουργική μονάδα HR +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Για να περιληφθούν οι φόροι στη γραμμή {0} της τιμής είδους, οι φόροι στις γραμμές {1} πρέπει επίσης να συμπεριληφθούν" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Ρυθμίσεις για τη λειτουργική μονάδα HR DocType: SMS Center,SMS Center,Κέντρο SMS DocType: BOM Replace Tool,New BOM,Νέα Λ.Υ. apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Ημερολόγια Παρτίδας για την τιμολόγηση. @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,Επιλέξτε Όροι κα DocType: Production Planning Tool,Sales Orders,Παραγγελίες πωλήσεων DocType: Purchase Taxes and Charges,Valuation,Αποτίμηση ,Purchase Order Trends,Τάσεις παραγγελίας αγοράς -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Κατανομή αδειών για το έτος +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Κατανομή αδειών για το έτος DocType: Earning Type,Earning Type,Τύπος κέρδους DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Απενεργοποίηση προγραμματισμός της χωρητικότητας και την παρακολούθηση του χρόνου DocType: Bank Reconciliation,Bank Account,Τραπεζικός λογαριασμό @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Προδιαγραφή ιστότοπου για το είδος DocType: Payment Tool,Reference No,Αριθμός αναφοράς apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Η άδεια εμποδίστηκε -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Το είδος {0} έχει φτάσει στο τέλος της διάρκειας ζωής του στο {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Το είδος {0} έχει φτάσει στο τέλος της διάρκειας ζωής του στο {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Ετήσιος DocType: Stock Reconciliation Item,Stock Reconciliation Item,Είδος συμφωνίας αποθέματος DocType: Stock Entry,Sales Invoice No,Αρ. Τιμολογίου πώλησης @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,Ελάχιστη ποσότητα παραγγε DocType: Pricing Rule,Supplier Type,Τύπος προμηθευτή DocType: Item,Publish in Hub,Δημοσίευση στο hub ,Terretory,Περιοχή -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Το είδος {0} είναι ακυρωμένο +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Το είδος {0} είναι ακυρωμένο apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Αίτηση υλικού DocType: Bank Reconciliation,Update Clearance Date,Ενημέρωση ημερομηνίας εκκαθάρισης DocType: Item,Purchase Details,Λεπτομέρειες αγοράς @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Ποσότητα που απο DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Πεδίο διαθέσιμο σε δελτίο αποστολής, προσφορές, τιμολόγιο πωλήσεων, παραγγελίες πώλησης" DocType: SMS Settings,SMS Sender Name,Αποστολέας SMS DocType: Contact,Is Primary Contact,Είναι η κύρια επαφή +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Χρόνος καταγραφής έχει ζυγισμένες για Τιμολόγησης DocType: Notification Control,Notification Control,Έλεγχος ενημερώσεων DocType: Lead,Suggestions,Προτάσεις DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Ορισμός προϋπολογισμών ανά ομάδα είδους για αυτήν την περιοχή. Μπορείτε επίσης να συμπεριλάβετε εποχικότητα ρυθμίζοντας τη διανομή. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},Παρακαλώ εισάγετε την γονική ομάδα λογαριασμού για την αποθήκη {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},"Πληρωμή κατά {0} {1} δεν μπορεί να είναι μεγαλύτερη από ό, τι οφειλόμενο ποσό {2}" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},"Πληρωμή κατά {0} {1} δεν μπορεί να είναι μεγαλύτερη από ό, τι οφειλόμενο ποσό {2}" DocType: Supplier,Address HTML,Διεύθυνση ΗΤΜΛ DocType: Lead,Mobile No.,Αρ. Κινητού DocType: Maintenance Schedule,Generate Schedule,Δημιούργησε πρόγραμμα @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Συγχρονίστηκαν με το Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Λάθος Κωδικός DocType: Item,Variant Of,Παραλλαγή του -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Το είδος {0} πρέπει να είναι υπηρεσία apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',Η ολοκληρωμένη ποσότητα δεν μπορεί να είναι μεγαλύτερη από την «ποσότητα για κατασκευή» DocType: Period Closing Voucher,Closing Account Head,Κλείσιμο κύριας εγγραφής λογαριασμού DocType: Employee,External Work History,Ιστορικό εξωτερικής εργασίας @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,Ενημερωτικό δελτίο DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Ειδοποίηση μέσω email σχετικά με την αυτόματη δημιουργία αιτήσης υλικού DocType: Journal Entry,Multi Currency,Πολλαπλό Νόμισμα DocType: Payment Reconciliation Invoice,Invoice Type,Τύπος τιμολογίου -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Δελτίο αποστολής +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Δελτίο αποστολής apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Ρύθμιση Φόροι apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,Η καταχώηρση πληρωμής έχει τροποποιηθεί μετά την λήψη της. Παρακαλώ επαναλάβετε τη λήψη. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,Το {0} εισήχθηκε δύο φορές στο φόρο είδους +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,Το {0} εισήχθηκε δύο φορές στο φόρο είδους apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Περίληψη για αυτή την εβδομάδα και εν αναμονή δραστηριότητες DocType: Workstation,Rent Cost,Κόστος ενοικίασης apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Παρακαλώ επιλέξτε μήνα και έτος @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,Ισχύει για χώρες DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Όλα τα πεδία εισαγωγής που σχετίζονται με τομείς όπως το νόμισμα, συντελεστή μετατροπής, οι συνολικές εισαγωγές, γενικό σύνολο εισαγωγής κλπ είναι διαθέσιμα σε αποδεικτικό αποδεικτικό παραλαβής αγοράς, προσφορά προμηθευτή, τιμολόγιο αγοράς, παραγγελία αγοράς κλπ." apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,Αυτό το στοιχείο είναι ένα πρότυπο και δεν μπορεί να χρησιμοποιηθεί στις συναλλαγές. Τα χαρακτηριστικά του θα αντιγραφούν πάνω σε αυτά των παραλλαγών εκτός αν έχει οριστεί το «όχι αντιγραφή ' apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Σύνολο παραγγελιών που μελετήθηκε -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Τίτλος υπαλλήλου ( π.Χ. Διευθύνων σύμβουλος, διευθυντής κ.λ.π. )." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Τίτλος υπαλλήλου ( π.Χ. Διευθύνων σύμβουλος, διευθυντής κ.λ.π. )." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,Παρακαλώ εισάγετε τιμή στο πεδίο 'επανάληψη για την ημέρα του μήνα' DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,Ισοτιμία με την οποία το νόμισμα του πελάτη μετατρέπεται στο βασικό νόμισμα του πελάτη DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Διαθέσιμο σε Λ.Υ., Δελτίο αποστολής, τιμολόγιο αγοράς, αίτηση παραγωγής, παραγγελία αγοράς, αποδεικτικό παραλαβής αγοράς, τιμολόγιο πωλήσεων, παραγγελίες πώλησης, καταχώρηση αποθέματος, φύλλο κατανομής χρόνου" @@ -355,7 +355,7 @@ DocType: Workstation,Consumable Cost,Κόστος αναλώσιμων apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) Πρέπει να έχει ρόλο «υπεύθυνος έγκρισης αδειών» DocType: Purchase Receipt,Vehicle Date,Όχημα Ημερομηνία apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Ιατρικός -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Αιτιολογία απώλειας +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Αιτιολογία απώλειας apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Ο σταθμός εργασίας είναι κλειστός κατά τις ακόλουθες ημερομηνίες σύμφωνα με τη λίστα αργιών: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Ευκαιρίες DocType: Employee,Single,Μονό @@ -383,14 +383,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Συνεργάτης καναλιού DocType: Account,Old Parent,Παλαιός γονέας DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,Προσαρμόστε το εισαγωγικό κείμενο που αποστέλλεται ως μέρος του εν λόγω email. Κάθε συναλλαγή έχει ένα ξεχωριστό εισαγωγικό κείμενο. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Μην περιλαμβάνουν σύμβολα (πρώην. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Διαχειριστής κύριων εγγραφών πωλήσεων apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Παγκόσμια ρυθμίσεις για όλες τις διαδικασίες κατασκευής. DocType: Accounts Settings,Accounts Frozen Upto,Παγωμένοι λογαριασμοί μέχρι DocType: SMS Log,Sent On,Εστάλη στις -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Χαρακτηριστικό {0} πολλές φορές σε πίνακα Χαρακτηριστικά +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Χαρακτηριστικό {0} πολλές φορές σε πίνακα Χαρακτηριστικά DocType: HR Settings,Employee record is created using selected field. ,Η Εγγραφή υπαλλήλου δημιουργείται χρησιμοποιώντας το επιλεγμένο πεδίο. DocType: Sales Order,Not Applicable,Μη εφαρμόσιμο -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Κύρια εγγραφή αργιών. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Κύρια εγγραφή αργιών. DocType: Material Request Item,Required Date,Απαιτούμενη ημερομηνία DocType: Delivery Note,Billing Address,Διεύθυνση χρέωσης apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,Παρακαλώ εισάγετε κωδικό είδους. @@ -426,7 +427,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,Παρακαλώ εισάγετε αποθήκη για την οποία θα δημιουργηθεί η αίτηση υλικού DocType: Production Order,Additional Operating Cost,Πρόσθετο λειτουργικό κόστος apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Καλλυντικά -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Για τη συγχώνευση, οι ακόλουθες ιδιότητες πρέπει να είναι ίδιες για τα δύο είδη" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Για τη συγχώνευση, οι ακόλουθες ιδιότητες πρέπει να είναι ίδιες για τα δύο είδη" DocType: Shipping Rule,Net Weight,Καθαρό βάρος DocType: Employee,Emergency Phone,Τηλέφωνο έκτακτης ανάγκης ,Serial No Warranty Expiry,Ημερομηνία λήξης της εγγύησης του σειριακού αριθμού @@ -483,17 +484,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Χρέωση και Παράδοσης Κατάσταση apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Επαναλαμβανόμενοι πελάτες DocType: Leave Control Panel,Allocate,Κατανομή -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Επιστροφή πωλήσεων +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Επιστροφή πωλήσεων DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Επιλέξτε παραγγελίες πώλησης από τις οποίες θέλετε να δημιουργήσετε εντολές παραγωγής. DocType: Item,Delivered by Supplier (Drop Ship),Δημοσιεύθηκε από τον Προμηθευτή (Drop Ship) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Συνιστώσες του μισθού. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Συνιστώσες του μισθού. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Βάση δεδομένων των δυνητικών πελατών. DocType: Authorization Rule,Customer or Item,Πελάτη ή Είδους apps/erpnext/erpnext/config/crm.py +17,Customer database.,Βάση δεδομένων των πελατών. DocType: Quotation,Quotation To,Προσφορά προς DocType: Lead,Middle Income,Μέσα έσοδα apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Άνοιγμα ( cr ) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Προεπιλεγμένη μονάδα μέτρησης για τη θέση {0} δεν μπορεί να αλλάξει άμεσα, επειδή έχετε ήδη κάνει κάποια συναλλαγή (ες) με μια άλλη UOM. Θα χρειαστεί να δημιουργήσετε ένα νέο σημείο για να χρησιμοποιήσετε ένα διαφορετικό Προεπιλογή UOM." +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Προεπιλεγμένη μονάδα μέτρησης για τη θέση {0} δεν μπορεί να αλλάξει άμεσα, επειδή έχετε ήδη κάνει κάποια συναλλαγή (ες) με μια άλλη UOM. Θα χρειαστεί να δημιουργήσετε ένα νέο σημείο για να χρησιμοποιήσετε ένα διαφορετικό Προεπιλογή UOM." apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Το χορηγούμενο ποσό δεν μπορεί να είναι αρνητικό DocType: Purchase Order Item,Billed Amt,Χρεωμένο ποσό DocType: Warehouse,A logical Warehouse against which stock entries are made.,Μια λογική αποθήκη στην οποία θα γίνονται οι καταχωρήσεις αποθέματος @@ -512,14 +513,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Φόροι και επιβαρύ DocType: Employee,Organization Profile,Προφίλ οργανισμού apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,Παρακαλώ ρυθμίστε τη σειρά αρίθμησης για συμμετοχές μέσω του μενού ρυθμίσεις > σειρές αρίθμησης DocType: Employee,Reason for Resignation,Αιτία παραίτησης -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Πρότυπο για την αξιολόγηση της απόδοσης. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Πρότυπο για την αξιολόγηση της απόδοσης. DocType: Payment Reconciliation,Invoice/Journal Entry Details,Λεπτομέρειες καταχώρησης τιμολογίου / λογιστικού βιβλίου apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' Δεν είναι ση χρήση {2} DocType: Buying Settings,Settings for Buying Module,Ρυθμίσεις για τη λειτουργική μονάδα αγορών apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,Παρακαλώ εισάγετε πρώτα αποδεικτικό παραλαβής αγοράς DocType: Buying Settings,Supplier Naming By,Ονοματοδοσία προμηθευτή βάσει DocType: Activity Type,Default Costing Rate,Προεπιλογή Κοστολόγηση Τιμή -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Χρονοδιάγραμμα συντήρησης +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Χρονοδιάγραμμα συντήρησης apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Στη συνέχεια, οι κανόνες τιμολόγησης φιλτράρονται με βάση τους πελάτες, την ομάδα πελατών, την περιοχή, τον προμηθευτής, τον τύπο του προμηθευτή, την εκστρατεία, τον συνεργάτη πωλήσεων κ.λ.π." apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Καθαρή Αλλαγή στο Απογραφή DocType: Employee,Passport Number,Αριθμός διαβατηρίου @@ -558,7 +559,7 @@ DocType: Purchase Invoice,Quarterly,Τριμηνιαίος DocType: Selling Settings,Delivery Note Required,Η σημείωση δελτίου αποστολής είναι απαραίτητη DocType: Sales Order Item,Basic Rate (Company Currency),Βασικό επιτόκιο (νόμισμα της εταιρείας) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush πρώτων υλών Βάσει των -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,Παρακαλώ εισάγετε τα στοιχεία του είδους +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,Παρακαλώ εισάγετε τα στοιχεία του είδους DocType: Purchase Receipt,Other Details,Άλλες λεπτομέρειες DocType: Account,Accounts,Λογαριασμοί apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Marketing @@ -571,7 +572,7 @@ DocType: Employee,Provide email id registered in company,Παρέχετε ένα DocType: Hub Settings,Seller City,Πόλη πωλητή DocType: Email Digest,Next email will be sent on:,Το επόμενο μήνυμα email θα αποσταλεί στις: DocType: Offer Letter Term,Offer Letter Term,Προσφορά Επιστολή Όρος -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Στοιχείο έχει παραλλαγές. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Στοιχείο έχει παραλλαγές. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Το είδος {0} δεν βρέθηκε DocType: Bin,Stock Value,Αξία των αποθεμάτων apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Τύπος δέντρου @@ -579,7 +580,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Ποσότητα που κατ DocType: Serial No,Warranty Expiry Date,Ημερομηνία λήξης εγγύησης DocType: Material Request Item,Quantity and Warehouse,Ποσότητα και αποθήκη DocType: Sales Invoice,Commission Rate (%),Ποσοστό (%) προμήθειας -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","šΚατά τον τύπο του αποδεικτικού πρέπει να είναι παραγγελία πώλησης, τιμολόγιο πώλησης ή ημερολογιακή εγγραφή" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","šΚατά τον τύπο του αποδεικτικού πρέπει να είναι παραγγελία πώλησης, τιμολόγιο πώλησης ή ημερολογιακή εγγραφή" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Αεροδιάστημα DocType: Journal Entry,Credit Card Entry,Καταχώηρση πιστωτικής κάρτας apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Θέμα εργασίας @@ -666,10 +667,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Υποχρέωση apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Κυρώσεις Το ποσό δεν μπορεί να είναι μεγαλύτερη από την αξίωση Ποσό στη σειρά {0}. DocType: Company,Default Cost of Goods Sold Account,Προεπιλογή Κόστος Πωληθέντων Λογαριασμού -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Ο τιμοκατάλογος δεν έχει επιλεγεί +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Ο τιμοκατάλογος δεν έχει επιλεγεί DocType: Employee,Family Background,Ιστορικό οικογένειας DocType: Process Payroll,Send Email,Αποστολή email -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Προειδοποίηση: Μη έγκυρη Συνημμένο {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Προειδοποίηση: Μη έγκυρη Συνημμένο {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Δεν έχετε άδεια DocType: Company,Default Bank Account,Προεπιλεγμένος τραπεζικός λογαριασμός apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Για να φιλτράρετε με βάση Κόμμα, επιλέξτε Τύπος Πάρτυ πρώτα" @@ -697,7 +698,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Ερ DocType: Features Setup,"To enable ""Point of Sale"" features",Για να ενεργοποιήσετε το "Point of Sale" χαρακτηριστικά DocType: Bin,Moving Average Rate,Κινητή μέση τιμή DocType: Production Planning Tool,Select Items,Επιλέξτε είδη -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} κατά τη χρέωση {1} της {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} κατά τη χρέωση {1} της {2} DocType: Maintenance Visit,Completion Status,Κατάσταση ολοκλήρωσης DocType: Sales Invoice Item,Target Warehouse,Αποθήκη προορισμού DocType: Item,Allow over delivery or receipt upto this percent,Επιτρέψτε πάνω από την παράδοση ή την παραλαβή μέχρι αυτή τη τοις εκατό @@ -757,7 +758,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Κύ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Ανίκανος να βρει χρονοθυρίδα στα επόμενα {0} ημέρες για τη λειτουργία {1} DocType: Production Order,Plan material for sub-assemblies,Υλικό σχεδίου για τα υποσυστήματα apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,Η Λ.Υ. {0} πρέπει να είναι ενεργή -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,Παρακαλώ επιλέξτε τον τύπο του εγγράφου πρώτα +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Παρακαλώ επιλέξτε τον τύπο του εγγράφου πρώτα apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Μετάβαση Καλάθι apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Ακύρωση επισκέψεων {0} πριν από την ακύρωση αυτής της επίσκεψης για συντήρηση DocType: Salary Slip,Leave Encashment Amount,Ποσό εξαργύρωσης άδειας @@ -775,7 +776,7 @@ DocType: Purchase Receipt,Range,Εύρος DocType: Supplier,Default Payable Accounts,Προεπιλεγμένοι λογαριασμοί πληρωτέων apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Ο υπάλληλος {0} δεν είναι ενεργός ή δεν υπάρχει DocType: Features Setup,Item Barcode,Barcode είδους -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Οι παραλλαγές είδους {0} ενημερώθηκαν +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Οι παραλλαγές είδους {0} ενημερώθηκαν DocType: Quality Inspection Reading,Reading 6,Μέτρηση 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Προκαταβολή τιμολογίου αγοράς DocType: Address,Shop,Κατάστημα @@ -798,7 +799,7 @@ DocType: Salary Slip,Total in words,Σύνολο ολογράφως DocType: Material Request Item,Lead Time Date,Ημερομηνία ανοχής χρόνου apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,είναι υποχρεωτική. Ίσως συναλλάγματος αρχείο δεν έχει δημιουργηθεί για apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Γραμμή # {0}: παρακαλώ ορίστε σειριακό αριθμό για το είδος {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Για τα στοιχεία «Προϊόν Bundle», Αποθήκη, Αύξων αριθμός παρτίδας και Δεν θα θεωρηθεί από την «Packing List» πίνακα. Αν Αποθήκης και Μαζική Δεν είναι ίδιες για όλα τα είδη συσκευασίας για τη θέση του κάθε «Πακέτο Προϊόντων», οι αξίες αυτές μπορούν να εγγραφούν στον κύριο πίνακα Στοιχείο, οι τιμές θα αντιγραφούν στο «Packing List» πίνακα." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Για τα στοιχεία «Προϊόν Bundle», Αποθήκη, Αύξων αριθμός παρτίδας και Δεν θα θεωρηθεί από την «Packing List» πίνακα. Αν Αποθήκης και Μαζική Δεν είναι ίδιες για όλα τα είδη συσκευασίας για τη θέση του κάθε «Πακέτο Προϊόντων», οι αξίες αυτές μπορούν να εγγραφούν στον κύριο πίνακα Στοιχείο, οι τιμές θα αντιγραφούν στο «Packing List» πίνακα." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Αποστολές προς τους πελάτες. DocType: Purchase Invoice Item,Purchase Order Item,Είδος παραγγελίας αγοράς apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Έμμεσα έσοδα @@ -819,6 +820,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Επιλέξτε Μισθ apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Πηγαίνετε στην κατάλληλη ομάδα (συνήθως Εφαρμογή των Ταμείων> Κυκλοφορούν Ενεργητικό> τραπεζικούς λογαριασμούς και να δημιουργήσετε ένα νέο λογαριασμό (κάνοντας κλικ στην επιλογή Προσθήκη Παιδί) του τύπου "Τράπεζα" DocType: Workstation,Electricity Cost,Κόστος ηλεκτρικής ενέργειας DocType: HR Settings,Don't send Employee Birthday Reminders,Μην στέλνετε υπενθυμίσεις γενεθλίων υπαλλήλου +,Employee Holiday Attendance,Υπάλληλος Συμμετοχή Διακοπές DocType: Opportunity,Walk In,Προχωρήστε apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Χρηματιστήριο Καταχωρήσεις DocType: Item,Inspection Criteria,Κριτήρια ελέγχου @@ -841,7 +843,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options, DocType: Journal Entry Account,Expense Claim,Αξίωση δαπανών apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Ποσότητα για {0} DocType: Leave Application,Leave Application,Αίτηση άδειας -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Εργαλείο κατανομής αδειών +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Εργαλείο κατανομής αδειών DocType: Leave Block List,Leave Block List Dates,Ημερομηνίες λίστας αποκλεισμού ημερών άδειας DocType: Company,If Monthly Budget Exceeded (for expense account),Αν Μηνιαίος Προϋπολογισμός Υπέρβαση (για λογαριασμό εξόδων) DocType: Workstation,Net Hour Rate,Καθαρή τιμή ώρας @@ -851,7 +853,7 @@ DocType: Packing Slip Item,Packing Slip Item,Είδος δελτίου συσκ DocType: POS Profile,Cash/Bank Account,Λογαριασμός μετρητών/τραπέζης apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Που αφαιρούνται χωρίς καμία αλλαγή στην ποσότητα ή την αξία. DocType: Delivery Note,Delivery To,Παράδοση προς -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Τραπέζι χαρακτηριστικό γνώρισμα είναι υποχρεωτικό +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Τραπέζι χαρακτηριστικό γνώρισμα είναι υποχρεωτικό DocType: Production Planning Tool,Get Sales Orders,Βρες παραγγελίες πώλησης apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,Η {0} δεν μπορεί να είναι αρνητική apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Έκπτωση @@ -915,7 +917,7 @@ DocType: SMS Center,Total Characters,Σύνολο χαρακτήρων apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},Παρακαλώ επιλέξτε Λ.Υ. στο πεδίο της Λ.Υ. για το είδος {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,Λεπτομέρειες τιμολογίου C-form DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Τιμολόγιο συμφωνίας πληρωμής -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Συμβολή (%) +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Συμβολή (%) DocType: Item,website page link,Σύνδεσμος ιστοσελίδας DocType: Company,Company registration numbers for your reference. Tax numbers etc.,Αριθμοί μητρώου των επιχειρήσεων για την αναφορά σας. Αριθμοί φόρου κ.λ.π. DocType: Sales Partner,Distributor,Διανομέας @@ -957,10 +959,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,Συντελεστής μετ DocType: Stock Settings,Default Item Group,Προεπιλεγμένη ομάδα ειδών apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Βάση δεδομένων προμηθευτών. DocType: Account,Balance Sheet,Ισολογισμός -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Κέντρο κόστους για το είδος με το κωδικό είδους ' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Κέντρο κόστους για το είδος με το κωδικό είδους ' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,Ο πωλητής σας θα λάβει μια υπενθύμιση την ημερομηνία αυτή για να επικοινωνήσει με τον πελάτη apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Περαιτέρω λογαριασμών μπορούν να γίνουν στις ομάδες, αλλά εγγραφές μπορούν να γίνουν με την μη Ομάδες" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Φορολογικές και άλλες κρατήσεις μισθών. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Φορολογικές και άλλες κρατήσεις μισθών. DocType: Lead,Lead,Επαφή DocType: Email Digest,Payables,Υποχρεώσεις DocType: Account,Warehouse,Αποθήκη @@ -977,10 +979,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Μη συμφωνη DocType: Global Defaults,Current Fiscal Year,Τρέχουσα χρήση DocType: Global Defaults,Disable Rounded Total,Απενεργοποίηση στρογγυλοποίησης συνόλου DocType: Lead,Call,Κλήση -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,Οι καταχωρήσεις δεν μπορεί να είναι κενές +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,Οι καταχωρήσεις δεν μπορεί να είναι κενές apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Διπλότυπη γραμμή {0} με το ίδιο {1} ,Trial Balance,Ισοζύγιο -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Ρύθμιση εργαζόμενοι +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Ρύθμιση εργαζόμενοι apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid """,Πλέγμα ' apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,Παρακαλώ επιλέξτε πρόθεμα πρώτα apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Έρευνα @@ -989,7 +991,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,ID χρήστη apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Προβολή καθολικού apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Η πιο παλιά -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Μια ομάδα ειδών υπάρχει με το ίδιο όνομα, μπορείτε να αλλάξετε το όνομα του είδους ή να μετονομάσετε την ομάδα ειδών" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Μια ομάδα ειδών υπάρχει με το ίδιο όνομα, μπορείτε να αλλάξετε το όνομα του είδους ή να μετονομάσετε την ομάδα ειδών" DocType: Production Order,Manufacture against Sales Order,Παραγωγή κατά παραγγελία πώλησης apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Τρίτες χώρες apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,Το είδος {0} δεν μπορεί να έχει παρτίδα @@ -1014,7 +1016,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Αποθήκη απορριφθέν DocType: GL Entry,Against Voucher,Κατά το αποδεικτικό DocType: Item,Default Buying Cost Center,Προεπιλεγμένο κέντρο κόστους αγορών apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Για να πάρετε το καλύτερο από ERPNext, σας συνιστούμε να πάρει κάποιο χρόνο και να παρακολουθήσουν αυτά τα βίντεο βοήθεια." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Το είδος {0} πρέπει να είναι είδος πωλήσης +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Το είδος {0} πρέπει να είναι είδος πωλήσης apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,να DocType: Item,Lead Time in days,Χρόνος των ημερών ,Accounts Payable Summary,Σύνοψη πληρωτέων λογαριασμών @@ -1040,7 +1042,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Γεωργία apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Τα προϊόντα ή οι υπηρεσίες σας DocType: Mode of Payment,Mode of Payment,Τρόπος πληρωμής -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Ιστοσελίδα εικόνας θα πρέπει να είναι ένα δημόσιο αρχείο ή URL της ιστοσελίδας +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Ιστοσελίδα εικόνας θα πρέπει να είναι ένα δημόσιο αρχείο ή URL της ιστοσελίδας apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,Αυτή είναι μια κύρια ομάδα ειδών και δεν μπορεί να επεξεργαστεί. DocType: Journal Entry Account,Purchase Order,Παραγγελία αγοράς DocType: Warehouse,Warehouse Contact Info,Πληροφορίες επικοινωνίας για την αποθήκη @@ -1051,7 +1053,7 @@ DocType: Serial No,Serial No Details,Λεπτομέρειες σειριακού DocType: Purchase Invoice Item,Item Tax Rate,Φορολογικός συντελεστής είδους apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","Για {0}, μόνο πιστωτικοί λογαριασμοί μπορούν να συνδέονται με άλλες καταχωρήσεις χρέωσης" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Το δελτίο αποστολής {0} δεν έχει υποβληθεί -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Το είδος {0} πρέπει να είναι είδος υπεργολαβίας +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Το είδος {0} πρέπει να είναι είδος υπεργολαβίας apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Κεφάλαιο εξοπλισμών apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Ο κανόνας τιμολόγησης πρώτα επιλέγεται με βάση το πεδίο 'εφαρμογή στο', το οποίο μπορεί να είναι είδος, ομάδα ειδών ή εμπορικό σήμα" DocType: Hub Settings,Seller Website,Ιστοσελίδα πωλητή @@ -1060,7 +1062,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Στόχος DocType: Sales Invoice Item,Edit Description,Επεξεργασία Περιγραφή apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Αναμενόμενη ημερομηνία τοκετού είναι μικρότερο από το προβλεπόμενο Ημερομηνία Έναρξης. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,Για προμηθευτή +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,Για προμηθευτή DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Η ρύθμιση του τύπου λογαριασμού βοηθά στην επιλογή αυτού του λογαριασμού στις συναλλαγές. DocType: Purchase Invoice,Grand Total (Company Currency),Γενικό σύνολο (νόμισμα της εταιρείας) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Συνολική εξερχόμενη @@ -1112,7 +1114,6 @@ DocType: Authorization Rule,Average Discount,Μέση έκπτωση DocType: Address,Utilities,Επιχειρήσεις κοινής ωφέλειας DocType: Purchase Invoice Item,Accounting,Λογιστική DocType: Features Setup,Features Setup,Χαρακτηριστικά διαμόρφωσης -DocType: Item,Is Service Item,Είναι υπηρεσία apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Περίοδος υποβολής των αιτήσεων δεν μπορεί να είναι περίοδος κατανομής έξω άδειας DocType: Activity Cost,Projects,Έργα apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,Παρακαλώ επιλέξτε χρήση @@ -1133,7 +1134,7 @@ DocType: Item,Maintain Stock,Διατηρήστε Χρηματιστήριο apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Έχουν ήδη δημιουργηθεί καταχωρήσεις αποθέματος για την εντολή παραγωγής apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Καθαρή Αλλαγή στο Παγίων DocType: Leave Control Panel,Leave blank if considered for all designations,Άφησε το κενό αν ισχύει για όλες τις ονομασίες -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Η επιβάρυνση του τύπου 'πραγματική' στη γραμμή {0} δεν μπορεί να συμπεριληφθεί στην τιμή είδους +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Η επιβάρυνση του τύπου 'πραγματική' στη γραμμή {0} δεν μπορεί να συμπεριληφθεί στην τιμή είδους apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Μέγιστο: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Από ημερομηνία και ώρα DocType: Email Digest,For Company,Για την εταιρεία @@ -1142,8 +1143,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Όνομα διεύθυνσης αποστολής apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Λογιστικό σχέδιο DocType: Material Request,Terms and Conditions Content,Περιεχόμενο όρων και προϋποθέσεων -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,Δεν μπορεί να είναι μεγαλύτερη από 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Το είδος {0} δεν είναι ένα αποθηκεύσιμο είδος +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,Δεν μπορεί να είναι μεγαλύτερη από 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Το είδος {0} δεν είναι ένα αποθηκεύσιμο είδος DocType: Maintenance Visit,Unscheduled,Έκτακτες DocType: Employee,Owned,Ανήκουν DocType: Salary Slip Deduction,Depends on Leave Without Pay,Εξαρτάται από άδειας άνευ αποδοχών @@ -1164,7 +1165,7 @@ Used for Taxes and Charges",Ο πίνακας λεπτομερειών φόρο apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Ο υπάλληλος δεν μπορεί να αναφέρει στον ευατό του. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Εάν ο λογαριασμός έχει παγώσει, οι καταχωρήσεις επιτρέπονται σε ορισμένους χρήστες." DocType: Email Digest,Bank Balance,Τράπεζα Υπόλοιπο -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Λογιστική καταχώριση για {0}: {1} μπορεί να γίνει μόνο στο νόμισμα: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Λογιστική καταχώριση για {0}: {1} μπορεί να γίνει μόνο στο νόμισμα: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Καμία ενεργός μισθολογίου αποτελέσματα για εργαζόμενο {0} και τον μήνα DocType: Job Opening,"Job profile, qualifications required etc.","Επαγγελματικό προφίλ, τα προσόντα που απαιτούνται κ.λ.π." DocType: Journal Entry Account,Account Balance,Υπόλοιπο λογαριασμού @@ -1181,7 +1182,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Υποσυσ DocType: Shipping Rule Condition,To Value,ˆΈως αξία DocType: Supplier,Stock Manager,Διευθυντής Χρηματιστήριο apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Η αποθήκη προέλευσης είναι απαραίτητη για τη σειρά {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Δελτίο συσκευασίας +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Δελτίο συσκευασίας apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Ενοίκιο γραφείου apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Ρύθμιση στοιχείων SMS gateway apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Η εισαγωγή απέτυχε! @@ -1225,7 +1226,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,Αρ. Λεπτομερειώ DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Πρόσθετες ποσό έκπτωσης (Εταιρεία νομίσματος) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Σφάλμα: {0} > {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,Παρακαλώ να δημιουργήσετε νέο λογαριασμό από το λογιστικό σχέδιο. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Επίσκεψη συντήρησης +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Επίσκεψη συντήρησης apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Πελάτης> ομάδα πελατών > περιοχή DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Διαθέσιμο παρτίδας Ποσότητα σε αποθήκη DocType: Time Log Batch Detail,Time Log Batch Detail,Λεπτομέρεια παρτίδας αρχείων καταγραφής χρονολογίου @@ -1234,7 +1235,7 @@ DocType: Leave Block List,Block Holidays on important days.,Αποκλεισμό ,Accounts Receivable Summary,Σύνοψη εισπρακτέων λογαριασμών apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,Παρακαλώ ορίστε το πεδίο ID χρήστη σε μια εγγραφή υπαλλήλου για να ρυθμίσετε το ρόλο του υπαλλήλου DocType: UOM,UOM Name,Όνομα Μ.Μ. -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Ποσό συνεισφοράς +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Ποσό συνεισφοράς DocType: Sales Invoice,Shipping Address,Διεύθυνση αποστολής DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,Αυτό το εργαλείο σας βοηθά να ενημερώσετε ή να διορθώσετε την ποσότητα και την αποτίμηση των αποθεμάτων στο σύστημα. Συνήθως χρησιμοποιείται για να συγχρονίσει τις τιμές του συστήματος και του τι πραγματικά υπάρχει στις αποθήκες σας. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,Με λόγια θα είναι ορατά αφού αποθηκεύσετε το δελτίο αποστολής. @@ -1275,7 +1276,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Παρακολούθηση ειδών με barcode. Είναι δυνατή η εισαγωγή ειδών στο δελτίο αποστολής και στο τιμολόγιο πώλησης με σάρωση του barcode των ειδών. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Επανάληψη αποστολής Πληρωμής Email DocType: Dependent Task,Dependent Task,Εξαρτημένη Εργασία -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Ο συντελεστής μετατροπής για την προεπιλεγμένη μονάδα μέτρησης πρέπει να είναι 1 στη γραμμή {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Ο συντελεστής μετατροπής για την προεπιλεγμένη μονάδα μέτρησης πρέπει να είναι 1 στη γραμμή {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Η άδεια του τύπου {0} δεν μπορεί να είναι μεγαλύτερη από {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Δοκιμάστε τον προγραμματισμό εργασιών για το X ημέρες νωρίτερα. DocType: HR Settings,Stop Birthday Reminders,Διακοπή υπενθυμίσεων γενεθλίων @@ -1285,7 +1286,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Προβολή apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Καθαρή Αλλαγή σε μετρητά DocType: Salary Structure Deduction,Salary Structure Deduction,Παρακρατήσεις στο μισθολόγιο -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Η μονάδα μέτρησης {0} έχει εισαχθεί περισσότερες από μία φορές στον πίνακας παραγόντων μετατροπής +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Η μονάδα μέτρησης {0} έχει εισαχθεί περισσότερες από μία φορές στον πίνακας παραγόντων μετατροπής apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Αίτηση Πληρωμής υπάρχει ήδη {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Κόστος ειδών που εκδόθηκαν apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Η ποσότητα δεν πρέπει να είναι μεγαλύτερη από {0} @@ -1314,7 +1315,7 @@ DocType: BOM Item,BOM Item,Είδος Λ.Υ. DocType: Appraisal,For Employee,Για τον υπάλληλο apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Σειρά {0}: Προκαταβολή έναντι Προμηθευτής οφείλει να χρεώσει DocType: Company,Default Values,Προεπιλεγμένες Τιμές -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Γραμμή {0}:το ποσό πληρωμής δεν μπορεί να είναι αρνητικό +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Γραμμή {0}:το ποσό πληρωμής δεν μπορεί να είναι αρνητικό DocType: Expense Claim,Total Amount Reimbursed,Συνολικού ποσού που αποδόθηκε apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Κατά το τιμολόγιο προμηθευτή {0} της {1} DocType: Customer,Default Price List,Προεπιλεγμένος τιμοκατάλογος @@ -1342,8 +1343,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Α DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Αντικαταστήστε μια συγκεκριμένη Λ.Υ. σε όλες τις άλλες Λ.Υ. όπου χρησιμοποιείται. Θα αντικαταστήσει το παλιό σύνδεσμο Λ.Υ., θα ενημερώσει το κόστος και τον πίνακα ""ανάλυση είδους Λ.Υ."" κατά τη νέα Λ.Υ." DocType: Shopping Cart Settings,Enable Shopping Cart,Ενεργοποίηση του καλαθιού αγορών DocType: Employee,Permanent Address,Μόνιμη διεύθυνση -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Το είδος {0} πρέπει να είναι μια υπηρεσία. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Καταβληθείσα προκαταβολή κατά {0} {1} δεν μπορεί να είναι μεγαλύτερο \ από Γενικό Σύνολο {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Παρακαλώ επιλέξτε κωδικό είδους DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Μείωση αφαίρεσης για άδεια άνευ αποδοχών (Α.Α.Α.) @@ -1399,12 +1399,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Κύριο apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Παραλλαγή DocType: Naming Series,Set prefix for numbering series on your transactions,Ορίστε πρόθεμα για τη σειρά αρίθμησης για τις συναλλαγές σας +DocType: Employee Attendance Tool,Employees HTML,Οι εργαζόμενοι HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Μια σταματημένη παραγγελία δεν μπορεί να ακυρωθεί. Συνεχίστε την προκειμένου να την ακυρώσετε. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Προεπιλογή BOM ({0}) πρέπει να είναι ενεργή για αυτό το στοιχείο ή το πρότυπο της +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Προεπιλογή BOM ({0}) πρέπει να είναι ενεργή για αυτό το στοιχείο ή το πρότυπο της DocType: Employee,Leave Encashed?,Η άδεια εισπράχθηκε; apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Το πεδίο 'ευκαιρία από' είναι υποχρεωτικό DocType: Item,Variants,Παραλλαγές -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Δημιούργησε παραγγελία αγοράς +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Δημιούργησε παραγγελία αγοράς DocType: SMS Center,Send To,Αποστολή προς apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Δεν υπάρχει αρκετό υπόλοιπο άδειας για άδειες τύπου {0} DocType: Payment Reconciliation Payment,Allocated amount,Ποσό που διατέθηκε @@ -1504,7 +1505,7 @@ DocType: Sales Person,Name and Employee ID,Όνομα και ID υπαλλήλο apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,Η ημερομηνία λήξης προθεσμίας δεν μπορεί να είναι πριν από την ημερομηνία αποστολής DocType: Website Item Group,Website Item Group,Ομάδα ειδών δικτυακού τόπου apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Δασμοί και φόροι -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,Παρακαλώ εισάγετε την ημερομηνία αναφοράς +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,Παρακαλώ εισάγετε την ημερομηνία αναφοράς apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Πύλη πληρωμής Ο λογαριασμός δεν έχει ρυθμιστεί apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} εγγραφές πληρωμών δεν μπορεί να φιλτράρεται από {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,Πίνακας για το είδος που θα εμφανιστεί στην ιστοσελίδα @@ -1525,7 +1526,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Λεπτομέρειες επίλυσης DocType: Quality Inspection Reading,Acceptance Criteria,Κριτήρια αποδοχής DocType: Item Attribute,Attribute Name,Χαρακτηριστικό όνομα -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Το είδος {0} πρέπει να είναι είδος πώλησης ή υπηρεσία στο {1} DocType: Item Group,Show In Website,Εμφάνιση στην ιστοσελίδα apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Ομάδα DocType: Task,Expected Time (in hours),Αναμενόμενη διάρκεια (σε ώρες) @@ -1557,7 +1557,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Κόστος αποστολής ,Pending Amount,Ποσό που εκκρεμεί DocType: Purchase Invoice Item,Conversion Factor,Συντελεστής μετατροπής DocType: Purchase Order,Delivered,Παραδόθηκε -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Ρύθμιση διακομιστή εισερχομένων για το email ID θέσης εργασίας. ( Π.Χ. Jobs@example.Com ) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Ρύθμιση διακομιστή εισερχομένων για το email ID θέσης εργασίας. ( Π.Χ. Jobs@example.Com ) DocType: Purchase Receipt,Vehicle Number,Αριθμός Οχημάτων DocType: Purchase Invoice,The date on which recurring invoice will be stop,Η ημερομηνία κατά την οποία το επαναλαμβανόμενο τιμολόγιο θα σταματήσει apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,"Σύνολο των κατανεμημένων φύλλα {0} δεν μπορεί να είναι μικρότερη από ό, τι έχει ήδη εγκριθεί φύλλα {1} για την περίοδο" @@ -1574,7 +1574,7 @@ DocType: HR Settings,HR Settings,Ρυθμίσεις ανθρωπίνου δυν apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Η αξίωση δαπανών είναι εν αναμονή έγκρισης. Μόνο ο υπεύθυνος έγκρισης δαπανών να ενημερώσει την κατάστασή της. DocType: Purchase Invoice,Additional Discount Amount,Πρόσθετες ποσό έκπτωσης DocType: Leave Block List Allow,Leave Block List Allow,Επίτρεψε λίστα αποκλεισμού ημερών άδειας -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Συντ δεν μπορεί να είναι κενό ή χώρος +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Συντ δεν μπορεί να είναι κενό ή χώρος apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Ομάδα για να μη Ομάδα apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Αθλητισμός apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Πραγματικό σύνολο @@ -1598,7 +1598,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},Ο συντελεστής μετατροπής Μ.Μ. είναι απαραίτητος στη γραμμή {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Η ημερομηνία εκκαθάρισης δεν μπορεί να είναι πριν από την ημερομηνία ελέγχου στη γραμμή {0} DocType: Salary Slip,Deduction,Κρατήση -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Είδους Τιμή προστεθεί {0} στην Τιμοκατάλογος {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Είδους Τιμή προστεθεί {0} στην Τιμοκατάλογος {1} DocType: Address Template,Address Template,Πρότυπο διεύθυνσης apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,Παρακαλώ εισάγετε το αναγνωριστικό Υπάλληλος αυτό το άτομο πωλήσεων DocType: Territory,Classification of Customers by region,Ταξινόμηση των πελατών ανά περιοχή @@ -1615,7 +1615,7 @@ DocType: Employee,Date of Birth,Ημερομηνία γέννησης apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Το είδος {0} έχει ήδη επιστραφεί DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** Η χρήση ** αντιπροσωπεύει ένα οικονομικό έτος. Όλες οι λογιστικές εγγραφές και άλλες σημαντικές συναλλαγές παρακολουθούνται ανά ** χρήση **. DocType: Opportunity,Customer / Lead Address,Πελάτης / διεύθυνση επαφής -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Προειδοποίηση: Μη έγκυρο πιστοποιητικό SSL στο συνημμένο {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Προειδοποίηση: Μη έγκυρο πιστοποιητικό SSL στο συνημμένο {0} DocType: Production Order Operation,Actual Operation Time,Πραγματικός χρόνος λειτουργίας DocType: Authorization Rule,Applicable To (User),Εφαρμοστέα σε (user) DocType: Purchase Taxes and Charges,Deduct,Αφαίρεσε @@ -1632,7 +1632,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Χώρισε το δελτίο αποστολής σημείωση σε πακέτα. apps/erpnext/erpnext/hooks.py +69,Shipments,Αποστολές DocType: Purchase Order Item,To be delivered to customer,Να παραδοθεί στον πελάτη -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Η κατάσταση του αρχείου καταγραφής χρονολογίου πρέπει να υποβληθεί. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Η κατάσταση του αρχείου καταγραφής χρονολογίου πρέπει να υποβληθεί. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,Αύξων αριθμός {0} δεν ανήκουν σε καμία αποθήκη apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Γραμμή # DocType: Purchase Invoice,In Words (Company Currency),Με λόγια (νόμισμα της εταιρείας) @@ -1649,7 +1649,7 @@ DocType: Leave Application,Total Leave Days,Σύνολο ημερών άδεια DocType: Email Digest,Note: Email will not be sent to disabled users,Σημείωση: το email δε θα σταλεί σε απενεργοποιημένους χρήστες apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Επιλέξτε εταιρία... DocType: Leave Control Panel,Leave blank if considered for all departments,Άφησε το κενό αν ισχύει για όλα τα τμήματα -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Μορφές απασχόλησης ( μόνιμη, σύμβαση, πρακτική άσκηση κ.λ.π. )." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Μορφές απασχόλησης ( μόνιμη, σύμβαση, πρακτική άσκηση κ.λ.π. )." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},Η {0} είναι απαραίτητη για το είδος {1} DocType: Currency Exchange,From Currency,Από το νόμισμα apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Παρακαλώ επιλέξτε χορηγούμενο ποσό, τύπο τιμολογίου και αριθμό τιμολογίου σε τουλάχιστον μία σειρά" @@ -1668,7 +1668,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,Σε επεξεργασία DocType: Authorization Rule,Itemwise Discount,Έκπτωση ανά είδος DocType: Purchase Order Item,Reference Document Type,Αναφορά Τύπος εγγράφου -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} κατά την παραγγελία πώλησης {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} κατά την παραγγελία πώλησης {1} DocType: Account,Fixed Asset,Πάγιο apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Απογραφή συνέχειες DocType: Activity Type,Default Billing Rate,Επιτόκιο Υπερημερίας Τιμολόγησης @@ -1678,7 +1678,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Πωλήσεις Τάξης να Πληρωμής DocType: Expense Claim Detail,Expense Claim Detail,Λεπτομέρειες αξίωσης δαπανών apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Τα αρχεία καταγραφής χρονολογίου δημιουργήθηκαν: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,Παρακαλώ επιλέξτε σωστό λογαριασμό +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,Παρακαλώ επιλέξτε σωστό λογαριασμό DocType: Item,Weight UOM,Μονάδα μέτρησης βάρους DocType: Employee,Blood Group,Ομάδα αίματος DocType: Purchase Invoice Item,Page Break,Αλλαγή σελίδας @@ -1713,7 +1713,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},Αναδρομή Λ.Υ.: {0} δεν μπορεί να είναι γονέας ή τέκνο της {2} DocType: Production Order Operation,Completed Qty,Ολοκληρωμένη ποσότητα apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","Για {0}, μόνο χρεωστικοί λογαριασμοί μπορούν να συνδέονται με άλλες καταχωρήσεις πίστωσης" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Ο τιμοκατάλογος {0} είναι απενεργοποιημένος +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Ο τιμοκατάλογος {0} είναι απενεργοποιημένος DocType: Manufacturing Settings,Allow Overtime,Επιτρέψτε Υπερωρίες apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} αύξοντες αριθμούς που απαιτούνται για τη θέση {1}. Έχετε προβλέπεται {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Τρέχουσα Αποτίμηση Τιμή @@ -1764,7 +1764,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Δε apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Ο αρ. Υπόθεσης δεν μπορεί να είναι 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,Αν έχετε ομάδα πωλήσεων και συνεργάτες πωλητών (κανάλια συνεργατών) μπορούν να επισημανθούν και να παρακολουθείται η συμβολή τους στη δραστηριότητα των πωλήσεων DocType: Item,Show a slideshow at the top of the page,Δείτε μια παρουσίαση στην κορυφή της σελίδας -DocType: Item,"Allow in Sales Order of type ""Service""",Επιτρέψτε σε Πωλήσεις Τάξης του τύπου "Υπηρεσία" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Καταστήματα DocType: Time Log,Projects Manager,Υπεύθυνος έργων DocType: Serial No,Delivery Time,Χρόνος παράδοσης @@ -1779,6 +1778,7 @@ DocType: Rename Tool,Rename Tool,Εργαλείο μετονομασίας apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Ενημέρωση κόστους DocType: Item Reorder,Item Reorder,Αναδιάταξη είδους apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Μεταφορά υλικού +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Θέση {0} πρέπει να είναι μια Πωλήσεις Θέση στο {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Καθορίστε τις λειτουργίες, το κόστος λειτουργίας και να δώστε ένα μοναδικό αριθμό λειτουργίας στις λειτουργίες σας." DocType: Purchase Invoice,Price List Currency,Νόμισμα τιμοκαταλόγου DocType: Naming Series,User must always select,Ο χρήστης πρέπει πάντα να επιλέγει @@ -1799,7 +1799,7 @@ DocType: Appraisal,Employee,Υπάλληλος apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Εισαγωγή e-mail από apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Πρόσκληση ως χρήστη DocType: Features Setup,After Sale Installations,Εγκαταστάσεις μετά την πώληση -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} είναι πλήρως τιμολογημένο +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} είναι πλήρως τιμολογημένο DocType: Workstation Working Hour,End Time,Ώρα λήξης apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Πρότυποι όροι σύμβασης για πωλήσεις ή αγορές. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Ομαδοποίηση κατά αποδεικτικό @@ -1825,7 +1825,7 @@ DocType: Upload Attendance,Attendance To Date,Προσέλευση μέχρι η apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Ρύθμιση διακομιστή εισερχομένων για το email ID πωλήσεων. ( Π.Χ. Sales@example.Com ) DocType: Warranty Claim,Raised By,Δημιουργήθηκε από DocType: Payment Gateway Account,Payment Account,Λογαριασμός πληρωμών -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,Παρακαλώ ορίστε εταιρεία για να προχωρήσετε +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,Παρακαλώ ορίστε εταιρεία για να προχωρήσετε apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Καθαρή Αλλαγή σε εισπρακτέους λογαριασμούς apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Αντισταθμιστικά απενεργοποιημένα DocType: Quality Inspection Reading,Accepted,Αποδεκτό @@ -1837,14 +1837,14 @@ DocType: Shipping Rule,Shipping Rule Label,Ετικέτα κανόνα αποσ apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Το πεδίο πρώτων ύλών δεν μπορεί να είναι κενό. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Δεν ήταν δυνατή η ενημέρωση των αποθεμάτων, τιμολόγιο περιέχει πτώση στέλνοντας στοιχείο." DocType: Newsletter,Test,Δοκιμή -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Δεδομένου ότι υπάρχουν χρηματιστηριακές συναλλαγές για αυτό το προϊόν, \ δεν μπορείτε να αλλάξετε τις τιμές των «Έχει Αύξων αριθμός», «Έχει Παρτίδα No», «Είναι αναντικατάστατο» και «Μέθοδος αποτίμησης»" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Γρήγορη Εφημερίδα Είσοδος apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,"Δεν μπορείτε να αλλάξετε τιμοκατάλογο, αν η λίστα υλικών αναφέρεται σε οποιουδήποτε είδος" DocType: Employee,Previous Work Experience,Προηγούμενη εργασιακή εμπειρία DocType: Stock Entry,For Quantity,Για Ποσότητα apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},Παρακαλώ εισάγετε προγραμματισμένη ποσότητα για το είδος {0} στη γραμμή {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} Δεν έχει υποβληθεί +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} Δεν έχει υποβληθεί apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Αιτήσεις για είδη DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Μια ξεχωριστή εντολή παραγωγής θα δημιουργηθεί για κάθε τελικό καλό είδος. DocType: Purchase Invoice,Terms and Conditions1,Όροι και προϋποθέσεις 1 @@ -1869,6 +1869,7 @@ DocType: Notification Control,Expense Claim Approved Message,Μήνυμα έγκ DocType: Email Digest,How frequently?,Πόσο συχνά; DocType: Purchase Receipt,Get Current Stock,Βρες το τρέχον απόθεμα apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Δέντρο του Πίνακα Υλικών +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Mark Παρόν apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Η ημερομηνία έναρξης συντήρησης δεν μπορεί να είναι πριν από την ημερομηνία παράδοσης για τον σειριακό αριθμό {0} DocType: Production Order,Actual End Date,Πραγματική ημερομηνία λήξης DocType: Authorization Rule,Applicable To (Role),Εφαρμοστέα σε (ρόλος) @@ -1883,7 +1884,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,"Η ημερομηνία λήξης της σύμβασης πρέπει να είναι μεγαλύτερη από ό, τι ημερομηνία ενώνουμε" DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,"Ένα τρίτο μέρος διανομέας / αντιπρόσωπος / πράκτορας με προμήθεια / affiliate / μεταπωλητής, ο οποίος πωλεί τα προϊόντα της εταιρείας για μια προμήθεια." DocType: Customer Group,Has Child Node,Έχει θυγατρικό κόμβο -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} κατά την παραγγελία αγορών {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} κατά την παραγγελία αγορών {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Εισάγετε στατικές παραμέτρους url εδώ (π.Χ. Αποστολέα = erpnext, όνομα = erpnext, password = 1234 κλπ.)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} δεν είναι σε καμία ενεργή χρήση. Για περισσότερες πληροφορίες δείτε {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Αυτό είναι ένα παράδειγμα ιστοσελίδας που δημιουργείται αυτόματα από το erpnext @@ -1931,7 +1932,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Πρόσθεση ή Έκπτωση: Αν θέλετε να προσθέσετε ή να αφαιρέσετε τον φόρο." DocType: Purchase Receipt Item,Recd Quantity,Ποσότητα που παραλήφθηκε apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Δεν γίνεται να παραχθούν είδη {0} περισσότερα από την ποσότητα παραγγελίας πώλησης {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Χρηματιστήριο Έναρξη {0} δεν έχει υποβληθεί +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Χρηματιστήριο Έναρξη {0} δεν έχει υποβληθεί DocType: Payment Reconciliation,Bank / Cash Account,Λογαριασμός καταθέσεων σε τράπεζα / μετρητών DocType: Tax Rule,Billing City,Πόλη Τιμολόγησης DocType: Global Defaults,Hide Currency Symbol,Απόκρυψη συμβόλου νομίσματος @@ -1957,7 +1958,7 @@ DocType: Salary Structure,Total Earning,Σύνολο κέρδους DocType: Purchase Receipt,Time at which materials were received,Η χρονική στιγμή κατά την οποία παρελήφθησαν τα υλικά apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Διευθύνσεις μου DocType: Stock Ledger Entry,Outgoing Rate,Ο απερχόμενος Τιμή -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Κύρια εγγραφή κλάδου οργανισμού. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Κύρια εγγραφή κλάδου οργανισμού. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,ή DocType: Sales Order,Billing Status,Κατάσταση χρέωσης apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Έξοδα κοινής ωφέλειας @@ -1995,7 +1996,7 @@ DocType: Bin,Reserved Quantity,Δεσμευμένη ποσότητα DocType: Landed Cost Voucher,Purchase Receipt Items,Είδη αποδεικτικού παραλαβής αγοράς apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Έντυπα Προσαρμογή DocType: Account,Income Account,Λογαριασμός εσόδων -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Παράδοση +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Παράδοση DocType: Stock Reconciliation Item,Current Qty,Τρέχουσα Ποσότητα DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",Ανατρέξτε στην ενότητα κοστολόγησης την 'τιμή υλικών με βάση' DocType: Appraisal Goal,Key Responsibility Area,Βασικός τομέας ευθύνης @@ -2007,9 +2008,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,Α DocType: Notification Control,Purchase Order Message,Μήνυμα παραγγελίας αγοράς DocType: Tax Rule,Shipping Country,Αποστολές Χώρα DocType: Upload Attendance,Upload HTML,Ανεβάστε ΗΤΜΛ -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","Το σύνολο προκαταβολών ({0}) για την παραγγελία {1} δεν μπορεί να είναι μεγαλύτερο \ - από το γενικό σύνολο ({2})" DocType: Employee,Relieving Date,Ημερομηνία απαλλαγής apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.",Ο κανόνας τιμολόγησης γίνεται για να αντικατασταθεί ο τιμοκατάλογος / να καθοριστεί ποσοστό έκπτωσης με βάση ορισμένα κριτήρια. DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Η αποθήκη μπορεί να αλλάξει μόνο μέσω καταχώρησης αποθέματος / σημειώματος παράδοσης / αποδεικτικού παραλαβής αγοράς @@ -2019,8 +2017,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Φό apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Εάν ο κανόνας τιμολόγησης δημιουργήθηκε για την τιμή τότε θα αντικαταστήσει τον τιμοκατάλογο. Η τιμή του κανόνα τιμολόγησης είναι η τελική τιμή, οπότε δε θα πρέπει να εφαρμόζεται καμία επιπλέον έκπτωση. Ως εκ τούτου, στις συναλλαγές, όπως παραγγελίες πώλησης, παραγγελία αγοράς κλπ, θα εμφανίζεται στο πεδίο τιμή, παρά στο πεδίο τιμή τιμοκαταλόγου." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Παρακολούθηση επαφών με βάση τον τύπο βιομηχανίας. DocType: Item Supplier,Item Supplier,Προμηθευτής είδους -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,Παρακαλώ εισάγετε κωδικό είδους για να δείτε τον αρ. παρτίδας -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},Παρακαλώ επιλέξτε μια τιμή για {0} προσφορά προς {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,Παρακαλώ εισάγετε κωδικό είδους για να δείτε τον αρ. παρτίδας +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},Παρακαλώ επιλέξτε μια τιμή για {0} προσφορά προς {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Όλες τις διευθύνσεις. DocType: Company,Stock Settings,Ρυθμίσεις αποθέματος apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Η συγχώνευση είναι δυνατή μόνο εάν οι ακόλουθες ιδιότητες ίδια στα δύο αρχεία. Είναι η Ομάδα, Τύπος Root, Company" @@ -2043,7 +2041,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Αριθμός επιταγή DocType: Payment Tool Detail,Payment Tool Detail,Λεπτομέρειες εργαλείου πληρωμής ,Sales Browser,Περιηγητής πωλήσεων DocType: Journal Entry,Total Credit,Συνολική πίστωση -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Προειδοποίηση: Ένας άλλος {0} # {1} υπάρχει κατά την έναρξη αποθέματος {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Προειδοποίηση: Ένας άλλος {0} # {1} υπάρχει κατά την έναρξη αποθέματος {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Τοπικός apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Δάνεια και προκαταβολές ( ενεργητικό ) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Χρεώστες @@ -2063,8 +2061,8 @@ DocType: Price List,Price List Master,Κύρια εγγραφή τιμοκατα DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,Όλες οι συναλλαγές πωλήσεων μπορούν να σημανθούν κατά πολλαπλούς ** πωλητές ** έτσι ώστε να μπορείτε να ρυθμίσετε και να παρακολουθήσετε στόχους. ,S.O. No.,Αρ. Παρ. Πώλησης DocType: Production Order Operation,Make Time Log,Δημιούργησε αρχείο καταγραφής χρόνου -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Παρακαλούμε να ορίσετε την ποσότητα αναπαραγγελίας -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},Παρακαλώ δημιουργήστε πελάτη από επαφή {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Παρακαλούμε να ορίσετε την ποσότητα αναπαραγγελίας +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},Παρακαλώ δημιουργήστε πελάτη από επαφή {0} DocType: Price List,Applicable for Countries,Ισχύει για χώρες apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Υπολογιστές apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,Αυτή είναι μια κύρια ομάδα πελατών ρίζα και δεν μπορεί να επεξεργαστεί. @@ -2112,7 +2110,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Χρέ DocType: Payment Reconciliation Invoice,Outstanding Amount,Οφειλόμενο ποσό DocType: Project Task,Working,Εργασία DocType: Stock Ledger Entry,Stock Queue (FIFO),Ουρά αποθέματος (fifo) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Παρακαλώ επιλέξτε αρχεία καταγραφής χρονολογίου +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Παρακαλώ επιλέξτε αρχεία καταγραφής χρονολογίου apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},Το {0} δεν ανήκει στη εταιρεία {1} DocType: Account,Round Off,Στρογγυλεύουν ,Requested Qty,Ζητούμενη ποσότητα @@ -2150,7 +2148,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Βρες σχετικές καταχωρήσεις apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Λογιστική εγγραφή για απόθεμα DocType: Sales Invoice,Sales Team1,Ομάδα πωλήσεων 1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Το είδος {0} δεν υπάρχει +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Το είδος {0} δεν υπάρχει DocType: Sales Invoice,Customer Address,Διεύθυνση πελάτη DocType: Payment Request,Recipient and Message,Παραλήπτη και το μήνυμα DocType: Purchase Invoice,Apply Additional Discount On,Εφαρμόστε επιπλέον έκπτωση On @@ -2169,7 +2167,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Σίγαση Email apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Τρόφιμα, ποτά και καπνός" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL or BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Μπορούν να πληρώνουν κατά unbilled {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Μπορούν να πληρώνουν κατά unbilled {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Το ποσοστό προμήθειας δεν μπορεί να υπερβαίνει το 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Ελάχιστη ποσότητα DocType: Stock Entry,Subcontract,Υπεργολαβία @@ -2187,9 +2185,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Λογισ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Χρώμα DocType: Maintenance Visit,Scheduled,Προγραμματισμένη apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle",Παρακαλώ επιλέξτε το στοιχείο στο οποίο «Είναι αναντικατάστατο" είναι "Όχι" και "είναι οι πωλήσεις Θέση" είναι "ναι" και δεν υπάρχει άλλος Bundle Προϊόν +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Σύνολο εκ των προτέρων ({0}) κατά Παραγγελία {1} δεν μπορεί να είναι μεγαλύτερη από το Γενικό σύνολο ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Επιλέξτε μηνιαία κατανομή για την άνιση κατανομή στόχων στους μήνες. DocType: Purchase Invoice Item,Valuation Rate,Ποσοστό αποτίμησης -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Το νόμισμα του τιμοκαταλόγου δεν έχει επιλεγεί +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Το νόμισμα του τιμοκαταλόγου δεν έχει επιλεγεί apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,Γραμμή είδους {0}: Η απόδειξη παραλαβής {1} δεν υπάρχει στον παραπάνω πίνακα με τα «αποδεικτικά παραλαβής» apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Ο υπάλληλος {0} έχει ήδη υποβάλει αίτηση για {1} μεταξύ {2} και {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Ημερομηνία έναρξης του έργου @@ -2201,6 +2200,7 @@ DocType: Quality Inspection,Inspection Type,Τύπος ελέγχου apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},Παρακαλώ επιλέξτε {0} DocType: C-Form,C-Form No,Αρ. C-Form DocType: BOM,Exploded_items,Είδη αναλυτικά +DocType: Employee Attendance Tool,Unmarked Attendance,Χωρίς διακριτικά Συμμετοχή apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Ερευνητής apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,Παρακαλώ αποθηκεύστε το ενημερωτικό δελτίο πριν από την αποστολή apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Όνομα ή Email είναι υποχρεωτικό @@ -2226,7 +2226,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Επι DocType: Payment Gateway,Gateway,Είσοδος πυλών apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Προμηθευτής> Τύπος προμηθευτή apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Παρακαλώ εισάγετε την ημερομηνία απαλλαγής -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Ποσό +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Ποσό apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,Μόνο αιτήσεις άδειας με κατάσταση 'εγκρίθηκε' μπορούν να υποβληθούν apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Ο τίτλος της διεύθυνσης είναι υποχρεωτικός. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,Πληκτρολογήστε το όνομα της εκστρατείας εάν η πηγή της έρευνας είναι εκστρατεία @@ -2241,10 +2241,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Έγκυρη Αποθήκη DocType: Bank Reconciliation Detail,Posting Date,Ημερομηνία αποστολής DocType: Item,Valuation Method,Μέθοδος αποτίμησης apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Ανίκανος να βρει συναλλαγματική ισοτιμία για {0} έως {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Mark Μισή Μέρα DocType: Sales Invoice,Sales Team,Ομάδα πωλήσεων apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Διπλότυπη καταχώρηση. DocType: Serial No,Under Warranty,Στα πλαίσια της εγγύησης -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Σφάλμα] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Σφάλμα] DocType: Sales Order,In Words will be visible once you save the Sales Order.,Με λόγια θα είναι ορατά αφού αποθηκεύσετε την παραγγελία πώλησης. ,Employee Birthday,Γενέθλια υπαλλήλων apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Αρχικό κεφάλαιο @@ -2267,6 +2268,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,Ένα κέντρο κόστους με υπάρχουσες συναλλαγές δεν μπορεί να μετατραπεί σε ομάδα DocType: Account,Depreciation,Απόσβεση apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Προμηθευτής(-ές) +DocType: Employee Attendance Tool,Employee Attendance Tool,Εργαλείο συμμετοχή των εργαζομένων DocType: Supplier,Credit Limit,Πιστωτικό όριο apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Επιλέξτε τον τύπο της συναλλαγής DocType: GL Entry,Voucher No,Αρ. αποδεικτικού @@ -2293,7 +2295,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Ο λογαριασμός ρίζας δεν μπορεί να διαγραφεί ,Is Primary Address,Είναι Πρωτοβάθμια Διεύθυνση DocType: Production Order,Work-in-Progress Warehouse,Αποθήκη εργασιών σε εξέλιξη -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Αναφορά # {0} της {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Αναφορά # {0} της {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Διαχειριστείτε Διευθύνσεις DocType: Pricing Rule,Item Code,Κωδικός είδους DocType: Production Planning Tool,Create Production Orders,Δημιουργία εντολών παραγωγής @@ -2320,7 +2322,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Συμφωνία τραπεζι apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Λήψη ενημερώσεων apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,H αίτηση υλικού {0} έχει ακυρωθεί ή διακοπεί apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Προσθέστε μερικά αρχεία του δείγματος -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Αφήστε Διαχείρισης +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Αφήστε Διαχείρισης apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Ομαδοποίηση κατά λογαριασμό DocType: Sales Order,Fully Delivered,Έχει παραδοθεί πλήρως DocType: Lead,Lower Income,Χαμηλότερο εισόδημα @@ -2335,6 +2337,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"Το πεδίο ""Από Ημερομηνία"" πρέπει να είναι μετά το πεδίο ""Έως Ημερομηνία""" ,Stock Projected Qty,Προβλεπόμενη ποσότητα αποθέματος apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Ο πελάτης {0} δεν ανήκει στο έργο {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Αξιοσημείωτη Συμμετοχή HTML DocType: Sales Order,Customer's Purchase Order,Εντολή Αγοράς του Πελάτη DocType: Warranty Claim,From Company,Από την εταιρεία apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Αξία ή ποσ @@ -2399,6 +2402,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Τραπεζικό έμβασμα apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,Παρακαλώ επιλέξτε τραπεζικό λογαριασμό DocType: Newsletter,Create and Send Newsletters,Δημιουργήστε και στείλτε τα ενημερωτικά δελτία +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Ελεγξε τα ολα DocType: Sales Order,Recurring Order,Επαναλαμβανόμενη παραγγελία DocType: Company,Default Income Account,Προεπιλεγμένος λογαριασμός εσόδων apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Ομάδα πελατών / πελάτης @@ -2430,6 +2434,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Επιστροφή Ε DocType: Item,Warranty Period (in days),Περίοδος εγγύησης (σε ημέρες) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Καθαρές ροές από λειτουργικές δραστηριότητες apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,Π.Χ. Φπα +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Συμμετοχή σήμα Υπάλληλος χύδην apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Στοιχείο 4 DocType: Journal Entry Account,Journal Entry Account,Λογαριασμός λογιστικής εγγραφής DocType: Shopping Cart Settings,Quotation Series,Σειρά προσφορών @@ -2574,14 +2579,14 @@ DocType: Task,Actual Start Date (via Time Logs),Πραγματική Ημερο DocType: Stock Reconciliation Item,Before reconciliation,Πριν συμφιλίωση apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Έως {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Φόροι και επιβαρύνσεις που προστέθηκαν (νόμισμα της εταιρείας) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Η γραμμή φόρου είδους {0} πρέπει να έχει λογαριασμό τύπου φόρος ή έσοδα ή δαπάνη ή χρέωση +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Η γραμμή φόρου είδους {0} πρέπει να έχει λογαριασμό τύπου φόρος ή έσοδα ή δαπάνη ή χρέωση DocType: Sales Order,Partly Billed,Μερικώς τιμολογημένος DocType: Item,Default BOM,Προεπιλεγμένη Λ.Υ. apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,Παρακαλώ πληκτρολογήστε ξανά το όνομα της εταιρείας για να επιβεβαιώσετε apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Συνολικού ανεξόφλητου υπολοίπου DocType: Time Log Batch,Total Hours,Σύνολο ωρών DocType: Journal Entry,Printing Settings,Ρυθμίσεις εκτύπωσης -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Η συνολική χρέωση πρέπει να είναι ίση με τη συνολική πίστωση. Η διαφορά είναι {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Η συνολική χρέωση πρέπει να είναι ίση με τη συνολική πίστωση. Η διαφορά είναι {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Αυτοκίνητο apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Από το δελτίο αποστολής DocType: Time Log,From Time,Από ώρα @@ -2627,7 +2632,7 @@ DocType: Purchase Invoice Item,Image View,Προβολή εικόνας DocType: Issue,Opening Time,Ώρα ανοίγματος apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,Τα πεδία από και έως ημερομηνία είναι απαραίτητα apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Κινητές αξίες & χρηματιστήρια εμπορευμάτων -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Προεπιλεγμένη μονάδα μέτρησης για την παραλλαγή '{0}' πρέπει να είναι ίδιο με το πρότυπο '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Προεπιλεγμένη μονάδα μέτρησης για την παραλλαγή '{0}' πρέπει να είναι ίδιο με το πρότυπο '{1}' DocType: Shipping Rule,Calculate Based On,Υπολογισμός με βάση: DocType: Delivery Note Item,From Warehouse,Από Αποθήκης DocType: Purchase Taxes and Charges,Valuation and Total,Αποτίμηση και σύνολο @@ -2649,7 +2654,7 @@ DocType: Leave Application,Follow via Email,Ακολουθήστε μέσω emai DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Ποσό φόρου μετά ποσού έκπτωσης apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Υπάρχει θυγατρικός λογαριασμός για αυτόν το λογαριασμό. Δεν μπορείτε να διαγράψετε αυτόν το λογαριασμό. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Είτε ποσότητα-στόχος ή ποσό-στόχος είναι απαραίτητα. -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},Δεν υπάρχει προεπιλεγμένη Λ.Υ. Για το είδος {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},Δεν υπάρχει προεπιλεγμένη Λ.Υ. Για το είδος {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,Παρακαλώ επιλέξτε Ημερομηνία Δημοσίευσης πρώτη apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Ημερομηνία ανοίγματος πρέπει να είναι πριν από την Ημερομηνία Κλεισίματος DocType: Leave Control Panel,Carry Forward,Μεταφορά προς τα εμπρός @@ -2726,7 +2731,7 @@ DocType: Leave Type,Is Encash,Είναι είσπραξη DocType: Purchase Invoice,Mobile No,Αρ. Κινητού DocType: Payment Tool,Make Journal Entry,Δημιούργησε λογιστική εγγραφή DocType: Leave Allocation,New Leaves Allocated,Νέες άδειες που κατανεμήθηκαν -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Τα στοιχεία με βάση το έργο δεν είναι διαθέσιμα στοιχεία για προσφορά +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Τα στοιχεία με βάση το έργο δεν είναι διαθέσιμα στοιχεία για προσφορά DocType: Project,Expected End Date,Αναμενόμενη ημερομηνία λήξης DocType: Appraisal Template,Appraisal Template Title,Τίτλος προτύπου αξιολόγησης apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Εμπορικός @@ -2774,6 +2779,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,Α apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Παρακαλώ ορίστε μια DocType: Offer Letter,Awaiting Response,Αναμονή Απάντησης apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Πάνω από +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Χρόνος καταγραφής έχει χρεωθεί DocType: Salary Slip,Earning & Deduction,Κέρδος και έκπτωση apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Ο λογαριασμός {0} δεν μπορεί να είναι ομάδα apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Προαιρετικό. Αυτή η ρύθμιση θα χρησιμοποιηθεί για το φιλτράρισμα σε διάφορες συναλλαγές. @@ -2844,14 +2850,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Διαγράφηκε επιτυχώς όλες τις συναλλαγές που σχετίζονται με αυτή την εταιρεία! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Ως ημερομηνία για apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Επιτήρηση -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Η προεπιλεγμένη αποθήκη είναι απαραίτητη για αποθηκεύσιμα είδη. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Η προεπιλεγμένη αποθήκη είναι απαραίτητη για αποθηκεύσιμα είδη. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Πληρωμή του μισθού για τον μήνα {0} και έτος {1} DocType: Stock Settings,Auto insert Price List rate if missing,Αυτόματη ένθετο ποσοστό Τιμοκατάλογος αν λείπει apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Συνολικό καταβεβλημένο ποσό ,Transferred Qty,Μεταφερόμενη ποσότητα apps/erpnext/erpnext/config/learn.py +11,Navigating,Πλοήγηση apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Προγραμματισμός -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Δημιούργησε χρονολόγιο παρτίδας +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Δημιούργησε χρονολόγιο παρτίδας apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Εκδόθηκε DocType: Project,Total Billing Amount (via Time Logs),Συνολικό Ποσό Χρέωσης (μέσω χρόνος Καταγράφει) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Πουλάμε αυτό το είδος @@ -2859,7 +2865,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Ποσότητα θα πρέπει να είναι μεγαλύτερη από 0 DocType: Journal Entry,Cash Entry,Καταχώρηση μετρητών DocType: Sales Partner,Contact Desc,Περιγραφή επαφής -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Τύπος των φύλλων, όπως τυπική, για λόγους υγείας κλπ." +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Τύπος των φύλλων, όπως τυπική, για λόγους υγείας κλπ." DocType: Email Digest,Send regular summary reports via Email.,"Αποστολή τακτικών συνοπτικών εκθέσεων, μέσω email." DocType: Brand,Item Manager,Θέση Διευθυντή DocType: Cost Center,Add rows to set annual budgets on Accounts.,Προσθέστε γραμμές για να θέσουν ετήσιους προϋπολογισμούς σε λογαριασμούς. @@ -2874,7 +2880,7 @@ DocType: GL Entry,Party Type,Τύπος συμβαλλόμενου apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Η πρώτη ύλη δεν μπορεί να είναι ίδια με το κύριο είδος DocType: Item Attribute Value,Abbreviation,Συντομογραφία apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Δεν επιτρέπεται δεδομένου ότι το {0} υπερβαίνει τα όρια -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Κύρια εγγραφή προτύπου μισθολογίου. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Κύρια εγγραφή προτύπου μισθολογίου. DocType: Leave Type,Max Days Leave Allowed,Μέγιστο πλήθος ημερών άδειας που επιτρέπεται apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Ορισμός φορολογική Κανόνας για το καλάθι αγορών DocType: Payment Tool,Set Matching Amounts,Ορισμός Matching Ποσά @@ -2887,7 +2893,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Προ DocType: Stock Settings,Role Allowed to edit frozen stock,Ο ρόλος έχει τη δυνατότητα επεξεργασίας παγωμένου απόθεματος ,Territory Target Variance Item Group-Wise,Εύρος στόχων περιοχής ανά ομάδα ειδών apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Όλες οι ομάδες πελατών -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,Η {0} είναι απαραίτητη. Ίσως δεν έχει δημιουργηθεί εγγραφή ισοτιμίας συναλλάγματος από {1} έως {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,Η {0} είναι απαραίτητη. Ίσως δεν έχει δημιουργηθεί εγγραφή ισοτιμίας συναλλάγματος από {1} έως {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Φόρος προτύπου είναι υποχρεωτική. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Ο λογαριασμός {0}: γονικός λογαριασμός {1} δεν υπάρχει DocType: Purchase Invoice Item,Price List Rate (Company Currency),Τιμή τιμοκαταλόγου (νόμισμα της εταιρείας) @@ -2907,8 +2913,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Φορολογικές ,Item-wise Price List Rate,Τιμή τιμοκαταλόγου ανά είδος apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Προσφορά προμηθευτή DocType: Quotation,In Words will be visible once you save the Quotation.,Με λόγια θα είναι ορατά αφού αποθηκεύσετε το πρόσημο. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} Είναι σταματημένο -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Το barcode {0} έχει ήδη χρησιμοποιηθεί στο είδος {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} Είναι σταματημένο +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Το barcode {0} έχει ήδη χρησιμοποιηθεί στο είδος {1} DocType: Lead,Add to calendar on this date,Προσθήκη στο ημερολόγιο την ημερομηνία αυτή apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Κανόνες για την προσθήκη εξόδων αποστολής. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Ανερχόμενες εκδηλώσεις @@ -2935,8 +2941,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,Π apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Τουλάχιστον μια αποθήκη είναι απαραίτητη DocType: Serial No,Out of Warranty,Εκτός εγγύησης DocType: BOM Replace Tool,Replace,Αντικατάσταση -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} κατά το τιμολόγιο πώλησης {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Παρακαλώ εισάγετε προεπιλεγμένη μονάδα μέτρησης +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} κατά το τιμολόγιο πώλησης {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Παρακαλώ εισάγετε προεπιλεγμένη μονάδα μέτρησης DocType: Purchase Invoice Item,Project Name,Όνομα έργου DocType: Supplier,Mention if non-standard receivable account,Αναφέρετε αν μη τυποποιημένα εισπρακτέα λογαριασμού DocType: Journal Entry Account,If Income or Expense,Εάν είναι έσοδα ή δαπάνη @@ -2961,7 +2967,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Φορολογικό Έτος: {0} δεν υπάρχει DocType: Currency Exchange,To Currency,Σε νόμισμα DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Επίτρεψε στους παρακάτω χρήστες να εγκρίνουν αιτήσεις αδειών για αποκλεισμένες ημέρες. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Τύποι των αιτημάτων εξόδων. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Τύποι των αιτημάτων εξόδων. DocType: Item,Taxes,Φόροι apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Καταβληθεί και δεν παραδόθηκαν DocType: Project,Default Cost Center,Προεπιλεγμένο κέντρο κόστους @@ -2991,7 +2997,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Σειρά # {0}: Αύξων αριθμός {1} δεν ταιριάζει με το {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Περιστασιακή άδεια DocType: Batch,Batch ID,ID παρτίδας -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Σημείωση : {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Σημείωση : {0} ,Delivery Note Trends,Τάσεις δελτίου αποστολής apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Περίληψη της Εβδομάδας apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} Το είδος στη γραμμή {1} πρέπει να είναι αγορασμένο ή από υπεργολαβία @@ -3031,6 +3037,7 @@ DocType: Project Task,Pending Review,Εκκρεμής αναθεώρηση apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Κάντε κλικ εδώ για να πληρώσει DocType: Task,Total Expense Claim (via Expense Claim),Σύνολο αξίωση Εξόδων (μέσω αιτημάτων εξόδων) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,ID πελάτη +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Mark Απών apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,"Σε καιρό πρέπει να είναι μεγαλύτερη από ό, τι από καιρό" DocType: Journal Entry Account,Exchange Rate,Ισοτιμία apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Η παραγγελία πώλησης {0} δεν έχει υποβληθεί @@ -3078,7 +3085,7 @@ DocType: Item Group,Default Expense Account,Προεπιλεγμένος λογ DocType: Employee,Notice (days),Ειδοποίηση (ημέρες) DocType: Tax Rule,Sales Tax Template,Φόρος επί των πωλήσεων Πρότυπο DocType: Employee,Encashment Date,Ημερομηνία εξαργύρωσης -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","šΚατά τον τύπο του αποδεικτικού πρέπει να είναι παραγγελία αγοράς, τιμολόγιο αγοράς ή ημερολογιακή εγγραφή" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","šΚατά τον τύπο του αποδεικτικού πρέπει να είναι παραγγελία αγοράς, τιμολόγιο αγοράς ή ημερολογιακή εγγραφή" DocType: Account,Stock Adjustment,Διευθέτηση αποθέματος apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Υπάρχει Προεπιλογή Δραστηριότητα κόστος για Τύπος Δραστηριότητα - {0} DocType: Production Order,Planned Operating Cost,Προγραμματισμένο λειτουργικό κόστος @@ -3132,6 +3139,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Καταχώρηση διαγραφής DocType: BOM,Rate Of Materials Based On,Τιμή υλικών με βάση apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Στατιστικά στοιχεία υποστήριξης +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Καταργήστε την επιλογή όλων apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Η εταιρεία λείπει στις αποθήκες {0} DocType: POS Profile,Terms and Conditions,Όροι και προϋποθέσεις apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},Η 'εώς ημερομηνία' πρέπει να είναι εντός της χρήσης. Υποθέτοντας 'έως ημερομηνία' = {0} @@ -3153,7 +3161,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Για να ορίσετε την τρέχουσα χρήση ως προεπιλογή, κάντε κλικ στο 'ορισμός ως προεπιλογή'" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Ρύθμιση διακομιστή εισερχομένων για το email ID υποστήριξης. ( Π.Χ. Support@example.Com ) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Έλλειψη ποσότητας -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Παραλλαγή Θέση {0} υπάρχει με ίδια χαρακτηριστικά +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Παραλλαγή Θέση {0} υπάρχει με ίδια χαρακτηριστικά DocType: Salary Slip,Salary Slip,Βεβαίωση αποδοχών apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,Το πεδίο 'έως ημερομηνία' είναι απαραίτητο. DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Δημιουργία δελτίων συσκευασίας για τα πακέτα που είναι να παραδοθούν. Χρησιμοποιείται για να ενημερώσει τον αριθμό πακέτου, το περιεχόμενο του πακέτου και το βάρος του." @@ -3201,7 +3209,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Δεί DocType: Item Attribute Value,Attribute Value,Χαρακτηριστικό αξία apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","Email ID, όπου ένας υποψήφιος θα αποστείλει email π.Χ. 'jobs@example.Com'" ,Itemwise Recommended Reorder Level,Προτεινόμενο επίπεδο επαναπαραγγελίας ανά είδος -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,Παρακαλώ επιλέξτε {0} πρώτα +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,Παρακαλώ επιλέξτε {0} πρώτα DocType: Features Setup,To get Item Group in details table,Για λήψη της oμάδας ειδών σε πίνακα λεπτομερειών apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Παρτίδα {0} του σημείου {1} έχει λήξει. DocType: Sales Invoice,Commission,Προμήθεια @@ -3256,7 +3264,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Βρες εκκρεμή αποδεικτικά DocType: Warranty Claim,Resolved By,Επιλύθηκε από DocType: Appraisal,Start Date,Ημερομηνία έναρξης -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Κατανομή αδειών για μία περίοδο. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Κατανομή αδειών για μία περίοδο. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Οι επιταγές και καταθέσεις εκκαθαριστεί ορθά apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Κάντε κλικ εδώ για να επιβεβαιώσετε apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Ο λογαριασμός {0}: δεν μπορεί να οριστεί ως γονικός λογαριασμός του εαυτού του. @@ -3276,7 +3284,7 @@ DocType: Employee,Educational Qualification,Εκπαιδευτικά προσό DocType: Workstation,Operating Costs,Λειτουργικά έξοδα DocType: Employee Leave Approver,Employee Leave Approver,Υπεύθυνος έγκρισης αδειών υπαλλήλου apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} έχει προστεθεί με επιτυχία στην λίστα ενημερωτικών δελτίων μας. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Γραμμή {0}: μια καταχώρηση αναδιάταξης υπάρχει ήδη για αυτή την αποθήκη {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Γραμμή {0}: μια καταχώρηση αναδιάταξης υπάρχει ήδη για αυτή την αποθήκη {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Δεν μπορεί να δηλώθει ως απολεσθέν, επειδή έχει γίνει προσφορά." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Κύρια εγγραφή υπευθύνου αγορών apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Η εντολή παραγωγής {0} πρέπει να υποβληθεί @@ -3300,7 +3308,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Το τιμολόγιο πώλησης {0} έχει ήδη υποβληθεί apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Ημερομηνία ολοκλήρωσης DocType: Purchase Invoice Item,Amount (Company Currency),Ποσό (νόμισμα της εταιρείας) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Κύρια εγγραφή μονάδας (τμήματος) οργάνωσης. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Κύρια εγγραφή μονάδας (τμήματος) οργάνωσης. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Παρακαλώ εισάγετε ένα έγκυρο αριθμό κινητού DocType: Budget Detail,Budget Detail,Λεπτομέρειες προϋπολογισμού apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,Παρακαλώ εισάγετε το μήνυμα πριν από την αποστολή @@ -3316,13 +3324,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Που έχουν παρα ,Serial No Service Contract Expiry,Λήξη σύμβασης παροχής υπηρεσιών για τον σειριακό αριθμό DocType: Item,Unit of Measure Conversion,Μονάδα μετατροπής Μέτρου apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Υπάλληλος που δεν μπορεί να αλλάξει -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Δεν μπορείτε να πιστώσετε και να χρεώσετε ταυτόχρονα τον ίδιο λογαριασμό +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Δεν μπορείτε να πιστώσετε και να χρεώσετε ταυτόχρονα τον ίδιο λογαριασμό DocType: Naming Series,Help HTML,Βοήθεια ΗΤΜΛ apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Το σύνολο βάρους πού έχει ανατεθεί έπρεπε να είναι 100 %. Είναι {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Επίδομα πάνω-{0} ξεπεράστηκε για το είδος {1} DocType: Address,Name of person or organization that this address belongs to.,Όνομα προσώπου ή οργανισμού που ανήκει αυτή η διεύθυνση. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Οι προμηθευτές σας -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,"Δεν μπορεί να οριστεί ως απολεσθέν, καθώς έχει γίνει παραγγελία πώλησης." +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,"Δεν μπορεί να οριστεί ως απολεσθέν, καθώς έχει γίνει παραγγελία πώλησης." apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,Ένα άλλο μισθολόγιο είναι {0} ενεργό για τον υπάλληλο {0}. Παρακαλώ ορίστε την κατάσταση του ως ανενεργό για να προχωρήσετε. DocType: Purchase Invoice,Contact,Επαφή apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Ελήφθη Από @@ -3332,11 +3340,11 @@ DocType: Item,Has Serial No,Έχει σειριακό αριθμό DocType: Employee,Date of Issue,Ημερομηνία έκδοσης apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: Από {0} για {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Σειρά # {0}: Ορισμός Προμηθευτή για το στοιχείο {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Ιστοσελίδα Εικόνα {0} επισυνάπτεται στη θέση {1} δεν μπορεί να βρεθεί +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Ιστοσελίδα Εικόνα {0} επισυνάπτεται στη θέση {1} δεν μπορεί να βρεθεί DocType: Issue,Content Type,Τύπος περιεχομένου apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Ηλεκτρονικός υπολογιστής DocType: Item,List this Item in multiple groups on the website.,Εμφάνισε το είδος σε πολλαπλές ομάδες στην ιστοσελίδα. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,Παρακαλώ ελέγξτε Πολλαπλών επιλογή νομίσματος για να επιτρέψει τους λογαριασμούς με άλλο νόμισμα +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,Παρακαλώ ελέγξτε Πολλαπλών επιλογή νομίσματος για να επιτρέψει τους λογαριασμούς με άλλο νόμισμα apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Το είδος: {0} δεν υπάρχει στο σύστημα apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Δεν επιτρέπεται να ορίσετε παγωμένη αξία DocType: Payment Reconciliation,Get Unreconciled Entries,Βρες καταχωρήσεις χωρίς συμφωνία @@ -3346,14 +3354,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Τι κάν DocType: Delivery Note,To Warehouse,Προς αποθήκη apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Ο λογαριασμός {0} έχει εισαχθεί περισσότερες από μία φορά για τη χρήση {1} ,Average Commission Rate,Μέσος συντελεστής προμήθειας -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,"Το πεδίο ""Έχει Σειριακό Αριθμό"" δεν μπορεί να είναι ""Ναι"" για μη αποθηκεύσιμα είδη." +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,"Το πεδίο ""Έχει Σειριακό Αριθμό"" δεν μπορεί να είναι ""Ναι"" για μη αποθηκεύσιμα είδη." apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Η συμμετοχή δεν μπορεί να σημειωθεί για μελλοντικές ημερομηνίες DocType: Pricing Rule,Pricing Rule Help,Βοήθεια για τον κανόνα τιμολόγησης DocType: Purchase Taxes and Charges,Account Head,Κύρια εγγραφή λογαριασμού apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Ενημέρωση πρόσθετων δαπανών για τον υπολογισμό του κόστος μεταφοράς των ειδών apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Ηλεκτρικός DocType: Stock Entry,Total Value Difference (Out - In),Συνολική διαφορά αξίας (εξερχόμενη - εισερχόμενη) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Σειρά {0}: συναλλαγματικής ισοτιμίας είναι υποχρεωτική +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Σειρά {0}: συναλλαγματικής ισοτιμίας είναι υποχρεωτική apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},Το ID χρήστη δεν έχει οριστεί για τον υπάλληλο {0} DocType: Stock Entry,Default Source Warehouse,Προεπιλεγμένη αποθήκη πηγής DocType: Item,Customer Code,Κωδικός πελάτη @@ -3372,15 +3380,15 @@ DocType: Notification Control,Sales Invoice Message,Μήνυμα τιμολογ apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Κλείσιμο του λογαριασμού {0} πρέπει να είναι τύπου Ευθύνης / Ίδια Κεφάλαια DocType: Authorization Rule,Based On,Με βάση την DocType: Sales Order Item,Ordered Qty,Παραγγελθείσα ποσότητα -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Θέση {0} είναι απενεργοποιημένη +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Θέση {0} είναι απενεργοποιημένη DocType: Stock Settings,Stock Frozen Upto,Παγωμένο απόθεμα μέχρι apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Περίοδος Από και χρονική περίοδος ημερομηνίες υποχρεωτική για τις επαναλαμβανόμενες {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Δραστηριότητες / εργασίες έργου -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Δημιουργία βεβαιώσεων αποδοχών +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Δημιουργία βεβαιώσεων αποδοχών apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}",Η επιλογή αγορά πρέπει να οριστεί αν είναι επιλεγμένο το πεδίο 'εφαρμοστέο σε' ως {0} apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Η έκπτωση πρέπει να είναι μικρότερη από 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Γράψτε εφάπαξ ποσό (Εταιρεία νομίσματος) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Σειρά # {0}: Παρακαλούμε ρυθμίστε την ποσότητα αναπαραγγελίας +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Σειρά # {0}: Παρακαλούμε ρυθμίστε την ποσότητα αναπαραγγελίας DocType: Landed Cost Voucher,Landed Cost Voucher,Αποδεικτικό κόστους αποστολής εμπορευμάτων apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},Παρακαλώ να ορίσετε {0} DocType: Purchase Invoice,Repeat on Day of Month,Επανάληψη την ημέρα του μήνα @@ -3432,7 +3440,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Προεπιλογή Work In Progress Αποθήκη apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Οι προεπιλεγμένες ρυθμίσεις για λογιστικές πράξεις. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Η αναμενόμενη ημερομηνία δεν μπορεί να είναι προγενέστερη της ημερομηνία αίτησης υλικού -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Το είδος {0} πρέπει να είναι ένα είδος πώλησης +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Το είδος {0} πρέπει να είναι ένα είδος πώλησης DocType: Naming Series,Update Series Number,Ενημέρωση αριθμού σειράς DocType: Account,Equity,Διαφορά ενεργητικού - παθητικού DocType: Sales Order,Printing Details,Λεπτομέρειες εκτύπωσης @@ -3484,7 +3492,7 @@ DocType: Task,Review Date,Ημερομηνία αξιολόγησης DocType: Purchase Invoice,Advance Payments,Προκαταβολές DocType: Purchase Taxes and Charges,On Net Total,Στο καθαρό σύνολο apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Η αποθήκη προορισμού στη γραμμή {0} πρέπει να είναι η ίδια όπως στη εντολή παραγωγής -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Δεν έχετε άδεια να χρησιμοποιήσετε το εργαλείο πληρωμής +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Δεν έχετε άδεια να χρησιμοποιήσετε το εργαλείο πληρωμής apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,Οι διευθύνσεις email για επαναλαμβανόμενα %s δεν έχουν οριστεί apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Νόμισμα δεν μπορεί να αλλάξει μετά την πραγματοποίηση εγγραφών χρησιμοποιώντας κάποιο άλλο νόμισμα DocType: Company,Round Off Account,Στρογγυλεύουν Λογαριασμού @@ -3507,7 +3515,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Ποσότητα του είδους που αποκτήθηκε μετά την παραγωγή / ανασυσκευασία από συγκεκριμένες ποσότητες πρώτων υλών DocType: Payment Reconciliation,Receivable / Payable Account,Εισπρακτέοι / πληρωτέοι λογαριασμού DocType: Delivery Note Item,Against Sales Order Item,Κατά το είδος στην παραγγελία πώλησης -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},Παρακαλείστε να αναφέρετε Χαρακτηριστικό γνώρισμα Σχέση {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},Παρακαλείστε να αναφέρετε Χαρακτηριστικό γνώρισμα Σχέση {0} DocType: Item,Default Warehouse,Προεπιλεγμένη αποθήκη DocType: Task,Actual End Date (via Time Logs),Πραγματική Ημερομηνία λήξης (μέσω χρόνος Καταγράφει) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Ο προϋπολογισμός δεν μπορεί να αποδοθεί κατά του λογαριασμού του Ομίλου {0} @@ -3532,10 +3540,10 @@ DocType: Lead,Blog Subscriber,Συνδρομητής blog apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Δημιουργία κανόνων για τον περιορισμό των συναλλαγών που βασίζονται σε αξίες. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Εάν είναι επιλεγμένο, ο συνολικός αριθμός των εργάσιμων ημερών θα περιλαμβάνει τις αργίες, και αυτό θα μειώσει την αξία του μισθού ανά ημέρα" DocType: Purchase Invoice,Total Advance,Σύνολο προκαταβολών -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Επεξεργασία Μισθοδοσίας +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Επεξεργασία Μισθοδοσίας DocType: Opportunity Item,Basic Rate,Βασική τιμή DocType: GL Entry,Credit Amount,Πιστωτικές Ποσό -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Ορισμός ως απολεσθέν +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Ορισμός ως απολεσθέν apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Απόδειξη πληρωμής Σημείωση DocType: Supplier,Credit Days Based On,Πιστωτικές ημερών βάσει της DocType: Tax Rule,Tax Rule,Φορολογικές Κανόνας @@ -3565,7 +3573,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Αποδεκτή ποσότητ apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} δεν υπάρχει apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Λογαριασμοί για πελάτες. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Id έργου -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},"Σειρά Όχι {0}: Ποσό δεν μπορεί να είναι μεγαλύτερη από ό, τι εκκρεμές ποσό έναντι αιτημάτων εξόδων {1}. Εν αναμονή ποσό {2}" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},"Σειρά Όχι {0}: Ποσό δεν μπορεί να είναι μεγαλύτερη από ό, τι εκκρεμές ποσό έναντι αιτημάτων εξόδων {1}. Εν αναμονή ποσό {2}" apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} συνδρομητές προστέθηκαν DocType: Maintenance Schedule,Schedule,Χρονοδιάγραμμα DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Ορίστε τον προϋπολογισμό γι 'αυτό το Κέντρο Κόστους. Για να ρυθμίσετε δράση του προϋπολογισμού, ανατρέξτε στην ενότητα "Εταιρεία Λίστα"" @@ -3626,19 +3634,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS Προφίλ DocType: Payment Gateway Account,Payment URL Message,Πληρωμή URL Μήνυμα apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Εποχικότητα για τον καθορισμό των προϋπολογισμών, στόχων κλπ" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,"Γραμμή {0}:το ποσό πληρωμής δεν μπορεί να είναι μεγαλύτερο από ό,τι το οφειλόμενο ποσό" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,"Γραμμή {0}:το ποσό πληρωμής δεν μπορεί να είναι μεγαλύτερο από ό,τι το οφειλόμενο ποσό" apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Το σύνολο των απλήρωτων -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Το αρχείο καταγραφής χρονολογίου δεν είναι χρεώσιμο -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Θέση {0} είναι ένα πρότυπο, επιλέξτε μία από τις παραλλαγές του" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Το αρχείο καταγραφής χρονολογίου δεν είναι χρεώσιμο +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Θέση {0} είναι ένα πρότυπο, επιλέξτε μία από τις παραλλαγές του" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Αγοραστής apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Η καθαρή αμοιβή δεν μπορεί να είναι αρνητική -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Παρακαλώ εισάγετε τα αποδεικτικά έναντι χειροκίνητα +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Παρακαλώ εισάγετε τα αποδεικτικά έναντι χειροκίνητα DocType: SMS Settings,Static Parameters,Στατικές παράμετροι DocType: Purchase Order,Advance Paid,Προκαταβολή που καταβλήθηκε DocType: Item,Item Tax,Φόρος είδους apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Υλικό Προμηθευτή apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Των ειδικών φόρων κατανάλωσης Τιμολόγιο DocType: Expense Claim,Employees Email Id,Email ID υπαλλήλων +DocType: Employee Attendance Tool,Marked Attendance,Αισθητή Συμμετοχή apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Βραχυπρόθεσμες υποχρεώσεις apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Αποστολή μαζικών SMS στις επαφές σας DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Σκεφτείτε φόρο ή επιβάρυνση για @@ -3661,7 +3670,7 @@ DocType: Item Attribute,Numeric Values,Αριθμητικές τιμές apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Επισύναψη logo DocType: Customer,Commission Rate,Ποσό προμήθειας apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Κάντε Παραλλαγή -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Αποκλεισμός αιτήσεων άδειας από το τμήμα +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Αποκλεισμός αιτήσεων άδειας από το τμήμα apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Το καλάθι είναι άδειο DocType: Production Order,Actual Operating Cost,Πραγματικό κόστος λειτουργίας apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Δεν μπορεί να γίνει επεξεργασία στη ρίζα. @@ -3680,7 +3689,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,Αυτόματη δημιουργία Υλικό Αίτημα εάν η ποσότητα πέσει κάτω από αυτό το επίπεδο ,Item-wise Purchase Register,Ταμείο αγορών ανά είδος DocType: Batch,Expiry Date,Ημερομηνία λήξης -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Για να ορίσετε το επίπεδο αναπαραγγελίας, στοιχείο πρέπει να είναι ένα στοιχείο αγοράς ή κατασκευής του Είδους" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Για να ορίσετε το επίπεδο αναπαραγγελίας, στοιχείο πρέπει να είναι ένα στοιχείο αγοράς ή κατασκευής του Είδους" ,Supplier Addresses and Contacts,Διευθύνσεις προμηθευτή και επαφές apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,Παρακαλώ επιλέξτε πρώτα την κατηγορία apps/erpnext/erpnext/config/projects.py +18,Project master.,Κύρια εγγραφή έργου. diff --git a/erpnext/translations/es-PE.csv b/erpnext/translations/es-PE.csv index de35ee0039..00145b251a 100644 --- a/erpnext/translations/es-PE.csv +++ b/erpnext/translations/es-PE.csv @@ -144,14 +144,14 @@ DocType: Production Order Operation,Show Time Logs,Mostrar Registros Tiempo DocType: Delivery Note,Installation Status,Estado de la instalación apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Cantidad Aceptada + Rechazada debe ser igual a la cantidad Recibida por el Artículo {0} DocType: Item,Supply Raw Materials for Purchase,Materiales Suministro primas para la Compra -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,El producto {0} debe ser un producto para la compra +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,El producto {0} debe ser un producto para la compra DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Descargue la plantilla, para rellenar los datos apropiados y adjuntar el archivo modificado. Todas las fechas y los empleados en el período seleccionado se adjuntara a la planilla, con los registros de asistencia existentes" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,El producto {0} no está activo o ha llegado al final de la vida útil DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Se actualizará después de la factura de venta se considera enviada . -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included",Para incluir el impuesto de la linea {0} los impuestos de las lineas {1} también deben ser incluidos -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Ajustes para el Módulo de Recursos Humanos +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included",Para incluir el impuesto de la linea {0} los impuestos de las lineas {1} también deben ser incluidos +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Ajustes para el Módulo de Recursos Humanos DocType: SMS Center,SMS Center,Centro SMS DocType: BOM Replace Tool,New BOM,Nueva Solicitud de Materiales apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Bitácora de Lotes para facturación. @@ -179,7 +179,7 @@ DocType: Offer Letter,Select Terms and Conditions,Selecciona Términos y Condici DocType: Production Planning Tool,Sales Orders,Ordenes de Venta DocType: Purchase Taxes and Charges,Valuation,Valuación ,Purchase Order Trends,Tendencias de Ordenes de Compra -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Asignar las hojas para el año. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Asignar las hojas para el año. DocType: Earning Type,Earning Type,Tipo de Ganancia DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Desactivar planificación de capacidad y seguimiento de tiempo DocType: Bank Reconciliation,Bank Account,Cuenta Bancaria @@ -214,7 +214,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Especificación del producto en la WEB DocType: Payment Tool,Reference No,Referencia No. apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Vacaciones Bloqueadas -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},El producto {0} ha llegado al fin de la vida útil el {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},El producto {0} ha llegado al fin de la vida útil el {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Anual DocType: Stock Reconciliation Item,Stock Reconciliation Item,Articulo de Reconciliación de Inventario DocType: Stock Entry,Sales Invoice No,Factura de Venta No @@ -226,7 +226,7 @@ DocType: Item,Minimum Order Qty,Cantidad mínima de la orden DocType: Pricing Rule,Supplier Type,Tipo de proveedor DocType: Item,Publish in Hub,Publicar en el Hub ,Terretory,Territorios -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,El producto {0} esta cancelado +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,El producto {0} esta cancelado apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Solicitud de Materiales DocType: Bank Reconciliation,Update Clearance Date,Actualizar fecha de liquidación DocType: Item,Purchase Details,Detalles de Compra @@ -254,7 +254,6 @@ apps/erpnext/erpnext/config/crm.py +90,Manage Sales Person Tree.,Vista en árbol DocType: Item,Synced With Hub,Sincronizado con Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Contraseña Incorrecta DocType: Item,Variant Of,Variante de -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,El elemento {0} debe ser un servicio apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',La cantidad completada no puede ser mayor que la cantidad a producir DocType: Period Closing Voucher,Closing Account Head,Cuenta de cierre principal DocType: Employee,External Work History,Historial de trabajos externos @@ -265,10 +264,10 @@ DocType: Employee,Job Profile,Perfil Laboral DocType: Newsletter,Newsletter,Boletín de Noticias DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Notificarme por Email cuando se genere una nueva solicitud de materiales DocType: Payment Reconciliation Invoice,Invoice Type,Tipo de Factura -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Notas de Entrega +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Notas de Entrega apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Configuración de Impuestos apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,"El registro del pago ha sido modificado antes de su modificación. Por favor, inténtelo de nuevo." -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} ingresado dos veces en el Impuesto del producto +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} ingresado dos veces en el Impuesto del producto DocType: Workstation,Rent Cost,Renta Costo apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Por favor seleccione el mes y el año DocType: Purchase Invoice,"Enter email id separated by commas, invoice will be mailed automatically on particular date","Introduzca ID de correo electrónico separados por comas, la factura será enviada automáticamente en una fecha determinada" @@ -276,7 +275,7 @@ DocType: Employee,Company Email,Correo de la compañía DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Todos los campos tales como la divisa, tasa de conversión, el total de las importaciones, la importación total general etc están disponibles en recibo de compra, cotización de proveedor, factura de compra, orden de compra, etc" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,Este artículo es una plantilla y no se puede utilizar en las transacciones. Atributos artículo se copiarán en las variantes menos que se establece 'No Copy' apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Total del Pedido Considerado -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Cargo del empleado ( por ejemplo, director general, director , etc.)" +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Cargo del empleado ( por ejemplo, director general, director , etc.)" apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,"Por favor, introduzca en el campo si 'Repite un día al mes'---" DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,Tasa a la cual la Moneda del Cliente se convierte a la moneda base del cliente DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Disponible en la Solicitud de Materiales , Albarán, Factura de Compra , Orden de Produccuón , Orden de Compra , Fecibo de Compra , Factura de Venta Pedidos de Venta , Inventario de Entrada, Control de Horas" @@ -318,7 +317,7 @@ DocType: Landed Cost Item,Applicable Charges,Cargos Aplicables DocType: Workstation,Consumable Cost,Coste de consumibles apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) debe tener la función 'Supervisor de Ausencias' apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Médico -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Razón de Pérdida +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Razón de Pérdida apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},La estación de trabajo estará cerrada en las siguientes fechas según la lista de vacaciones: {0} DocType: Employee,Single,solo DocType: Issue,Attachment,Adjunto @@ -349,7 +348,7 @@ DocType: Accounts Settings,Accounts Frozen Upto,Cuentas Congeladas Hasta DocType: SMS Log,Sent On,Enviado Por DocType: HR Settings,Employee record is created using selected field. ,El registro del empleado se crea utilizando el campo seleccionado. DocType: Sales Order,Not Applicable,No aplicable -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Master de vacaciones . +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Master de vacaciones . DocType: Material Request Item,Required Date,Fecha Requerida DocType: Delivery Note,Billing Address,Dirección de Facturación apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,"Por favor, introduzca el código del producto." @@ -382,7 +381,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,"Por favor, ingrese el almacén en el cual la requisición de materiales sera despachada" DocType: Production Order,Additional Operating Cost,Costos adicionales de operación apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Productos Cosméticos -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Para combinar, la siguientes propiedades deben ser las mismas para ambos artículos" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Para combinar, la siguientes propiedades deben ser las mismas para ambos artículos" DocType: Shipping Rule,Net Weight,Peso neto DocType: Employee,Emergency Phone,Teléfono de Emergencia ,Serial No Warranty Expiry,Número de orden de caducidad Garantía @@ -431,9 +430,9 @@ DocType: Warranty Claim,Resolution,Resolución apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66,Payable Account,Cuenta por Pagar apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Repita los Clientes DocType: Leave Control Panel,Allocate,Asignar -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Volver Ventas +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Volver Ventas DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Seleccione órdenes de venta a partir del cual desea crear órdenes de producción. -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Componentes salariales. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Componentes salariales. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Base de datos de clientes potenciales. apps/erpnext/erpnext/config/crm.py +17,Customer database.,Base de datos de clientes. DocType: Quotation,Quotation To,Cotización Para @@ -457,13 +456,13 @@ DocType: Sales Invoice,Sales Taxes and Charges,Los impuestos y cargos de venta DocType: Employee,Organization Profile,Perfil de la Organización apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,"Por favor, configure la numeración de la asistencia a través de Configuración > Numeración y Series" DocType: Employee,Reason for Resignation,Motivo de la renuncia -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Plantilla para las evaluaciones de desempeño . +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Plantilla para las evaluaciones de desempeño . DocType: Payment Reconciliation,Invoice/Journal Entry Details,Factura / Detalles de diarios apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' no esta en el Año Fiscal {2} DocType: Buying Settings,Settings for Buying Module,Ajustes para la compra de módulo apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,"Por favor, ingrese primero el recibo de compra" DocType: Buying Settings,Supplier Naming By,Ordenar proveedores por: -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Calendario de Mantenimiento +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Calendario de Mantenimiento apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Luego las reglas de precios son filtradas en base a Cliente, Categoría de cliente, Territorio, Proveedor, Tipo de Proveedor, Campaña, Socio de Ventas, etc" DocType: Employee,Passport Number,Número de pasaporte apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +82,Manager,Gerente @@ -499,7 +498,7 @@ DocType: Journal Entry,Bill No,Factura No. DocType: Purchase Invoice,Quarterly,Trimestral DocType: Selling Settings,Delivery Note Required,Nota de entrega requerida DocType: Sales Order Item,Basic Rate (Company Currency),Precio Base (Moneda Local) -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,"Por favor, ingrese los detalles del producto" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,"Por favor, ingrese los detalles del producto" DocType: Purchase Receipt,Other Details,Otros Datos DocType: Account,Accounts,Contabilidad apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Marketing @@ -510,7 +509,7 @@ DocType: Employee,Provide email id registered in company,Proporcionar correo ele DocType: Hub Settings,Seller City,Ciudad del vendedor DocType: Email Digest,Next email will be sent on:,Siguiente correo electrónico será enviado el: DocType: Offer Letter Term,Offer Letter Term,Término de carta de oferta -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,El producto tiene variantes. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,El producto tiene variantes. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Elemento {0} no encontrado DocType: Bin,Stock Value,Valor de Inventario apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Tipo de Árbol @@ -518,7 +517,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Cantidad Consumida por Unidad DocType: Serial No,Warranty Expiry Date,Fecha de caducidad de la Garantía DocType: Material Request Item,Quantity and Warehouse,Cantidad y Almacén DocType: Sales Invoice,Commission Rate (%),Porcentaje de comisión (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Contra Tipo de Comprobante debe ser uno de Pedidos de Venta, Factura de Venta o Entrada de Diario" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Contra Tipo de Comprobante debe ser uno de Pedidos de Venta, Factura de Venta o Entrada de Diario" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Aeroespacial DocType: Journal Entry,Credit Card Entry,Introducción de tarjetas de crédito apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Asunto de la Tarea @@ -604,7 +603,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Obligaciones apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Importe sancionado no puede ser mayor que el importe del reclamo en la linea {0}. DocType: Company,Default Cost of Goods Sold Account,Cuenta de costos de venta por defecto -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,No ha seleccionado una lista de precios +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,No ha seleccionado una lista de precios DocType: Employee,Family Background,Antecedentes familiares DocType: Process Payroll,Send Email,Enviar Correo Electronico apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Sin permiso @@ -632,7 +631,7 @@ DocType: Email Digest,Email Digest Settings,Configuración del Boletin de Correo apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Consultas de soporte de clientes . DocType: Bin,Moving Average Rate,Porcentaje de Promedio Movil DocType: Production Planning Tool,Select Items,Seleccione Artículos -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} contra Factura {1} de fecha {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} contra Factura {1} de fecha {2} DocType: Maintenance Visit,Completion Status,Estado de finalización DocType: Sales Invoice Item,Target Warehouse,Inventario Objetivo DocType: Item,Allow over delivery or receipt upto this percent,Permitir hasta este porcentaje en la entrega y/o recepción @@ -687,7 +686,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Conf apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Incapaz de encontrar la ranura de tiempo en los próximos {0} días para la operación {1} DocType: Production Order,Plan material for sub-assemblies,Plan de materiales para los subconjuntos apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,La lista de materiales (LdM) {0} debe estar activa -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,"Por favor, seleccione primero el tipo de documento" +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,"Por favor, seleccione primero el tipo de documento" apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Cancelar visitas {0} antes de cancelar la visita de mantenimiento DocType: Salary Slip,Leave Encashment Amount,Monto de Vacaciones Descansadas apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +209,Serial No {0} does not belong to Item {1},Número de orden {0} no pertenece al elemento {1} @@ -704,7 +703,7 @@ DocType: Purchase Receipt,Range,Rango DocType: Supplier,Default Payable Accounts,Cuentas por Pagar por defecto apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Empleado {0} no está activo o no existe DocType: Features Setup,Item Barcode,Código de barras del producto -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,{0} variantes actualizadas del producto +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,{0} variantes actualizadas del producto DocType: Quality Inspection Reading,Reading 6,Lectura 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Factura de compra anticipada DocType: Address,Shop,Tienda @@ -725,7 +724,7 @@ DocType: Payment Request,Paid,Pagado DocType: Salary Slip,Total in words,Total en palabras DocType: Material Request Item,Lead Time Date,Fecha y Hora de la Iniciativa apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},"Fila # {0}: Por favor, especifique No de Serie de artículos {1}" -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Para 'Paquete de Productos' el Almacén, No. de Serie y No. de lote serán considerados desde el 'Packing List'. Si el Almacén y No. de lote son los mismos para todos los productos empaquetados, los valores podrán ser ingresados en la tabla principal del artículo, estos valores serán copiados al 'Packing List'" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Para 'Paquete de Productos' el Almacén, No. de Serie y No. de lote serán considerados desde el 'Packing List'. Si el Almacén y No. de lote son los mismos para todos los productos empaquetados, los valores podrán ser ingresados en la tabla principal del artículo, estos valores serán copiados al 'Packing List'" apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Envíos realizados a los clientes DocType: Purchase Invoice Item,Purchase Order Item,Articulos de la Orden de Compra apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Ingresos Indirectos @@ -763,7 +762,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,O DocType: Journal Entry Account,Expense Claim,Reembolso de gastos apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Cantidad de {0} DocType: Leave Application,Leave Application,Solicitud de Vacaciones -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Herramienta de Asignación de Vacaciones +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Herramienta de Asignación de Vacaciones DocType: Leave Block List,Leave Block List Dates,Fechas de Lista de Bloqueo de Vacaciones DocType: Workstation,Net Hour Rate,Tasa neta por hora DocType: Landed Cost Purchase Receipt,Landed Cost Purchase Receipt,Recibo sobre costos de destino estimados @@ -829,7 +828,7 @@ DocType: SMS Center,Total Characters,Total Caracteres apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},"Por favor, seleccione la Solicitud de Materiales en el campo de Solicitud de Materiales para el punto {0}" DocType: C-Form Invoice Detail,C-Form Invoice Detail,Detalle C -Form Factura DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Factura para reconciliación de pago -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Contribución % +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Contribución % DocType: Item,website page link,el vínculo web DocType: Company,Company registration numbers for your reference. Tax numbers etc.,"Los números de registro de la compañía para su referencia. Números fiscales, etc" DocType: Sales Partner,Distributor,Distribuidor @@ -866,10 +865,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,Factor de Conversión de Unid DocType: Stock Settings,Default Item Group,Grupo de artículos predeterminado apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Base de datos de proveedores. DocType: Account,Balance Sheet,Hoja de Balance -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Centro de Costos para artículo con Código del artículo ' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Centro de Costos para artículo con Código del artículo ' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,Su persona de ventas recibirá un aviso con esta fecha para ponerse en contacto con el cliente apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Las futuras cuentas se pueden crear bajo grupos, pero las entradas se crearán dentro de las subcuentas." -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Impuestos y otras deducciones salariales. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Impuestos y otras deducciones salariales. DocType: Lead,Lead,Iniciativas DocType: Email Digest,Payables,Cuentas por Pagar DocType: Account,Warehouse,Almacén @@ -886,10 +885,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Detalles de pagos n DocType: Global Defaults,Current Fiscal Year,Año Fiscal actual DocType: Global Defaults,Disable Rounded Total,Desactivar redondeo DocType: Lead,Call,Llamada -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'Entradas' no puede estar vacío +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'Entradas' no puede estar vacío apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Duplicar fila {0} con el mismo {1} ,Trial Balance,Balanza de Comprobación -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Configuración de Empleados +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Configuración de Empleados apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","Matriz """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,"Por favor, seleccione primero el prefijo" apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Investigación @@ -897,7 +896,7 @@ DocType: Maintenance Visit Purpose,Work Done,Trabajo Realizado DocType: Contact,User ID,ID de usuario apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Mostrar libro mayor apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Primeras -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Existe un grupo de elementos con el mismo nombre , por favor, cambie el nombre del artículo , o cambiar el nombre del grupo de artículos" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Existe un grupo de elementos con el mismo nombre , por favor, cambie el nombre del artículo , o cambiar el nombre del grupo de artículos" DocType: Production Order,Manufacture against Sales Order,Fabricación contra Pedido de Ventas apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Resto del mundo apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,El artículo {0} no puede tener lotes @@ -920,7 +919,8 @@ DocType: Address,Address Type,Tipo de dirección DocType: Purchase Receipt,Rejected Warehouse,Almacén Rechazado DocType: GL Entry,Against Voucher,Contra Comprobante DocType: Item,Default Buying Cost Center,Centro de Costos Por Defecto -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,El producto {0} debe ser un producto para la venta +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,El producto {0} debe ser un producto para la venta +apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,para DocType: Item,Lead Time in days,Plazo de ejecución en días ,Accounts Payable Summary,Balance de Cuentas por Pagar apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +189,Not authorized to edit frozen Account {0},No autorizado para editar la cuenta congelada {0} @@ -953,7 +953,7 @@ DocType: Serial No,Serial No Details,Serial No Detalles DocType: Purchase Invoice Item,Item Tax Rate,Tasa de impuesto del producto apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","Para {0}, sólo las cuentas de crédito se pueden vincular con un asiento de débito" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Nota de Entrega {0} no está presentada -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,El elemento {0} debe ser un producto sub-contratado +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,El elemento {0} debe ser un producto sub-contratado apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Maquinaria y Equipos apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","La 'regla precios' es seleccionada primero basada en el campo 'Aplicar En' que puede ser un artículo, grupo de artículos o marca." DocType: Hub Settings,Seller Website,Sitio Web Vendedor @@ -961,7 +961,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +143,Total allocated perc apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +111,Production Order status is {0},El estado de la orden de producción es {0} DocType: Appraisal Goal,Goal,Meta/Objetivo apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,La fecha prevista de entrega es menor que la fecha de inicio prevista. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,Por proveedor +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,Por proveedor DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Ajuste del tipo de cuenta le ayuda en la selección de esta cuenta en las transacciones. DocType: Purchase Invoice,Grand Total (Company Currency),Suma total (Moneda Local) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Total Saliente @@ -1009,7 +1009,6 @@ DocType: Authorization Rule,Average Discount,Descuento Promedio DocType: Address,Utilities,Utilidades DocType: Purchase Invoice Item,Accounting,Contabilidad DocType: Features Setup,Features Setup,Características del programa de instalación -DocType: Item,Is Service Item,Es un servicio DocType: Activity Cost,Projects,Proyectos apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,"Por favor, seleccione el año fiscal" apps/erpnext/erpnext/controllers/buying_controller.py +23,From {0} | {1} {2},Desde {0} | {1} {2} @@ -1028,7 +1027,7 @@ DocType: Purchase Invoice Item,Item Tax Amount,Total de impuestos de los artícu DocType: Item,Maintain Stock,Mantener Stock apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Imagenes de entradas ya creadas por Orden de Producción DocType: Leave Control Panel,Leave blank if considered for all designations,Dejar en blanco si es considerada para todas las designaciones -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Cambiar a tipo 'Actual' en la linea {0} no puede ser incluido en el precio +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Cambiar a tipo 'Actual' en la linea {0} no puede ser incluido en el precio apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,A partir de fecha y hora DocType: Email Digest,For Company,Para la empresa @@ -1037,8 +1036,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Dirección de envío Nombre apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Plan de cuentas DocType: Material Request,Terms and Conditions Content,Términos y Condiciones Contenido -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,No puede ser mayor que 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,El producto {0} no es un producto de stock +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,No puede ser mayor que 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,El producto {0} no es un producto de stock DocType: Maintenance Visit,Unscheduled,No Programada DocType: Employee,Owned,Propiedad DocType: Salary Slip Deduction,Depends on Leave Without Pay,Depende de ausencia sin pago @@ -1072,7 +1071,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Sub-Ensamblaj DocType: Shipping Rule Condition,To Value,Para el valor DocType: Supplier,Stock Manager,Gerente apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Almacén de origen es obligatoria para la fila {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Lista de embalaje +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Lista de embalaje apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Alquiler de Oficina apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Configuración de pasarela SMS apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,¡Importación fallida! @@ -1114,7 +1113,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,Detalles de Lista de materia DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Monto adicional de descuento (Moneda de la compañía) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Error: {0} > {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,"Por favor, cree una nueva cuenta en el Plan General de Contabilidad." -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Visita de Mantenimiento +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Visita de Mantenimiento apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Cliente> Categoría de cliente> Territorio DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Cantidad de lotes disponibles en almacén DocType: Time Log Batch Detail,Time Log Batch Detail,Detalle de Grupo de Horas Registradas @@ -1123,7 +1122,7 @@ DocType: Leave Block List,Block Holidays on important days.,Bloqueo de vacacione ,Accounts Receivable Summary,Balance de Cuentas por Cobrar apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,"Por favor, establece campo ID de usuario en un registro de empleado para establecer Función del Empleado" DocType: UOM,UOM Name,Nombre Unidad de Medida -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Contribución Monto +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Contribución Monto DocType: Sales Invoice,Shipping Address,Dirección de envío DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,Esta herramienta le ayuda a actualizar o corregir la cantidad y la valoración de los valores en el sistema. Normalmente se utiliza para sincronizar los valores del sistema y lo que realmente existe en sus almacenes. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,En palabras serán visibles una vez que se guarda la nota de entrega. @@ -1159,7 +1158,7 @@ DocType: Production Planning Tool,Select Sales Orders,Selección de órdenes de ,Material Requests for which Supplier Quotations are not created,Solicitudes de Productos sin Cotizaciones Creadas DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Para realizar un seguimiento de elementos mediante código de barras. Usted será capaz de entrar en los elementos de la nota de entrega y la factura de venta mediante el escaneo de código de barras del artículo. DocType: Dependent Task,Dependent Task,Tarea dependiente -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},El factor de conversión de la unidad de medida (UdM) en la linea {0} debe ser 1 +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},El factor de conversión de la unidad de medida (UdM) en la linea {0} debe ser 1 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Permiso de tipo {0} no puede tener más de {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Trate de operaciones para la planificación de X días de antelación. DocType: HR Settings,Stop Birthday Reminders,Detener recordatorios de cumpleaños @@ -1168,7 +1167,7 @@ DocType: Payment Tool Detail,Payment Amount,Pago recibido apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +46,Consumed Amount,Cantidad Consumida apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Ver DocType: Salary Structure Deduction,Salary Structure Deduction,Estructura Salarial Deducción -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Unidad de Medida {0} se ha introducido más de una vez en la Tabla de Factores de Conversión +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Unidad de Medida {0} se ha introducido más de una vez en la Tabla de Factores de Conversión apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Costo de Artículos Emitidas apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},La cantidad no debe ser más de {0} DocType: Quotation Item,Quotation Item,Cotización del artículo @@ -1192,7 +1191,7 @@ apps/erpnext/erpnext/support/doctype/issue/issue.py +58,My Issues,Mis asuntos DocType: BOM Item,BOM Item,Lista de materiales (LdM) del producto DocType: Appraisal,For Employee,Por empleados DocType: Company,Default Values,Valores Predeterminados -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Fila {0}: Cantidad de pago no puede ser negativo +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Fila {0}: Cantidad de pago no puede ser negativo DocType: Expense Claim,Total Amount Reimbursed,Monto total reembolsado apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Contra Factura de Proveedor {0} con fecha{1} DocType: Customer,Default Price List,Lista de precios Por defecto @@ -1217,7 +1216,6 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Rec DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Reemplazar una Solicitud de Materiales en particular en todas las demás Solicitudes de Materiales donde se utiliza. Sustituirá el antiguo enlace a la Solicitud de Materiales, actualizara el costo y regenerar una tabla para la nueva Solicitud de Materiales" DocType: Shopping Cart Settings,Enable Shopping Cart,Habilitar Carrito de Compras DocType: Employee,Permanent Address,Dirección Permanente -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,El producto {0} debe ser un servicio apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,"Por favor, seleccione el código del producto" DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Reducir Deducción por Licencia sin Sueldo ( LWP ) DocType: Territory,Territory Manager,Gerente de Territorio @@ -1266,11 +1264,11 @@ apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Principal apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Variante DocType: Naming Series,Set prefix for numbering series on your transactions,Establezca los prefijos de sus transacciones apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Orden detenida no puede ser cancelada . Continuar antes de Cancelar. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,La lista de materiales por defecto ({0}) debe estar activa para este producto o plantilla +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,La lista de materiales por defecto ({0}) debe estar activa para este producto o plantilla DocType: Employee,Leave Encashed?,Vacaciones Descansadas? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,El campo 'Oportunidad de' es obligatorio DocType: Item,Variants,Variantes -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Crear órden de Compra +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Crear órden de Compra DocType: SMS Center,Send To,Enviar a apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},No hay suficiente saldo para Tipo de Vacaciones {0} DocType: Payment Reconciliation Payment,Allocated amount,Monto asignado @@ -1363,7 +1361,7 @@ DocType: Sales Person,Name and Employee ID,Nombre y ID de empleado apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,La fecha de vencimiento no puede ser anterior a la fecha de contabilización DocType: Website Item Group,Website Item Group,Grupo de Artículos del Sitio Web apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Derechos e Impuestos -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,"Por favor, introduzca la fecha de referencia" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,"Por favor, introduzca la fecha de referencia" apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} registros de pago no se pueden filtrar por {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,Tabla de Artículo que se muestra en el Sitio Web DocType: Purchase Order Item Supplied,Supplied Qty,Suministrado Cantidad @@ -1383,7 +1381,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Detalles de la resolución DocType: Quality Inspection Reading,Acceptance Criteria,Criterios de Aceptación DocType: Item Attribute,Attribute Name,Nombre del Atributo -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},El producto {0} debe ser un servicio o producto para la venta {1} DocType: Item Group,Show In Website,Mostrar En Sitio Web apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Grupo DocType: Task,Expected Time (in hours),Tiempo previsto (en horas) @@ -1414,7 +1411,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Importe del envío ,Pending Amount,Monto Pendiente DocType: Purchase Invoice Item,Conversion Factor,Factor de Conversión DocType: Purchase Order,Delivered,Enviado -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Configuración del servidor de correo entrante para los trabajos de identificación del email . (por ejemplo jobs@example.com ) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Configuración del servidor de correo entrante para los trabajos de identificación del email . (por ejemplo jobs@example.com ) DocType: Purchase Invoice,The date on which recurring invoice will be stop,La fecha en que se detiene la factura recurrente DocType: Journal Entry,Accounts Receivable,Cuentas por Cobrar ,Supplier-Wise Sales Analytics,Análisis de Ventas (Proveedores) @@ -1429,7 +1426,7 @@ DocType: HR Settings,HR Settings,Configuración de Recursos Humanos apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,El reembolso de gastos está pendiente de aprobación. Sólo el supervisor de gastos puede actualizar el estado. DocType: Purchase Invoice,Additional Discount Amount,Monto adicional de descuento DocType: Leave Block List Allow,Leave Block List Allow,Permitir Lista de Bloqueo de Vacaciones -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,La abreviatura no puede estar en blanco o usar espacios +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,La abreviatura no puede estar en blanco o usar espacios apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,deportes apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Total Actual apps/erpnext/erpnext/public/js/setup_wizard.js +292,Unit,Unidad @@ -1480,7 +1477,7 @@ DocType: Supplier Quotation,Manufacturing Manager,Gerente de Manufactura apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +191,Serial No {0} is under warranty upto {1},Número de orden {0} está en garantía hasta {1} apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Dividir nota de entrega en paquetes . apps/erpnext/erpnext/hooks.py +69,Shipments,Los envíos -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,El Estado del Registro de Horas tiene que ser 'Enviado'. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,El Estado del Registro de Horas tiene que ser 'Enviado'. apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Fila # DocType: Purchase Invoice,In Words (Company Currency),En palabras (Moneda Local) DocType: Pricing Rule,Supplier,Proveedores @@ -1496,7 +1493,7 @@ DocType: Leave Application,Total Leave Days,Total Vacaciones DocType: Email Digest,Note: Email will not be sent to disabled users,Nota: El correo electrónico no se enviará a los usuarios deshabilitados apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Seleccione la compañía... DocType: Leave Control Panel,Leave blank if considered for all departments,Dejar en blanco si se considera para todos los departamentos -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Tipos de empleo (permanente , contratos, pasante, etc) ." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Tipos de empleo (permanente , contratos, pasante, etc) ." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} es obligatorio para el producto {1} DocType: Currency Exchange,From Currency,Desde Moneda apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Por favor seleccione el monto asignado, tipo de factura y número en una fila" @@ -1513,7 +1510,7 @@ DocType: Bin,Ordered Quantity,Cantidad Pedida apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for builders""","por ejemplo "" Herramientas para los Constructores """ DocType: Quality Inspection,In Process,En proceso DocType: Authorization Rule,Itemwise Discount,Descuento de producto -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} contra orden de venta {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} contra orden de venta {1} DocType: Account,Fixed Asset,Activos Fijos DocType: Time Log Batch,Total Billing Amount,Monto total de facturación apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py +47,Receivable Account,Cuenta por Cobrar @@ -1552,7 +1549,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},Recursividad de lista de materiales (LdM): {0} no puede ser padre o hijo de {2} DocType: Production Order Operation,Completed Qty,Cant. Completada apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","Para {0}, sólo las cuentas de débito pueden vincular con un asiento de crédito" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,La lista de precios {0} está deshabilitada +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,La lista de precios {0} está deshabilitada DocType: Manufacturing Settings,Allow Overtime,Permitir horas extras DocType: Stock Reconciliation Item,Current Valuation Rate,Tasa de valoración actual DocType: Item,Customer Item Codes,Códigos de clientes @@ -1601,7 +1598,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Ning apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Nº de caso no puede ser 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,Si usted tiene equipo de ventas y socios de ventas ( Socios de canal ) ellos pueden ser etiquetados y mantener su contribución en la actividad de ventas DocType: Item,Show a slideshow at the top of the page,Mostrar una presentación de diapositivas en la parte superior de la página -DocType: Item,"Allow in Sales Order of type ""Service""","Permitir en órdenes de venta de tipo ""Servicio""" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Tiendas DocType: Time Log,Projects Manager,Gerente de proyectos DocType: Serial No,Delivery Time,Tiempo de Entrega @@ -1633,7 +1629,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +349,Quantity in r DocType: Appraisal,Employee,Empleado apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Importar correo electrónico de: DocType: Features Setup,After Sale Installations,Instalaciones post venta -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} está totalmente facturado +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} está totalmente facturado DocType: Workstation Working Hour,End Time,Hora de Finalización apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Condiciones contractuales estándar para ventas y compras. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Agrupar por recibo @@ -1658,7 +1654,7 @@ DocType: Upload Attendance,Attendance To Date,Asistencia a la fecha apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Configuración del servidor de correo entrante de correo electrónico de identificación de las ventas. (por ejemplo sales@example.com ) DocType: Warranty Claim,Raised By,Propuesto por DocType: Payment Gateway Account,Payment Account,Pago a cuenta -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,"Por favor, especifique la compañía para continuar" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,"Por favor, especifique la compañía para continuar" apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Compensatorio DocType: Quality Inspection Reading,Accepted,Aceptado apps/erpnext/erpnext/setup/doctype/company/company.js +24,Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone.,"Por favor, asegúrese que realmente desea borrar todas las transacciones de esta compañía. Sus datos maestros permanecerán intactos. Esta acción no se puede deshacer." @@ -1667,13 +1663,13 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Shipping Rule,Shipping Rule Label,Regla Etiqueta de envío apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Materias primas no pueden estar en blanco. DocType: Newsletter,Test,Prueba -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Existen transacciones de stock para este producto, \ usted no puede cambiar los valores de 'Tiene No. de serie', 'Tiene No. de lote', 'Es un producto en stock' y 'Método de valoración'" apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,No se puede cambiar la tasa si hay una Solicitud de Materiales contra cualquier artículo DocType: Employee,Previous Work Experience,Experiencia laboral previa DocType: Stock Entry,For Quantity,Por cantidad apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},"Por favor, ingrese la cantidad planeada para el producto {0} en la fila {1}" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} no esta presentado +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} no esta presentado apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Listado de solicitudes de productos DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Para la producción por separado se crea para cada buen artículo terminado. DocType: Purchase Invoice,Terms and Conditions1,Términos y Condiciones 1 @@ -1709,7 +1705,7 @@ DocType: Campaign,Campaign-.####,Campaña-.#### apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,La Fecha de Finalización de Contrato debe ser mayor que la Fecha de la Firma DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,Terceros / proveedor / comisionista / afiliado / distribuidor que vende productos de empresas a cambio de una comisión. DocType: Customer Group,Has Child Node,Tiene Nodo Niño -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} contra la Orden de Compra {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} contra la Orden de Compra {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Introduzca los parámetros de URL estáticas aquí (Ej. sender = ERPNext , nombre de usuario = ERPNext , contraseña = 1234 etc )" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} no se encuentra en el año fiscal activo. Para más detalles verifique {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Este es un sitio web ejemplo generado por automáticamente por ERPNext @@ -1757,7 +1753,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Añadir o deducir: Si usted quiere añadir o deducir el impuesto." DocType: Purchase Receipt Item,Recd Quantity,Recd Cantidad apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},No se puede producir una cantidad mayor del producto {0} que lo requerido en el pedido de venta {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Entrada de la {0} no se presenta +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Entrada de la {0} no se presenta DocType: Payment Reconciliation,Bank / Cash Account,Cuenta de Banco / Efectivo DocType: Global Defaults,Hide Currency Symbol,Ocultar el símbolo de moneda apps/erpnext/erpnext/config/accounts.py +174,"e.g. Bank, Cash, Credit Card","por ejemplo Banco, Efectivo , Tarjeta de crédito" @@ -1782,7 +1778,8 @@ DocType: Salary Structure,Total Earning,Ganancia Total DocType: Purchase Receipt,Time at which materials were received,Momento en que se recibieron los materiales apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Mis direcciones DocType: Stock Ledger Entry,Outgoing Rate,Tasa saliente -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,División principal de la organización. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,División principal de la organización. +apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,o DocType: Sales Order,Billing Status,Estado de facturación apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Los gastos de servicios públicos apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +65,90-Above,90-Mayor @@ -1825,9 +1822,6 @@ DocType: Cost Center,Cost Center,Centro de Costos apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,Comprobante # DocType: Notification Control,Purchase Order Message,Mensaje de la Orden de Compra DocType: Upload Attendance,Upload HTML,Subir HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","Avance total ({0}) en contra de la orden {1} no puede ser mayor \ - que el Gran Total ({2})" DocType: Employee,Relieving Date,Fecha de relevo apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","La regla de precios está hecha para sobrescribir la lista de precios y define un porcentaje de descuento, basado en algunos criterios." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Depósito sólo se puede cambiar a través de la Entrada de Almacén / Nota de Entrega / Recibo de Compra @@ -1837,8 +1831,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Impue apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Si la regla de precios está hecha para 'Precio', sobrescribirá la lista de precios actual. La regla de precios sera el valor final definido, así que no podrá aplicarse algún descuento. Por lo tanto, en las transacciones como Pedidos de venta, órdenes de compra, etc. el campo sera traído en lugar de utilizar 'Lista de precios'" apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Listar Oportunidades por Tipo de Industria DocType: Item Supplier,Item Supplier,Proveedor del Artículo -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,"Por favor, ingrese el código del producto para obtener el No. de lote" -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},"Por favor, seleccione un valor para {0} {1} quotation_to" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,"Por favor, ingrese el código del producto para obtener el No. de lote" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},"Por favor, seleccione un valor para {0} {1} quotation_to" apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Todas las direcciones. DocType: Company,Stock Settings,Ajustes de Inventarios apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","La fusión sólo es posible si las propiedades son las mismas en ambos registros. Es Grupo, Tipo Raíz, Compañía" @@ -1860,7 +1854,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Número de cheque DocType: Payment Tool Detail,Payment Tool Detail,Detalle de herramienta de pago ,Sales Browser,Navegador de Ventas DocType: Journal Entry,Total Credit,Crédito Total -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Existe otro {0} # {1} contra la entrada de población {2}: Advertencia +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Existe otro {0} # {1} contra la entrada de población {2}: Advertencia apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Local apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Préstamos y anticipos (Activos) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Deudores @@ -1879,7 +1873,7 @@ DocType: Price List,Price List Master,Lista de precios principal DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,Todas las transacciones de venta se pueden etiquetar contra múltiples **vendedores ** para que pueda establecer y monitorear metas. ,S.O. No.,S.O. No. DocType: Production Order Operation,Make Time Log,Hacer Registro de Tiempo -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},"Por favor, cree Cliente de la Oportunidad {0}" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},"Por favor, cree Cliente de la Oportunidad {0}" apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Computadoras apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,Este es una categoría de cliente raíz y no se puede editar. apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +39,Please setup your chart of accounts before you start Accounting Entries,"Por favor, configure su plan de cuentas antes de empezar los registros de contabilidad" @@ -1925,7 +1919,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Factur DocType: Payment Reconciliation Invoice,Outstanding Amount,Monto Pendiente DocType: Project Task,Working,Trabajando DocType: Stock Ledger Entry,Stock Queue (FIFO),Cola de Inventario (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Por favor seleccione la bitácora +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Por favor seleccione la bitácora apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} no pertenece a la compañía {1} DocType: Account,Round Off,Redondear ,Requested Qty,Cant. Solicitada @@ -1960,7 +1954,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Obtener registros relevantes apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Asiento contable de inventario DocType: Sales Invoice,Sales Team1,Team1 Ventas -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,El elemento {0} no existe +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,El elemento {0} no existe DocType: Sales Invoice,Customer Address,Dirección del cliente DocType: Purchase Invoice,Apply Additional Discount On,Aplicar descuento adicional en DocType: Account,Root Type,Tipo Root @@ -1995,7 +1989,7 @@ DocType: Maintenance Visit,Scheduled,Programado apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Por favor, seleccione el ítem donde "Es de la Elemento" es "No" y "¿Es de artículos de venta" es "Sí", y no hay otro paquete de producto" DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Seleccione Distribución Mensual de distribuir de manera desigual a través de objetivos meses. DocType: Purchase Invoice Item,Valuation Rate,Tasa de Valoración -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,El tipo de divisa para la lista de precios no ha sido seleccionado +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,El tipo de divisa para la lista de precios no ha sido seleccionado apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,El elemento en la fila {0}: Recibo Compra {1} no existe en la tabla de 'Recibos de Compra' apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Empleado {0} ya se ha aplicado para {1} entre {2} y {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Fecha de inicio del Proyecto @@ -2028,7 +2022,7 @@ apps/erpnext/erpnext/config/crm.py +53,Logs for maintaining sms delivery status, apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Confirmado apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Proveedor> Tipo de Proveedor apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,"Por favor, introduzca la fecha de recepción." -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Monto +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Monto apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,"Sólo Solicitudes de Vacaciones con estado ""Aprobado"" puede ser enviadas" apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,La dirección principal es obligatoria DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,Introduzca el nombre de la campaña si el origen de la encuesta es una campaña @@ -2045,7 +2039,7 @@ DocType: Item,Valuation Method,Método de Valoración DocType: Sales Invoice,Sales Team,Equipo de Ventas apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Entrada Duplicada DocType: Serial No,Under Warranty,Bajo Garantía -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Error] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Error] DocType: Sales Order,In Words will be visible once you save the Sales Order.,En palabras serán visibles una vez que guarde el pedido de ventas. ,Employee Birthday,Cumpleaños del Empleado apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Capital de Riesgo @@ -2088,7 +2082,7 @@ DocType: Quotation Item,Against Doctype,Contra Doctype DocType: Delivery Note,Track this Delivery Note against any Project,Seguir este albarán en contra de cualquier proyecto apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Cuenta root no se puede borrar DocType: Production Order,Work-in-Progress Warehouse,Almacén de Trabajos en Proceso -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Referencia # {0} de fecha {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Referencia # {0} de fecha {1} DocType: Pricing Rule,Item Code,Código del producto DocType: Production Planning Tool,Create Production Orders,Crear Órdenes de Producción DocType: Serial No,Warranty / AMC Details,Garantía / AMC Detalles @@ -2112,7 +2106,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Conciliación Bancaria apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Obtener actualizaciones apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Solicitud de Material {0} cancelada o detenida apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Agregar algunos registros de muestra -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Gestión de ausencias +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Gestión de ausencias apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Agrupar por cuenta DocType: Sales Order,Fully Delivered,Entregado completamente DocType: Lead,Lower Income,Ingreso Bajo @@ -2343,13 +2337,13 @@ DocType: Task,Actual Start Date (via Time Logs),Fecha de inicio actual (Vía reg DocType: Stock Reconciliation Item,Before reconciliation,Antes de reconciliación apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Para {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Impuestos y Cargos Añadidos (Moneda Local) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,"Campo de impuesto del producto {0} debe tener un tipo de cuenta de impuestos, ingresos, cargos o gastos" +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,"Campo de impuesto del producto {0} debe tener un tipo de cuenta de impuestos, ingresos, cargos o gastos" DocType: Sales Order,Partly Billed,Parcialmente Facturado DocType: Item,Default BOM,Solicitud de Materiales por Defecto apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,"Por favor, vuelva a escribir nombre de la empresa para confirmar" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Monto Total Soprepasado DocType: Time Log Batch,Total Hours,Total de Horas -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},El débito total debe ser igual al crédito. La diferencia es {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},El débito total debe ser igual al crédito. La diferencia es {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Automotor apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Desde nota de entrega DocType: Time Log,From Time,Desde fecha @@ -2411,7 +2405,7 @@ DocType: Leave Application,Follow via Email,Seguir a través de correo electroni DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Total de Impuestos Después Cantidad de Descuento apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Cuenta secundaria existe para esta cuenta. No es posible eliminar esta cuenta. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Cualquiera Cantidad Meta o Monto Meta es obligatoria -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},No existe una Solicitud de Materiales por defecto para el elemento {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},No existe una Solicitud de Materiales por defecto para el elemento {0} DocType: Leave Control Panel,Carry Forward,Cargar apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +54,Cost Center with existing transactions can not be converted to ledger,Centro de Costos de las transacciones existentes no se puede convertir en el libro mayor DocType: Department,Days for which Holidays are blocked for this department.,Días para los que Días Feriados se bloquean para este departamento . @@ -2481,7 +2475,7 @@ DocType: Leave Type,Is Encash,Se convertirá en efectivo DocType: Purchase Invoice,Mobile No,Nº Móvil DocType: Payment Tool,Make Journal Entry,Haga Comprobante de Diario DocType: Leave Allocation,New Leaves Allocated,Nuevas Vacaciones Asignadas -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,El seguimiento preciso del proyecto no está disponible para la cotización-- +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,El seguimiento preciso del proyecto no está disponible para la cotización-- DocType: Project,Expected End Date,Fecha de finalización prevista DocType: Appraisal Template,Appraisal Template Title,Titulo de la Plantilla deEvaluación apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Comercial @@ -2585,20 +2579,20 @@ DocType: Bank Reconciliation Detail,Cheque Date,Fecha del Cheque apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent account {1} does not belong to company: {2},Cuenta {0}: Cuenta Padre {1} no pertenece a la compañía: {2} apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Eliminado correctamente todas las transacciones relacionadas con esta empresa! apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Período de prueba -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Almacén por defecto es obligatorio para un elemento en stock. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Almacén por defecto es obligatorio para un elemento en stock. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Pago del salario correspondiente al mes {0} y {1} años apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Importe total pagado ,Transferred Qty,Cantidad Transferida apps/erpnext/erpnext/config/learn.py +11,Navigating,Navegación apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Planificación -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Haga Registro de Tiempo de Lotes +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Haga Registro de Tiempo de Lotes apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Emitido DocType: Project,Total Billing Amount (via Time Logs),Monto total de facturación (a través de los registros de tiempo) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Vendemos este artículo apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65,Supplier Id,Proveedor Id DocType: Journal Entry,Cash Entry,Entrada de Efectivo DocType: Sales Partner,Contact Desc,Desc. de Contacto -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Tipo de vacaciones como, enfermo, casual, etc." +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Tipo de vacaciones como, enfermo, casual, etc." DocType: Email Digest,Send regular summary reports via Email.,Enviar informes periódicos resumidos por correo electrónico. DocType: Brand,Item Manager,Administración de elementos DocType: Cost Center,Add rows to set annual budgets on Accounts.,Agregar lineas para establecer los presupuestos anuales de las cuentas. @@ -2613,7 +2607,7 @@ DocType: GL Entry,Party Type,Tipo de entidad apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,La materia prima no puede ser la misma que el artículo principal DocType: Item Attribute Value,Abbreviation,Abreviación apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,No autorizado desde {0} excede los límites -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Plantilla Maestra para Salario . +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Plantilla Maestra para Salario . DocType: Leave Type,Max Days Leave Allowed,Número Máximo de Días de Baja Permitidos DocType: Payment Tool,Set Matching Amounts,Coincidir pagos DocType: Purchase Invoice,Taxes and Charges Added,Impuestos y Cargos Adicionales @@ -2624,7 +2618,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Cotizac DocType: Stock Settings,Role Allowed to edit frozen stock,Función Permitida para editar Inventario Congelado ,Territory Target Variance Item Group-Wise,Variación de Grupo por Territorio Objetivo apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Todas las categorías de clientes -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} es obligatorio. Tal vez tipo de cambio no se ha creado para {1} en {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} es obligatorio. Tal vez tipo de cambio no se ha creado para {1} en {2}. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Cuenta {0}: Cuenta Padre {1} no existe DocType: Purchase Invoice Item,Price List Rate (Company Currency),Tarifa de la lista de precios (Moneda Local) DocType: Account,Temporary,Temporal @@ -2642,8 +2636,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Detalle de Impuestos ,Item-wise Price List Rate,Detalle del Listado de Precios apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Cotizaciónes a Proveedores DocType: Quotation,In Words will be visible once you save the Quotation.,En palabras serán visibles una vez que guarde la cotización. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} esta detenido -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},El código de barras {0} ya se utiliza en el elemento {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} esta detenido +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},El código de barras {0} ya se utiliza en el elemento {1} DocType: Lead,Add to calendar on this date,Añadir al calendario en esta fecha apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Reglas para la adición de los gastos de envío . apps/erpnext/erpnext/support/doctype/warranty_claim/warranty_claim.py +20,Customer is required,Se requiere Cliente @@ -2666,8 +2660,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,Ve apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Al menos un almacén es obligatorio DocType: Serial No,Out of Warranty,Fuera de Garantía DocType: BOM Replace Tool,Replace,Reemplazar -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} contra Factura de Ventas {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,"Por favor, ingrese unidad de medida predeterminada" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} contra Factura de Ventas {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,"Por favor, ingrese unidad de medida predeterminada" DocType: Purchase Invoice Item,Project Name,Nombre del proyecto DocType: Journal Entry Account,If Income or Expense,Si es un ingreso o egreso DocType: Features Setup,Item Batch Nos,Números de lote del producto @@ -2691,7 +2685,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,El año fiscal: {0} no existe DocType: Currency Exchange,To Currency,Para la moneda DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Permitir a los usuarios siguientes aprobar Solicitudes de ausencia en bloques de días. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Tipos de reembolsos +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Tipos de reembolsos DocType: Item,Taxes,Impuestos DocType: Project,Default Cost Center,Centro de coste por defecto DocType: Purchase Invoice,End Date,Fecha Final @@ -2717,7 +2711,7 @@ DocType: Salary Structure Earning,Reduce Earning for Leave Without Pay (LWP),Red apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organization, other than yourself",Añadir otros usuarios a su organización apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Permiso ocacional DocType: Batch,Batch ID,ID de lote -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Nota: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Nota: {0} ,Delivery Note Trends,Tendencia de Notas de Entrega apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} debe ser un producto para compra o sub-contratado en la linea {1} apps/erpnext/erpnext/accounts/general_ledger.py +106,Account: {0} can only be updated via Stock Transactions,La cuenta: {0} sólo puede ser actualizada a través de transacciones de inventario @@ -2748,6 +2742,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js DocType: Production Order Operation,Production Order Operation,Operación en la orden de producción DocType: Pricing Rule,Disable,Inhabilitar DocType: Project Task,Pending Review,Pendiente de revisar +apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Click aquí para pagar DocType: Task,Total Expense Claim (via Expense Claim),Total reembolso (Vía reembolso de gastos) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,ID del cliente apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Para Tiempo debe ser mayor que From Time @@ -2788,10 +2783,11 @@ DocType: Purchase Receipt,Rate at which supplier's currency is converted to comp apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +36,Row #{0}: Timings conflicts with row {1},Fila # {0}: conflictos con fila {1} DocType: Employee,Employment Type,Tipo de Empleo apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +40,Fixed Assets,Activos Fijos +,Cash Flow,Flujo de Caja DocType: Item Group,Default Expense Account,Cuenta de Gastos por defecto DocType: Employee,Notice (days),Aviso (días) DocType: Employee,Encashment Date,Fecha de Cobro -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Contra Tipo de Comprobante debe ser uno de Orden de Compra, Factura de Compra o Comprobante de Diario" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Contra Tipo de Comprobante debe ser uno de Orden de Compra, Factura de Compra o Comprobante de Diario" DocType: Account,Stock Adjustment,Ajuste de existencias apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Existe una actividad de costo por defecto para la actividad del tipo - {0} DocType: Production Order,Planned Operating Cost,Costos operativos planeados @@ -2907,7 +2903,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Ver ofe DocType: Item Attribute Value,Attribute Value,Valor del Atributo apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","Identificación del E-mail debe ser único , ya existe para {0}" ,Itemwise Recommended Reorder Level,Nivel recomendado de re-ordenamiento de producto -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,"Por favor, seleccione primero {0}" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,"Por favor, seleccione primero {0}" DocType: Features Setup,To get Item Group in details table,Para obtener Grupo de Artículo en la tabla detalles apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,El lote {0} del producto {1} ha expirado. DocType: Sales Invoice,Commission,Comisión @@ -2954,7 +2950,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Verificar Comprobantes Pendientes DocType: Warranty Claim,Resolved By,Resuelto por DocType: Appraisal,Start Date,Fecha de inicio -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Asignar las vacaciones para un período . +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Asignar las vacaciones para un período . apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Haga clic aquí para verificar apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Cuenta {0}: no puede asignar la misma cuenta como su cuenta Padre. DocType: Purchase Invoice Item,Price List Rate,Tarifa de la lista de precios @@ -2971,7 +2967,7 @@ DocType: Employee,Educational Qualification,Capacitación Académica DocType: Workstation,Operating Costs,Costos Operativos DocType: Employee Leave Approver,Employee Leave Approver,Supervisor de Vacaciones del Empleado apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} ha sido agregado con éxito a nuestra lista de Newsletter. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Fila {0}: Una entrada para reordenar ya existe para este almacén {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Fila {0}: Una entrada para reordenar ya existe para este almacén {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","No se puede declarar como perdido , porque la cotización ha sido hecha." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Director de compras apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,La orden de producción {0} debe ser enviada @@ -2995,7 +2991,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Factura {0} ya se ha presentado apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Fecha de finalización DocType: Purchase Invoice Item,Amount (Company Currency),Importe (Moneda Local) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Unidad de Organización ( departamento) maestro. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Unidad de Organización ( departamento) maestro. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,"Por favor, ingrese un numero de móvil válido" DocType: Budget Detail,Budget Detail,Detalle del presupuesto apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,"Por favor, ingrese el mensaje antes de enviarlo" @@ -3011,13 +3007,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Recibidos y Aceptados ,Serial No Service Contract Expiry,Número de orden de servicio Contrato de caducidad DocType: Item,Unit of Measure Conversion,Unidad de Conversión de la medida apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Empleado no se puede cambiar -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,No se pueden registrar Debitos y Creditos a la misma Cuenta al mismo tiempo +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,No se pueden registrar Debitos y Creditos a la misma Cuenta al mismo tiempo DocType: Naming Series,Help HTML,Ayuda HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Peso total asignado debe ser de 100 %. Es {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Previsión por exceso de {0} cruzados por artículo {1} DocType: Address,Name of person or organization that this address belongs to.,Nombre de la persona u organización a la que esta dirección pertenece. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Sus proveedores -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,"No se puede definir como pérdida, cuando la orden de venta esta hecha." +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,"No se puede definir como pérdida, cuando la orden de venta esta hecha." apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,"Otra estructura salarial {0} está activo para empleado {1}. Por favor, haga su estado 'Inactivo' para proceder." DocType: Purchase Invoice,Contact,Contacto DocType: Features Setup,Exports,Exportaciones @@ -3036,7 +3032,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,¿Qué hace? DocType: Delivery Note,To Warehouse,Para Almacén apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Cuenta {0} se ha introducido más de una vez para el año fiscal {1} ,Average Commission Rate,Tasa de Comisión Promedio -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,"'Número de serie' no puede ser ""Sí"" para elementos que son de inventario" +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,"'Número de serie' no puede ser ""Sí"" para elementos que son de inventario" apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,La asistencia no se puede marcar para fechas futuras DocType: Pricing Rule,Pricing Rule Help,Ayuda de Regla de Precios DocType: Purchase Taxes and Charges,Account Head,Cuenta matriz @@ -3061,7 +3057,7 @@ DocType: Authorization Rule,Based On,Basado en DocType: Sales Order Item,Ordered Qty,Cantidad Pedida DocType: Stock Settings,Stock Frozen Upto,Inventario Congelado hasta apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Actividad del Proyecto / Tarea. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Generar etiquetas salariales +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Generar etiquetas salariales apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Compra debe comprobarse, si se selecciona Aplicable Para como {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,El descuento debe ser inferior a 100 DocType: Landed Cost Voucher,Landed Cost Voucher,Comprobante de costos de destino estimados @@ -3110,7 +3106,7 @@ DocType: Notification Control,Prompt for Email on Submission of,Consultar por el apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70,Item {0} must be a stock Item,El producto {0} debe ser un producto en stock apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Los ajustes por defecto para las transacciones contables. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Lanzamiento no puede ser anterior material Fecha de Solicitud -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,El producto {0} debe ser un producto para la venta +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,El producto {0} debe ser un producto para la venta DocType: Naming Series,Update Series Number,Actualizar número de serie DocType: Account,Equity,Patrimonio DocType: Task,Closing Date,Fecha de Cierre @@ -3159,7 +3155,7 @@ apps/erpnext/erpnext/config/stock.py +120,Price List master.,Configuracion de la DocType: Task,Review Date,Fecha de Revisión DocType: Purchase Taxes and Charges,On Net Total,En Total Neto apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Almacenes de destino de la linea {0} deben ser los mismos para la orden de producción -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,No tiene permiso para utilizar la herramienta de pagos +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,No tiene permiso para utilizar la herramienta de pagos apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,'Correo electrónico de notificación' no especificado para %s recurrentes DocType: Company,Round Off Account,Cuenta de redondeo por defecto apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +84,Administrative Expenses,Gastos de Administración @@ -3204,7 +3200,7 @@ apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions b DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Si se marca, el número total de días trabajados incluirá las vacaciones, y este reducirá el salario por día." DocType: Purchase Invoice,Total Advance,Total Anticipo DocType: Opportunity Item,Basic Rate,Precio base -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Establecer como Perdidos +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Establecer como Perdidos DocType: Supplier,Credit Days Based On,Días de crédito basados en DocType: Selling Settings,Maintain Same Rate Throughout Sales Cycle,Mantener misma tasa durante todo el ciclo de ventas DocType: Manufacturing Settings,Plan time logs outside Workstation Working Hours.,Planear bitácora de trabajo para las horas fuera de la estación. @@ -3230,7 +3226,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Cantidad Aceptada apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} no existe apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Listado de facturas emitidas a los clientes. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,ID del proyecto -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},linea No. {0}: El importe no puede ser mayor que el reembolso pendiente {1}. El importe pendiente es {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},linea No. {0}: El importe no puede ser mayor que el reembolso pendiente {1}. El importe pendiente es {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} suscriptores añadidos DocType: Maintenance Schedule,Schedule,Horario DocType: Account,Parent Account,Cuenta Primaria @@ -3283,13 +3279,13 @@ DocType: Purchase Taxes and Charges,On Previous Row Amount,En la Fila Anterior d apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please enter Payment Amount in atleast one row,"Por favor, ingrese el importe pagado en una linea" DocType: POS Profile,POS Profile,Perfiles POS apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Configuración general para establecer presupuestos, objetivos, etc." -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Fila {0}: Cantidad de pago no puede ser superior a Monto Pendiente +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Fila {0}: Cantidad de pago no puede ser superior a Monto Pendiente apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Total no pagado -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Registro de Horas no es Facturable -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","El producto {0} es una plantilla, por favor seleccione una de sus variantes" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Registro de Horas no es Facturable +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","El producto {0} es una plantilla, por favor seleccione una de sus variantes" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Comprador apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Salario neto no puede ser negativo -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,"Por favor, ingrese los recibos correspondientes manualmente" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,"Por favor, ingrese los recibos correspondientes manualmente" DocType: SMS Settings,Static Parameters,Parámetros estáticos DocType: Purchase Order,Advance Paid,Pago Anticipado DocType: Item,Item Tax,Impuesto del artículo @@ -3313,7 +3309,8 @@ DocType: Stock Entry,Repack,Vuelva a embalar apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +6,You must Save the form before proceeding,Debe guardar el formulario antes de proceder apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Adjuntar logo DocType: Customer,Commission Rate,Comisión de ventas -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Bloquee solicitud de ausencias por departamento. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Bloquee solicitud de ausencias por departamento. +apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,El carro esta vacío DocType: Production Order,Actual Operating Cost,Costo de operación actual apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Root no se puede editar . apps/erpnext/erpnext/accounts/utils.py +197,Allocated amount can not greater than unadusted amount,Monto asignado no puede superar el importe no ajustado diff --git a/erpnext/translations/es.csv b/erpnext/translations/es.csv index 6129c0633c..9685d203ce 100644 --- a/erpnext/translations/es.csv +++ b/erpnext/translations/es.csv @@ -151,7 +151,7 @@ apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +33,Su DocType: Naming Series,Prefix,Prefijo apps/erpnext/erpnext/public/js/setup_wizard.js +289,Consumable,Consumible DocType: Upload Attendance,Import Log,Importar registro -apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.js +19,Send,Enviar. +apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.js +19,Send,Enviar DocType: Sales Invoice Item,Delivered By Supplier,Entregado por proveedor DocType: SMS Center,All Contact,Todos los Contactos apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +164,Annual Salary,Salario Anual @@ -164,14 +164,14 @@ DocType: Journal Entry Account,Credit in Company Currency,Divisa por defecto de DocType: Delivery Note,Installation Status,Estado de la instalación apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Cantidad Aceptada + Rechazada debe ser igual a la cantidad Recibida por el Artículo {0} DocType: Item,Supply Raw Materials for Purchase,Suministro de materia prima para la compra -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,El producto {0} debe ser un producto para la compra +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,El producto {0} debe ser un producto para la compra DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Descargue la plantilla, para rellenar los datos apropiados y adjuntar el archivo modificado. Todas las fechas y los empleados en el período seleccionado se adjuntara a la planilla, con los registros de asistencia existentes." apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,El producto {0} no está activo o ha llegado al final de la vida útil DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Se actualizará después de la factura de venta se considera validada. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included",Para incluir el impuesto en la línea {0} los impuestos de las lineas {1} tambien deben ser incluidos -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Configuracion para módulo de recursos humanos (RRHH) +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included",Para incluir el impuesto en la línea {0} los impuestos de las lineas {1} tambien deben ser incluidos +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Configuracion para módulo de recursos humanos (RRHH) DocType: SMS Center,SMS Center,Centro SMS DocType: BOM Replace Tool,New BOM,Nueva solicitud de materiales apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Lotes de gestión de tiempos para facturación. @@ -199,7 +199,7 @@ DocType: Offer Letter,Select Terms and Conditions,Seleccione términos y condici DocType: Production Planning Tool,Sales Orders,Ordenes de venta DocType: Purchase Taxes and Charges,Valuation,Valuación ,Purchase Order Trends,Tendencias de ordenes de compra -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Asignar las ausencias para el año. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Asignar las ausencias para el año. DocType: Earning Type,Earning Type,Tipo de ingresos DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Desactivar planificación de capacidad y seguimiento de tiempo DocType: Bank Reconciliation,Bank Account,Cuenta bancaria @@ -237,7 +237,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Especificación del producto en la WEB DocType: Payment Tool,Reference No,Referencia No. apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Vacaciones Bloqueadas -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},El producto {0} ha llegado al fin de la vida útil el {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},El producto {0} ha llegado al fin de la vida útil el {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Anual DocType: Stock Reconciliation Item,Stock Reconciliation Item,Elemento de reconciliación de inventarios DocType: Stock Entry,Sales Invoice No,Factura de venta No. @@ -249,7 +249,7 @@ DocType: Item,Minimum Order Qty,Cantidad mínima de la orden DocType: Pricing Rule,Supplier Type,Tipo de proveedor DocType: Item,Publish in Hub,Publicar en el Hub ,Terretory,Territorio -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,El producto {0} esta cancelado +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,El producto {0} esta cancelado apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Solicitud de materiales DocType: Bank Reconciliation,Update Clearance Date,Actualizar fecha de liquidación DocType: Item,Purchase Details,Detalles de compra @@ -261,11 +261,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Cantidad rechazada DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Campo disponible en la Nota de Entrega, Cotización, Factura de Venta y Pedido de Venta" DocType: SMS Settings,SMS Sender Name,Nombre del remitente SMS DocType: Contact,Is Primary Contact,Es el contacto principal +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Hora de registro ha sido dosificada de facturación DocType: Notification Control,Notification Control,Control de notificaciónes DocType: Lead,Suggestions,Sugerencias. DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Establecer grupo de presupuestos en este territorio. también puede incluir las temporadas de distribución apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},"Por favor, ingrese el grupo de cuentas padres / principales para el almacén {0}" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},El pago para {0} {1} no puede ser mayor que el pago pendiente {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},El pago para {0} {1} no puede ser mayor que el pago pendiente {2} DocType: Supplier,Address HTML,Dirección HTML DocType: Lead,Mobile No.,Número móvil DocType: Maintenance Schedule,Generate Schedule,Generar planificación @@ -282,7 +283,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Sincronizado con Hub. apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Contraseña incorrecta DocType: Item,Variant Of,Variante de -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,El elemento {0} debe ser un servicio apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',La cantidad completada no puede ser mayor que la cantidad a manufacturar. DocType: Period Closing Voucher,Closing Account Head,Cuenta principal de cierre DocType: Employee,External Work History,Historial de trabajos externos @@ -294,10 +294,10 @@ DocType: Newsletter,Newsletter,Boletín de noticias DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Notificarme por Email cuando se genere una nueva requisición de materiales DocType: Journal Entry,Multi Currency,Multi moneda DocType: Payment Reconciliation Invoice,Invoice Type,Tipo de factura -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Nota de entrega +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Nota de entrega apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Configuración de Impuestos apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,"El registro del pago ha sido modificado antes de su modificación. Por favor, inténtelo de nuevo." -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} ingresado dos veces en el Impuesto del producto +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} ingresado dos veces en el Impuesto del producto apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Resumen para esta semana y actividades pendientes DocType: Workstation,Rent Cost,Costo de arrendamiento apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Por favor seleccione el mes y el año @@ -308,7 +308,7 @@ DocType: Shipping Rule,Valid for Countries,Válido para los Países DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Todos los campos tales como la divisa, tasa de conversión, el total de las importaciones, la importación total general etc están disponibles en recibo de compra, cotización de proveedor, factura de compra, orden de compra, etc" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"Este producto es una plantilla y no se puede utilizar en las transacciones. Los atributos del producto se copiarán sobre las variantes, a menos que la opción 'No copiar' este seleccionada" apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Total del Pedido Considerado -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Puesto del empleado (por ejemplo, director general, director, etc.)" +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Puesto del empleado (por ejemplo, director general, director, etc.)" apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,"Por favor, introduzca el valor en el campo 'Repetir un día al mes'" DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,Tasa por la cual la divisa es convertida como moneda base del cliente DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Disponible en la Solicitud de Materiales , Albarán, Factura de Compra , Orden de Produccuón , Orden de Compra , Fecibo de Compra , Factura de Venta Pedidos de Venta , Inventario de Entrada, Control de Horas" @@ -356,7 +356,7 @@ DocType: Workstation,Consumable Cost,Coste de consumibles apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) debe tener el rol de 'Supervisor de ausencias' DocType: Purchase Receipt,Vehicle Date,Fecha de Vehículos apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Médico -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Razón de pérdida +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Razón de pérdida apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},La estación de trabajo estará cerrada en las siguientes fechas según la lista de festividades: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Oportunidades DocType: Employee,Single,Soltero @@ -384,14 +384,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Canal de socio DocType: Account,Old Parent,Antiguo Padre DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,Personalizar el texto de introducción que va como una parte de este correo electrónico. Cada transacción tiene un texto introductorio separado. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),No incluya símbolos (ej. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Gerente principal de ventas apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Configuración global para todos los procesos de producción DocType: Accounts Settings,Accounts Frozen Upto,Cuentas congeladas hasta DocType: SMS Log,Sent On,Enviado por -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Atributo {0} seleccionado varias veces en la tabla Atributos +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Atributo {0} seleccionado varias veces en la tabla Atributos DocType: HR Settings,Employee record is created using selected field. ,El registro del empleado se crea utilizando el campo seleccionado. DocType: Sales Order,Not Applicable,No aplicable -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Master de vacaciones . +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Master de vacaciones . DocType: Material Request Item,Required Date,Fecha de solicitud DocType: Delivery Note,Billing Address,Dirección de facturación apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,"Por favor, introduzca el código del producto." @@ -427,7 +428,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,"Por favor, ingrese el almacén en el cual la requisición de materiales sera despachada" DocType: Production Order,Additional Operating Cost,Costos adicionales de operación apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Productos cosméticos -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Para fusionar, la siguientes propiedades deben ser las mismas en ambos productos" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Para fusionar, la siguientes propiedades deben ser las mismas en ambos productos" DocType: Shipping Rule,Net Weight,Peso neto DocType: Employee,Emergency Phone,Teléfono de emergencia ,Serial No Warranty Expiry,Garantía de caducidad del numero de serie @@ -482,17 +483,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Estado de facturación y entrega apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Clientes recurrentes DocType: Leave Control Panel,Allocate,Asignar -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Devoluciones de ventas +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Devoluciones de ventas DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Seleccione las órdenes de venta con las cuales desea crear la orden de producción. DocType: Item,Delivered by Supplier (Drop Ship),Entregado por el Proveedor (nave) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Componentes salariales +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Componentes salariales apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Base de datos de clientes potenciales. DocType: Authorization Rule,Customer or Item,Cliente o artículo apps/erpnext/erpnext/config/crm.py +17,Customer database.,Base de datos de clientes. DocType: Quotation,Quotation To,Cotización para DocType: Lead,Middle Income,Ingreso medio apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Apertura (Cred) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Unidad de medida predeterminada para el artículo {0} no se puede cambiar directamente porque ya ha realizado alguna transacción (s) con otra UOM. Usted tendrá que crear un nuevo elemento a utilizar un UOM predeterminado diferente. +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Unidad de medida predeterminada para el artículo {0} no se puede cambiar directamente porque ya ha realizado alguna transacción (s) con otra UOM. Usted tendrá que crear un nuevo elemento a utilizar un UOM predeterminado diferente. apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Monto asignado no puede ser negativo DocType: Purchase Order Item,Billed Amt,Monto facturado DocType: Warehouse,A logical Warehouse against which stock entries are made.,Un almacén lógico por el cual se hacen las entradas de existencia. @@ -511,14 +512,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Impuestos y cargos sobre ventas DocType: Employee,Organization Profile,Perfil de la organización apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,"Por favor, configure la numeración de la asistencia a través de Configuración > Numeración y Series" DocType: Employee,Reason for Resignation,Motivo de la renuncia -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Plantilla para evaluaciones de desempeño. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Plantilla para evaluaciones de desempeño. DocType: Payment Reconciliation,Invoice/Journal Entry Details,Factura / Detalles de diarios apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' no esta en el año fiscal {2} DocType: Buying Settings,Settings for Buying Module,Ajustes para módulo de compras apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,"Por favor, ingrese primero el recibo de compra" DocType: Buying Settings,Supplier Naming By,Ordenar proveedores por DocType: Activity Type,Default Costing Rate,Precio de costo predeterminado -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Calendario de mantenimiento +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Calendario de mantenimiento apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Luego las reglas de precios son filtradas por cliente, categoría de cliente, territorio, proveedor, tipo de proveedor, campaña, socio de ventas, etc." apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Cambio neto en el Inventario DocType: Employee,Passport Number,Número de pasaporte @@ -557,7 +558,7 @@ DocType: Purchase Invoice,Quarterly,Trimestral DocType: Selling Settings,Delivery Note Required,Nota de entrega requerida DocType: Sales Order Item,Basic Rate (Company Currency),Precio base (Divisa por defecto) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Adquisición retroactiva de materia prima basada en -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,"Por favor, ingrese los detalles del producto" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,"Por favor, ingrese los detalles del producto" DocType: Purchase Receipt,Other Details,Otros detalles DocType: Account,Accounts,Contabilidad apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Marketing @@ -570,7 +571,7 @@ DocType: Employee,Provide email id registered in company,Proporcione el correo e DocType: Hub Settings,Seller City,Ciudad de vendedor DocType: Email Digest,Next email will be sent on:,El siguiente correo electrónico será enviado el: DocType: Offer Letter Term,Offer Letter Term,Términos de carta de oferta -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,El producto tiene variantes. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,El producto tiene variantes. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Elemento {0} no encontrado DocType: Bin,Stock Value,Valor de Inventarios apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Tipo de árbol @@ -578,7 +579,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Cantidad consumida por unidad DocType: Serial No,Warranty Expiry Date,Fecha de caducidad de la garantía DocType: Material Request Item,Quantity and Warehouse,Cantidad y almacén DocType: Sales Invoice,Commission Rate (%),Porcentaje de comisión (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","El tipo de comprobante debe pertenecer a orden de venta, factura de venta o registro de diario" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","El tipo de comprobante debe pertenecer a orden de venta, factura de venta o registro de diario" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Aeroespacial DocType: Journal Entry,Credit Card Entry,Ingreso de tarjeta de crédito apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Asunto de tarea @@ -665,10 +666,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Obligaciones apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Importe sancionado no puede ser mayor que el importe del reclamo en la línea {0}. DocType: Company,Default Cost of Goods Sold Account,Cuenta de costos (venta) por defecto -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,No ha seleccionado una lista de precios +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,No ha seleccionado una lista de precios DocType: Employee,Family Background,Antecedentes familiares DocType: Process Payroll,Send Email,Enviar correo electronico -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Advertencia! archivo adjunto no valido: {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Advertencia! archivo adjunto no valido: {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Sin permiso DocType: Company,Default Bank Account,Cuenta bancaria por defecto apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Para filtrar en base a terceros, seleccione el tipo de entidad" @@ -696,7 +697,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Sopor DocType: Features Setup,"To enable ""Point of Sale"" features",Para habilitar las características de 'Punto de Venta' DocType: Bin,Moving Average Rate,Porcentaje de precio medio variable DocType: Production Planning Tool,Select Items,Seleccionar productos -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} contra factura {1} de fecha {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} contra factura {1} de fecha {2} DocType: Maintenance Visit,Completion Status,Estado de finalización DocType: Sales Invoice Item,Target Warehouse,Inventario estimado DocType: Item,Allow over delivery or receipt upto this percent,Permitir hasta este porcentaje en la entrega y/o recepción @@ -756,7 +757,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Conf apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Incapaz de encontrar la ranura de tiempo en los próximos {0} días para la operación {1} DocType: Production Order,Plan material for sub-assemblies,Plan de materiales para los subconjuntos apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,La lista de materiales (LdM) {0} debe estar activa -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,"Por favor, seleccione primero el tipo de documento" +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,"Por favor, seleccione primero el tipo de documento" apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Ir a la Cesta apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Cancelar visitas {0} antes de cancelar la visita de mantenimiento DocType: Salary Slip,Leave Encashment Amount,Importe de ausencias / vacaciones pagadas @@ -774,7 +775,7 @@ DocType: Purchase Receipt,Range,Rango DocType: Supplier,Default Payable Accounts,Cuentas por pagar por defecto apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,El empleado {0} no está activo o no existe DocType: Features Setup,Item Barcode,Código de barras del producto -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,{0} variantes actualizadas del producto +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,{0} variantes actualizadas del producto DocType: Quality Inspection Reading,Reading 6,Lectura 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Factura de compra anticipada DocType: Address,Shop,Tienda. @@ -797,7 +798,7 @@ DocType: Salary Slip,Total in words,Total en palabras DocType: Material Request Item,Lead Time Date,Hora de la Iniciativa apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,es obligatorio. Posiblemente el registro de cambio de divisa no ha sido creado para apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},"Línea #{0}: Por favor, especifique el número de serie para el producto {1}" -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Para 'Paquete de Productos' el Almacén, No. de Serie y No. de lote serán considerados desde el 'Packing List'. Si el Almacén y No. de lote son los mismos para todos los productos empaquetados, los valores podrán ser ingresados en la tabla principal del artículo, estos valores serán copiados al 'Packing List'" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Para 'Paquete de Productos' el Almacén, No. de Serie y No. de lote serán considerados desde el 'Packing List'. Si el Almacén y No. de lote son los mismos para todos los productos empaquetados, los valores podrán ser ingresados en la tabla principal del artículo, estos valores serán copiados al 'Packing List'" apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Envíos realizados a los clientes DocType: Purchase Invoice Item,Purchase Order Item,Producto de la orden de compra apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Ingresos indirectos @@ -818,6 +819,7 @@ DocType: Process Payroll,Select Payroll Year and Month,"Seleccione la nómina, a apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""","Ir al grupo apropiado, usualmente (Aplicación de Fondos> Activo Circulante> Cuentas Bancarias) y crear una nueva cuenta haciendo clic en Añadir hijo del tipo ""Banco""" DocType: Workstation,Electricity Cost,Costos de energía electrica DocType: HR Settings,Don't send Employee Birthday Reminders,No enviar recordatorio de cumpleaños del empleado +,Employee Holiday Attendance,La asistencia de los empleados de vacaciones DocType: Opportunity,Walk In,Entrar apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Entradas de archivo DocType: Item,Inspection Criteria,Criterios de inspección @@ -840,7 +842,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,O DocType: Journal Entry Account,Expense Claim,Reembolso de gastos apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Cantidad de {0} DocType: Leave Application,Leave Application,Solicitud de ausencia -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Herramienta de asignación de vacaciones +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Herramienta de asignación de vacaciones DocType: Leave Block List,Leave Block List Dates,Fechas de Lista de Bloqueo de Vacaciones DocType: Company,If Monthly Budget Exceeded (for expense account),Si Presupuesto Mensual excedido (por cuenta de gastos) DocType: Workstation,Net Hour Rate,Tasa neta por hora @@ -850,7 +852,7 @@ DocType: Packing Slip Item,Packing Slip Item,Lista de embalaje del producto DocType: POS Profile,Cash/Bank Account,Cuenta de caja / banco apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Elementos eliminados que no han sido afectados en cantidad y valor DocType: Delivery Note,Delivery To,Entregar a -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Tabla de atributos es obligatorio +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Tabla de atributos es obligatorio DocType: Production Planning Tool,Get Sales Orders,Obtener ordenes de venta apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} no puede ser negativo apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Descuento @@ -914,7 +916,7 @@ DocType: SMS Center,Total Characters,Total Caracteres apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},"Por favor, seleccione la lista de materiales (LdM) para el producto {0}" DocType: C-Form Invoice Detail,C-Form Invoice Detail,Detalle C -Form Factura DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Factura para reconciliación de pago -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Margen % +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Margen % DocType: Item,website page link,el vínculo web DocType: Company,Company registration numbers for your reference. Tax numbers etc.,"Los números de registro de la compañía para su referencia. Números fiscales, etc" DocType: Sales Partner,Distributor,Distribuidor @@ -956,10 +958,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,Factor de Conversión de Unid DocType: Stock Settings,Default Item Group,Grupo de artículos predeterminado apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Base de datos de proveedores. DocType: Account,Balance Sheet,Hoja de balance -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Centro de costos para el producto con código ' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Centro de costos para el producto con código ' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,El vendedor recibirá un aviso en esta fecha para ponerse en contacto con el cliente apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Las futuras cuentas se pueden crear bajo grupos, pero las entradas se crearán dentro de las subcuentas." -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Impuestos y otras deducciones salariales +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Impuestos y otras deducciones salariales DocType: Lead,Lead,Iniciativa DocType: Email Digest,Payables,Cuentas por pagar DocType: Account,Warehouse,Almacén @@ -976,10 +978,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Detalles de pagos n DocType: Global Defaults,Current Fiscal Year,Año fiscal actual DocType: Global Defaults,Disable Rounded Total,Desactivar redondeo DocType: Lead,Call,Llamada -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,Las entradas no pueden estar vacías +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,Las entradas no pueden estar vacías apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Línea {0} duplicada con igual {1} ,Trial Balance,Balanza de comprobación -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Configuración de empleados +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Configuración de empleados apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","Matriz """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,"Por favor, seleccione primero el prefijo" apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Investigación @@ -988,7 +990,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,ID de usuario apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Mostrar libro mayor apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Primeras -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Existe un grupo de elementos con el mismo nombre , por favor, cambie el nombre del artículo , o cambiar el nombre del grupo de artículos" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Existe un grupo de elementos con el mismo nombre , por favor, cambie el nombre del artículo , o cambiar el nombre del grupo de artículos" DocType: Production Order,Manufacture against Sales Order,Manufacturar para pedido de ventas apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Resto del mundo apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,El producto {0} no puede contener lotes @@ -1013,7 +1015,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Almacén rechazado DocType: GL Entry,Against Voucher,Contra comprobante DocType: Item,Default Buying Cost Center,Centro de costos (compra) por defecto apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Para obtener lo mejor de ERPNext, le recomendamos que se tome un tiempo y ver estos vídeos de ayuda." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,El producto {0} debe ser un producto para la venta +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,El producto {0} debe ser un producto para la venta apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,a DocType: Item,Lead Time in days,Plazo de ejecución en días ,Accounts Payable Summary,Balance de cuentas por pagar @@ -1039,7 +1041,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Agricultura apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Los productos o servicios DocType: Mode of Payment,Mode of Payment,Método de pago -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Sitio web imagen debe ser un archivo público o URL del sitio web +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Sitio web imagen debe ser un archivo público o URL del sitio web apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,Este es un grupo principal y no se puede editar. DocType: Journal Entry Account,Purchase Order,Órden de compra (OC) DocType: Warehouse,Warehouse Contact Info,Información de contacto del almacén @@ -1050,7 +1052,7 @@ DocType: Serial No,Serial No Details,Detalles del numero de serie DocType: Purchase Invoice Item,Item Tax Rate,Tasa de impuesto del producto apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","Para {0}, sólo las cuentas de crédito se pueden vincular con un asiento de débito" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,La nota de entrega {0} no está validada -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,El elemento: {0} debe ser un producto sub-contratado +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,El elemento: {0} debe ser un producto sub-contratado apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,BIENES DE CAPITAL apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","La 'regla precios' es seleccionada primero basada en el campo 'Aplicar En' que puede ser un artículo, grupo de artículos o marca." DocType: Hub Settings,Seller Website,Sitio web del vendedor @@ -1059,7 +1061,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Meta/Objetivo DocType: Sales Invoice Item,Edit Description,Editar descripción apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,La fecha prevista de entrega es menor que la fecha de inicio planeada. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,De proveedor +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,De proveedor DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Al configurar el tipo de cuenta facilitará la seleccion de la misma en las transacciones DocType: Purchase Invoice,Grand Total (Company Currency),Suma total (Divisa por defecto) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Total Saliente @@ -1111,7 +1113,6 @@ DocType: Authorization Rule,Average Discount,Descuento Promedio DocType: Address,Utilities,Utilidades DocType: Purchase Invoice Item,Accounting,Contabilidad DocType: Features Setup,Features Setup,Características del programa de instalación -DocType: Item,Is Service Item,Es un servicio apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Período de aplicación no puede ser período de asignación licencia fuera DocType: Activity Cost,Projects,Proyectos apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,"Por favor, seleccione el año fiscal" @@ -1132,7 +1133,7 @@ DocType: Item,Maintain Stock,Mantener stock apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Las entradas de stock ya fueron creadas para el numero de producción apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Cambio neto en activos fijos DocType: Leave Control Panel,Leave blank if considered for all designations,Dejar en blanco si es considerado para todos los puestos -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Cambiar a tipo 'Actual' en la línea {0} no puede ser incluido en el precio +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Cambiar a tipo 'Actual' en la línea {0} no puede ser incluido en el precio apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Máximo: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,A partir de fecha y hora DocType: Email Digest,For Company,Para la empresa @@ -1141,8 +1142,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Nombre de dirección de envío apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Plan de cuentas DocType: Material Request,Terms and Conditions Content,Contenido de los términos y condiciones -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,No puede ser mayor de 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,El producto {0} no es un producto de stock +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,No puede ser mayor de 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,El producto {0} no es un producto de stock DocType: Maintenance Visit,Unscheduled,Sin programación DocType: Employee,Owned,Propiedad DocType: Salary Slip Deduction,Depends on Leave Without Pay,Depende de licencia sin goce de salario @@ -1163,7 +1164,7 @@ Used for Taxes and Charges","la tabla de detalle de impuestos se obtiene del pro apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,El empleado no puede informar a sí mismo. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Si la cuenta está congelado, las entradas estarán permitidas a los usuarios restringidos." DocType: Email Digest,Bank Balance,Saldo bancario -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},El asiento contable para {0}: {1} sólo puede hacerse con la divisa: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},El asiento contable para {0}: {1} sólo puede hacerse con la divisa: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,No Estructura Salarial activo que se encuentra para el empleado {0} y el mes DocType: Job Opening,"Job profile, qualifications required etc.","Perfil laboral, las cualificaciones necesarias, etc" DocType: Journal Entry Account,Account Balance,Balance de la cuenta @@ -1180,7 +1181,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Sub-Ensamblaj DocType: Shipping Rule Condition,To Value,Para el valor DocType: Supplier,Stock Manager,Gerente de almacén apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},El almacén de origen es obligatorio para la línea {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Lista de embalaje +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Lista de embalaje apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,ALQUILERES DE LOCAL apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Configuración de pasarela SMS apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,¡Importación fallida! @@ -1224,7 +1225,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,Detalles de Lista de materia DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Monto adicional de descuento (Divisa por defecto) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Error: {0} > {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,"Por favor, cree una nueva cuenta en el plan general de contabilidad." -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Visita de mantenimiento +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Visita de mantenimiento apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Cliente> Categoría de cliente> Territorio DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Cantidad de lotes disponibles en almacén DocType: Time Log Batch Detail,Time Log Batch Detail,Detalle de gestión de tiempos @@ -1233,7 +1234,7 @@ DocType: Leave Block List,Block Holidays on important days.,Bloquear vacaciones ,Accounts Receivable Summary,Balance de cuentas por cobrar apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,"Por favor, seleccione el ID y el nombre del empleado para establecer el rol." DocType: UOM,UOM Name,Nombre de la unidad de medida (UdM) -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Importe de contribución +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Importe de contribución DocType: Sales Invoice,Shipping Address,Dirección de envío. DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,Esta herramienta le ayuda a actualizar o corregir la cantidad y la valoración de los valores en el sistema. Normalmente se utiliza para sincronizar los valores del sistema y lo que realmente existe en sus almacenes. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,En palabras serán visibles una vez que se guarda la nota de entrega. @@ -1274,7 +1275,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Para realizar un seguimiento de elementos mediante código de barras. Usted será capaz de entrar en los elementos de la nota de entrega y la factura de venta mediante el escaneo de código de barras del artículo. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Vuelva a enviar el pago por correo electrónico DocType: Dependent Task,Dependent Task,Tarea dependiente -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},El factor de conversión de la unidad de medida (UdM) en la línea {0} debe ser 1 +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},El factor de conversión de la unidad de medida (UdM) en la línea {0} debe ser 1 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Ausencia del tipo {0} no puede tener más de {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Procure planear las operaciones con XX días de antelación. DocType: HR Settings,Stop Birthday Reminders,Detener recordatorios de cumpleaños. @@ -1284,7 +1285,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,Ver {0} apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Cambio Neto en Efectivo DocType: Salary Structure Deduction,Salary Structure Deduction,Deducciones de la estructura salarial -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Unidad de Medida (UdM) {0} se ha introducido más de una vez en la tabla de factores de conversión +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Unidad de Medida (UdM) {0} se ha introducido más de una vez en la tabla de factores de conversión apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Solicitud de pago ya existe {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Costo de productos entregados apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},La cantidad no debe ser más de {0} @@ -1313,7 +1314,7 @@ DocType: BOM Item,BOM Item,Lista de materiales (LdM) del producto DocType: Appraisal,For Employee,Por empleados apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Fila {0}: Avance contra el Proveedor debe debitar DocType: Company,Default Values,Valores predeterminados -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Línea {0}: El importe pagado no puede ser negativo +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Línea {0}: El importe pagado no puede ser negativo DocType: Expense Claim,Total Amount Reimbursed,Monto total reembolsado apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Contra factura de proveedor {0} con fecha{1} DocType: Customer,Default Price List,Lista de precios por defecto @@ -1341,8 +1342,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Rec DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Reemplazar una Solicitud de Materiales en particular en todas las demás Solicitudes de Materiales donde se utiliza. Sustituirá el antiguo enlace a la Solicitud de Materiales, actualizara el costo y regenerar una tabla para la nueva Solicitud de Materiales" DocType: Shopping Cart Settings,Enable Shopping Cart,Habilitar carrito de compras DocType: Employee,Permanent Address,Dirección permanente -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,El producto {0} debe ser un servicio -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",El anticipo pagado para {0} {1} no puede ser mayor que el total {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,"Por favor, seleccione el código del producto" DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Reducir deducción por licencia sin goce de salario (LSS) @@ -1398,12 +1398,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Principal apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Variante DocType: Naming Series,Set prefix for numbering series on your transactions,Establezca los prefijos de las numeraciones en sus transacciones +DocType: Employee Attendance Tool,Employees HTML,Empleados HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,"Una orden detenida no puede ser cancelada, debe continuarla antes de cancelar." -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,La lista de materiales (LdM) por defecto ({0}) debe estar activa para este producto o plantilla +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,La lista de materiales (LdM) por defecto ({0}) debe estar activa para este producto o plantilla DocType: Employee,Leave Encashed?,Vacaciones pagadas? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,El campo 'oportunidad desde' es obligatorio DocType: Item,Variants,Variantes -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Crear órden de Compra +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Crear órden de Compra DocType: SMS Center,Send To,Enviar a. apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},No hay suficiente días para las ausencias del tipo: {0} DocType: Payment Reconciliation Payment,Allocated amount,Monto asignado @@ -1503,7 +1504,7 @@ DocType: Sales Person,Name and Employee ID,Nombre y ID de empleado apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,La fecha de vencimiento no puede ser anterior a la fecha de contabilización DocType: Website Item Group,Website Item Group,Grupo de productos en el sitio web apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,IMPUESTOS Y ARANCELES -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,"Por favor, introduzca la fecha de referencia" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,"Por favor, introduzca la fecha de referencia" apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Pago de cuentas de puerta de enlace no está configurado apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} registros de pago no se pueden filtrar por {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,la tabla del producto que se mosatrara en el sitio Web @@ -1524,7 +1525,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Detalles de la resolución DocType: Quality Inspection Reading,Acceptance Criteria,Criterios de Aceptación DocType: Item Attribute,Attribute Name,Nombre del Atributo -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},El producto {0} debe ser un servicio o producto para la venta {1} DocType: Item Group,Show In Website,Mostrar en el sitio web apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Grupo DocType: Task,Expected Time (in hours),Tiempo previsto (en horas) @@ -1556,7 +1556,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Monto de envío ,Pending Amount,Monto pendiente DocType: Purchase Invoice Item,Conversion Factor,Factor de conversión DocType: Purchase Order,Delivered,Enviado -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Configuración del servidor de correo entrante corporativo. (por ejemplo jobs@example.com ) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Configuración del servidor de correo entrante corporativo. (por ejemplo jobs@example.com ) DocType: Purchase Receipt,Vehicle Number,Número de vehículos DocType: Purchase Invoice,The date on which recurring invoice will be stop,Fecha en que la factura recurrente es detenida apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Total de hojas asignadas {0} no puede ser inferior a las hojas ya aprobados {1} para el período @@ -1573,7 +1573,7 @@ DocType: HR Settings,HR Settings,Configuración de recursos humanos (RRHH) apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,El reembolso de gastos estará pendiente de aprobación. Sólo el supervisor de gastos puede actualizar el estado. DocType: Purchase Invoice,Additional Discount Amount,Monto adicional de descuento DocType: Leave Block List Allow,Leave Block List Allow,Permitir Lista de Bloqueo de Vacaciones -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,La abreviatura no puede estar en blanco o usar espacios +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,La abreviatura no puede estar en blanco o usar espacios apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Grupo de No-Grupo apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Deportes apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Total Actual @@ -1597,7 +1597,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},El factor de conversión de la (UdM) es requerido en la línea {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},"La fecha de liquidación no puede ser inferior a la fecha de verificación, línea {0}" DocType: Salary Slip,Deduction,Deducción -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Artículo Precio agregó para {0} en Precio de lista {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Artículo Precio agregó para {0} en Precio de lista {1} DocType: Address Template,Address Template,Plantillas de direcciones apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,"Por favor, Introduzca ID de empleado para este vendedor" DocType: Territory,Classification of Customers by region,Clasificación de clientes por región @@ -1614,7 +1614,7 @@ DocType: Employee,Date of Birth,Fecha de nacimiento apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,El producto {0} ya ha sido devuelto DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,**Año Fiscal** representa un 'Ejercicio Financiero'. Los asientos contables y otras transacciones importantes se registran aquí. DocType: Opportunity,Customer / Lead Address,Dirección de cliente / oportunidad -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Advertencia: certificado SSL no válido en el apego {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Advertencia: certificado SSL no válido en el apego {0} DocType: Production Order Operation,Actual Operation Time,Tiempo de operación actual DocType: Authorization Rule,Applicable To (User),Aplicable a (Usuario) DocType: Purchase Taxes and Charges,Deduct,Deducir @@ -1631,7 +1631,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Dividir nota de entrega entre paquetes. apps/erpnext/erpnext/hooks.py +69,Shipments,Envíos DocType: Purchase Order Item,To be delivered to customer,Para ser entregado al cliente -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,La gestión de tiempos debe estar validada. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,La gestión de tiempos debe estar validada. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,El número de serie {0} no pertenece a ningún almacén apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Línea # DocType: Purchase Invoice,In Words (Company Currency),En palabras (Divisa por defecto) @@ -1648,7 +1648,7 @@ DocType: Leave Application,Total Leave Days,Días totales de ausencia DocType: Email Digest,Note: Email will not be sent to disabled users,Nota: El correo electrónico no se enviará a los usuarios deshabilitados apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Seleccione la compañía... DocType: Leave Control Panel,Leave blank if considered for all departments,Deje en blanco si se utilizará para todos los departamentos -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Tipos de empleo (permanente , contratos, pasante, etc) ." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Tipos de empleo (permanente , contratos, pasante, etc) ." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} es obligatorio para el producto {1} DocType: Currency Exchange,From Currency,Desde moneda apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Por favor seleccione el monto asignado, tipo de factura y número en una fila" @@ -1667,7 +1667,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,En proceso DocType: Authorization Rule,Itemwise Discount,Descuento de producto DocType: Purchase Order Item,Reference Document Type,Referencia Tipo de documento -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} para orden de venta (OV) {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} para orden de venta (OV) {1} DocType: Account,Fixed Asset,Activo Fijo apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Inventario Serializado DocType: Activity Type,Default Billing Rate,Monto de facturación predeterminada @@ -1677,7 +1677,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Órdenes de venta a pagar DocType: Expense Claim Detail,Expense Claim Detail,Detalle de reembolso de gastos apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Gestión de tiempos creados: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,"Por favor, seleccione la cuenta correcta" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,"Por favor, seleccione la cuenta correcta" DocType: Item,Weight UOM,Unidad de medida (UdM) DocType: Employee,Blood Group,Grupo sanguíneo DocType: Purchase Invoice Item,Page Break,Salto de página @@ -1712,7 +1712,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},Recursividad de lista de materiales (LdM): {0} no puede ser padre o hijo de {2} DocType: Production Order Operation,Completed Qty,Cantidad completada apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","Para {0}, sólo las cuentas de débito pueden vincular con un asiento de crédito" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,La lista de precios {0} está deshabilitada +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,La lista de precios {0} está deshabilitada DocType: Manufacturing Settings,Allow Overtime,Permitir horas extraordinarias apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} Números de serie necesarios para el producto {1}. Usted ha proporcionado {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Tasa de valoración actual @@ -1763,7 +1763,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Ning apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Nº de caso no puede ser 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,Si usted tiene equipo de ventas y socios de ventas ( Socios de canal ) ellos pueden ser etiquetados y mantener su contribución en la actividad de ventas DocType: Item,Show a slideshow at the top of the page,Mostrar una presentación de diapositivas en la parte superior de la página -DocType: Item,"Allow in Sales Order of type ""Service""","Permitir en órdenes de venta de tipo ""Servicio""" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Sucursales DocType: Time Log,Projects Manager,Gerente de proyectos DocType: Serial No,Delivery Time,Tiempo de entrega @@ -1778,6 +1777,7 @@ DocType: Rename Tool,Rename Tool,Herramienta para renombrar apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Actualizar costos DocType: Item Reorder,Item Reorder,Reabastecer producto apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Transferencia de Material +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Artículo {0} debe ser un artículo de venta en {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Especificar las operaciones, el costo de operativo y definir un numero único de operación" DocType: Purchase Invoice,Price List Currency,Divisa de la lista de precios DocType: Naming Series,User must always select,El usuario deberá elegir siempre @@ -1798,7 +1798,7 @@ DocType: Appraisal,Employee,Empleado apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Importar correo electrónico de: apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Invitar como usuario DocType: Features Setup,After Sale Installations,Instalaciones post venta -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} está totalmente facturado +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} está totalmente facturado DocType: Workstation Working Hour,End Time,Hora de finalización apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Contrato estándar de términos y condiciones para ventas y compras. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Agrupar por recibo @@ -1824,7 +1824,7 @@ DocType: Upload Attendance,Attendance To Date,Asistencia a la fecha apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Configuración del servidor de correo entrante corporativo de ventas. (por ejemplo sales@example.com ) DocType: Warranty Claim,Raised By,Propuesto por DocType: Payment Gateway Account,Payment Account,Cuenta de pagos -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,"Por favor, especifique la compañía para continuar" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,"Por favor, especifique la compañía para continuar" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Cambio neto en las cuentas por cobrar apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Compensatorio DocType: Quality Inspection Reading,Accepted,Aceptado @@ -1836,14 +1836,14 @@ DocType: Shipping Rule,Shipping Rule Label,Etiqueta de regla de envío apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,'Materias primas' no puede estar en blanco. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","No se pudo actualizar valores, factura contiene los artículos del envío de la gota." DocType: Newsletter,Test,Prueba -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Existen transacciones de stock para este producto, \ usted no puede cambiar los valores: 'Posee numero de serie', 'Posee numero de lote', 'Es un producto en stock' y 'Método de valoración'" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Asiento Rápida apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,No se puede cambiar el precio si existe una Lista de materiales (LdM) en el producto DocType: Employee,Previous Work Experience,Experiencia laboral previa DocType: Stock Entry,For Quantity,Por cantidad apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},"Por favor, ingrese la cantidad planeada para el producto {0} en la fila {1}" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} no ha sido validada +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} no ha sido validada apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Listado de solicitudes de productos. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Se crearan ordenes de producción separadas para cada producto terminado. DocType: Purchase Invoice,Terms and Conditions1,Términos y Condiciones @@ -1868,6 +1868,7 @@ DocType: Notification Control,Expense Claim Approved Message,Mensaje de reembols DocType: Email Digest,How frequently?,¿Con qué frecuencia? DocType: Purchase Receipt,Get Current Stock,Verificar inventario actual apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Árbol de lista de materiales +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Marcos Presente apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},La fecha de inicio del mantenimiento no puede ser anterior de la fecha de entrega para {0} DocType: Production Order,Actual End Date,Fecha Real de Finalización DocType: Authorization Rule,Applicable To (Role),Aplicable a (Rol) @@ -1882,7 +1883,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,La fecha de finalización de contrato debe ser mayor que la fecha de ingreso DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,Terceros / proveedores / comisionistas / afiliados / distribuidores que venden productos de empresas a cambio de una comisión. DocType: Customer Group,Has Child Node,Posee Sub-grupo -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} contra la orden de compra {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} contra la orden de compra {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Introduzca los parámetros de URL aquí (Ej. sender = ERPNext , nombre de usuario = ERPNext , contraseña = 1234 etc )" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} no se encuentra en el año fiscal activo. Para más detalles verifique {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Este es un sitio web ejemplo generado automáticamente por ERPNext @@ -1930,7 +1931,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Añadir o deducir: Si usted quiere añadir o deducir el impuesto." DocType: Purchase Receipt Item,Recd Quantity,Cantidad recibida apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},No se puede producir una cantidad mayor del producto {0} que lo requerido en el pedido de venta {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,La entrada de stock {0} no esta validada +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,La entrada de stock {0} no esta validada DocType: Payment Reconciliation,Bank / Cash Account,Cuenta de banco / efectivo DocType: Tax Rule,Billing City,Ciudad de facturación DocType: Global Defaults,Hide Currency Symbol,Ocultar el símbolo de moneda @@ -1956,11 +1957,11 @@ DocType: Salary Structure,Total Earning,Ganancia Total DocType: Purchase Receipt,Time at which materials were received,Hora en que se recibieron los materiales apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Mis direcciones DocType: Stock Ledger Entry,Outgoing Rate,Tasa saliente -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Sucursal principal de la organización. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Sucursal principal de la organización. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,ó DocType: Sales Order,Billing Status,Estado de facturación apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Servicios públicos -apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +65,90-Above,90-Mayor +apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +65,90-Above,90 o más DocType: Buying Settings,Default Buying Price List,Lista de precios por defecto apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +83,No employee for the above selected criteria OR salary slip already created,Ningún empleado para los criterios anteriormente seleccionado o nómina ya creado DocType: Notification Control,Sales Order Message,Mensaje de la orden de venta @@ -1994,7 +1995,7 @@ DocType: Bin,Reserved Quantity,Cantidad Reservada DocType: Landed Cost Voucher,Purchase Receipt Items,Productos del recibo de compra apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Formularios personalizados DocType: Account,Income Account,Cuenta de ingresos -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Entregar +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Entregar DocType: Stock Reconciliation Item,Current Qty,Cant. Actual DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",Consulte 'tasa de materiales en base de' en la sección de costos DocType: Appraisal Goal,Key Responsibility Area,Área de Responsabilidad Clave @@ -2006,9 +2007,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,Com DocType: Notification Control,Purchase Order Message,Mensaje en la orden de compra DocType: Tax Rule,Shipping Country,País de envío DocType: Upload Attendance,Upload HTML,Subir HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","Avance total ({0}) en contra de la orden {1} no puede ser mayor \ - que el Gran Total ({2})" DocType: Employee,Relieving Date,Fecha de relevo apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","La regla de precios está hecha para sobrescribir la lista de precios y define un porcentaje de descuento, basado en algunos criterios." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,El almacen sólo se puede cambiar a través de: Entradas de inventario / Nota de entrega / Recibo de compra @@ -2018,8 +2016,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Impue apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Si la regla de precios está hecha para 'Precio', sobrescribirá la lista de precios actual. La regla de precios sera el valor final definido, así que no podrá aplicarse algún descuento. Por lo tanto, en las transacciones como Pedidos de venta, órdenes de compra, etc. el campo sera traído en lugar de utilizar 'Lista de precios'" apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Listar Oportunidades por Tipo de Industria DocType: Item Supplier,Item Supplier,Proveedor del producto -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,"Por favor, ingrese el código del producto para obtener el numero de lote" -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},"Por favor, seleccione un valor para {0} {1} quotation_to" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,"Por favor, ingrese el código del producto para obtener el numero de lote" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},"Por favor, seleccione un valor para {0} {1} quotation_to" apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Todas las direcciones. DocType: Company,Stock Settings,Configuración de inventarios apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","La fusión sólo es posible si las propiedades son las mismas en ambos registros. Es Grupo, Tipo Raíz, Compañía" @@ -2042,7 +2040,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Número de cheque DocType: Payment Tool Detail,Payment Tool Detail,Detalle de herramienta de pago ,Sales Browser,Explorar ventas DocType: Journal Entry,Total Credit,Crédito Total -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Advertencia: Existe otra {0} # {1} para la entrada de inventario {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Advertencia: Existe otra {0} # {1} para la entrada de inventario {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Local apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),INVERSIONES Y PRESTAMOS apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,DEUDORES VARIOS @@ -2062,8 +2060,8 @@ DocType: Price List,Price List Master,Lista de precios principal DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,Todas las transacciones de venta se pueden etiquetar para múltiples **vendedores** de esta manera usted podrá definir y monitorear objetivos. ,S.O. No.,OV No. DocType: Production Order Operation,Make Time Log,Crear gestión de tiempos -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Por favor ajuste la cantidad de pedido -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},"Por favor, crear el cliente desde iniciativa {0}" +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Por favor ajuste la cantidad de pedido +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},"Por favor, crear el cliente desde iniciativa {0}" DocType: Price List,Applicable for Countries,Aplicable para los Países apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Equipo de computo apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,Este es una categoría de cliente raíz (principal) y no se puede editar. @@ -2111,7 +2109,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Factur DocType: Payment Reconciliation Invoice,Outstanding Amount,Monto pendiente DocType: Project Task,Working,Trabajando DocType: Stock Ledger Entry,Stock Queue (FIFO),Cola de inventario (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Por favor seleccione la gestión de tiempos +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Por favor seleccione la gestión de tiempos apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} no pertenece a la compañía {1} DocType: Account,Round Off,REDONDEOS ,Requested Qty,Cant. Solicitada @@ -2149,7 +2147,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Obtener registros relevantes apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Asiento contable de inventario DocType: Sales Invoice,Sales Team1,Equipo de ventas 1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,El elemento {0} no existe +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,El elemento {0} no existe DocType: Sales Invoice,Customer Address,Dirección del cliente DocType: Payment Request,Recipient and Message,Del destinatario y el mensaje DocType: Purchase Invoice,Apply Additional Discount On,Aplicar descuento adicional en @@ -2168,7 +2166,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Silenciar Email apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Alimentos, bebidas y tabaco" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL o BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Sólo se puede crear el pago contra {0} impagado +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Sólo se puede crear el pago contra {0} impagado apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,El porcentaje de comisión no puede ser superior a 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Nivel de inventario mínimo DocType: Stock Entry,Subcontract,Sub-contrato @@ -2186,9 +2184,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Software. apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Color DocType: Maintenance Visit,Scheduled,Programado. apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Por favor, seleccione el ítem donde "Es de la Elemento" es "No" y "¿Es de artículos de venta" es "Sí", y no hay otro paquete de producto" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Avance total ({0}) contra la Orden {1} no puede ser mayor que el Gran Total ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,"Seleccione la distribución mensual, para asignarla desigualmente en varios meses" DocType: Purchase Invoice Item,Valuation Rate,Tasa de Valoración -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,El tipo de divisa para la lista de precios no ha sido seleccionado +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,El tipo de divisa para la lista de precios no ha sido seleccionado apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,El elemento en la fila {0}: Recibo Compra {1} no existe en la tabla de 'Recibos de Compra' apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},El empleado {0} ya se ha aplicado para {1} entre {2} y {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Fecha de inicio del proyecto @@ -2200,6 +2199,7 @@ DocType: Quality Inspection,Inspection Type,Tipo de inspección apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},"Por favor, seleccione {0}" DocType: C-Form,C-Form No,C -Form No DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,La asistencia sin marcar apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Investigador apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,"Por favor, guarde el boletín antes de enviarlo" apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,El nombre o E-mail es obligatorio @@ -2225,7 +2225,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Confirm DocType: Payment Gateway,Gateway,Puerta apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Proveedor> Tipo de proveedor apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,"Por favor, introduzca la fecha de relevo" -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Monto +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Monto apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,"Sólo las solicitudes de ausencia con estado ""Aprobado"" puede ser validadas" apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,La dirección principal es obligatoria DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,"Introduzca el nombre de la campaña, si la solicitud viene desde esta." @@ -2240,10 +2240,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Almacén Aceptado DocType: Bank Reconciliation Detail,Posting Date,Fecha de contabilización DocType: Item,Valuation Method,Método de valoración apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},No se puede encontrar el tipo de cambio para {0} a {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Medio Día Marcos DocType: Sales Invoice,Sales Team,Equipo de ventas apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Entrada duplicada DocType: Serial No,Under Warranty,Bajo garantía -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Error] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Error] DocType: Sales Order,In Words will be visible once you save the Sales Order.,En palabras serán visibles una vez que guarde el pedido de ventas. ,Employee Birthday,Cumpleaños del empleado apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Capital de riesgo @@ -2266,6 +2267,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,El centro de costos con transacciones existentes no se puede convertir a 'grupo' DocType: Account,Depreciation,DEPRECIACIONES apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Proveedor(es) +DocType: Employee Attendance Tool,Employee Attendance Tool,Herramienta de asistencia de los empleados DocType: Supplier,Credit Limit,Límite de crédito apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Seleccione el tipo de transacción. DocType: GL Entry,Voucher No,Comprobante No. @@ -2292,7 +2294,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,La cuenta root no se puede borrar ,Is Primary Address,Es Dirección Primaria DocType: Production Order,Work-in-Progress Warehouse,Almacén de trabajos en proceso -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Referencia # {0} de fecha {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Referencia # {0} de fecha {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Administrar direcciones DocType: Pricing Rule,Item Code,Código del producto DocType: Production Planning Tool,Create Production Orders,Crear órdenes de producción @@ -2319,7 +2321,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Conciliación bancaria apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Obtener actualizaciones apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Requisición de materiales {0} cancelada o detenida apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Agregar algunos registros de muestra -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Gestión de ausencias +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Gestión de ausencias apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Agrupar por cuenta DocType: Sales Order,Fully Delivered,Entregado completamente DocType: Lead,Lower Income,Ingreso menor @@ -2334,6 +2336,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','Desde la fecha' debe ser después de 'Hasta Fecha' ,Stock Projected Qty,Cantidad de inventario proyectado apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Cliente {0} no pertenece al proyecto {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Asistencia marcado HTML DocType: Sales Order,Customer's Purchase Order,Ordenes de compra de clientes DocType: Warranty Claim,From Company,Desde Compañía apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Valor o Cantidad @@ -2398,6 +2401,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Transferencia bancaria apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,"Por favor, seleccione la cuenta bancaria" DocType: Newsletter,Create and Send Newsletters,Crear y enviar boletines de noticias +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Marque todas las DocType: Sales Order,Recurring Order,Orden recurrente DocType: Company,Default Income Account,Cuenta de ingresos por defecto apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Categoría de cliente / Cliente @@ -2429,6 +2433,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Devolución contra fac DocType: Item,Warranty Period (in days),Período de garantía (en días) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Efectivo neto de las operaciones apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,por ejemplo IVA +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Asistencia de Mark Empleado a granel apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Elemento 4 DocType: Journal Entry Account,Journal Entry Account,Cuenta de asiento contable DocType: Shopping Cart Settings,Quotation Series,Series de cotizaciones @@ -2573,14 +2578,14 @@ DocType: Task,Actual Start Date (via Time Logs),Fecha de inicio actual (gestión DocType: Stock Reconciliation Item,Before reconciliation,Antes de reconciliación apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Para {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Impuestos y cargos adicionales (Divisa por defecto) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,"El campo de impuesto del producto {0} debe tener un tipo de cuenta de impuestos, ingresos, cargos o gastos" +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,"El campo de impuesto del producto {0} debe tener un tipo de cuenta de impuestos, ingresos, cargos o gastos" DocType: Sales Order,Partly Billed,Parcialmente facturado DocType: Item,Default BOM,Lista de Materiales (LdM) por defecto apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,"Por favor, vuelva a escribir nombre de la empresa para confirmar" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Monto total pendiente DocType: Time Log Batch,Total Hours,Total de Horas DocType: Journal Entry,Printing Settings,Ajustes de impresión -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},El débito total debe ser igual al crédito. La diferencia es {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},El débito total debe ser igual al crédito. La diferencia es {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Automotores apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Desde nota de entrega DocType: Time Log,From Time,Desde hora @@ -2627,7 +2632,7 @@ DocType: Purchase Invoice Item,Image View,Vista de imagen DocType: Issue,Opening Time,Hora de apertura apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,Desde y Hasta la fecha solicitada apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Cambios de valores y bienes -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Unidad de medida predeterminada para Variant '{0}' debe ser el mismo que en la plantilla '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Unidad de medida predeterminada para Variant '{0}' debe ser el mismo que en la plantilla '{1}' DocType: Shipping Rule,Calculate Based On,Calculo basado en DocType: Delivery Note Item,From Warehouse,De Almacén DocType: Purchase Taxes and Charges,Valuation and Total,Valuación y total @@ -2649,7 +2654,7 @@ DocType: Leave Application,Follow via Email,Seguir a través de correo electroni DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Total impuestos después del descuento apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,"No es posible eliminar esta cuenta, ya que existe una sub-cuenta" apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Es obligatoria la meta de facturacion -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},No existe una lista de materiales por defecto para el elemento {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},No existe una lista de materiales por defecto para el elemento {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,"Por favor, seleccione Fecha de contabilización primero" apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Fecha de apertura debe ser antes de la Fecha de Cierre DocType: Leave Control Panel,Carry Forward,Trasladar @@ -2726,7 +2731,7 @@ DocType: Leave Type,Is Encash,Se convertirá en efectivo DocType: Purchase Invoice,Mobile No,Nº Móvil DocType: Payment Tool,Make Journal Entry,Crear asiento contable DocType: Leave Allocation,New Leaves Allocated,Nuevas vacaciones asignadas -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Los datos del proyecto no están disponibles para la cotización +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Los datos del proyecto no están disponibles para la cotización DocType: Project,Expected End Date,Fecha prevista de finalización DocType: Appraisal Template,Appraisal Template Title,Titulo de la plantilla de evaluación apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Comercial @@ -2774,6 +2779,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,El apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,"Por favor, especifique un/a" DocType: Offer Letter,Awaiting Response,Esperando Respuesta apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Arriba +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Hora de registro ha sido calificada DocType: Salary Slip,Earning & Deduction,Ingresos y Deducciones apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Cuenta {0} no puede ser un Grupo apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Opcional. Esta configuración es utilizada para filtrar la cuenta de otras transacciones @@ -2844,14 +2850,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Todas las transacciones relacionadas con esta compañía han sido eliminadas correctamente. apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,A la fecha apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Período de prueba -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Almacén por defecto es obligatorio para un elemento en stock. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Almacén por defecto es obligatorio para un elemento en stock. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Pago del salario correspondiente al mes {0} del año {1} DocType: Stock Settings,Auto insert Price List rate if missing,Auto inserto tasa Lista de Precios si falta apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Importe total pagado ,Transferred Qty,Cantidad Transferida apps/erpnext/erpnext/config/learn.py +11,Navigating,Navegación apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Planificación -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Crear lotes de gestión de tiempos +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Crear lotes de gestión de tiempos apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Emitido DocType: Project,Total Billing Amount (via Time Logs),Importe total de facturación (a través de la gestión de tiempos) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Vendemos este producto @@ -2859,7 +2865,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Cantidad debe ser mayor que 0 DocType: Journal Entry,Cash Entry,Entrada de caja DocType: Sales Partner,Contact Desc,Desc. de Contacto -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Tipo de vacaciones como, enfermo, casual, etc." +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Tipo de vacaciones como, enfermo, casual, etc." DocType: Email Digest,Send regular summary reports via Email.,Enviar informes resumidos periódicamente por correo electrónico. DocType: Brand,Item Manager,Administración de elementos DocType: Cost Center,Add rows to set annual budgets on Accounts.,Agregar las lineas para establecer los presupuestos anuales. @@ -2874,7 +2880,7 @@ DocType: GL Entry,Party Type,Tipo de entidad apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,La materia prima no puede ser la misma que el producto principal DocType: Item Attribute Value,Abbreviation,Abreviación apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,No autorizado desde {0} excede los límites -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Plantilla maestra de nómina salarial +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Plantilla maestra de nómina salarial DocType: Leave Type,Max Days Leave Allowed,Máximo de días de ausencia permitidos apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Establezca la regla fiscal (Impuestos) del carrito de compras DocType: Payment Tool,Set Matching Amounts,Coincidir pagos @@ -2887,7 +2893,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Cotizac DocType: Stock Settings,Role Allowed to edit frozen stock,Rol que permite editar inventario congelado ,Territory Target Variance Item Group-Wise,Territory Target Variance Item Group-Wise apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Todas las categorías de clientes -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} es obligatorio. posiblemente el tipo de cambio no se ha creado para {1} en {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} es obligatorio. posiblemente el tipo de cambio no se ha creado para {1} en {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Plantilla de impuestos es obligatorio. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Cuenta {0}: desde cuenta padre {1} no existe DocType: Purchase Invoice Item,Price List Rate (Company Currency),Tarifa de la lista de precios (Divisa por defecto) @@ -2907,8 +2913,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Detalle de Impuestos ,Item-wise Price List Rate,Detalle del listado de precios apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Cotización de proveedor DocType: Quotation,In Words will be visible once you save the Quotation.,'En palabras' serán visibles una vez que guarde la cotización. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} esta detenido -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},El código de barras {0} ya se utiliza en el elemento {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} esta detenido +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},El código de barras {0} ya se utiliza en el elemento {1} DocType: Lead,Add to calendar on this date,Añadir al calendario en esta fecha apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Reglas para añadir los gastos de envío. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Próximos eventos @@ -2934,8 +2940,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,Ve apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Al menos un almacén es obligatorio DocType: Serial No,Out of Warranty,Fuera de garantía DocType: BOM Replace Tool,Replace,Reemplazar -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} contra factura de ventas {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,"Por favor, ingrese unidad de medida (UdM) predeterminada" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} contra factura de ventas {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,"Por favor, ingrese unidad de medida (UdM) predeterminada" DocType: Purchase Invoice Item,Project Name,Nombre de proyecto DocType: Supplier,Mention if non-standard receivable account,Indique si utiliza una cuenta por cobrar distinta a la predeterminada DocType: Journal Entry Account,If Income or Expense,Indique si es un ingreso o egreso @@ -2960,7 +2966,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,El año fiscal: {0} no existe DocType: Currency Exchange,To Currency,A moneda DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Permitir a los usuarios siguientes aprobar solicitudes de ausencia en días bloqueados. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Tipos de reembolsos +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Tipos de reembolsos DocType: Item,Taxes,Impuestos apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,A cargo y no entregados DocType: Project,Default Cost Center,Centro de costos por defecto @@ -2990,7 +2996,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Línea # {0}: Número de serie {1} no coincide con {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Permiso ocacional DocType: Batch,Batch ID,ID de lote -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Nota: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Nota: {0} ,Delivery Note Trends,Evolución de las notas de entrega apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Resumen de la semana. apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} debe ser 'un producto para compra' o sub-contratado en la línea {1} @@ -3030,6 +3036,7 @@ DocType: Project Task,Pending Review,Pendiente de revisar apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Haga clic aquí para pagar DocType: Task,Total Expense Claim (via Expense Claim),Total reembolso (Vía reembolso de gastos) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,ID del cliente +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Marcos Ausente apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,'hasta hora' debe ser mayor que 'desde hora' DocType: Journal Entry Account,Exchange Rate,Tipo de cambio apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,La órden de venta {0} no esta validada @@ -3077,7 +3084,7 @@ DocType: Item Group,Default Expense Account,Cuenta de gastos por defecto DocType: Employee,Notice (days),Aviso (días) DocType: Tax Rule,Sales Tax Template,Plantilla de impuesto sobre ventas DocType: Employee,Encashment Date,Fecha de cobro -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","El tipo de comprobante debe pertenecer a orden de compra, factura de compra o registro de diario" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","El tipo de comprobante debe pertenecer a orden de compra, factura de compra o registro de diario" DocType: Account,Stock Adjustment,Ajuste de existencias apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Existe una actividad de costo por defecto para la actividad del tipo - {0} DocType: Production Order,Planned Operating Cost,Costos operativos planeados @@ -3131,6 +3138,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Diferencia de desajuste DocType: BOM,Rate Of Materials Based On,Valor de materiales basado en apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Soporte analítico +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Desmarcar todos apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Defina la compañía en los almacenes {0} DocType: POS Profile,Terms and Conditions,Términos y condiciones apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},La fecha debe estar dentro del año fiscal. Asumiendo a la fecha = {0} @@ -3152,7 +3160,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Para establecer este año fiscal por defecto, haga clic en 'Establecer como predeterminado'" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Configuración del servidor de correo entrante corporativo de soporte técnico. (ej. support@example.com ) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Cantidad faltante -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Existe la variante de artículo {0} con mismos atributos +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Existe la variante de artículo {0} con mismos atributos DocType: Salary Slip,Salary Slip,Nómina salarial apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,'Hasta la fecha' es requerido DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Generar etiquetas de embalaje, para los paquetes que serán entregados, usados para notificar el numero, contenido y peso del paquete," @@ -3200,7 +3208,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Ver ini DocType: Item Attribute Value,Attribute Value,Valor del Atributo apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","El Email debe ser único, {0} ya existe" ,Itemwise Recommended Reorder Level,Nivel recomendado de reabastecimiento de producto -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,"Por favor, seleccione primero {0}" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,"Por favor, seleccione primero {0}" DocType: Features Setup,To get Item Group in details table,"Para obtener el grupo del producto, en detalles de tabla" apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,El lote {0} del producto {1} ha expirado. DocType: Sales Invoice,Commission,Comisión @@ -3255,7 +3263,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Obtener comprobantes pendientes de pago DocType: Warranty Claim,Resolved By,Resuelto por DocType: Appraisal,Start Date,Fecha de inicio -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Asignar las ausencias para un período. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Asignar las ausencias para un período. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Los cheques y depósitos borran de forma incorrecta apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Haga clic aquí para verificar apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Cuenta {0}: no puede asignar la misma cuenta como padre / principal. @@ -3275,7 +3283,7 @@ DocType: Employee,Educational Qualification,Formación académica DocType: Workstation,Operating Costs,Costos operativos DocType: Employee Leave Approver,Employee Leave Approver,Supervisor de ausencias de empleados apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} ha sido agregado con éxito a nuestro boletín de noticias -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Línea {0}: Una entrada de abastecimiento ya existe para el almacén {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Línea {0}: Una entrada de abastecimiento ya existe para el almacén {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","No se puede declarar como perdida, porque la cotización ha sido hecha." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Director de compras apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,La orden de producción {0} debe ser validada @@ -3299,7 +3307,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,La factura {0} ya ha sido validada apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Fecha de finalización DocType: Purchase Invoice Item,Amount (Company Currency),Importe (Divisa por defecto) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Unidades de la organización (listado de departamentos. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Unidades de la organización (listado de departamentos. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,"Por favor, ingrese un numero de móvil válido" DocType: Budget Detail,Budget Detail,Detalle del presupuesto apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,"Por favor, ingrese el mensaje antes de enviarlo" @@ -3315,13 +3323,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Recibidos y aceptados ,Serial No Service Contract Expiry,Número de serie de expiracion del contrato de servicios DocType: Item,Unit of Measure Conversion,Conversión unidad de medida apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,El empleado no se puede cambiar -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,No se pueden registrar Debitos y Creditos a la misma Cuenta al mismo tiempo +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,No se pueden registrar Debitos y Creditos a la misma Cuenta al mismo tiempo DocType: Naming Series,Help HTML,Ayuda 'HTML' apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Peso total asignado debe ser de 100 %. Es {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Previsión por exceso de {0} cruzados por artículo {1} DocType: Address,Name of person or organization that this address belongs to.,Nombre de la persona u organización a la que esta dirección pertenece. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Sus proveedores -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,"No se puede definir como pérdida, cuando la orden de venta esta hecha." +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,"No se puede definir como pérdida, cuando la orden de venta esta hecha." apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,"Otra estructura salarial {0} está activo para empleado {1}. Por favor, haga su estado 'Inactivo' para proceder." DocType: Purchase Invoice,Contact,Contacto apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Recibido de @@ -3331,11 +3339,11 @@ DocType: Item,Has Serial No,Posee numero de serie DocType: Employee,Date of Issue,Fecha de emisión. apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: Desde {0} hasta {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Fila # {0}: Conjunto de Proveedores para el elemento {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Sitio web Imagen {0} unido al artículo {1} no se puede encontrar +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Sitio web Imagen {0} unido al artículo {1} no se puede encontrar DocType: Issue,Content Type,Tipo de contenido apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Computadora DocType: Item,List this Item in multiple groups on the website.,Listar este producto en múltiples grupos del sitio web. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,"Por favor, consulte la opción Multi moneda para permitir cuentas con otra divisa" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,"Por favor, consulte la opción Multi moneda para permitir cuentas con otra divisa" apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,El producto: {0} no existe en el sistema apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Usted no está autorizado para definir el 'valor congelado' DocType: Payment Reconciliation,Get Unreconciled Entries,Verificar entradas no conciliadas @@ -3345,14 +3353,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,¿A qué se DocType: Delivery Note,To Warehouse,Para Almacén apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Cuenta {0} se ha introducido más de una vez para el año fiscal {1} ,Average Commission Rate,Tasa de comisión promedio -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,"'Posee numero de serie' no puede ser ""Sí"" para los productos que NO son de stock" +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,"'Posee numero de serie' no puede ser ""Sí"" para los productos que NO son de stock" apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,La asistencia no se puede marcar para fechas futuras DocType: Pricing Rule,Pricing Rule Help,Ayuda de regla de precios DocType: Purchase Taxes and Charges,Account Head,Cuenta matriz apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Actualización de los costes adicionales para el cálculo del precio al desembarque de artículos apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Eléctrico DocType: Stock Entry,Total Value Difference (Out - In),Total diferencia (Salidas - Entradas) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Fila {0}: Tipo de cambio es obligatorio +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Fila {0}: Tipo de cambio es obligatorio apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},ID de usuario no establecido para el empleado {0} DocType: Stock Entry,Default Source Warehouse,Almacén de origen DocType: Item,Customer Code,Código de cliente @@ -3371,15 +3379,15 @@ DocType: Notification Control,Sales Invoice Message,Mensaje de factura apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Cuenta {0} Clausura tiene que ser de Responsabilidad / Patrimonio DocType: Authorization Rule,Based On,Basado en DocType: Sales Order Item,Ordered Qty,Cantidad ordenada -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Artículo {0} está deshabilitado +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Artículo {0} está deshabilitado DocType: Stock Settings,Stock Frozen Upto,Inventario congelado hasta apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Periodo Desde y Período Para fechas obligatorias para los recurrentes {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Actividad del proyecto / tarea. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Generar nóminas salariales +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Generar nóminas salariales apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","'Compras' debe ser seleccionada, si la opción: 'Aplicable para' esta seleccionado como {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,El descuento debe ser inferior a 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Saldo de perdidas y ganancias (Divisa por defecto) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Fila # {0}: Configure la cantidad de pedido +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Fila # {0}: Configure la cantidad de pedido DocType: Landed Cost Voucher,Landed Cost Voucher,Comprobante de costos de destino estimados apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},"Por favor, configure {0}" DocType: Purchase Invoice,Repeat on Day of Month,Repetir un día al mes @@ -3432,7 +3440,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Almacén predeterminado de trabajos en proceso apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Los ajustes por defecto para las transacciones contables. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,La fecha prevista no puede ser menor que la fecha de requisición de materiales -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,El producto {0} debe ser un producto para la venta +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,El producto {0} debe ser un producto para la venta DocType: Naming Series,Update Series Number,Actualizar número de serie DocType: Account,Equity,Patrimonio DocType: Sales Order,Printing Details,Detalles de impresión @@ -3484,7 +3492,7 @@ DocType: Task,Review Date,Fecha de revisión DocType: Purchase Invoice,Advance Payments,Pagos adelantados DocType: Purchase Taxes and Charges,On Net Total,Sobre el total neto apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Almacenes de destino de la línea {0} deben ser los mismos para la orden de producción -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,No tiene permiso para utilizar la herramienta de pagos +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,No tiene permiso para utilizar la herramienta de pagos apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,'Email de notificación' no especificado para %s recurrentes apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,El tipo de moneda/divisa no se puede cambiar después de crear la entrada contable DocType: Company,Round Off Account,Cuenta de redondeo por defecto @@ -3507,7 +3515,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Cantidad del producto obtenido después de la fabricación / empaquetado desde las cantidades determinadas de materia prima DocType: Payment Reconciliation,Receivable / Payable Account,Cuenta por Cobrar / Pagar DocType: Delivery Note Item,Against Sales Order Item,Contra la orden de venta del producto -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},"Por favor, especifique el valor del atributo {0}" +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},"Por favor, especifique el valor del atributo {0}" DocType: Item,Default Warehouse,Almacén por defecto DocType: Task,Actual End Date (via Time Logs),Fecha de finalización (gestión de tiempos) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},El presupuesto no se puede asignar contra el grupo de cuentas {0} @@ -3532,10 +3540,10 @@ DocType: Lead,Blog Subscriber,Suscriptor del Blog apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Crear reglas para restringir las transacciones basadas en valores. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Si se marca, el número total de días trabajados incluirá las vacaciones, y este reducirá el salario por día." DocType: Purchase Invoice,Total Advance,Total anticipo -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Procesando nómina +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Procesando nómina DocType: Opportunity Item,Basic Rate,Precio base DocType: GL Entry,Credit Amount,Importe acreditado -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Establecer como perdido +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Establecer como perdido apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Pago de recibos Nota DocType: Supplier,Credit Days Based On,Días de crédito basados en DocType: Tax Rule,Tax Rule,Regla fiscal @@ -3565,7 +3573,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Cantidad Aceptada apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} no existe apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Listado de facturas emitidas a los clientes. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,ID del proyecto -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Línea #{0}: El importe no puede ser mayor que el reembolso pendiente {1}. El importe pendiente es {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Línea #{0}: El importe no puede ser mayor que el reembolso pendiente {1}. El importe pendiente es {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} suscriptores añadidos DocType: Maintenance Schedule,Schedule,Programa DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Defina el presupuesto para este centro de costos, puede configurarlo en 'Listado de compañía'" @@ -3626,19 +3634,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,Perfil de POS DocType: Payment Gateway Account,Payment URL Message,Pago URL Mensaje apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Configuración general para establecer presupuestos, objetivos, etc." -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Línea {0}: El importe de pago no puede ser superior al monto pendiente de pago +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Línea {0}: El importe de pago no puede ser superior al monto pendiente de pago apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Total impagado -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,La gestión de tiempos no se puede facturar -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","El producto {0} es una plantilla, por favor seleccione una de sus variantes" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,La gestión de tiempos no se puede facturar +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","El producto {0} es una plantilla, por favor seleccione una de sus variantes" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Comprador apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,El salario neto no puede ser negativo -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,"Por favor, ingrese los recibos correspondientes manualmente" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,"Por favor, ingrese los recibos correspondientes manualmente" DocType: SMS Settings,Static Parameters,Parámetros estáticos DocType: Purchase Order,Advance Paid,Pago Anticipado DocType: Item,Item Tax,Impuestos del producto apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Materiales de Proveedor apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Impuestos Especiales Factura DocType: Expense Claim,Employees Email Id,ID de Email de empleados +DocType: Employee Attendance Tool,Marked Attendance,Asistencia Marcada apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Pasivo circulante apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Enviar mensajes SMS masivos a sus contactos DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Considerar impuestos o cargos por @@ -3661,7 +3670,7 @@ DocType: Item Attribute,Numeric Values,Valores numéricos apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Adjuntar logo DocType: Customer,Commission Rate,Comisión de ventas apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Crear variante -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Bloquear solicitudes de ausencias por departamento. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Bloquear solicitudes de ausencias por departamento. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,El carrito esta vacío. DocType: Production Order,Actual Operating Cost,Costo de operación actual apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Usuario root no se puede editar. @@ -3680,7 +3689,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,Crear automáticamente una 'requisición de materiales' si la cantidad es inferior a este nivel ,Item-wise Purchase Register,Detalle de compras DocType: Batch,Expiry Date,Fecha de caducidad -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Para establecer el nivel de reabastecimiento, el producto debe ser de 'compra' o un producto para fabricación" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Para establecer el nivel de reabastecimiento, el producto debe ser de 'compra' o un producto para fabricación" ,Supplier Addresses and Contacts,Libreta de direcciones de proveedores apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,"Por favor, seleccione primero la categoría" apps/erpnext/erpnext/config/projects.py +18,Project master.,Listado de todos los proyectos. diff --git a/erpnext/translations/et.csv b/erpnext/translations/et.csv index 0207dabedd..94aecd7927 100644 --- a/erpnext/translations/et.csv +++ b/erpnext/translations/et.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,Credit Company Valuuta DocType: Delivery Note,Installation Status,Paigaldamine staatus apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Aktsepteeritud + Tõrjutud Kogus peab olema võrdne saadud koguse Punkt {0} DocType: Item,Supply Raw Materials for Purchase,Supply tooraine ostmiseks -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Punkt {0} peab olema Ostu toode +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Punkt {0} peab olema Ostu toode DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Lae mall, täitke asjakohaste andmete ja kinnitage muudetud faili. Kõik kuupäevad ning töötaja kombinatsioon valitud perioodil tulevad malli, olemasolevate töölkäimise" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,Punkt {0} ei ole aktiivne või elu lõpuni jõutud DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Uuendatakse pärast müügiarve esitatakse. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Et sisaldada makse järjest {0} Punkti kiirus, maksud ridadesse {1} peab olema ka" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Seaded HR Module +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Et sisaldada makse järjest {0} Punkti kiirus, maksud ridadesse {1} peab olema ka" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Seaded HR Module DocType: SMS Center,SMS Center,SMS Center DocType: BOM Replace Tool,New BOM,New Bom apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Partii aeg kajakad arve. @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,Vali Tingimused DocType: Production Planning Tool,Sales Orders,Müügitellimuste DocType: Purchase Taxes and Charges,Valuation,Väärtustamine ,Purchase Order Trends,Ostutellimuse Trends -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Eraldada lehed aastal. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Eraldada lehed aastal. DocType: Earning Type,Earning Type,Teenimine Type DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Keela Capacity Planning and Time Tracking DocType: Bank Reconciliation,Bank Account,Pangakonto @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Punkt Koduleht spetsifikatsioon DocType: Payment Tool,Reference No,Viitenumber apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Jäta blokeeritud -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Punkt {0} on jõudnud oma elu lõppu kohta {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Punkt {0} on jõudnud oma elu lõppu kohta {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Aastane DocType: Stock Reconciliation Item,Stock Reconciliation Item,Stock leppimise toode DocType: Stock Entry,Sales Invoice No,Müügiarve pole @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,Tellimuse Miinimum Kogus DocType: Pricing Rule,Supplier Type,Tarnija Type DocType: Item,Publish in Hub,Avaldab Hub ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Punkt {0} on tühistatud +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Punkt {0} on tühistatud apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Materjal taotlus DocType: Bank Reconciliation,Update Clearance Date,Värskenda Kliirens kuupäev DocType: Item,Purchase Details,Ostu üksikasjad @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Tagasilükatud Kogus DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Field saadaval saateleht, tsitaat, müügiarve, Sales Order" DocType: SMS Settings,SMS Sender Name,SMS Sender Name DocType: Contact,Is Primary Contact,Kas Esmane Kontakt +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Aeg Logi ole fermentatsioonikeskkonda Arved DocType: Notification Control,Notification Control,Märguannete juhtimiskeskuse DocType: Lead,Suggestions,Ettepanekud DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Määra Punkt Group tark eelarved selle ala. Te saate ka sesoonsus seades Distribution. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},Palun sisestage vanema konto rühma ladu {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Makse vastu {0} {1} ei saa olla suurem kui tasumata summa {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Makse vastu {0} {1} ei saa olla suurem kui tasumata summa {2} DocType: Supplier,Address HTML,Aadress HTML DocType: Lead,Mobile No.,Mobiili number. DocType: Maintenance Schedule,Generate Schedule,Loo Graafik @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Sünkroniseerida Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Vale parool DocType: Item,Variant Of,Variant Of -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Punkt {0} peab olema Service toode apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',Valminud Kogus ei saa olla suurem kui "Kogus et Tootmine" DocType: Period Closing Voucher,Closing Account Head,Konto sulgemise Head DocType: Employee,External Work History,Väline tööandjad @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,Infobülletään DocType: Stock Settings,Notify by Email on creation of automatic Material Request,"Soovin e-postiga loomiseks, automaatne Material taotlus" DocType: Journal Entry,Multi Currency,Multi Valuuta DocType: Payment Reconciliation Invoice,Invoice Type,Arve Type -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Toimetaja märkus +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Toimetaja märkus apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Seadistamine maksud apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,"Makse Entry on muudetud pärast seda, kui tõmbasin. Palun tõmmake uuesti." -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} sisestatud kaks korda Punkt Maksu- +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} sisestatud kaks korda Punkt Maksu- apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Kokkuvõte sel nädalal ja kuni tegevusi DocType: Workstation,Rent Cost,Üürile Cost apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Palun valige kuu ja aasta @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,Kehtib Riigid DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Kõik import seotud valdkondades nagu valuuta, ümberarvestuskurss, import kokku, import grand kokku jne on saadaval ostutšekk, Tarnija tsitaat, ostuarve, Ostutellimuse jms" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"See toode on Mall ja seda ei saa kasutada tehingutes. Punkt atribuute kopeerida üle võetud variante, kui "No Copy" on seatud" apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Kokku Tellimus Peetakse -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).",Töötaja nimetus (nt tegevjuht direktor jne). +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).",Töötaja nimetus (nt tegevjuht direktor jne). apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,Palun sisestage "Korda päev kuus väljale väärtus DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,Hinda kus Klient Valuuta teisendatakse kliendi baasvaluuta DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Saadaval Bom, saateleht, ostuarve, tootmise Order, ostutellimuse, ostutšekk, müügiarve, Sales Order, Stock Entry, Töögraafik" @@ -355,7 +355,7 @@ DocType: Workstation,Consumable Cost,Tarbekaubad Cost apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) peab olema roll "Leave Approver" DocType: Purchase Receipt,Vehicle Date,Sõidukite kuupäev apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Medical -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Põhjus kaotada +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Põhjus kaotada apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Workstation on suletud järgmistel kuupäevadel kohta Holiday nimekiri: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Võimalused DocType: Employee,Single,Single @@ -383,14 +383,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Channel Partner DocType: Account,Old Parent,Vana Parent DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,"Kohanda sissejuhatavat teksti, mis läheb osana, et e-posti. Iga tehing on eraldi sissejuhatavat teksti." +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Ära sümboleid (nt. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Müük Master Manager apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Global seaded kõik tootmisprotsessid. DocType: Accounts Settings,Accounts Frozen Upto,Kontod Külmutatud Upto DocType: SMS Log,Sent On,Saadetud -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Oskus {0} valitakse mitu korda atribuudid Table +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Oskus {0} valitakse mitu korda atribuudid Table DocType: HR Settings,Employee record is created using selected field. ,"Töötaja rekord on loodud, kasutades valitud valdkonnas." DocType: Sales Order,Not Applicable,Ei kasuta -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Holiday kapten. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Holiday kapten. DocType: Material Request Item,Required Date,Vajalik kuupäev DocType: Delivery Note,Billing Address,Arve Aadress apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,Palun sisestage Kood. @@ -426,7 +427,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,"Palun sisestage Warehouse, mille materjal taotlus tõstetakse" DocType: Production Order,Additional Operating Cost,Täiendav töökulud apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Kosmeetika -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Ühendamine, järgmised omadused peavad olema ühesugused teemad" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Ühendamine, järgmised omadused peavad olema ühesugused teemad" DocType: Shipping Rule,Net Weight,Netokaal DocType: Employee,Emergency Phone,Emergency Phone ,Serial No Warranty Expiry,Serial No Garantii lõppemine @@ -481,17 +482,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Arved ja Delivery Status apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Korrake klientidele DocType: Leave Control Panel,Allocate,Eraldama -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Müügitulu +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Müügitulu DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Vali müügitellimuste kust soovid luua Tootmistellimused. DocType: Item,Delivered by Supplier (Drop Ship),Andis Tarnija (Drop Laev) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Palk komponendid. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Palk komponendid. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Andmebaas potentsiaalseid kliente. DocType: Authorization Rule,Customer or Item,Kliendi või toode apps/erpnext/erpnext/config/crm.py +17,Customer database.,Kliendi andmebaasi. DocType: Quotation,Quotation To,Tsitaat DocType: Lead,Middle Income,Keskmise sissetulekuga apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Avamine (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Vaikimisi mõõtühik Punkt {0} ei saa muuta otse, sest teil on juba mõned tehingu (te) teise UOM. Te peate looma uue Punkt kasutada erinevaid vaikimisi UOM." +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Vaikimisi mõõtühik Punkt {0} ei saa muuta otse, sest teil on juba mõned tehingu (te) teise UOM. Te peate looma uue Punkt kasutada erinevaid vaikimisi UOM." apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Eraldatud summa ei saa olla negatiivne DocType: Purchase Order Item,Billed Amt,Arve Amt DocType: Warehouse,A logical Warehouse against which stock entries are made.,Loogiline Warehouse mille vastu laos tehakse kandeid. @@ -510,14 +511,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Müük maksud ja tasud DocType: Employee,Organization Profile,Organisatsiooni andmed apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,Palun setup numeratsiooni seeria osavõtt Setup> numbrite seeria DocType: Employee,Reason for Resignation,Lahkumise põhjuseks -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Mall tulemuste hindamisel. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Mall tulemuste hindamisel. DocType: Payment Reconciliation,Invoice/Journal Entry Details,Arve / päevikusissekanne Üksikasjad apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' ei eelarveaastal {2} DocType: Buying Settings,Settings for Buying Module,Seaded ostmine Module apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,Palun sisestage ostutšeki esimene DocType: Buying Settings,Supplier Naming By,Tarnija nimetamine By DocType: Activity Type,Default Costing Rate,Vaikimisi ületaksid -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Hoolduskava +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Hoolduskava apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Siis Hinnakujundusreeglid on välja filtreeritud põhineb kliendi, kliendi nimel, Territory, Tarnija, Tarnija tüüp, kampaania, Sales Partner jms" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Net muutus Varude DocType: Employee,Passport Number,Passi number @@ -556,7 +557,7 @@ DocType: Purchase Invoice,Quarterly,Quarterly DocType: Selling Settings,Delivery Note Required,Toimetaja märkus Vajalikud DocType: Sales Order Item,Basic Rate (Company Currency),Basic Rate (firma Valuuta) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush tooraine põhineb -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,Palun sisestage kirje üksikasjad +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,Palun sisestage kirje üksikasjad DocType: Purchase Receipt,Other Details,Muud andmed DocType: Account,Accounts,Kontod apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Marketing @@ -569,7 +570,7 @@ DocType: Employee,Provide email id registered in company,Pakkuda email id regist DocType: Hub Settings,Seller City,Müüja City DocType: Email Digest,Next email will be sent on:,Järgmine email saadetakse edasi: DocType: Offer Letter Term,Offer Letter Term,Paku kiri Term -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Punkt on variante. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Punkt on variante. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Punkt {0} ei leitud DocType: Bin,Stock Value,Stock Value apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Tree Type @@ -577,7 +578,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Kogus Tarbitud Per Unit DocType: Serial No,Warranty Expiry Date,Garantii Aegumisaja DocType: Material Request Item,Quantity and Warehouse,Kogus ja Warehouse DocType: Sales Invoice,Commission Rate (%),Komisjoni Rate (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Vastu Voucher tüüp peab olema üks Sales Order, müügiarve või päevikusissekanne" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Vastu Voucher tüüp peab olema üks Sales Order, müügiarve või päevikusissekanne" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Aerospace DocType: Journal Entry,Credit Card Entry,Krediitkaart Entry apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Task Teema @@ -645,10 +646,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Vastutus apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Sanktsioneeritud summa ei või olla suurem kui nõude summast reas {0}. DocType: Company,Default Cost of Goods Sold Account,Vaikimisi müüdud toodangu kulu konto -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Hinnakiri ole valitud +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Hinnakiri ole valitud DocType: Employee,Family Background,Perekondlik taust DocType: Process Payroll,Send Email,Saada E- -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Hoiatus: Vigane Attachment {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Hoiatus: Vigane Attachment {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Ei Luba DocType: Company,Default Bank Account,Vaikimisi Bank Account apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Filtreerida põhineb Party, Party Tüüp esimene" @@ -676,7 +677,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Toetu DocType: Features Setup,"To enable ""Point of Sale"" features","Selleks, et võimaldada "müügikoht" omadused" DocType: Bin,Moving Average Rate,Libisev keskmine hind DocType: Production Planning Tool,Select Items,Vali kaubad -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} vastu Bill {1} dateeritud {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} vastu Bill {1} dateeritud {2} DocType: Maintenance Visit,Completion Status,Lõpetamine staatus DocType: Sales Invoice Item,Target Warehouse,Target Warehouse DocType: Item,Allow over delivery or receipt upto this percent,Laske üle väljasaatmisel või vastuvõtmisel upto see protsenti @@ -736,7 +737,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Valu apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Ei leia Time Slot järgmisel {0} päeva Operation {1} DocType: Production Order,Plan material for sub-assemblies,Plan materjali sõlmed apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,Bom {0} peab olema aktiivne -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,Palun valige dokumendi tüüp esimene +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Palun valige dokumendi tüüp esimene apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Mine ostukorvi apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Tühista Material Külastusi {0} enne tühistades selle Hooldus Külasta DocType: Salary Slip,Leave Encashment Amount,Jäta Inkassatsioon summa @@ -754,7 +755,7 @@ DocType: Purchase Receipt,Range,Range DocType: Supplier,Default Payable Accounts,Vaikimisi on tasulised kontod apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Töötaja {0} ei ole aktiivne või ei ole olemas DocType: Features Setup,Item Barcode,Punkt Triipkood -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Punkt variandid {0} uuendatud +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Punkt variandid {0} uuendatud DocType: Quality Inspection Reading,Reading 6,Lugemine 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Ostuarve Advance DocType: Address,Shop,Kauplus @@ -777,7 +778,7 @@ DocType: Salary Slip,Total in words,Kokku sõnades DocType: Material Request Item,Lead Time Date,Ooteaeg kuupäev apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,on kohustuslik. Ehk Valuutavahetus rekord ei ole loodud apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Row # {0}: Palun täpsustage Serial No Punkt {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Sest "Toote Bundle esemed, Warehouse, Serial No ja partii ei loetakse alates" Pakkeleht "tabelis. Kui Lao- ja partii ei on sama kõigi asjade pakkimist tahes "Toote Bundle" kirje, need väärtused võivad olla kantud põhi tabeli väärtused kopeeritakse "Pakkeleht" tabelis." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Sest "Toote Bundle esemed, Warehouse, Serial No ja partii ei loetakse alates" Pakkeleht "tabelis. Kui Lao- ja partii ei on sama kõigi asjade pakkimist tahes "Toote Bundle" kirje, need väärtused võivad olla kantud põhi tabeli väärtused kopeeritakse "Pakkeleht" tabelis." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Saadetised klientidele. DocType: Purchase Invoice Item,Purchase Order Item,Ostu Telli toode apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Kaudne tulu @@ -798,6 +799,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Vali Palga aasta ja kuu apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Mine sobiv grupp (tavaliselt vahendite taotlemise> Käibevara> Pangakontod ja luua uue konto (klikkides Lisa Child) tüüpi "Bank" DocType: Workstation,Electricity Cost,Elektri hind DocType: HR Settings,Don't send Employee Birthday Reminders,Ärge saatke Töötaja Sünnipäev meeldetuletused +,Employee Holiday Attendance,Töötaja Holiday osavõtt DocType: Opportunity,Walk In,Sisse astuma apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Stock kanded DocType: Item,Inspection Criteria,Inspekteerimiskriteeriumitele @@ -820,7 +822,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,S DocType: Journal Entry Account,Expense Claim,Kuluhüvitussüsteeme apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Kogus eest {0} DocType: Leave Application,Leave Application,Jäta ostusoov -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Jäta jaotamine Tool +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Jäta jaotamine Tool DocType: Leave Block List,Leave Block List Dates,Jäta Block loetelu kuupäevad DocType: Company,If Monthly Budget Exceeded (for expense account),Kui Kuu eelarve ületatud (eest kulu konto) DocType: Workstation,Net Hour Rate,Net Hour Rate @@ -830,7 +832,7 @@ DocType: Packing Slip Item,Packing Slip Item,Pakkesedel toode DocType: POS Profile,Cash/Bank Account,Raha / Bank Account apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Eemaldatud esemed ei muutu kogus või väärtus. DocType: Delivery Note,Delivery To,Toimetaja -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Oskus tabelis on kohustuslik +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Oskus tabelis on kohustuslik DocType: Production Planning Tool,Get Sales Orders,Võta müügitellimuste apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} ei tohi olla negatiivne apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Soodus @@ -894,7 +896,7 @@ DocType: SMS Center,Total Characters,Kokku Lõbu apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},Palun valige Bom Bom valdkonnas Punkt {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-Form Arve Detail DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Makse leppimise Arve -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Panus% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Panus% DocType: Item,website page link,veebisait lehe link DocType: Company,Company registration numbers for your reference. Tax numbers etc.,Ettevõte registreerimisnumbrid oma viide. Maksu- numbrid jms DocType: Sales Partner,Distributor,Edasimüüja @@ -936,10 +938,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM Conversion Factor DocType: Stock Settings,Default Item Group,Vaikimisi Punkt Group apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Tarnija andmebaasis. DocType: Account,Balance Sheet,Eelarve -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Kulude Keskus eseme Kood " +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Kulude Keskus eseme Kood " DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,Teie müügi isik saab meeldetuletus sellest kuupäevast ühendust kliendi apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Lisaks kontod saab rühma all, kuid kanded saab teha peale mitte-Groups" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Maksu- ja teiste palk mahaarvamisi. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Maksu- ja teiste palk mahaarvamisi. DocType: Lead,Lead,Lead DocType: Email Digest,Payables,Võlad DocType: Account,Warehouse,Ladu @@ -956,10 +958,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Unreconciled Makse DocType: Global Defaults,Current Fiscal Year,Jooksva eelarveaasta DocType: Global Defaults,Disable Rounded Total,Keela Ümardatud kokku DocType: Lead,Call,Üleskutse -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,"Kanded" ei saa olla tühi +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,"Kanded" ei saa olla tühi apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Duplicate rida {0} on sama {1} ,Trial Balance,Proovibilanss -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Seadistamine Töötajad +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Seadistamine Töötajad apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid """,Grid " apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,Palun valige eesliide esimene apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Teadustöö @@ -968,7 +970,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,kasutaja ID apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Vaata Ledger apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Esimesed -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Elemendi Group olemas sama nimega, siis muuda objekti nimi või ümber nimetada elemendi grupp" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Elemendi Group olemas sama nimega, siis muuda objekti nimi või ümber nimetada elemendi grupp" DocType: Production Order,Manufacture against Sales Order,Tootmine vastu Sales Order apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Ülejäänud maailm apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,Artiklite {0} ei ole partii @@ -993,7 +995,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Tagasilükatud Warehouse DocType: GL Entry,Against Voucher,Vastu Voucher DocType: Item,Default Buying Cost Center,Vaikimisi ostmine Cost Center apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Et saada kõige paremini välja ERPNext, soovitame võtta aega ja vaadata neid abivideoid." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Punkt {0} peab olema Sales toode +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Punkt {0} peab olema Sales toode apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,kuni DocType: Item,Lead Time in days,Ooteaeg päevades ,Accounts Payable Summary,Tasumata arved kokkuvõte @@ -1019,7 +1021,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Põllumajandus apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Oma tooteid või teenuseid DocType: Mode of Payment,Mode of Payment,Makseviis -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Koduleht Pilt peaks olema avalik faili või veebilehe URL +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Koduleht Pilt peaks olema avalik faili või veebilehe URL apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,See on ülemelemendile rühma ja seda ei saa muuta. DocType: Journal Entry Account,Purchase Order,Ostutellimuse DocType: Warehouse,Warehouse Contact Info,Ladu Kontakt @@ -1030,7 +1032,7 @@ DocType: Serial No,Serial No Details,Serial No Üksikasjad DocType: Purchase Invoice Item,Item Tax Rate,Punkt Maksumäär apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","Sest {0}, ainult krediitkaardi kontod võivad olla seotud teise vastu deebetkanne" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Toimetaja märkus {0} ei ole esitatud -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Punkt {0} peab olema allhanked toode +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Punkt {0} peab olema allhanked toode apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Capital seadmed apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Hinnakujundus Reegel on esimene valitud põhineb "Rakenda On väljale, mis võib olla Punkt punkt Group või kaubamärgile." DocType: Hub Settings,Seller Website,Müüja Koduleht @@ -1039,7 +1041,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Eesmärk DocType: Sales Invoice Item,Edit Description,Edit kirjeldus apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Oodatud Toimetaja kuupäev on väiksem kui kavandatav alguskuupäev. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,Tarnija +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,Tarnija DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Setting Konto tüüp aitab valides selle konto tehingud. DocType: Purchase Invoice,Grand Total (Company Currency),Grand Total (firma Valuuta) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Kokku Väljuv @@ -1091,7 +1093,6 @@ DocType: Authorization Rule,Average Discount,Keskmine Soodus DocType: Address,Utilities,Kommunaalteenused DocType: Purchase Invoice Item,Accounting,Raamatupidamine DocType: Features Setup,Features Setup,Omadused Setup -DocType: Item,Is Service Item,Kas Service toode apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Taotlemise tähtaeg ei tohi olla väljaspool puhkuse eraldamise ajavahemikul DocType: Activity Cost,Projects,Projektid apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,Palun valige Fiscal Year @@ -1112,7 +1113,7 @@ DocType: Item,Maintain Stock,Säilitada Stock apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Stock kanded juba loodud Production Telli apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Net Change põhivarade DocType: Leave Control Panel,Leave blank if considered for all designations,"Jäta tühjaks, kui arvestada kõiki nimetusi" -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Laadige tüüp "Tegelik" in real {0} ei saa lisada Punkt Rate +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Laadige tüüp "Tegelik" in real {0} ei saa lisada Punkt Rate apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Siit Date DocType: Email Digest,For Company,Sest Company @@ -1121,8 +1122,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Kohaletoimetamine Aadress Nimi apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Kontoplaan DocType: Material Request,Terms and Conditions Content,Tingimused sisu -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,ei saa olla üle 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Punkt {0} ei ole laos toode +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,ei saa olla üle 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Punkt {0} ei ole laos toode DocType: Maintenance Visit,Unscheduled,Plaaniväline DocType: Employee,Owned,Omanik DocType: Salary Slip Deduction,Depends on Leave Without Pay,Oleneb palgata puhkust @@ -1143,7 +1144,7 @@ Used for Taxes and Charges",Maksu- detail tabelis tõmmatud kirje kapten string apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Töötaja ei saa aru ise. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Kui konto on külmutatud, kanded on lubatud piiratud kasutajatele." DocType: Email Digest,Bank Balance,Bank Balance -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Raamatupidamine kirjet {0} {1} saab teha ainult valuuta: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Raamatupidamine kirjet {0} {1} saab teha ainult valuuta: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,No aktiivne Palgastruktuur leitud töötaja {0} ja kuu DocType: Job Opening,"Job profile, qualifications required etc.","Ametijuhendite, nõutav kvalifikatsioon jms" DocType: Journal Entry Account,Account Balance,Kontojääk @@ -1160,7 +1161,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Sub Assemblie DocType: Shipping Rule Condition,To Value,Hindama DocType: Supplier,Stock Manager,Stock Manager apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Allikas lattu on kohustuslik rida {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Pakkesedel +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Pakkesedel apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Office rent apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Setup SMS gateway seaded apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Import ebaõnnestus! @@ -1204,7 +1205,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,Bom Detail Ei DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Täiendav Allahindluse summa (firma Valuuta) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Viga: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,Palun uusi konto kontoplaani. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Hooldus Külasta +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Hooldus Külasta apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Klient> Kliendi Group> Territory DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Saadaval Partii Kogus lattu DocType: Time Log Batch Detail,Time Log Batch Detail,Aeg Logi Partii Detail @@ -1213,7 +1214,7 @@ DocType: Leave Block List,Block Holidays on important days.,Block pühadel oluli ,Accounts Receivable Summary,Arved kokkuvõte apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,Palun määra Kasutaja ID väli töötaja rekord seada töötaja roll DocType: UOM,UOM Name,UOM nimi -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Panus summa +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Panus summa DocType: Sales Invoice,Shipping Address,Kohaletoimetamise aadress DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,See tööriist aitab teil värskendada või määrata koguse ja väärtuse hindamine varude süsteemi. See on tavaliselt kasutatakse sünkroonida süsteemi väärtused ja mida tegelikult olemas oma laod. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,"Sõnades on nähtav, kui salvestate saateleht." @@ -1254,7 +1255,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Kui soovite jälgida objekte kasutades vöötkoodi. Sul on võimalik siseneda punkte saateleht ja müügiarve skaneerimine vöötkoodi punkti. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Saada uuesti Makse Email DocType: Dependent Task,Dependent Task,Sõltub Task -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Muundustegurit Vaikemõõtühik peab olema 1 rida {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Muundustegurit Vaikemõõtühik peab olema 1 rida {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Jäta tüüpi {0} ei saa olla pikem kui {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Proovige plaanis operatsioonide X päeva ette. DocType: HR Settings,Stop Birthday Reminders,Stopp Sünnipäev meeldetuletused @@ -1264,7 +1265,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Vaata apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Net muutus Cash DocType: Salary Structure Deduction,Salary Structure Deduction,Palgastruktuur mahaarvamine -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Mõõtühik {0} on kantud rohkem kui üks kord Conversion Factor tabel +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Mõõtühik {0} on kantud rohkem kui üks kord Conversion Factor tabel apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Maksenõudekäsule juba olemas {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Kulud Väljastatud Esemed apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Kogus ei tohi olla rohkem kui {0} @@ -1293,7 +1294,7 @@ DocType: BOM Item,BOM Item,Bom toode DocType: Appraisal,For Employee,Töötajate apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Row {0}: Advance vastu Tarnija tuleb debiteerida DocType: Company,Default Values,Vaikeväärtused -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Row {0}: Makse summa ei saa olla negatiivne +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Row {0}: Makse summa ei saa olla negatiivne DocType: Expense Claim,Total Amount Reimbursed,Hüvitatud kogusummast apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Vastu Tarnija Arve {0} dateeritud {1} DocType: Customer,Default Price List,Vaikimisi hinnakiri @@ -1321,8 +1322,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Gar DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Vahetage konkreetse BOM kõigil muudel BOMs kus seda kasutatakse. See asendab vana Bom link, uuendada kulu ja taastamisele "Bom Explosion Punkt" tabelis ühe uue Bom" DocType: Shopping Cart Settings,Enable Shopping Cart,Luba Ostukorv DocType: Employee,Permanent Address,püsiaadress -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Punkt {0} peab olema Service Punkt. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}","Ettemaks, vastase {0} {1} ei saa olla suurem \ kui Grand Total {2}" apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Palun valige objekti kood DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Vähendada mahaarvamine eest palgata puhkust (LWP) @@ -1378,12 +1378,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Main apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Variant DocType: Naming Series,Set prefix for numbering series on your transactions,Määra eesliide numeratsiooni seeria oma tehingute +DocType: Employee Attendance Tool,Employees HTML,Töötajad HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Tasuda tellimust ei ole võimalik tühistada. Ummistust tühistada. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Vaikimisi Bom ({0}) peab olema aktiivne selle objekt või selle malli +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Vaikimisi Bom ({0}) peab olema aktiivne selle objekt või selle malli DocType: Employee,Leave Encashed?,Jäta realiseeritakse? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Opportunity From väli on kohustuslik DocType: Item,Variants,Variante -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Tee Ostutellimuse +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Tee Ostutellimuse DocType: SMS Center,Send To,Saada apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Ei ole piisavalt puhkust tasakaalu Jäta tüüp {0} DocType: Payment Reconciliation Payment,Allocated amount,Eraldatud summa @@ -1483,7 +1484,7 @@ DocType: Sales Person,Name and Employee ID,Nimi ja Töötaja ID apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,Tähtaeg ei tohi olla enne postitamist kuupäev DocType: Website Item Group,Website Item Group,Koduleht Punkt Group apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Lõivud ja maksud -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,Palun sisestage Viitekuupäev +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,Palun sisestage Viitekuupäev apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Payment Gateway konto ei ole seadistatud apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} makse kanded ei saa filtreeritud {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,"Tabel toode, mis kuvatakse Web Site" @@ -1504,7 +1505,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Resolutsioon Üksikasjad DocType: Quality Inspection Reading,Acceptance Criteria,Vastuvõetavuse kriteeriumid DocType: Item Attribute,Attribute Name,Atribuudi nimi -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Punkt {0} peab olema Müük või Service toode on {1} DocType: Item Group,Show In Website,Show Website apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Group DocType: Task,Expected Time (in hours),Oodatud aeg (tundides) @@ -1536,7 +1536,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Kohaletoimetamine summa ,Pending Amount,Kuni Summa DocType: Purchase Invoice Item,Conversion Factor,Tulemus Factor DocType: Purchase Order,Delivered,Tarnitakse -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Setup sissetuleva serveri töö e-posti id. (nt jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Setup sissetuleva serveri töö e-posti id. (nt jobs@example.com) DocType: Purchase Receipt,Vehicle Number,Sõidukite arv DocType: Purchase Invoice,The date on which recurring invoice will be stop,"Kuupäev, mil korduv arve lõpetada" apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Kokku eraldatakse lehed {0} ei saa olla väiksem kui juba heaks lehed {1} perioodiks @@ -1553,7 +1553,7 @@ DocType: HR Settings,HR Settings,HR Seaded apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Kuluhüvitussüsteeme kinnituse ootel. Ainult Kulu Approver saab uuendada staatus. DocType: Purchase Invoice,Additional Discount Amount,Täiendav Allahindluse summa DocType: Leave Block List Allow,Leave Block List Allow,Jäta Block loetelu Laske -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Lühend ei saa olla tühi või ruumi +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Lühend ei saa olla tühi või ruumi apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Grupi Non-Group apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Spordi- apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Kokku Tegelik @@ -1577,7 +1577,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},UOM Ümberarvutustegur on vaja järjest {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Kliirens kuupäev ei saa olla enne saabumist kuupäev järjest {0} DocType: Salary Slip,Deduction,Kinnipeetav -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Toode Hind lisatud {0} Hinnakirjas {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Toode Hind lisatud {0} Hinnakirjas {1} DocType: Address Template,Address Template,Aadress Mall apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,Palun sisestage Töötaja Id selle müügi isik DocType: Territory,Classification of Customers by region,Klientide liigitamine piirkonniti @@ -1594,7 +1594,7 @@ DocType: Employee,Date of Birth,Sünniaeg apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Punkt {0} on juba tagasi DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** Fiscal Year ** esindab majandusaastal. Kõik raamatupidamiskanded ja teiste suuremate tehingute jälgitakse vastu ** Fiscal Year **. DocType: Opportunity,Customer / Lead Address,Klienditeenindus / Plii Aadress -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Hoiatus: Vigane SSL sertifikaat kinnitus {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Hoiatus: Vigane SSL sertifikaat kinnitus {0} DocType: Production Order Operation,Actual Operation Time,Tegelik tööaeg DocType: Authorization Rule,Applicable To (User),Suhtes kohaldatava (Kasutaja) DocType: Purchase Taxes and Charges,Deduct,Maha arvama @@ -1611,7 +1611,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Split saateleht pakendites. apps/erpnext/erpnext/hooks.py +69,Shipments,Saadetised DocType: Purchase Order Item,To be delivered to customer,Et toimetatakse kliendile -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Aeg Logi staatus tuleb esitada. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Aeg Logi staatus tuleb esitada. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,Serial No {0} ei kuulu ühtegi Warehouse apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Row # DocType: Purchase Invoice,In Words (Company Currency),Sõnades (firma Valuuta) @@ -1628,7 +1628,7 @@ DocType: Leave Application,Total Leave Days,Kokku puhkusepäevade DocType: Email Digest,Note: Email will not be sent to disabled users,Märkus: Email ei saadeta puuetega inimestele apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Valige ettevõtte ... DocType: Leave Control Panel,Leave blank if considered for all departments,"Jäta tühjaks, kui arvestada kõik osakonnad" -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Tüübid tööhõive (püsiv, leping, intern jne)." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Tüübid tööhõive (püsiv, leping, intern jne)." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} on kohustuslik Punkt {1} DocType: Currency Exchange,From Currency,Siit Valuuta apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Palun valige eraldatud summa, arve liik ja arve number atleast üks rida" @@ -1647,7 +1647,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,Teoksil olev DocType: Authorization Rule,Itemwise Discount,Itemwise Soodus DocType: Purchase Order Item,Reference Document Type,Viide Dokumendi liik -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} vastu Sales Order {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} vastu Sales Order {1} DocType: Account,Fixed Asset,Põhivarade apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,SERIALIZED Inventory DocType: Activity Type,Default Billing Rate,Vaikimisi Arved Rate @@ -1657,7 +1657,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Sales Order maksmine DocType: Expense Claim Detail,Expense Claim Detail,Kuluhüvitussüsteeme Detail apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Aeg Logid loodud: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,Palun valige õige konto +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,Palun valige õige konto DocType: Item,Weight UOM,Kaal UOM DocType: Employee,Blood Group,Veregrupp DocType: Purchase Invoice Item,Page Break,Page Break @@ -1692,7 +1692,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},Bom recursion: {0} ei saa olla vanem või laps {2} DocType: Production Order Operation,Completed Qty,Valminud Kogus apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","Sest {0}, ainult deebetkontode võib olla seotud teise vastu kreeditlausend" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Hinnakiri {0} on keelatud +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Hinnakiri {0} on keelatud DocType: Manufacturing Settings,Allow Overtime,Laske Ületunnitöö apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} seerianumbrid vajalik Eseme {1}. Sa andsid {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Praegune Hindamine Rate @@ -1743,7 +1743,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},No P apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Juhtum nr saa olla 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,Kui teil on meeskond ja müük Partners (Kanal Partnerid) neid saab kodeeritud ja säilitada oma panuse müügitegevus DocType: Item,Show a slideshow at the top of the page,Näita slaidiseansi ülaosas lehele -DocType: Item,"Allow in Sales Order of type ""Service""",Luba Sales Order of type "Service" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Kauplused DocType: Time Log,Projects Manager,Projektijuhina DocType: Serial No,Delivery Time,Tarne aeg @@ -1758,6 +1757,7 @@ DocType: Rename Tool,Rename Tool,Nimeta Tool apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Värskenda Cost DocType: Item Reorder,Item Reorder,Punkt Reorder apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Transfer Materjal +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Punkt {0} peab olema Sales toode on {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.",Määrake tegevuse töökulud ja annab ainulaadse operatsiooni ei oma tegevuse. DocType: Purchase Invoice,Price List Currency,Hinnakiri Valuuta DocType: Naming Series,User must always select,Kasutaja peab alati valida @@ -1778,7 +1778,7 @@ DocType: Appraisal,Employee,Töötaja apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Import e-posti apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Kutsu Kasutaja DocType: Features Setup,After Sale Installations,Pärast Müük seadmed -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} on täielikult arve +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} on täielikult arve DocType: Workstation Working Hour,End Time,End Time apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Lepingu tüüptingimused Müük või ost. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Grupi poolt Voucher @@ -1804,7 +1804,7 @@ DocType: Upload Attendance,Attendance To Date,Osalemine kuupäev apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Setup sissetuleva serveri müügi e-posti id. (nt sales@example.com) DocType: Warranty Claim,Raised By,Tõstatatud DocType: Payment Gateway Account,Payment Account,Maksekonto -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,Palun täpsustage Company edasi +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,Palun täpsustage Company edasi apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Net muutus Arved apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Tasandusintress Off DocType: Quality Inspection Reading,Accepted,Lubatud @@ -1816,14 +1816,14 @@ DocType: Shipping Rule,Shipping Rule Label,Kohaletoimetamine Reegel Label apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Tooraine ei saa olla tühi. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Ei uuendada laos, arve sisaldab tilk laevandus objekt." DocType: Newsletter,Test,Test -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Nagu on olemasolevate varude tehingute selle objekt, \ sa ei saa muuta väärtused "Kas Serial No", "Kas Partii ei", "Kas Stock toode" ja "hindamismeetod"" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Quick päevikusissekanne apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,Sa ei saa muuta kiirust kui Bom mainitud agianst tahes kirje DocType: Employee,Previous Work Experience,Eelnev töökogemus DocType: Stock Entry,For Quantity,Sest Kogus apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},Palun sisestage Planeeritud Kogus jaoks Punkt {0} real {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} ei ole esitatud +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} ei ole esitatud apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Taotlused esemeid. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Eraldi tootmise Selleks luuakse iga valmistoote hea objekt. DocType: Purchase Invoice,Terms and Conditions1,Tingimused ja tingimuste kohta1 @@ -1848,6 +1848,7 @@ DocType: Notification Control,Expense Claim Approved Message,Kuluhüvitussüstee DocType: Email Digest,How frequently?,Kui sageli? DocType: Purchase Receipt,Get Current Stock,Võta Laoseis apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Tree of Bill of Materials +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Mark olevik apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Hooldus alguskuupäev ei saa olla enne tarnekuupäev Serial No {0} DocType: Production Order,Actual End Date,Tegelik End Date DocType: Authorization Rule,Applicable To (Role),Suhtes kohaldatava (Role) @@ -1862,7 +1863,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Leping End Date peab olema suurem kui Liitumis DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,"Kolmas isik levitaja / edasimüüja / vahendaja / partner / edasimüüja, kes müüb ettevõtted tooted vahendustasu." DocType: Customer Group,Has Child Node,Kas Järglassõlme -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} vastu Ostutellimuse {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} vastu Ostutellimuse {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Sisesta staatiline url parameetrid (n. Saatjale = ERPNext, kasutajanimi = ERPNext parooliga 1234 jne)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} mitte mingil aktiivne eelarveaastal. Täpsemat vaadake {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,See on näide veebisaidi automaatselt genereeritud alates ERPNext @@ -1890,7 +1891,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Add or Deduct: Whether you want to add or deduct the tax.","Standard maksu mall, mida saab rakendada kõigi ostutehingute. See mall võib sisaldada nimekirja maksu juhid ja ka teiste kulul juhid nagu "Shipping", "Kindlustus", "Handling" jt #### Märkus maksumäär Siin määratud olla hariliku maksumäära kõigile ** Kirjed * *. Kui on ** Kirjed **, mis on erineva kiirusega, tuleb need lisada ka ** Oksjoni Maksu- ** tabeli ** Oksjoni ** kapten. #### Kirjeldus veerud arvutamine 1. tüüpi: - See võib olla ** Net Kokku ** (mis on summa põhisummast). - ** On eelmise rea kokku / Summa ** (kumulatiivse maksud või maksed). Kui valite selle funktsiooni, maksu rakendatakse protsentides eelmise rea (maksu tabel) summa või kokku. - ** Tegelik ** (nagu mainitud). 2. Konto Head: Konto pearaamatu, mille alusel see maks broneeritud 3. Kulude Center: Kui maks / lõiv on sissetulek (nagu laevandus) või kulutustega tuleb kirjendada Cost Center. 4. Kirjeldus: Kirjeldus maksu (mis trükitakse arved / jutumärkideta). 5. Hinda: Maksumäär. 6. Summa: Maksu- summa. 7. Kokku: Kumulatiivne kokku selles küsimuses. 8. Sisestage Row: Kui põhineb "Eelmine Row Kokku" saate valida rea number, mida võtta aluseks selle arvutamine (default on eelmise rea). 9. Mõtle maksu, et: Selles sektsioonis saab määrata, kui maks / lõiv on ainult hindamise (ei kuulu kokku) või ainult kokku (ei lisa väärtust kirje) või nii. 10. Lisa või Lahutada: Kas soovite lisada või maksu maha arvata." DocType: Purchase Receipt Item,Recd Quantity,KONTOLE Kogus apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Ei suuda toota rohkem Punkt {0} kui Sales Order koguse {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Stock Entry {0} ei ole esitatud +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Stock Entry {0} ei ole esitatud DocType: Payment Reconciliation,Bank / Cash Account,Bank / Cash konto DocType: Tax Rule,Billing City,Arved City DocType: Global Defaults,Hide Currency Symbol,Peida Valuuta Sümbol @@ -1916,7 +1917,7 @@ DocType: Salary Structure,Total Earning,Kokku teenimine DocType: Purchase Receipt,Time at which materials were received,"Aeg, mil materjale ei laekunud" apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Minu aadressid DocType: Stock Ledger Entry,Outgoing Rate,Väljuv Rate -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Organisatsiooni haru meister. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Organisatsiooni haru meister. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,või DocType: Sales Order,Billing Status,Arved staatus apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Utility kulud @@ -1954,7 +1955,7 @@ DocType: Bin,Reserved Quantity,Reserveeritud Kogus DocType: Landed Cost Voucher,Purchase Receipt Items,Ostutšekk Esemed apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Kohandamine vormid DocType: Account,Income Account,Tulukonto -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Tarne +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Tarne DocType: Stock Reconciliation Item,Current Qty,Praegune Kogus DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",Vt "määr materjalide põhjal" on kuluarvestus jaos DocType: Appraisal Goal,Key Responsibility Area,Key Vastutus Area @@ -1966,8 +1967,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,Vou DocType: Notification Control,Purchase Order Message,Ostutellimuse Message DocType: Tax Rule,Shipping Country,Kohaletoimetamine Riik DocType: Upload Attendance,Upload HTML,Laadi HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})",Kokku eelnevalt ({0}) vastu Order {1} ei saa olla suurem \ kui Grand Total ({2}) DocType: Employee,Relieving Date,Leevendab kuupäev apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Hinnakujundus Reegel on tehtud üle kirjutada Hinnakiri / defineerida allahindlus protsent, mis põhineb mõned kriteeriumid." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Ladu saab muuta ainult läbi Stock Entry / saateleht / ostutšekk @@ -1977,8 +1976,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Tulum apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Kui valitud Hinnakujundus Reegel on tehtud "Hind", siis kirjutatakse hinnakiri. Hinnakujundus Reegel hind on lõpphind, et enam allahindlust tuleks kohaldada. Seega tehingutes nagu Sales Order, Ostutellimuse jne, siis on see tõmmatud "Rate" valdkonnas, mitte "Hinnakirja Rate väljale." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Rada viib Tööstuse tüüp. DocType: Item Supplier,Item Supplier,Punkt Tarnija -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,Palun sisestage Kood saada partii ei -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},Palun valige väärtust {0} quotation_to {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,Palun sisestage Kood saada partii ei +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},Palun valige väärtust {0} quotation_to {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Kõik aadressid. DocType: Company,Stock Settings,Stock Seaded apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Ühendamine on võimalik ainult siis, kui järgmised omadused on samad nii arvestust. Kas nimel, Root tüüp, Firmade" @@ -2001,7 +2000,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Tšekk arv DocType: Payment Tool Detail,Payment Tool Detail,Makse Tool Detail ,Sales Browser,Müük Browser DocType: Journal Entry,Total Credit,Kokku Credit -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Hoiatus: Teine {0} # {1} on olemas vastu laos kirje {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Hoiatus: Teine {0} # {1} on olemas vastu laos kirje {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Kohalik apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Laenud ja ettemaksed (vara) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Võlgnikud @@ -2021,8 +2020,8 @@ DocType: Price List,Price List Master,Hinnakiri Master DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,Kõik müügitehingud saab kodeeritud vastu mitu ** Sales Isikud ** nii et saate määrata ja jälgida eesmärgid. ,S.O. No.,SO No. DocType: Production Order Operation,Make Time Log,Tee Time Logi -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Palun määra reorganiseerima kogusest -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},Palun luua Klienti Lead {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Palun määra reorganiseerima kogusest +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},Palun luua Klienti Lead {0} DocType: Price List,Applicable for Countries,Rakendatav Riigid apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Arvutid apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,See on just klientide rühma ja seda ei saa muuta. @@ -2058,7 +2057,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Arved DocType: Payment Reconciliation Invoice,Outstanding Amount,Tasumata summa DocType: Project Task,Working,Töö DocType: Stock Ledger Entry,Stock Queue (FIFO),Stock Queue (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Palun valige aeg kajakad. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Palun valige aeg kajakad. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} ei kuulu Company {1} DocType: Account,Round Off,Ümardama ,Requested Qty,Taotletud Kogus @@ -2096,7 +2095,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Võta Vastavad kanded apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Raamatupidamine kirjet Stock DocType: Sales Invoice,Sales Team1,Müük Team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Punkt {0} ei ole olemas +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Punkt {0} ei ole olemas DocType: Sales Invoice,Customer Address,Kliendi aadress DocType: Payment Request,Recipient and Message,Saaja ja Message DocType: Purchase Invoice,Apply Additional Discount On,Rakendada täiendavaid soodustust @@ -2115,7 +2114,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Mute Email apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Toit, jook ja tubakas" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL või BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Kas ainult tasuda vastu unbilled {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Kas ainult tasuda vastu unbilled {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Komisjoni määr ei või olla suurem kui 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Minimaalne Inventory Tase DocType: Stock Entry,Subcontract,Alltöövõtuleping @@ -2133,9 +2132,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Tarkvara apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Värv DocType: Maintenance Visit,Scheduled,Plaanitud apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Palun valige Punkt, kus "Kas Stock Punkt" on "Ei" ja "Kas Sales Punkt" on "jah" ja ei ole muud Toote Bundle" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Kokku eelnevalt ({0}) vastu Order {1} ei saa olla suurem kui Grand Kokku ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Vali Kuu jaotamine ebaühtlaselt jaotada eesmärkide üle kuu. DocType: Purchase Invoice Item,Valuation Rate,Hindamine Rate -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Hinnakiri Valuuta ole valitud +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Hinnakiri Valuuta ole valitud apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,Punkt Row {0}: ostutšekk {1} ei eksisteeri üle "Ostutšekid" tabelis apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Töötaja {0} on juba taotlenud {1} vahel {2} ja {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Projekti alguskuupäev @@ -2147,6 +2147,7 @@ DocType: Quality Inspection,Inspection Type,Ülevaatus Type apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},Palun valige {0} DocType: C-Form,C-Form No,C-vorm pole DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,Märkimata osavõtt apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Teadur apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,Palun salvesta Uudiskiri enne saatmist apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Nimi või e on kohustuslik @@ -2172,7 +2173,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Kinnita DocType: Payment Gateway,Gateway,Gateway apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Tarnija> Tarnija Type apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Palun sisestage leevendab kuupäeva. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,Ainult Jäta rakendusi staatuse "Kinnitatud" saab esitada apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Aadress Pealkiri on kohustuslik. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,Sisesta nimi kampaania kui allikas uurimine on kampaania @@ -2187,10 +2188,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Aktsepteeritud Warehouse DocType: Bank Reconciliation Detail,Posting Date,Postitamise kuupäev DocType: Item,Valuation Method,Hindamismeetod apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Ei leia vahetuskursi {0} kuni {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Mark Pool päeva DocType: Sales Invoice,Sales Team,Sales Team apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Duplicate kirje DocType: Serial No,Under Warranty,Garantii alla -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Error] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Error] DocType: Sales Order,In Words will be visible once you save the Sales Order.,"Sõnades on nähtav, kui salvestate Sales Order." ,Employee Birthday,Töötaja Sünnipäev apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Venture Capital @@ -2213,6 +2215,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,Cost Center olemasolevate tehingut ei saa ümber rühm DocType: Account,Depreciation,Amortisatsioon apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Pakkuja (s) +DocType: Employee Attendance Tool,Employee Attendance Tool,Töötaja osalemise Tool DocType: Supplier,Credit Limit,Krediidilimiit apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Vali tehingu liik DocType: GL Entry,Voucher No,Voucher ei @@ -2239,7 +2242,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Root konto ei saa kustutada ,Is Primary Address,Kas esmane aadress DocType: Production Order,Work-in-Progress Warehouse,Lõpetamata Progress Warehouse -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Viide # {0} dateeritud {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Viide # {0} dateeritud {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Manage aadressid DocType: Pricing Rule,Item Code,Asja kood DocType: Production Planning Tool,Create Production Orders,Loo Tootmistellimused @@ -2266,7 +2269,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Bank leppimise apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Saada värskendusi apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Materjal taotlus {0} on tühistatud või peatatud apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Lisa mõned proovi arvestust -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Jäta juhtimine +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Jäta juhtimine apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Grupi poolt konto DocType: Sales Order,Fully Delivered,Täielikult Tarnitakse DocType: Lead,Lower Income,Madalama sissetulekuga @@ -2281,6 +2284,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"From Date" tuleb pärast "To Date" ,Stock Projected Qty,Stock Kavandatav Kogus apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Kliendi {0} ei kuulu projekti {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Märkimisväärne osavõtt HTML DocType: Sales Order,Customer's Purchase Order,Kliendi ostutellimuse DocType: Warranty Claim,From Company,Allikas: Company apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Väärtus või Kogus @@ -2345,6 +2349,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Raha telegraafiülekanne apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,Palun valige Bank Account DocType: Newsletter,Create and Send Newsletters,Loo ja saatke uudiskirju +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Vaata kõiki DocType: Sales Order,Recurring Order,Korduvad Telli DocType: Company,Default Income Account,Vaikimisi tulukonto apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Kliendi Group / Klienditeenindus @@ -2376,6 +2381,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Tagasi Against ostuarv DocType: Item,Warranty Period (in days),Garantii Periood (päeva) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Rahavood äritegevusest apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,nt käibemaksu +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Mark töötaja osalemise lahtiselt apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Punkt 4 DocType: Journal Entry Account,Journal Entry Account,Päevikusissekanne konto DocType: Shopping Cart Settings,Quotation Series,Tsitaat Series @@ -2520,14 +2526,14 @@ DocType: Task,Actual Start Date (via Time Logs),Tegelik Start Date (via aeg kaja DocType: Stock Reconciliation Item,Before reconciliation,Enne leppimist apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},{0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Maksude ja tasude lisatud (firma Valuuta) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Punkt Maksu- Row {0} peab olema konto tüüpi Tax või tulu või kuluna või tasuline +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Punkt Maksu- Row {0} peab olema konto tüüpi Tax või tulu või kuluna või tasuline DocType: Sales Order,Partly Billed,Osaliselt Maksustatakse DocType: Item,Default BOM,Vaikimisi Bom apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,Palun ümber kirjutada firma nime kinnitamiseks apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Kokku Tasumata Amt DocType: Time Log Batch,Total Hours,Tunnid kokku DocType: Journal Entry,Printing Settings,Printing Settings -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Kokku Deebetkaart peab olema võrdne Kokku Credit. Erinevus on {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Kokku Deebetkaart peab olema võrdne Kokku Credit. Erinevus on {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Autod apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Siit Saateleht DocType: Time Log,From Time,Time @@ -2573,7 +2579,7 @@ DocType: Purchase Invoice Item,Image View,Pilt Vaata DocType: Issue,Opening Time,Avamine aeg apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,Ja sealt soovitud vaja apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Väärtpaberite ja kaubabörsil -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',"Vaikimisi mõõtühik Variant "{0}" peab olema sama, Mall "{1}"" +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',"Vaikimisi mõõtühik Variant "{0}" peab olema sama, Mall "{1}"" DocType: Shipping Rule,Calculate Based On,Arvuta põhineb DocType: Delivery Note Item,From Warehouse,Siit Warehouse DocType: Purchase Taxes and Charges,Valuation and Total,Hindamine ja kokku @@ -2595,7 +2601,7 @@ DocType: Leave Application,Follow via Email,Järgige e-posti teel DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Maksusumma Pärast Allahindluse summa apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Lapse konto olemas selle konto. Sa ei saa selle konto kustutada. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Kas eesmärk Kogus või Sihtsummaks on kohustuslik -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},No default Bom olemas Punkt {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},No default Bom olemas Punkt {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,Palun valige Postitamise kuupäev esimest apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Avamise kuupäev peaks olema enne sulgemist kuupäev DocType: Leave Control Panel,Carry Forward,Kanda @@ -2672,7 +2678,7 @@ DocType: Leave Type,Is Encash,Kas kasseerima DocType: Purchase Invoice,Mobile No,Mobiili number DocType: Payment Tool,Make Journal Entry,Tee päevikusissekanne DocType: Leave Allocation,New Leaves Allocated,Uus Lehed Eraldatud -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Projekti tark andmed ei ole kättesaadavad Tsitaat +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Projekti tark andmed ei ole kättesaadavad Tsitaat DocType: Project,Expected End Date,Oodatud End Date DocType: Appraisal Template,Appraisal Template Title,Hinnang Mall Pealkiri apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Kaubanduslik @@ -2720,6 +2726,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,Pa apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Palun täpsustada DocType: Offer Letter,Awaiting Response,Vastuse ootamine apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Ülal +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Aeg Logi ole Maksustatakse DocType: Salary Slip,Earning & Deduction,Teenimine ja mahaarvamine apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Konto {0} ei saa Group apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Valikuline. See seadistus filtreerida erinevate tehingute. @@ -2790,14 +2797,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,"Edukalt kustutatud kõik tehingud, mis on seotud selle firma!" apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Kuupäeva järgi apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Karistusest -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Vaikimisi Warehouse on kohustuslik laos Punkt. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Vaikimisi Warehouse on kohustuslik laos Punkt. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Palga kuu {0} ja aasta {1} DocType: Stock Settings,Auto insert Price List rate if missing,"Auto sisestada Hinnakiri määra, kui puuduvad" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Kokku Paide summa ,Transferred Qty,Kantud Kogus apps/erpnext/erpnext/config/learn.py +11,Navigating,Liikumine apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Planeerimine -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Tee Time Logi partii +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Tee Time Logi partii apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Emiteeritud DocType: Project,Total Billing Amount (via Time Logs),Arve summa (via aeg kajakad) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Müüme see toode @@ -2805,7 +2812,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Kogus peaks olema suurem kui 0 DocType: Journal Entry,Cash Entry,Raha Entry DocType: Sales Partner,Contact Desc,Võta otsimiseks -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Tüüp lehed nagu juhuslik, haige vms" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Tüüp lehed nagu juhuslik, haige vms" DocType: Email Digest,Send regular summary reports via Email.,Saada regulaarselt koondaruanded e-posti teel. DocType: Brand,Item Manager,Punkt Manager DocType: Cost Center,Add rows to set annual budgets on Accounts.,Lisa ridu seada iga-aastaste eelarvete kontodel. @@ -2820,7 +2827,7 @@ DocType: GL Entry,Party Type,Partei Type apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Tooraine ei saa olla sama peamine toode DocType: Item Attribute Value,Abbreviation,Lühend apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Ei authroized kuna {0} ületab piirid -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Palk malli kapten. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Palk malli kapten. DocType: Leave Type,Max Days Leave Allowed,Max päeval minnakse lubatud apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Määra maksueeskiri ostukorv DocType: Payment Tool,Set Matching Amounts,Määra Matching summad @@ -2833,7 +2840,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Hinnapa DocType: Stock Settings,Role Allowed to edit frozen stock,Role Lubatud muuta külmutatud laos ,Territory Target Variance Item Group-Wise,Territoorium Target Dispersioon Punkt Group-Wise apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Kõik kliendigruppide -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} on kohustuslik. Ehk Valuutavahetus rekord ei ole loodud {1} on {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} on kohustuslik. Ehk Valuutavahetus rekord ei ole loodud {1} on {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Maksu- vorm on kohustuslik. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Konto {0}: Parent konto {1} ei ole olemas DocType: Purchase Invoice Item,Price List Rate (Company Currency),Hinnakiri Rate (firma Valuuta) @@ -2853,8 +2860,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Punkt Wise Maksu- Detai ,Item-wise Price List Rate,Punkt tark Hinnakiri Rate apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Tarnija Tsitaat DocType: Quotation,In Words will be visible once you save the Quotation.,"Sõnades on nähtav, kui salvestate pakkumise." -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} on peatunud -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Lugu {0} on juba kasutatud Punkt {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} on peatunud +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Lugu {0} on juba kasutatud Punkt {1} DocType: Lead,Add to calendar on this date,Lisa kalendrisse selle kuupäeva apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Reeglid lisamiseks postikulud. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Sündmused @@ -2880,8 +2887,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,St apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Atleast üks ladu on kohustuslik DocType: Serial No,Out of Warranty,Out of Garantii DocType: BOM Replace Tool,Replace,Vahetage -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} vastu müügiarve {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Palun sisestage Vaikemõõtühik +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} vastu müügiarve {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Palun sisestage Vaikemõõtühik DocType: Purchase Invoice Item,Project Name,Projekti nimi DocType: Supplier,Mention if non-standard receivable account,Nimetatakse mittestandardsete saadaoleva konto DocType: Journal Entry Account,If Income or Expense,Kui tulu või kuluna @@ -2906,7 +2913,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Fiscal Year: {0} ei ole olemas DocType: Currency Exchange,To Currency,Et Valuuta DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Laske järgmised kasutajad kinnitada Jäta taotlused blokeerida päeva. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Tüübid kulude langus. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Tüübid kulude langus. DocType: Item,Taxes,Maksud apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Paide ja ei ole esitanud DocType: Project,Default Cost Center,Vaikimisi Cost Center @@ -2936,7 +2943,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Row # {0}: Serial No {1} ei ühti {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Casual Leave DocType: Batch,Batch ID,Partii nr -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Märkus: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Märkus: {0} ,Delivery Note Trends,Toimetaja märkus Trends apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Nädala kokkuvõte apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} peab olema ostetud või allhanked Punkt järjest {1} @@ -2976,6 +2983,7 @@ DocType: Project Task,Pending Review,Kuni Review apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,"Vajuta siia, et maksta" DocType: Task,Total Expense Claim (via Expense Claim),Kogukulude nõue (via kuluhüvitussüsteeme) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Kliendi ID +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Mark leidu apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Et aeg peab olema suurem kui Time DocType: Journal Entry Account,Exchange Rate,Vahetuskurss apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Sales Order {0} ei ole esitatud @@ -3023,7 +3031,7 @@ DocType: Item Group,Default Expense Account,Vaikimisi ärikohtumisteks DocType: Employee,Notice (days),Teade (päeva) DocType: Tax Rule,Sales Tax Template,Sales Tax Mall DocType: Employee,Encashment Date,Inkassatsioon kuupäev -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Vastu Voucher tüüp peab olema üks Ostutellimuse, ostuarve või päevikusissekanne" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Vastu Voucher tüüp peab olema üks Ostutellimuse, ostuarve või päevikusissekanne" DocType: Account,Stock Adjustment,Stock reguleerimine apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Vaikimisi Tegevus Maksumus olemas Tegevuse liik - {0} DocType: Production Order,Planned Operating Cost,Planeeritud töökulud @@ -3077,6 +3085,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Kirjutage Off Entry DocType: BOM,Rate Of Materials Based On,Hinda põhinevatest materjalidest apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Toetus Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Puhasta kõik apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Ettevõte on puudu ladudes {0} DocType: POS Profile,Terms and Conditions,Tingimused apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},"Kuupäev peaks jääma eelarveaastal. Eeldades, et Date = {0}" @@ -3098,7 +3107,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Et määrata selle Fiscal Year as Default, kliki "Set as Default"" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Setup sissetuleva serveri tuge e-posti id. (nt support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Puuduse Kogus -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Punkt variant {0} on olemas sama atribuute +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Punkt variant {0} on olemas sama atribuute DocType: Salary Slip,Salary Slip,Palgatõend apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,""Selleks, et kuupäev" on vajalik" DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Loo pakkimine libiseb paketid saadetakse. Kasutatud teatama paketi number, pakendi sisu ning selle kaalu." @@ -3146,7 +3155,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Vaata L DocType: Item Attribute Value,Attribute Value,Omadus Value apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","Email id peab olema unikaalne, juba olemas {0}" ,Itemwise Recommended Reorder Level,Itemwise Soovitatav Reorder Level -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,Palun valige {0} Esimene +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,Palun valige {0} Esimene DocType: Features Setup,To get Item Group in details table,Et saada Punkt Group üksikasjad tabelis apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Partii {0} Punkt {1} on aegunud. DocType: Sales Invoice,Commission,Vahendustasu @@ -3190,7 +3199,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Võta Tasumata vautšerid DocType: Warranty Claim,Resolved By,Lahendatud DocType: Appraisal,Start Date,Algus kuupäev -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Eraldada lehed perioodiks. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Eraldada lehed perioodiks. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Tšekid ja hoiused valesti puhastatud apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,"Vajuta siia, et kontrollida" apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Konto {0} Te ei saa määrata ise vanemakonto @@ -3210,7 +3219,7 @@ DocType: Employee,Educational Qualification,Haridustsensus DocType: Workstation,Operating Costs,Tegevuskulud DocType: Employee Leave Approver,Employee Leave Approver,Töötaja Jäta Approver apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} on edukalt lisatud meie uudiskiri nimekirja. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Row {0}: an Reorder kirje on juba olemas selle lao {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Row {0}: an Reorder kirje on juba olemas selle lao {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Ei saa kuulutada kadunud, sest Tsitaat on tehtud." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Ostu Master Manager apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Tootmine Tellimus {0} tuleb esitada @@ -3234,7 +3243,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Müügiarve {0} on juba esitatud apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Lõppkuupäev DocType: Purchase Invoice Item,Amount (Company Currency),Summa (firma Valuuta) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Organization (osakonna) kapten. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Organization (osakonna) kapten. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Palun sisestage kehtiv mobiiltelefoni nos DocType: Budget Detail,Budget Detail,Eelarve Detail apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,Palun sisesta enne saatmist @@ -3250,13 +3259,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Saanud ja heaks kiitnud ,Serial No Service Contract Expiry,Serial No Service Lepingu lõppemise DocType: Item,Unit of Measure Conversion,Mõõtühik Conversion apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Töötaja ei saa muuta -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Sa ei saa deebet- ja sama konto korraga +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Sa ei saa deebet- ja sama konto korraga DocType: Naming Series,Help HTML,Abi HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Kokku weightage määratud peaks olema 100%. On {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Ebatõenäoliselt üle- {0} ületati Punkt {1} DocType: Address,Name of person or organization that this address belongs to.,"Isiku nimi või organisatsioon, kes sellele aadressile kuulub." apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Sinu Tarnijad -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,"Ei saa määrata, kui on kaotatud Sales Order on tehtud." +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,"Ei saa määrata, kui on kaotatud Sales Order on tehtud." apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,Teine Palgastruktuur {0} on aktiivne töötaja {1}. Palun tehke oma staatuse aktiivne 'jätkata. DocType: Purchase Invoice,Contact,Kontakt apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Saadud @@ -3266,11 +3275,11 @@ DocType: Item,Has Serial No,Kas Serial No DocType: Employee,Date of Issue,Väljastamise kuupäev apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: From {0} ja {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Row # {0}: Vali Tarnija kirje {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Koduleht Pilt {0} juurde Punkt {1} ei leitud +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Koduleht Pilt {0} juurde Punkt {1} ei leitud DocType: Issue,Content Type,Sisu tüüp apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Arvuti DocType: Item,List this Item in multiple groups on the website.,Nimekiri see toode mitmes rühmade kodulehel. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,Palun kontrollige Multi Valuuta võimalust anda kontosid muus valuutas +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,Palun kontrollige Multi Valuuta võimalust anda kontosid muus valuutas apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Eseme: {0} ei eksisteeri süsteemis apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Teil ei ole seada Külmutatud väärtus DocType: Payment Reconciliation,Get Unreconciled Entries,Võta unreconciled kanded @@ -3280,14 +3289,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Mida ta teeb DocType: Delivery Note,To Warehouse,Et Warehouse apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Konto {0} on kantud rohkem kui üks kord majandusaasta {1} ,Average Commission Rate,Keskmine Komisjoni Rate -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,"Kas Serial No" ei saa olla "Jah" mitte-laoartikkel +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,"Kas Serial No" ei saa olla "Jah" mitte-laoartikkel apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Osavõtt märkida ei saa tulevikus kuupäev DocType: Pricing Rule,Pricing Rule Help,Hinnakujundus Reegel Abi DocType: Purchase Taxes and Charges,Account Head,Konto Head apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Uuenda lisakulude arvutamise maandus objektide soetusmaksumus apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Elektriline DocType: Stock Entry,Total Value Difference (Out - In),Kokku Väärtus Difference (Out - In) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Row {0}: Vahetuskurss on kohustuslik +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Row {0}: Vahetuskurss on kohustuslik apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},Kasutaja ID ei seatud Töötaja {0} DocType: Stock Entry,Default Source Warehouse,Vaikimisi Allikas Warehouse DocType: Item,Customer Code,Kliendi kood @@ -3306,15 +3315,15 @@ DocType: Notification Control,Sales Invoice Message,Müügiarve Message apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Konto sulgemise {0} tüüp peab olema vastutus / Equity DocType: Authorization Rule,Based On,Põhineb DocType: Sales Order Item,Ordered Qty,Tellitud Kogus -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Punkt {0} on keelatud +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Punkt {0} on keelatud DocType: Stock Settings,Stock Frozen Upto,Stock Külmutatud Upto apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Ajavahemikul ja periood soovitud kohustuslik korduvad {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Projekti tegevus / ülesanne. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Loo palgalehed +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Loo palgalehed apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Ostmine tuleb kontrollida, kui need on kohaldatavad valitakse {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Soodustus peab olema väiksem kui 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Kirjutage Off summa (firma Valuuta) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Row # {0}: määrake reorganiseerima kogusest +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Row # {0}: määrake reorganiseerima kogusest DocType: Landed Cost Voucher,Landed Cost Voucher,Maandus Cost Voucher apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},Palun määra {0} DocType: Purchase Invoice,Repeat on Day of Month,Korda päev kuus @@ -3366,7 +3375,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Vaikimisi Work In Progress Warehouse apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Vaikimisi seadete raamatupidamistehingute. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Oodatud kuupäev ei saa olla enne Material taotlus kuupäev -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Punkt {0} peab olema Sales toode +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Punkt {0} peab olema Sales toode DocType: Naming Series,Update Series Number,Värskenda seerianumbri DocType: Account,Equity,Omakapital DocType: Sales Order,Printing Details,Printimine Üksikasjad @@ -3418,7 +3427,7 @@ DocType: Task,Review Date,Review Date DocType: Purchase Invoice,Advance Payments,Ettemaksed DocType: Purchase Taxes and Charges,On Net Total,On Net kokku apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Target ladu rida {0} peab olema sama Production Telli -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Ei luba kasutada maksmine Tool +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Ei luba kasutada maksmine Tool apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,"Teavitamine e-posti aadressid" määratlemata korduvad% s apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Valuuta ei saa muuta pärast kande tegemiseks kasutada mõne muu valuuta DocType: Company,Round Off Account,Ümardada konto @@ -3441,7 +3450,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Kogus punkti saadi pärast tootmise / pakkimise etteantud tooraine kogused DocType: Payment Reconciliation,Receivable / Payable Account,Laekumata / maksmata konto DocType: Delivery Note Item,Against Sales Order Item,Vastu Sales Order toode -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},Palun täpsustage omadus Väärtus atribuut {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},Palun täpsustage omadus Väärtus atribuut {0} DocType: Item,Default Warehouse,Vaikimisi Warehouse DocType: Task,Actual End Date (via Time Logs),Tegelik End Date (via aeg kajakad) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Eelarve ei saa liigitada vastu Group Konto {0} @@ -3466,10 +3475,10 @@ DocType: Lead,Blog Subscriber,Blogi Subscriber apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,"Loo reeglite piirata tehingud, mis põhinevad väärtustel." DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Kui see on märgitud, kokku ei. tööpäevade hulka puhkusereisid ja see vähendab väärtust Palk päevas" DocType: Purchase Invoice,Total Advance,Kokku Advance -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Töötlemine palgaarvestuse +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Töötlemine palgaarvestuse DocType: Opportunity Item,Basic Rate,Põhimäär DocType: GL Entry,Credit Amount,Krediidi summa -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Määra Lost +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Määra Lost apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Maksekviitung Märkus DocType: Supplier,Credit Days Based On,"Krediidi päeva jooksul, olenevalt" DocType: Tax Rule,Tax Rule,Maksueeskiri @@ -3499,7 +3508,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Aktsepteeritud Kogus apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} pole olemas apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Arveid tõstetakse klientidele. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Project Id -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Rea nr {0}: summa ei saa olla suurem kui Kuni summa eest kuluhüvitussüsteeme {1}. Kuni Summa on {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Rea nr {0}: summa ei saa olla suurem kui Kuni summa eest kuluhüvitussüsteeme {1}. Kuni Summa on {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} tellijatele lisatud DocType: Maintenance Schedule,Schedule,Graafik DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""",Määra eelarves selleks Cost Center. Et määrata eelarve tegevuse kohta vt "Firmade kataloog" @@ -3560,19 +3569,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS profiili DocType: Payment Gateway Account,Payment URL Message,Makse URL Message apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Hooajalisus jaoks eelarveid, eesmärgid jms" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Row {0}: Makse summa ei saa olla suurem kui tasumata summa +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Row {0}: Makse summa ei saa olla suurem kui tasumata summa apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Kokku Palgata -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Aeg Logi pole tasustatavate -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Punkt {0} on mall, valige palun üks selle variandid" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Aeg Logi pole tasustatavate +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Punkt {0} on mall, valige palun üks selle variandid" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Ostja apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Netopalk ei tohi olla negatiivne -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Palun sisesta maksedokumentide käsitsi +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Palun sisesta maksedokumentide käsitsi DocType: SMS Settings,Static Parameters,Staatiline parameetrid DocType: Purchase Order,Advance Paid,Advance Paide DocType: Item,Item Tax,Punkt Maksu- apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Materjal Tarnija apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Aktsiisi Arve DocType: Expense Claim,Employees Email Id,Töötajad Post Id +DocType: Employee Attendance Tool,Marked Attendance,Märkimisväärne osavõtt apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Lühiajalised kohustused apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Saada mass SMS oma kontaktid DocType: Purchase Taxes and Charges,Consider Tax or Charge for,"Mõtle maksu, sest" @@ -3595,7 +3605,7 @@ DocType: Item Attribute,Numeric Values,Arvväärtuste apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Kinnita Logo DocType: Customer,Commission Rate,Komisjonitasu määr apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Tee Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Block puhkuse taotluste osakonda. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Block puhkuse taotluste osakonda. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Ostukorv on tühi DocType: Production Order,Actual Operating Cost,Tegelik töökulud apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Juur ei saa muuta. @@ -3614,7 +3624,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,"Automaatselt luua Material taotluse, kui kogus langeb alla selle taseme" ,Item-wise Purchase Register,Punkt tark Ostu Registreeri DocType: Batch,Expiry Date,Aegumisaja -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Et valida reorganiseerima tasandil, objekt peab olema Ostu toode või tootmine Punkt" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Et valida reorganiseerima tasandil, objekt peab olema Ostu toode või tootmine Punkt" ,Supplier Addresses and Contacts,Tarnija aadressid ja kontaktid apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,Palun valige kategooria esimene apps/erpnext/erpnext/config/projects.py +18,Project master.,Projekti kapten. diff --git a/erpnext/translations/fa.csv b/erpnext/translations/fa.csv index 5c14678941..99b4bf485a 100644 --- a/erpnext/translations/fa.csv +++ b/erpnext/translations/fa.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,اعتبار در شر DocType: Delivery Note,Installation Status,وضعیت نصب و راه اندازی apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},پذیرفته شده + رد تعداد باید به دریافت مقدار برابر برای مورد است {0} DocType: Item,Supply Raw Materials for Purchase,عرضه مواد اولیه برای خرید -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,مورد {0} باید مورد خرید است +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,مورد {0} باید مورد خرید است DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records",دانلود الگو، داده مناسب پر کنید و ضمیمه فایل تغییر یافتهاست. همه تاریخ و کارمند ترکیبی در دوره زمانی انتخاب شده در قالب آمده، با سوابق حضور و غیاب موجود apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,مورد {0} غیر فعال است و یا پایان زندگی رسیده است DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,به روز خواهد شد پس از فاکتور فروش ارائه شده است. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included",شامل مالیات در ردیف {0} در مورد نرخ، مالیات در ردیف {1} باید گنجانده شود -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,تنظیمات برای ماژول HR +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included",شامل مالیات در ردیف {0} در مورد نرخ، مالیات در ردیف {1} باید گنجانده شود +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,تنظیمات برای ماژول HR DocType: SMS Center,SMS Center,مرکز SMS DocType: BOM Replace Tool,New BOM,BOM جدید apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,دسته سیاههها زمان برای صدور صورت حساب. @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,انتخاب شرایط و ض DocType: Production Planning Tool,Sales Orders,سفارشات فروش DocType: Purchase Taxes and Charges,Valuation,ارزیابی ,Purchase Order Trends,خرید سفارش روند -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,اختصاص برگ برای سال. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,اختصاص برگ برای سال. DocType: Earning Type,Earning Type,نوع سود DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,برنامه ریزی ظرفیت غیر فعال کردن و ردیابی زمان DocType: Bank Reconciliation,Bank Account,حساب بانکی @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,مشخصات مورد وب سایت DocType: Payment Tool,Reference No,مرجع بدون apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,ترک مسدود -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},مورد {0} به پایان زندگی بر روی رسید {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},مورد {0} به پایان زندگی بر روی رسید {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,سالیانه DocType: Stock Reconciliation Item,Stock Reconciliation Item,مورد سهام آشتی DocType: Stock Entry,Sales Invoice No,فاکتور فروش بدون @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,حداقل تعداد سفارش تعداد DocType: Pricing Rule,Supplier Type,نوع منبع DocType: Item,Publish in Hub,انتشار در توپی ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,مورد {0} لغو شود +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,مورد {0} لغو شود apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,درخواست مواد DocType: Bank Reconciliation,Update Clearance Date,به روز رسانی ترخیص کالا از تاریخ DocType: Item,Purchase Details,جزئیات خرید @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,تعداد رد DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order",درست موجود در توجه داشته باشید تحویل، نقل قول، فاکتور فروش، سفارش فروش DocType: SMS Settings,SMS Sender Name,نام فرستنده SMS DocType: Contact,Is Primary Contact,آیا اولیه تماس +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,زمان ورود شده است برای صدور صورت حساب بسته بندی های کوچک DocType: Notification Control,Notification Control,کنترل هشدار از طریق DocType: Lead,Suggestions,پیشنهادات DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,مجموعه ای مورد بودجه گروه عاقلانه در این سرزمین. شما همچنین می توانید با تنظیم توزیع شامل فصلی. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},لطفا گروه حساب پدر و مادر برای انبار وارد {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},پرداخت در مقابل {0} {1} نمی تواند بیشتر از برجسته مقدار {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},پرداخت در مقابل {0} {1} نمی تواند بیشتر از برجسته مقدار {2} DocType: Supplier,Address HTML,آدرس HTML DocType: Lead,Mobile No.,شماره موبایل DocType: Maintenance Schedule,Generate Schedule,تولید برنامه @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,همگام سازی شده با توپی apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,رمز اشتباه DocType: Item,Variant Of,نوع از -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,مورد {0} باید مورد خدمات شود apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',تکمیل تعداد نمی تواند بیشتر از 'تعداد برای تولید' DocType: Period Closing Voucher,Closing Account Head,بستن سر حساب DocType: Employee,External Work History,سابقه کار خارجی @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,عضویت در خبرنامه DocType: Stock Settings,Notify by Email on creation of automatic Material Request,با رایانامه آگاه کن در ایجاد درخواست مواد اتوماتیک DocType: Journal Entry,Multi Currency,چند ارز DocType: Payment Reconciliation Invoice,Invoice Type,فاکتور نوع -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,رسید +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,رسید apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,راه اندازی مالیات apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,ورود پرداخت اصلاح شده است پس از آن کشیده شده است. لطفا آن را دوباره بکشید. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} دو بار در مالیات وارد شده است +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} دو بار در مالیات وارد شده است apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,خلاصه برای این هفته و فعالیت های انتظار DocType: Workstation,Rent Cost,اجاره هزینه apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,لطفا ماه و سال را انتخاب کنید @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,معتبر برای کشورهای DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.",همه رشته های مرتبط مانند واردات ارز، نرخ تبدیل، کل واردات، واردات بزرگ و غیره کل موجود در رسید خرید، نقل قول تامین کننده، خرید فاکتور، سفارش خرید و غیره می باشد apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,این مورد از یک الگو است و می تواند در معاملات مورد استفاده قرار گیرد. ویژگی های مورد خواهد بود بیش از به انواع کپی مگر اینکه 'هیچ نسخه' تنظیم شده است apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,ترتیب مجموع در نظر گرفته شده -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).",طراحی کارمند (به عنوان مثال مدیر عامل و غیره). +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).",طراحی کارمند (به عنوان مثال مدیر عامل و غیره). apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,لطفا وارد کنید 'تکرار در روز از ماه مقدار فیلد DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,سرعت که در آن مشتریان ارز به ارز پایه مشتری تبدیل DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet",موجود در BOM، تحویل توجه داشته باشید، خرید فاکتور، سفارش تولید، سفارش خرید، رسید خرید، فاکتور فروش، سفارش فروش، انبار ورودی، برنامه زمانی @@ -355,7 +355,7 @@ DocType: Workstation,Consumable Cost,هزینه مصرفی apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) باید اجازه 'تایید و امضا مرخصی' را داشته باشید DocType: Purchase Receipt,Vehicle Date,خودرو تاریخ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,پزشکی -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,دلیل برای از دست دادن +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,دلیل برای از دست دادن apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},ایستگاه های کاری در تاریخ زیر را به عنوان در هر فهرست تعطیلات بسته است: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,فرصت ها DocType: Employee,Single,تک @@ -383,14 +383,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,کانال شریک DocType: Account,Old Parent,قدیمی مرجع DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,سفارشی کردن متن مقدماتی است که می رود به عنوان یک بخشی از آن ایمیل. هر معامله دارای یک متن مقدماتی جداگانه. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),هنوز علامت را شامل نمی شود (به عنوان مثال $) DocType: Sales Taxes and Charges Template,Sales Master Manager,مدیر ارشد فروش apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,تنظیمات جهانی برای تمام فرآیندهای تولید. DocType: Accounts Settings,Accounts Frozen Upto,حساب منجمد تا حد DocType: SMS Log,Sent On,فرستاده شده در -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,ویژگی {0} چند بار در صفات جدول انتخاب +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,ویژگی {0} چند بار در صفات جدول انتخاب DocType: HR Settings,Employee record is created using selected field. ,رکورد کارمند با استفاده از درست انتخاب شده ایجاد می شود. DocType: Sales Order,Not Applicable,قابل اجرا نیست -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,کارشناسی ارشد تعطیلات. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,کارشناسی ارشد تعطیلات. DocType: Material Request Item,Required Date,تاریخ مورد نیاز DocType: Delivery Note,Billing Address,نشانی صورتحساب apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,لطفا کد مورد را وارد کنید. @@ -426,7 +427,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,لطفا انبار که درخواست مواد مطرح خواهد شد را وارد کنید DocType: Production Order,Additional Operating Cost,هزینه های عملیاتی اضافی apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,آرایشی و بهداشتی -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items",به ادغام، خواص زیر باید همین کار را برای هر دو مورد می شود +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items",به ادغام، خواص زیر باید همین کار را برای هر دو مورد می شود DocType: Shipping Rule,Net Weight,وزن خالص DocType: Employee,Emergency Phone,تلفن اضطراری ,Serial No Warranty Expiry,سریال بدون گارانتی انقضاء @@ -481,17 +482,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,صدور صورت حساب و وضعیت تحویل apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,مشتریان تکرار DocType: Leave Control Panel,Allocate,اختصاص دادن -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,بازگشت فروش +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,بازگشت فروش DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,سفارشات فروش که از آن شما می خواهید برای ایجاد سفارشات تولید را انتخاب کنید. DocType: Item,Delivered by Supplier (Drop Ship),تحویل داده شده توسط کننده (قطره کشتی) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,قطعات حقوق و دستمزد. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,قطعات حقوق و دستمزد. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,پایگاه داده از مشتریان بالقوه است. DocType: Authorization Rule,Customer or Item,مشتری و یا مورد apps/erpnext/erpnext/config/crm.py +17,Customer database.,پایگاه داده مشتری می باشد. DocType: Quotation,Quotation To,نقل قول برای DocType: Lead,Middle Income,با درآمد متوسط apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),افتتاح (CR) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,واحد اندازه گیری پیش فرض برای مورد {0} می توانید به طور مستقیم نمی توان تغییر چون در حال حاضر ساخته شده برخی از معامله (ها) با UOM است. شما نیاز به ایجاد یک آیتم جدید به استفاده از پیش فرض UOM متفاوت است. +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,واحد اندازه گیری پیش فرض برای مورد {0} می توانید به طور مستقیم نمی توان تغییر چون در حال حاضر ساخته شده برخی از معامله (ها) با UOM است. شما نیاز به ایجاد یک آیتم جدید به استفاده از پیش فرض UOM متفاوت است. apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,مقدار اختصاص داده شده نمی تونه منفی DocType: Purchase Order Item,Billed Amt,صورتحساب AMT DocType: Warehouse,A logical Warehouse against which stock entries are made.,انبار منطقی که در برابر نوشته های سهام ساخته شده است. @@ -510,14 +511,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,مالیات فروش و اتها DocType: Employee,Organization Profile,نمایش سازمان apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,لطفا راه اندازی شماره سریال را برای حضور و غیاب از طریق راه اندازی> شماره سری DocType: Employee,Reason for Resignation,دلیل استعفای -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,الگو برای ارزیابی عملکرد. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,الگو برای ارزیابی عملکرد. DocType: Payment Reconciliation,Invoice/Journal Entry Details,فاکتور / مجله ورود به جزئیات apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' در سال مالی شماره {2} وجود ندارد DocType: Buying Settings,Settings for Buying Module,تنظیمات برای خرید ماژول apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,لطفا ابتدا وارد رسید خرید DocType: Buying Settings,Supplier Naming By,تامین کننده نامگذاری توسط DocType: Activity Type,Default Costing Rate,به طور پیش فرض هزینه یابی نرخ -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,برنامه نگهداری و تعمیرات +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,برنامه نگهداری و تعمیرات apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.",مشاهده قوانین سپس قیمت گذاری بر اساس مشتری، مشتری گروه، منطقه، تامین کننده، تامین کننده نوع، کمپین، فروش شریک و غیره فیلتر apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,تغییر خالص در پرسشنامه DocType: Employee,Passport Number,شماره پاسپورت @@ -556,7 +557,7 @@ DocType: Purchase Invoice,Quarterly,فصلنامه DocType: Selling Settings,Delivery Note Required,تحویل توجه لازم DocType: Sales Order Item,Basic Rate (Company Currency),نرخ پایه (شرکت ارز) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush مواد اولیه بر اساس -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,لطفا جزئیات آیتم را وارد کنید +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,لطفا جزئیات آیتم را وارد کنید DocType: Purchase Receipt,Other Details,سایر مشخصات DocType: Account,Accounts,حسابها apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,بازار یابی @@ -569,7 +570,7 @@ DocType: Employee,Provide email id registered in company,ارائه ایمیل DocType: Hub Settings,Seller City,فروشنده شهر DocType: Email Digest,Next email will be sent on:,ایمیل بعدی خواهد شد در ارسال: DocType: Offer Letter Term,Offer Letter Term,ارائه نامه مدت -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,فقره انواع. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,فقره انواع. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,مورد {0} یافت نشد DocType: Bin,Stock Value,سهام ارزش apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,نوع درخت @@ -577,7 +578,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,تعداد مصرف شده د DocType: Serial No,Warranty Expiry Date,گارانتی تاریخ انقضاء DocType: Material Request Item,Quantity and Warehouse,مقدار و انبار DocType: Sales Invoice,Commission Rate (%),نرخ کمیسیون (٪) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry",علیه کوپن نوع باید یکی از سفارش فروش، فاکتور فروش و یا مجله ورودی است +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry",علیه کوپن نوع باید یکی از سفارش فروش، فاکتور فروش و یا مجله ورودی است apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,جو زمین DocType: Journal Entry,Credit Card Entry,ورود کارت اعتباری apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,وظیفه تم @@ -645,10 +646,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,مسئوليت apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,مقدار تحریم نیست می تواند بیشتر از مقدار ادعای در ردیف {0}. DocType: Company,Default Cost of Goods Sold Account,به طور پیش فرض هزینه از حساب کالاهای فروخته شده -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,لیست قیمت انتخاب نشده +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,لیست قیمت انتخاب نشده DocType: Employee,Family Background,سابقه خانواده DocType: Process Payroll,Send Email,ارسال ایمیل -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},هشدار: پیوست معتبر {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},هشدار: پیوست معتبر {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,بدون اجازه DocType: Company,Default Bank Account,به طور پیش فرض حساب بانکی apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first",برای فیلتر کردن بر اساس حزب، حزب انتخاب نوع اول @@ -676,7 +677,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,نم DocType: Features Setup,"To enable ""Point of Sale"" features",برای فعال کردن "نقطه ای از فروش" ویژگی های DocType: Bin,Moving Average Rate,میانگین متحرک نرخ DocType: Production Planning Tool,Select Items,انتخاب آیتم ها -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} در صورت حساب {1} تاریخ گذاری شده است به {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} در صورت حساب {1} تاریخ گذاری شده است به {2} DocType: Maintenance Visit,Completion Status,وضعیت تکمیل DocType: Sales Invoice Item,Target Warehouse,هدف انبار DocType: Item,Allow over delivery or receipt upto this percent,اجازه می دهد بیش از تحویل یا دریافت تا این درصد @@ -736,7 +737,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,نر apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},قادر به پیدا کردن شکاف زمان در آینده {0} روز برای عملیات {1} DocType: Production Order,Plan material for sub-assemblies,مواد را برای طرح زیر مجموعه apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} باید فعال باشد -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,لطفا ابتدا نوع سند را انتخاب کنید +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,لطفا ابتدا نوع سند را انتخاب کنید apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,رفتن به سبد خرید apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,لغو مواد بازدید {0} قبل از لغو این نگهداری سایت DocType: Salary Slip,Leave Encashment Amount,ترک Encashment مقدار @@ -754,7 +755,7 @@ DocType: Purchase Receipt,Range,محدوده DocType: Supplier,Default Payable Accounts,به طور پیش فرض حسابهای پرداختنی apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,کارمند {0} غیر فعال است و یا وجود ندارد DocType: Features Setup,Item Barcode,بارکد مورد -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,مورد انواع {0} به روز شده +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,مورد انواع {0} به روز شده DocType: Quality Inspection Reading,Reading 6,خواندن 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,خرید فاکتور پیشرفته DocType: Address,Shop,فروشگاه @@ -777,7 +778,7 @@ DocType: Salary Slip,Total in words,مجموع در کلمات DocType: Material Request Item,Lead Time Date,سرب زمان عضویت apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,شاید ثبت صرافی ایجاد نشده است.الزامی است apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},ردیف # {0}: لطفا سریال مشخص نیست برای مورد {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.",برای آیتم های 'محصولات بسته نرم افزاری، انبار، سریال و بدون دسته بدون خواهد شد از' بسته بندی فهرست جدول در نظر گرفته. اگر انبار و دسته ای بدون برای همه آیتم ها بسته بندی مورد هر 'محصولات بسته نرم افزاری "هستند، این ارزش ها را می توان در جدول آیتم های اصلی وارد شده، ارزش خواهد شد کپی شده به' بسته بندی فهرست جدول. +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.",برای آیتم های 'محصولات بسته نرم افزاری، انبار، سریال و بدون دسته بدون خواهد شد از' بسته بندی فهرست جدول در نظر گرفته. اگر انبار و دسته ای بدون برای همه آیتم ها بسته بندی مورد هر 'محصولات بسته نرم افزاری "هستند، این ارزش ها را می توان در جدول آیتم های اصلی وارد شده، ارزش خواهد شد کپی شده به' بسته بندی فهرست جدول. apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,محموله به مشتریان. DocType: Purchase Invoice Item,Purchase Order Item,خرید سفارش مورد apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,درآمد غیر مستقیم @@ -798,6 +799,7 @@ DocType: Process Payroll,Select Payroll Year and Month,انتخاب سال و م apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",برو به گروه مناسب (معمولا استفاده از وجوه> دارایی های نقد> حساب های بانکی و ایجاد یک حساب جدید (با کلیک بر روی اضافه کردن کودکان) از نوع "بانک" DocType: Workstation,Electricity Cost,هزینه برق DocType: HR Settings,Don't send Employee Birthday Reminders,آیا کارمند تولد یادآوری ارسال کنید +,Employee Holiday Attendance,کارمند حضور و غیاب تعطیلات DocType: Opportunity,Walk In,راه رفتن در apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,مطالب سهام DocType: Item,Inspection Criteria,معیار بازرسی @@ -820,7 +822,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options, DocType: Journal Entry Account,Expense Claim,ادعای هزینه apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},تعداد برای {0} DocType: Leave Application,Leave Application,مرخصی استفاده -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,ترک ابزار تخصیص +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,ترک ابزار تخصیص DocType: Leave Block List,Leave Block List Dates,ترک فهرست بلوک خرما DocType: Company,If Monthly Budget Exceeded (for expense account),اگر بودجه ماهانه بیش از (برای حساب هزینه) DocType: Workstation,Net Hour Rate,خالص نرخ ساعت @@ -830,7 +832,7 @@ DocType: Packing Slip Item,Packing Slip Item,بسته بندی مورد لغزش DocType: POS Profile,Cash/Bank Account,نقد / حساب بانکی apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,موارد حذف شده بدون تغییر در مقدار یا ارزش. DocType: Delivery Note,Delivery To,تحویل به -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,جدول ویژگی الزامی است +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,جدول ویژگی الزامی است DocType: Production Planning Tool,Get Sales Orders,دریافت سفارشات فروش apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} نمی تواند منفی باشد apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,تخفیف @@ -894,7 +896,7 @@ DocType: SMS Center,Total Characters,مجموع شخصیت apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},لطفا BOM BOM در زمینه برای مورد را انتخاب کنید {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,جزئیات C-فرم فاکتور DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,پرداخت آشتی فاکتور -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,سهم٪ +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,سهم٪ DocType: Item,website page link,لینک صفحه وب سایت DocType: Company,Company registration numbers for your reference. Tax numbers etc.,شماره ثبت شرکت برای رجوع کنید. شماره مالیاتی و غیره DocType: Sales Partner,Distributor,توزیع کننده @@ -936,10 +938,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM عامل تبدیل DocType: Stock Settings,Default Item Group,به طور پیش فرض مورد گروه apps/erpnext/erpnext/config/buying.py +13,Supplier database.,پایگاه داده تامین کننده. DocType: Account,Balance Sheet,ترازنامه -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',مرکز مورد با کد آیتم های هزینه +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',مرکز مورد با کد آیتم های هزینه DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,فروشنده شما در این تاریخ برای تماس با مشتری یاداوری خواهد داشت apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups",حساب های بیشتر می تواند در زیر گروه ساخته شده، اما مطالب را می توان در برابر غیر گروه ساخته شده -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,مالیاتی و دیگر کسورات حقوق و دستمزد. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,مالیاتی و دیگر کسورات حقوق و دستمزد. DocType: Lead,Lead,راهبر DocType: Email Digest,Payables,حساب های پرداختنی DocType: Account,Warehouse,مخزن @@ -956,10 +958,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,مشخصات پرد DocType: Global Defaults,Current Fiscal Year,سال مالی جاری DocType: Global Defaults,Disable Rounded Total,غیر فعال کردن گرد مجموع DocType: Lead,Call,دعوت -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'مطالب' نمی تواند خالی باشد +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'مطالب' نمی تواند خالی باشد apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},تکراری ردیف {0} را با همان {1} ,Trial Balance,آزمایش تعادل -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,راه اندازی کارکنان +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,راه اندازی کارکنان apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid """,شبکه " apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,لطفا ابتدا پیشوند انتخاب کنید apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,پژوهش @@ -968,7 +970,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,ID کاربر apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,مشخصات لجر apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,قدیمیترین -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group",گروه مورد با همین نام وجود دارد، لطفا نام مورد تغییر یا تغییر نام گروه مورد +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group",گروه مورد با همین نام وجود دارد، لطفا نام مورد تغییر یا تغییر نام گروه مورد DocType: Production Order,Manufacture against Sales Order,ساخت در برابر سفارش فروش apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,بقیه دنیا apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,مورد {0} می تواند دسته ای ندارد @@ -993,7 +995,7 @@ DocType: Purchase Receipt,Rejected Warehouse,انبار را رد کرد DocType: GL Entry,Against Voucher,علیه کوپن DocType: Item,Default Buying Cost Center,به طور پیش فرض مرکز هزینه خرید apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.",برای دریافت بهترین نتیجه را از ERPNext، توصیه می کنیم که شما را برخی از زمان و تماشای این فیلم ها به کمک. -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,مورد {0} باید مورد فروش می شود +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,مورد {0} باید مورد فروش می شود apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,به DocType: Item,Lead Time in days,سرب زمان در روز ,Accounts Payable Summary,خلاصه حسابهای پرداختنی @@ -1019,7 +1021,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,کشاورزی apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,محصولات یا خدمات شما DocType: Mode of Payment,Mode of Payment,نحوه پرداخت -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,وب سایت تصویر باید یک فایل عمومی و یا آدرس وب سایت می باشد +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,وب سایت تصویر باید یک فایل عمومی و یا آدرس وب سایت می باشد apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,این یک گروه مورد ریشه است و نمی تواند ویرایش شود. DocType: Journal Entry Account,Purchase Order,سفارش خرید DocType: Warehouse,Warehouse Contact Info,انبار اطلاعات تماس @@ -1030,7 +1032,7 @@ DocType: Serial No,Serial No Details,سریال جزئیات DocType: Purchase Invoice Item,Item Tax Rate,مورد نرخ مالیات apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry",برای {0}، تنها حساب های اعتباری می تواند در مقابل ورود بدهی دیگر مرتبط apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,تحویل توجه داشته باشید {0} است ارسال نشده -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,مورد {0} باید مورد-فرعی قرارداد است +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,مورد {0} باید مورد-فرعی قرارداد است apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,تجهیزات سرمایه apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.",قانون قیمت گذاری شده است برای اولین بار بر اساس انتخاب 'درخواست در' درست است که می تواند مورد، مورد گروه و یا تجاری. DocType: Hub Settings,Seller Website,فروشنده وب سایت @@ -1039,7 +1041,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,هدف DocType: Sales Invoice Item,Edit Description,ویرایش توضیحات apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,انتظار می رود تاریخ تحویل کمتر از برنامه ریزی شده تاریخ شروع است. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,منبع +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,منبع DocType: Account,Setting Account Type helps in selecting this Account in transactions.,تنظیم نوع حساب کمک می کند تا در انتخاب این حساب در معاملات. DocType: Purchase Invoice,Grand Total (Company Currency),جمع کل (شرکت ارز) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,خروجی ها @@ -1091,7 +1093,6 @@ DocType: Authorization Rule,Average Discount,میانگین تخفیف DocType: Address,Utilities,نرم افزار DocType: Purchase Invoice Item,Accounting,حسابداری DocType: Features Setup,Features Setup,ویژگی های راه اندازی -DocType: Item,Is Service Item,آیا مورد خدمات apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,دوره نرم افزار می تواند دوره تخصیص مرخصی در خارج نیست DocType: Activity Cost,Projects,پروژه apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,لطفا سال مالی انتخاب کنید @@ -1112,7 +1113,7 @@ DocType: Item,Maintain Stock,حفظ سهام apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,مطالب سهام در حال حاضر برای سفارش تولید ایجاد apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,تغییر خالص دارائی های ثابت در DocType: Leave Control Panel,Leave blank if considered for all designations,خالی بگذارید اگر برای همه در نظر گرفته نامگذاریهای -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,شارژ از نوع 'واقعی' در ردیف {0} نمی تواند در مورد نرخ شامل +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,شارژ از نوع 'واقعی' در ردیف {0} نمی تواند در مورد نرخ شامل apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},حداکثر: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,از تاریخ ساعت DocType: Email Digest,For Company,برای شرکت @@ -1121,8 +1122,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,حمل و نقل آدرس apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,ساختار حسابها DocType: Material Request,Terms and Conditions Content,شرایط و ضوابط محتوا -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,نمی تواند بیشتر از ۱۰۰ باشد -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,مورد {0} است مورد سهام نمی +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,نمی تواند بیشتر از ۱۰۰ باشد +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,مورد {0} است مورد سهام نمی DocType: Maintenance Visit,Unscheduled,برنامه ریزی DocType: Employee,Owned,متعلق به DocType: Salary Slip Deduction,Depends on Leave Without Pay,بستگی به مرخصی بدون حقوق @@ -1143,7 +1144,7 @@ Used for Taxes and Charges",مالیات جدول جزئیات ذهن از آی apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,کارمند نمی تواند به خود گزارش دهید. DocType: Account,"If the account is frozen, entries are allowed to restricted users.",اگر حساب منجمد است، ورودی ها را به کاربران محدود شده مجاز می باشد. DocType: Email Digest,Bank Balance,بانک تعادل -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},ثبت حسابداری برای {0}: {1} تنها می تواند در ارز ساخته شده است: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},ثبت حسابداری برای {0}: {1} تنها می تواند در ارز ساخته شده است: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,هیچ ساختار حقوق و دستمزد برای کارکنان فعال یافت {0} و ماه DocType: Job Opening,"Job profile, qualifications required etc.",مشخصات شغلی، شرایط مورد نیاز و غیره DocType: Journal Entry Account,Account Balance,موجودی حساب @@ -1160,7 +1161,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,مجامع ز DocType: Shipping Rule Condition,To Value,به ارزش DocType: Supplier,Stock Manager,سهام مدیر apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},انبار منبع برای ردیف الزامی است {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,بسته بندی لغزش +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,بسته بندی لغزش apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,دفتر اجاره apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,تنظیمات دروازه راه اندازی SMS apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,واردات نشد! @@ -1204,7 +1205,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,جزئیات BOM بدون DocType: Purchase Invoice,Additional Discount Amount (Company Currency),تخفیف اضافی مبلغ (ارز شرکت) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},خطا: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,لطفا حساب جدید را از نمودار از حساب ایجاد کنید. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,نگهداری و تعمیرات مشاهده +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,نگهداری و تعمیرات مشاهده apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,مشتری> مشتری گروه> منطقه DocType: Sales Invoice Item,Available Batch Qty at Warehouse,دسته موجود در انبار تعداد DocType: Time Log Batch Detail,Time Log Batch Detail,زمان ورود دسته ای جزئیات @@ -1213,7 +1214,7 @@ DocType: Leave Block List,Block Holidays on important days.,تعطیلات بل ,Accounts Receivable Summary,خلاصه حسابهای دریافتنی apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,لطفا درست ID کاربر در یک پرونده کارمند به مجموعه نقش کارمند تنظیم DocType: UOM,UOM Name,نام UOM -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,مقدار سهم +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,مقدار سهم DocType: Sales Invoice,Shipping Address,حمل و نقل آدرس DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,این ابزار کمک می کند تا شما را به روز رسانی و یا تعمیر کمیت و ارزیابی سهام در سیستم. این است که به طور معمول برای همزمان سازی مقادیر سیستم و آنچه که واقعا در انبارها شما وجود دارد استفاده می شود. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,به عبارت قابل مشاهده خواهد بود یک بار شما را تحویل توجه را نجات دهد. @@ -1254,7 +1255,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,برای پیگیری موارد با استفاده از بارکد. شما قادر به ورود به اقلام در توجه داشته باشید تحویل و فاکتور فروش توسط اسکن بارکد مورد خواهد بود. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,ارسال مجدد ایمیل پرداخت DocType: Dependent Task,Dependent Task,وظیفه وابسته -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},عامل تبدیل واحد اندازه گیری پیش فرض از 1 باید در ردیف شود {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},عامل تبدیل واحد اندازه گیری پیش فرض از 1 باید در ردیف شود {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},مرخصی از نوع {0} نمی تواند بیش از {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,سعی کنید برنامه ریزی عملیات به مدت چند روز X در پیش است. DocType: HR Settings,Stop Birthday Reminders,توقف تولد یادآوری @@ -1264,7 +1265,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} نمایش apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,تغییر خالص در نقدی DocType: Salary Structure Deduction,Salary Structure Deduction,کسر ساختار حقوق و دستمزد -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,واحد اندازه گیری {0} است بیش از یک بار در تبدیل فاکتور جدول وارد شده است +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,واحد اندازه گیری {0} است بیش از یک بار در تبدیل فاکتور جدول وارد شده است apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},درخواست پرداخت از قبل وجود دارد {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,هزینه اقلام صادر شده apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},تعداد نباید بیشتر از {0} @@ -1293,7 +1294,7 @@ DocType: BOM Item,BOM Item,مورد BOM DocType: Appraisal,For Employee,برای کارمند apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,ردیف {0}: پیشرفت در برابر کننده باید بدهی شود DocType: Company,Default Values,مقادیر پیش فرض -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,ردیف {0}: میزان پرداخت نمی تونه منفی +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,ردیف {0}: میزان پرداخت نمی تونه منفی DocType: Expense Claim,Total Amount Reimbursed,مقدار کل بازپرداخت apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},در برابر تامین کننده فاکتور {0} تاریخ {1} DocType: Customer,Default Price List,به طور پیش فرض لیست قیمت @@ -1321,8 +1322,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,ا DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM",جایگزین BOM خاص در تمام BOMs دیگر که در آن استفاده شده است. این پیوند قدیمی BOM جایگزین، به روز رسانی هزینه و بازسازی "BOM مورد انفجار" جدول به عنوان در هر BOM جدید DocType: Shopping Cart Settings,Enable Shopping Cart,فعال سبد خرید DocType: Employee,Permanent Address,آدرس دائمی -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,مورد {0} باید مورد خدمات باشد. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",پیشرفت در برابر {0} {1} نمی تواند بیشتر پرداخت می شود \ از جمع کل {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,لطفا کد مورد را انتخاب کنید DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),کاهش کسر برای مرخصی بدون حقوق (LWP) @@ -1378,12 +1378,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,اصلی apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,نوع دیگر DocType: Naming Series,Set prefix for numbering series on your transactions,تنظیم پیشوند برای شماره سری در معاملات خود را +DocType: Employee Attendance Tool,Employees HTML,کارمندان HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,منظور متوقف نمی تواند لغو شود. Unstop برای لغو. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,به طور پیش فرض BOM ({0}) باید برای این آیتم به و یا قالب آن فعال باشد +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,به طور پیش فرض BOM ({0}) باید برای این آیتم به و یا قالب آن فعال باشد DocType: Employee,Leave Encashed?,ترک نقد شدنی؟ apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,فرصت از فیلد اجباری است DocType: Item,Variants,انواع -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,را سفارش خرید +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,را سفارش خرید DocType: SMS Center,Send To,فرستادن به apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},است تعادل مرخصی به اندازه کافی برای مرخصی نوع وجود ندارد {0} DocType: Payment Reconciliation Payment,Allocated amount,مقدار اختصاص داده شده @@ -1483,7 +1484,7 @@ DocType: Sales Person,Name and Employee ID,نام و کارمند ID apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,تاریخ را نمی توان قبل از ارسال تاریخ DocType: Website Item Group,Website Item Group,وب سایت مورد گروه apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,وظایف و مالیات -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,لطفا تاریخ مرجع وارد +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,لطفا تاریخ مرجع وارد apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,پرداخت حساب دروازه پیکربندی نشده است apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} نوشته های پرداخت نمی تواند فیلتر {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,جدول برای مورد است که در وب سایت نشان داده خواهد شد @@ -1504,7 +1505,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,جزییات قطعنامه DocType: Quality Inspection Reading,Acceptance Criteria,ملاک پذیرش DocType: Item Attribute,Attribute Name,نام مشخصه -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},مورد {0} باید به فروش و یا مورد خدمات می شود {1} DocType: Item Group,Show In Website,نمایش در وب سایت apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,گروه DocType: Task,Expected Time (in hours),زمان مورد انتظار (در ساعت) @@ -1536,7 +1536,7 @@ DocType: Shipping Rule Condition,Shipping Amount,مقدار حمل و نقل ,Pending Amount,در انتظار مقدار DocType: Purchase Invoice Item,Conversion Factor,عامل تبدیل DocType: Purchase Order,Delivered,تحویل -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),راه اندازی سرور های دریافتی برای شغل ایمیل ID. (به عنوان مثال jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),راه اندازی سرور های دریافتی برای شغل ایمیل ID. (به عنوان مثال jobs@example.com) DocType: Purchase Receipt,Vehicle Number,تعداد خودرو DocType: Purchase Invoice,The date on which recurring invoice will be stop,از تاریخ تکرار می شود فاکتور را متوقف خواهد کرد apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,مجموع برگ اختصاص داده {0} نمی تواند کمتر از برگ حال حاضر مورد تایید {1} برای دوره @@ -1553,7 +1553,7 @@ DocType: HR Settings,HR Settings,تنظیمات HR apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,ادعای هزینه منتظر تأیید است. تنها تصویب هزینه می توانید وضعیت به روز رسانی. DocType: Purchase Invoice,Additional Discount Amount,تخفیف اضافی مبلغ DocType: Leave Block List Allow,Leave Block List Allow,ترک فهرست بلوک اجازه -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,مخفف نمیتواند خالی باشد یا فضای +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,مخفف نمیتواند خالی باشد یا فضای apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,گروه به غیر گروه apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,ورزشی apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,مجموع واقعی @@ -1577,7 +1577,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},عامل UOM تبدیل در ردیف مورد نیاز است {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},تاریخ ترخیص کالا از نمی تواند قبل از تاریخ چک در ردیف شود {0} DocType: Salary Slip,Deduction,کسر -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},مورد قیمت های اضافه شده برای {0} در لیست قیمت {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},مورد قیمت های اضافه شده برای {0} در لیست قیمت {1} DocType: Address Template,Address Template,آدرس الگو apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,لطفا کارمند شناسه را وارد این فرد از فروش DocType: Territory,Classification of Customers by region,طبقه بندی مشتریان بر اساس منطقه @@ -1594,7 +1594,7 @@ DocType: Employee,Date of Birth,تاریخ تولد apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,مورد {0} در حال حاضر بازگشت شده است DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** ** سال مالی نشان دهنده یک سال مالی. تمام پست های حسابداری و دیگر معاملات عمده در برابر سال مالی ** ** ردیابی. DocType: Opportunity,Customer / Lead Address,مشتری / سرب آدرس -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},هشدار: گواهینامه SSL نامعتبر در پیوست {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},هشدار: گواهینامه SSL نامعتبر در پیوست {0} DocType: Production Order Operation,Actual Operation Time,عملیات واقعی زمان DocType: Authorization Rule,Applicable To (User),به قابل اجرا (کاربر) DocType: Purchase Taxes and Charges,Deduct,کسر کردن @@ -1611,7 +1611,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,تقسیم توجه داشته باشید تحویل بسته بندی شده. apps/erpnext/erpnext/hooks.py +69,Shipments,محموله DocType: Purchase Order Item,To be delivered to customer,به مشتری تحویل -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,زمان ورود وضعیت باید ارائه شود. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,زمان ورود وضعیت باید ارائه شود. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,سریال نه {0} به هیچ انبار تعلق ندارد apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,ردیف # DocType: Purchase Invoice,In Words (Company Currency),به عبارت (شرکت ارز) @@ -1628,7 +1628,7 @@ DocType: Leave Application,Total Leave Days,مجموع مرخصی روز DocType: Email Digest,Note: Email will not be sent to disabled users,توجه: ایمیل را به کاربران غیر فعال شده ارسال نمی شود apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,انتخاب شرکت ... DocType: Leave Control Panel,Leave blank if considered for all departments,خالی بگذارید اگر برای همه گروه ها در نظر گرفته -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).",انواع اشتغال (دائمی، قرارداد، و غیره کارآموز). +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).",انواع اشتغال (دائمی، قرارداد، و غیره کارآموز). apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} برای مورد الزامی است {1} DocType: Currency Exchange,From Currency,از ارز apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row",لطفا مقدار اختصاص داده شده، نوع فاکتور و شماره فاکتور در حداقل یک سطر را انتخاب کنید @@ -1647,7 +1647,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,در حال انجام DocType: Authorization Rule,Itemwise Discount,Itemwise تخفیف DocType: Purchase Order Item,Reference Document Type,مرجع نوع سند -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} در برابر سفارش فروش {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} در برابر سفارش فروش {1} DocType: Account,Fixed Asset,دارائی های ثابت apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,پرسشنامه سریال DocType: Activity Type,Default Billing Rate,به طور پیش فرض نرخ صدور صورت حساب @@ -1657,7 +1657,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,سفارش فروش به پرداخت DocType: Expense Claim Detail,Expense Claim Detail,هزینه جزئیات درخواست apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,زمان ثبت ایجاد: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,لطفا به حساب صحیح را انتخاب کنید +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,لطفا به حساب صحیح را انتخاب کنید DocType: Item,Weight UOM,وزن UOM DocType: Employee,Blood Group,گروه خونی DocType: Purchase Invoice Item,Page Break,شکست صفحه @@ -1692,7 +1692,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},بازگشت BOM: {0} می تواند پدر و مادر یا فرزند نمی {2} DocType: Production Order Operation,Completed Qty,تکمیل تعداد apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry",برای {0}، تنها حساب های بانکی را می توان در برابر ورود اعتباری دیگر مرتبط -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,لیست قیمت {0} غیر فعال است +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,لیست قیمت {0} غیر فعال است DocType: Manufacturing Settings,Allow Overtime,اجازه اضافه کاری apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} شماره سریال مورد نیاز برای مورد {1}. شما فراهم کرده اید {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,نرخ گذاری کنونی @@ -1743,7 +1743,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},آی apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,شماره مورد نمی تواند 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,اگر شما تیم فروش و فروش همکاران (کانال همکاران) می توان آنها را برچسب و حفظ سهم خود در فعالیت های فروش DocType: Item,Show a slideshow at the top of the page,نمایش تصاویر به صورت خودکار در بالای صفحه -DocType: Item,"Allow in Sales Order of type ""Service""",اجازه می دهد در سفارش فروش از نوع "خدمات" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,فروشگاه DocType: Time Log,Projects Manager,مدیر پروژه های DocType: Serial No,Delivery Time,زمان تحویل @@ -1758,6 +1757,7 @@ DocType: Rename Tool,Rename Tool,ابزار تغییر نام apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,به روز رسانی هزینه DocType: Item Reorder,Item Reorder,مورد ترتیب مجدد apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,مواد انتقال +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},مورد {0} باید یک مورد فروش در {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.",مشخص عملیات، هزینه های عملیاتی و به یک عملیات منحصر به فرد بدون به عملیات خود را. DocType: Purchase Invoice,Price List Currency,لیست قیمت ارز DocType: Naming Series,User must always select,کاربر همیشه باید انتخاب کنید @@ -1778,7 +1778,7 @@ DocType: Appraisal,Employee,کارمند apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,واردات از ایمیل apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,دعوت به عنوان کاربر DocType: Features Setup,After Sale Installations,پس از نصب فروش -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} به طور کامل صورتحساب شده است +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} به طور کامل صورتحساب شده است DocType: Workstation Working Hour,End Time,پایان زمان apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,شرایط قرارداد استاندارد برای فروش و یا خرید. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,گروه های کوپن @@ -1804,7 +1804,7 @@ DocType: Upload Attendance,Attendance To Date,حضور و غیاب به روز apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),راه اندازی سرور های دریافتی برای ایمیل فروش شناسه. (به عنوان مثال sales@example.com) DocType: Warranty Claim,Raised By,مطرح شده توسط DocType: Payment Gateway Account,Payment Account,حساب پرداخت -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,لطفا شرکت مشخص برای ادامه +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,لطفا شرکت مشخص برای ادامه apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,تغییر خالص در حساب های دریافتنی apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,جبرانی فعال DocType: Quality Inspection Reading,Accepted,پذیرفته @@ -1816,14 +1816,14 @@ DocType: Shipping Rule,Shipping Rule Label,قانون حمل و نقل برچس apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,مواد اولیه نمی تواند خالی باشد. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.",می تواند سهام به روز رسانی نیست، فاکتور شامل آیتم افت حمل و نقل. DocType: Newsletter,Test,تست -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'",همانطور که معاملات سهام موجود برای این آیتم به، \ شما می توانید مقادیر تغییر نمی کند ندارد سریال '،' دارای دسته ای بدون '،' آیا مورد سهام "و" روش های ارزش گذاری ' apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,سریع دانشگاه علوم پزشکی ورودی apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,اگر ذکر بی ا م در مقابل هر ایتمی باشد شما نمیتوانید نرخ را تغییر دهید DocType: Employee,Previous Work Experience,قبلی سابقه کار DocType: Stock Entry,For Quantity,برای کمیت apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},لطفا برنامه ریزی شده برای مورد تعداد {0} در ردیف وارد {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} ثبت نشده است +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} ثبت نشده است apps/erpnext/erpnext/config/stock.py +18,Requests for items.,درخواست ها برای اقلام است. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,سفارش تولید جداگانه خواهد شد برای هر مورد خوب به پایان رسید ساخته شده است. DocType: Purchase Invoice,Terms and Conditions1,شرایط و Conditions1 @@ -1848,6 +1848,7 @@ DocType: Notification Control,Expense Claim Approved Message,پیام ادعای DocType: Email Digest,How frequently?,چگونه غالبا؟ DocType: Purchase Receipt,Get Current Stock,دریافت سهام کنونی apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,درخت بیل از مواد +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,علامت گذاری به عنوان در حال حاضر apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},تاریخ شروع نگهداری نمی تواند قبل از تاریخ تحویل برای سریال بدون شود {0} DocType: Production Order,Actual End Date,تاریخ واقعی پایان DocType: Authorization Rule,Applicable To (Role),به قابل اجرا (نقش) @@ -1862,7 +1863,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,قرارداد تاریخ پایان باید از تاریخ پیوستن بیشتر DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,توزیع کننده شخص ثالث / فروشنده / نماینده کمیسیون / وابسته به / نمایندگی فروش که به فروش می رساند محصولات شرکت برای کمیسیون. DocType: Customer Group,Has Child Node,دارای گره فرزند -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} در برابر سفارش خرید {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} در برابر سفارش خرید {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)",پارامترهای URL شخص را اینجا وارد کنید (به عنوان مثال فرستنده = ERPNext، نام کاربری = ERPNext و رمز = 1234 و غیره) apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} در هر سال مالی فعال است. برای جزئیات بیشتر {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,این یک مثال وب سایت خودکار تولید شده از ERPNext @@ -1890,7 +1891,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Add or Deduct: Whether you want to add or deduct the tax.",قالب مالیاتی استاندارد است که می تواند به تمام معاملات خرید استفاده شود. این الگو می تواند شامل لیستی از سر مالیات و همچنین دیگر سر هزینه مانند "حمل و نقل"، "بیمه"، "سیستم های انتقال مواد" و غیره #### توجه داشته باشید نرخ مالیات در اینجا تعریف می کنید خواهد بود که نرخ مالیات استاندارد برای همه آیتم ها ** * * * * * * * *. اگر تعداد آیتم ها ** ** که نرخ های مختلف وجود دارد، آنها باید در مورد مالیات ** ** جدول اضافه می شود در مورد ** ** استاد. #### شرح ستون 1. نوع محاسبه: - این می تواند بر روی ** ** خالص مجموع باشد (که مجموع مبلغ پایه است). - ** در انتظار قبلی مجموع / مقدار ** (برای مالیات تجمعی و یا اتهامات عنوان شده علیه). اگر شما این گزینه را انتخاب کنید، مالیات به عنوان یک درصد از سطر قبلی (در جدول مالیاتی) و یا مقدار کل اعمال می شود. - ** ** واقعی (به عنوان ذکر شده). 2. حساب سر: دفتر حساب که تحت آن این مالیات خواهد شد رزرو 3. مرکز هزینه: اگر مالیات / هزینه درآمد (مانند حمل و نقل) است و یا هزینه آن نیاز دارد تا در برابر یک مرکز هزینه رزرو شود. 4. توضیحات: توضیحات از مالیات (که در فاکتورها / به نقل از چاپ). 5. نرخ: نرخ مالیات. 6. مقدار: مبلغ مالیات. 7. مجموع: مجموع تجمعی به این نقطه است. 8. ردیف را وارد کنید: اگر بر اساس "سطر قبلی مجموع" شما می توانید تعداد ردیف خواهد شد که به عنوان پایه ای برای این محاسبه (به طور پیش فرض سطر قبلی است) گرفته شده را انتخاب کنید. 9. در نظر بگیرید مالیات و یا هزینه برای: در این بخش شما می توانید مشخص کنید اگر مالیات / بار فقط برای ارزیابی (و نه بخشی از کل ارسال ها) و یا تنها برای کل (ارزش به آیتم اضافه کنید) و یا برای هر دو. 10. اضافه کردن و یا کسر: آیا شما می خواهید برای اضافه کردن یا کسر مالیات. DocType: Purchase Receipt Item,Recd Quantity,Recd تعداد apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},می تواند مورد دیگر {0} از مقدار سفارش فروش تولید نمی {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,سهام ورود {0} است ارسال نشده +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,سهام ورود {0} است ارسال نشده DocType: Payment Reconciliation,Bank / Cash Account,حساب بانک / نقدی DocType: Tax Rule,Billing City,صدور صورت حساب شهر DocType: Global Defaults,Hide Currency Symbol,مخفی ارز نماد @@ -1916,7 +1917,7 @@ DocType: Salary Structure,Total Earning,سود مجموع DocType: Purchase Receipt,Time at which materials were received,زمانی که در آن مواد دریافت شده apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,آدرس من DocType: Stock Ledger Entry,Outgoing Rate,نرخ خروجی -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,شاخه سازمان کارشناسی ارشد. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,شاخه سازمان کارشناسی ارشد. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,یا DocType: Sales Order,Billing Status,حسابداری وضعیت apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,هزینه آب و برق @@ -1954,7 +1955,7 @@ DocType: Bin,Reserved Quantity,تعداد محفوظ است DocType: Landed Cost Voucher,Purchase Receipt Items,آیتم ها رسید خرید apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,فرم سفارشی DocType: Account,Income Account,حساب درآمد -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,تحویل +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,تحویل DocType: Stock Reconciliation Item,Current Qty,تعداد کنونی DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",نگاه کنید به "نرخ مواد بر اساس" در هزینه یابی بخش DocType: Appraisal Goal,Key Responsibility Area,منطقه مسئولیت های کلیدی @@ -1966,8 +1967,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,ک DocType: Notification Control,Purchase Order Message,خرید سفارش پیام DocType: Tax Rule,Shipping Country,حمل و نقل کشور DocType: Upload Attendance,Upload HTML,بارگذاری HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})",پیش مجموع ({0}) و مخالف نظم {1} نمی تواند بیشتر \ از جمع کل ({2}) DocType: Employee,Relieving Date,تسکین عضویت apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.",قانون قیمت گذاری ساخته شده است به بازنویسی لیست قیمت / تعریف درصد تخفیف، بر اساس برخی معیارهای. DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,انبار تنها می تواند از طریق بورس ورودی تغییر / تحویل توجه / رسید خرید @@ -1977,8 +1976,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,ما apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.",اگر قانون قیمت گذاری انتخاب شده برای قیمت "ساخته شده، آن را به لیست قیمت بازنویسی. قیمت قانون قیمت گذاری قیمت نهایی است، بنابراین هیچ تخفیف بیشتر قرار داشته باشد. از این رو، در معاملات مانند سفارش فروش، سفارش خرید و غیره، از آن خواهد شد در زمینه 'نرخ' برداشته، به جای درست "لیست قیمت نرخ. apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,آهنگ فرصت های نوع صنعت. DocType: Item Supplier,Item Supplier,تامین کننده مورد -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,لطفا کد مورد وارد کنید دسته ای هیچ -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},لطفا یک ارزش برای {0} quotation_to انتخاب کنید {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,لطفا کد مورد وارد کنید دسته ای هیچ +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},لطفا یک ارزش برای {0} quotation_to انتخاب کنید {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,تمام آدرس. DocType: Company,Stock Settings,تنظیمات سهام apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company",ادغام زمانی ممکن است که خواص زیر در هر دو پرونده می باشد. آیا گروه، نوع ریشه، شرکت @@ -2001,7 +2000,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,شماره چک DocType: Payment Tool Detail,Payment Tool Detail,جزئیات ابزار پرداخت ,Sales Browser,مرورگر فروش DocType: Journal Entry,Total Credit,مجموع اعتباری -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},هشدار: یکی دیگر از {0} # {1} در برابر ورود سهام وجود دارد {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},هشدار: یکی دیگر از {0} # {1} در برابر ورود سهام وجود دارد {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,محلی apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),وام و پیشرفت (دارایی) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,بدهکاران @@ -2021,8 +2020,8 @@ DocType: Price List,Price List Master,لیست قیمت مستر DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,تمام معاملات فروش را می توان در برابر چند ** ** افراد فروش برچسب به طوری که شما می توانید تعیین و نظارت بر اهداف. ,S.O. No.,SO شماره DocType: Production Order Operation,Make Time Log,را زمان ورود -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,لطفا مقدار سفارش مجدد مجموعه -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},لطفا مشتری از سرب ایجاد {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,لطفا مقدار سفارش مجدد مجموعه +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},لطفا مشتری از سرب ایجاد {0} DocType: Price List,Applicable for Countries,قابل استفاده برای کشورهای apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,کامپیوتر apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,این یک گروه مشتری ریشه است و نمی تواند ویرایش شود. @@ -2058,7 +2057,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),صور DocType: Payment Reconciliation Invoice,Outstanding Amount,مقدار برجسته DocType: Project Task,Working,کار DocType: Stock Ledger Entry,Stock Queue (FIFO),سهام صف (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,لطفا مدت زمان گزارش ها را انتخاب کنید. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,لطفا مدت زمان گزارش ها را انتخاب کنید. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} به شرکت تعلق ندارد {1} DocType: Account,Round Off,گرد کردن ,Requested Qty,تعداد درخواست @@ -2096,7 +2095,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,دریافت مطالب مرتبط apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,ثبت حسابداری برای انبار DocType: Sales Invoice,Sales Team1,Team1 فروش -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,مورد {0} وجود ندارد +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,مورد {0} وجود ندارد DocType: Sales Invoice,Customer Address,آدرس مشتری DocType: Payment Request,Recipient and Message,گیرنده و پیام DocType: Purchase Invoice,Apply Additional Discount On,درخواست تخفیف اضافی @@ -2115,7 +2114,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,بیصدا کردن ایمیل apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco",مواد غذایی، آشامیدنی و دخانیات apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL یا BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},می توانید تنها پرداخت به را unbilled را {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},می توانید تنها پرداخت به را unbilled را {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,نرخ کمیسیون نمی تواند بیشتر از 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,حداقل سطح موجودی DocType: Stock Entry,Subcontract,مقاطعه کاری فرعی @@ -2133,9 +2132,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,نرماف apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,رنگ DocType: Maintenance Visit,Scheduled,برنامه ریزی apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle",لطفا آیتم را انتخاب کنید که در آن "آیا مورد سهام" است "نه" و "آیا مورد فروش" است "بله" است و هیچ بسته نرم افزاری محصولات دیگر وجود دارد +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),مجموع پیش ({0}) را در برابر سفارش {1} نمی تواند بیشتر از جمع کل ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,انتخاب توزیع ماهانه به طور یکنواخت توزیع در سراسر اهداف ماه می باشد. DocType: Purchase Invoice Item,Valuation Rate,نرخ گذاری -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,لیست قیمت ارز انتخاب نشده +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,لیست قیمت ارز انتخاب نشده apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,مورد ردیف {0}: رسید خرید {1} در جدول بالا 'خرید رسید' وجود ندارد apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},کارمند {0} در حال حاضر برای اعمال {1} {2} بین و {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,پروژه تاریخ شروع @@ -2147,6 +2147,7 @@ DocType: Quality Inspection,Inspection Type,نوع بازرسی apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},لطفا انتخاب کنید {0} DocType: C-Form,C-Form No,C-فرم بدون DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,حضور و غیاب بینام apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,پژوهشگر apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,لطفا قبل از ارسال خبرنامه نجات apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,نام و نام خانوادگی پست الکترونیک و یا اجباری است @@ -2172,7 +2173,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,تای DocType: Payment Gateway,Gateway,دروازه apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,تامین کننده> تامین کننده نوع apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,لطفا تاریخ تسکین وارد کنید. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,AMT +apps/erpnext/erpnext/controllers/trends.py +138,Amt,AMT apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,فقط برنامه های کاربردی با وضعیت "تایید" را می توان ارائه بگذارید apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,عنوان نشانی الزامی است. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,نام کمپین را وارد کنید اگر منبع تحقیق مبارزات انتخاباتی است @@ -2187,10 +2188,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,انبار پذیرفته شد DocType: Bank Reconciliation Detail,Posting Date,تاریخ ارسال DocType: Item,Valuation Method,روش های ارزش گذاری apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},قادر به پیدا کردن نرخ ارز برای {0} به {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,روز علامت نیم DocType: Sales Invoice,Sales Team,تیم فروش apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,ورود تکراری DocType: Serial No,Under Warranty,تحت گارانتی -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[خطا] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[خطا] DocType: Sales Order,In Words will be visible once you save the Sales Order.,به عبارت قابل مشاهده خواهد بود هنگامی که شما سفارش فروش را نجات دهد. ,Employee Birthday,کارمند تولد apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,سرمایه گذاری سرمایه @@ -2213,6 +2215,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,مرکز هزینه با معاملات موجود می تواند به گروه تبدیل می شود DocType: Account,Depreciation,استهلاک apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),تامین کننده (بازدید کنندگان) +DocType: Employee Attendance Tool,Employee Attendance Tool,کارمند ابزار حضور و غیاب DocType: Supplier,Credit Limit,محدودیت اعتبار apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,انتخاب نوع معامله DocType: GL Entry,Voucher No,کوپن بدون @@ -2239,7 +2242,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,حساب کاربری ریشه نمی تواند حذف شود ,Is Primary Address,آدرس اولیه است DocType: Production Order,Work-in-Progress Warehouse,کار در حال پیشرفت انبار -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},مرجع # {0} تاریخ {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},مرجع # {0} تاریخ {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,مدیریت آدرس DocType: Pricing Rule,Item Code,کد مورد DocType: Production Planning Tool,Create Production Orders,ایجاد سفارشات تولید @@ -2266,7 +2269,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,مغایرت گیری بانک apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,دریافت به روز رسانی apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,درخواست مواد {0} است لغو و یا متوقف apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,اضافه کردن چند پرونده نمونه -apps/erpnext/erpnext/config/hr.py +210,Leave Management,ترک مدیریت +apps/erpnext/erpnext/config/hr.py +225,Leave Management,ترک مدیریت apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,گروه های حساب DocType: Sales Order,Fully Delivered,به طور کامل تحویل DocType: Lead,Lower Income,درآمد پایین @@ -2281,6 +2284,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"""از تاریخ"" باید پس از ""تا تاریخ"" باشد" ,Stock Projected Qty,سهام بینی تعداد apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},مشتری {0} تعلق ندارد به پروژه {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,حضور و غیاب مشخص HTML DocType: Sales Order,Customer's Purchase Order,سفارش خرید مشتری DocType: Warranty Claim,From Company,از شرکت apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,ارزش و یا تعداد @@ -2345,6 +2349,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,انتقال سیم apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,لطفا حساب بانکی را انتخاب کنید DocType: Newsletter,Create and Send Newsletters,ایجاد و ارسال خبرنامه +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,بررسی همه DocType: Sales Order,Recurring Order,ترتیب در محدوده زمانی معین DocType: Company,Default Income Account,حساب پیش فرض درآمد apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,مشتری گروه / مشتریان @@ -2376,6 +2381,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,بازگشت علیه DocType: Item,Warranty Period (in days),دوره گارانتی (در روز) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,نقدی خالص عملیات apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,به عنوان مثال مالیات بر ارزش افزوده +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,حضور و غیاب علامت گذاری به عنوان کارمند به صورت فله apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,(4 مورد) DocType: Journal Entry Account,Journal Entry Account,حساب ورودی دفتر روزنامه DocType: Shopping Cart Settings,Quotation Series,نقل قول سری @@ -2520,14 +2526,14 @@ DocType: Task,Actual Start Date (via Time Logs),تاریخ شروع واقعی ( DocType: Stock Reconciliation Item,Before reconciliation,قبل از آشتی apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},به {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),مالیات و هزینه اضافه شده (شرکت ارز) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,ردیف مالیاتی مورد {0} باید حساب از نوع مالیات یا درآمد یا هزینه یا شارژ داشته +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,ردیف مالیاتی مورد {0} باید حساب از نوع مالیات یا درآمد یا هزینه یا شارژ داشته DocType: Sales Order,Partly Billed,تا حدودی صورتحساب DocType: Item,Default BOM,به طور پیش فرض BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,لطفا دوباره نوع نام شرکت برای تایید apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,مجموع برجسته AMT DocType: Time Log Batch,Total Hours,جمع ساعت DocType: Journal Entry,Printing Settings,تنظیمات چاپ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},دبیت مجموع باید به مجموع اعتبار مساوی باشد. تفاوت در این است {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},دبیت مجموع باید به مجموع اعتبار مساوی باشد. تفاوت در این است {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,خودرو apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,از تحویل توجه داشته باشید DocType: Time Log,From Time,از زمان @@ -2573,7 +2579,7 @@ DocType: Purchase Invoice Item,Image View,تصویر مشخصات DocType: Issue,Opening Time,زمان باز شدن apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,از و به تاریخ های الزامی apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,اوراق بهادار و بورس کالا -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',واحد اندازه گیری پیش فرض برای متغیر '{0}' باید همان است که در الگو: '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',واحد اندازه گیری پیش فرض برای متغیر '{0}' باید همان است که در الگو: '{1}' DocType: Shipping Rule,Calculate Based On,محاسبه بر اساس DocType: Delivery Note Item,From Warehouse,از انبار DocType: Purchase Taxes and Charges,Valuation and Total,ارزش گذاری و مجموع @@ -2595,7 +2601,7 @@ DocType: Leave Application,Follow via Email,از طریق ایمیل دنبال DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,مبلغ مالیات پس از تخفیف مبلغ apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,حساب کودک برای این حساب وجود دارد. شما می توانید این حساب را حذف کنید. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,در هر دو صورت تعداد مورد نظر و یا مقدار هدف الزامی است -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},بدون پیش فرض BOM برای مورد وجود دارد {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},بدون پیش فرض BOM برای مورد وجود دارد {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,لطفا در ارسال تاریخ را انتخاب کنید اول apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,باز کردن تاریخ باید قبل از بسته شدن تاریخ DocType: Leave Control Panel,Carry Forward,حمل به جلو @@ -2672,7 +2678,7 @@ DocType: Leave Type,Is Encash,آیا Encash DocType: Purchase Invoice,Mobile No,موبایل بدون DocType: Payment Tool,Make Journal Entry,مجله را ورود DocType: Leave Allocation,New Leaves Allocated,برگ جدید اختصاص داده شده -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,اطلاعات پروژه و زرنگ در دسترس برای عین نمی +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,اطلاعات پروژه و زرنگ در دسترس برای عین نمی DocType: Project,Expected End Date,انتظار می رود تاریخ پایان DocType: Appraisal Template,Appraisal Template Title,ارزیابی الگو عنوان apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,تجاری @@ -2720,6 +2726,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,ر apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,لطفا مشخص کنید DocType: Offer Letter,Awaiting Response,در انتظار پاسخ apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,در بالا +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,زمان ورود تا صورتحساب شده است DocType: Salary Slip,Earning & Deduction,سود و کسر apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,حساب {0} نمی تواند یک گروه apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,اختیاری است. این تنظیم استفاده می شود برای فیلتر کردن در معاملات مختلف است. @@ -2790,14 +2797,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,با موفقیت حذف تمام معاملات مربوط به این شرکت! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,همانطور که در تاریخ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,عفو مشروط -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,به طور پیش فرض انبار سهام مورد الزامی است. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,به طور پیش فرض انبار سهام مورد الزامی است. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},پرداخت حقوق و دستمزد برای ماه {0} و {1} سال DocType: Stock Settings,Auto insert Price List rate if missing,درج خودرو نرخ لیست قیمت اگر از دست رفته apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,کل مقدار پرداخت ,Transferred Qty,انتقال تعداد apps/erpnext/erpnext/config/learn.py +11,Navigating,ناوبری apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,برنامه ریزی -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,را زمان ورود دسته ای +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,را زمان ورود دسته ای apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,صادر DocType: Project,Total Billing Amount (via Time Logs),کل مقدار حسابداری (از طریق زمان سیاههها) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,ما فروش این مورد @@ -2805,7 +2812,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,تعداد باید بیشتر از 0 باشد DocType: Journal Entry,Cash Entry,نقدی ورودی DocType: Sales Partner,Contact Desc,تماس با محصول، -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.",نوع برگ مانند گاه به گاه، بیمار و غیره +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.",نوع برگ مانند گاه به گاه، بیمار و غیره DocType: Email Digest,Send regular summary reports via Email.,ارسال گزارش خلاصه به طور منظم از طریق ایمیل. DocType: Brand,Item Manager,مدیریت آیتم ها DocType: Cost Center,Add rows to set annual budgets on Accounts.,اضافه کردن ردیف به راه بودجه سالانه در حساب. @@ -2820,7 +2827,7 @@ DocType: GL Entry,Party Type,نوع حزب apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,مواد اولیه را نمی توان همان آیتم های اصلی DocType: Item Attribute Value,Abbreviation,مخفف apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,authroized نه از {0} بیش از محدودیت -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,کارشناسی ارشد قالب حقوق و دستمزد. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,کارشناسی ارشد قالب حقوق و دستمزد. DocType: Leave Type,Max Days Leave Allowed,حداکثر روز مرخصی مجاز apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,مجموعه قوانین مالیاتی برای سبد خرید DocType: Payment Tool,Set Matching Amounts,مقدار تطبیق تنظیم @@ -2833,7 +2840,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,به ن DocType: Stock Settings,Role Allowed to edit frozen stock,نقش مجاز به ویرایش سهام منجمد ,Territory Target Variance Item Group-Wise,منطقه مورد هدف واریانس گروه حکیم apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,همه گروه های مشتری -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} الزامی است. شاید رکورد ارز برای {1} به {2} ایجاد نمی شود. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} الزامی است. شاید رکورد ارز برای {1} به {2} ایجاد نمی شود. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,قالب مالیات اجباری است. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,حساب {0}: حساب مرجع {1} وجود ندارد DocType: Purchase Invoice Item,Price List Rate (Company Currency),لیست قیمت نرخ (شرکت ارز) @@ -2853,8 +2860,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,مورد جزئیات ,Item-wise Price List Rate,مورد عاقلانه لیست قیمت نرخ apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,نقل قول تامین کننده DocType: Quotation,In Words will be visible once you save the Quotation.,به عبارت قابل مشاهده خواهد بود هنگامی که شما نقل قول را نجات دهد. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} متوقف شده است -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},بارکد {0} در حال حاضر در مورد استفاده {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} متوقف شده است +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},بارکد {0} در حال حاضر در مورد استفاده {1} DocType: Lead,Add to calendar on this date,افزودن به تقویم در این تاریخ apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,مشاهده قوانین برای اضافه کردن هزینه های حمل و نقل. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,رویدادهای نزدیک @@ -2880,8 +2887,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,ف apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,حداقل یک انبار الزامی است DocType: Serial No,Out of Warranty,خارج از ضمانت DocType: BOM Replace Tool,Replace,جایگزین کردن -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} در برابر فاکتور فروش {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,لطفا واحد به طور پیش فرض اندازه گیری وارد کنید +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} در برابر فاکتور فروش {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,لطفا واحد به طور پیش فرض اندازه گیری وارد کنید DocType: Purchase Invoice Item,Project Name,نام پروژه DocType: Supplier,Mention if non-standard receivable account,ذکر است اگر حسابهای دریافتنی غیر استاندارد DocType: Journal Entry Account,If Income or Expense,اگر درآمد یا هزینه @@ -2906,7 +2913,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,سال مالی: {0} می کند وجود دارد نمی DocType: Currency Exchange,To Currency,به ارز DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,اجازه می دهد کاربران زیر به تصویب برنامه های کاربردی را برای روز مسدود کند. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,انواع ادعای هزینه. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,انواع ادعای هزینه. DocType: Item,Taxes,عوارض apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,پرداخت و تحویل داده نشده است DocType: Project,Default Cost Center,مرکز هزینه به طور پیش فرض @@ -2936,7 +2943,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},ردیف # {0}: سریال نه {1} با مطابقت ندارد {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,مرخصی گاه به گاه DocType: Batch,Batch ID,دسته ID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},توجه: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},توجه: {0} ,Delivery Note Trends,روند تحویل توجه داشته باشید apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,خلاصه این هفته apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} باید مورد خریداری شده و یا زیر قرارداد را در ردیف شود {1} @@ -2976,6 +2983,7 @@ DocType: Project Task,Pending Review,در انتظار نقد و بررسی apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,به پرداخت اینجا را کلیک کنید DocType: Task,Total Expense Claim (via Expense Claim),ادعای هزینه کل (از طریق ادعای هزینه) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,شناسه مشتری +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,علامت گذاری به عنوان غایب apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,به زمان باید بیشتر از از زمان است DocType: Journal Entry Account,Exchange Rate,مظنهء ارز apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,سفارش فروش {0} است ارسال نشده @@ -3023,7 +3031,7 @@ DocType: Item Group,Default Expense Account,حساب پیش فرض هزینه DocType: Employee,Notice (days),مقررات (روز) DocType: Tax Rule,Sales Tax Template,قالب مالیات بر فروش DocType: Employee,Encashment Date,Encashment عضویت -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry",علیه کوپن نوع باید یکی از سفارش خرید، خرید فاکتور یا مجله ورودی است +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry",علیه کوپن نوع باید یکی از سفارش خرید، خرید فاکتور یا مجله ورودی است DocType: Account,Stock Adjustment,تنظیم سهام apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},هزینه به طور پیش فرض برای فعالیت نوع فعالیت وجود دارد - {0} DocType: Production Order,Planned Operating Cost,هزینه های عملیاتی برنامه ریزی شده @@ -3077,6 +3085,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,ارسال فعال ورود DocType: BOM,Rate Of Materials Based On,نرخ مواد بر اساس apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Analtyics پشتیبانی +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,همه موارد را از حالت انتخاب خارج کنید apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},شرکت در انبارها از دست رفته {0} DocType: POS Profile,Terms and Conditions,شرایط و ضوابط apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},به روز باید در سال مالی باشد. با فرض به روز = {0} @@ -3098,7 +3107,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'",برای تنظیم این سال مالی به عنوان پیش فرض، بر روی "تنظیم به عنوان پیش فرض ' apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),راه اندازی سرور های دریافتی برای ایمیل پشتیبانی شناسه. (به عنوان مثال support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,کمبود تعداد -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,نوع مورد {0} با ویژگی های مشابه وجود دارد +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,نوع مورد {0} با ویژگی های مشابه وجود دارد DocType: Salary Slip,Salary Slip,لغزش حقوق و دستمزد apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,'تا تاریخ' مورد نیاز است DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.",تولید بسته بندی ورقه برای بسته تحویل داده می شود. مورد استفاده به اطلاع تعداد بسته، محتویات بسته و وزن آن است. @@ -3146,7 +3155,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,مشخ DocType: Item Attribute Value,Attribute Value,موجودیت مقدار apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}",شناسه ایمیل باید منحصر به فرد، در حال حاضر وجود دارد برای {0} ,Itemwise Recommended Reorder Level,Itemwise توصیه ترتیب مجدد سطح -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,لطفا انتخاب کنید {0} برای اولین بار +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,لطفا انتخاب کنید {0} برای اولین بار DocType: Features Setup,To get Item Group in details table,برای دریافت مورد گروه در جدول جزئیات apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,دسته {0} از {1} مورد تمام شده است. DocType: Sales Invoice,Commission,کمیسیون @@ -3190,7 +3199,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,دریافت کوپن های برجسته DocType: Warranty Claim,Resolved By,حل DocType: Appraisal,Start Date,تاریخ شروع -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,اختصاص برگ برای یک دوره. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,اختصاص برگ برای یک دوره. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,چک و واریز وجه به اشتباه پاک apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,به منظور بررسی اینجا را کلیک کنید apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,حساب {0}: شما نمی توانید خود را به عنوان پدر و مادر اختصاص حساب @@ -3210,7 +3219,7 @@ DocType: Employee,Educational Qualification,صلاحیت تحصیلی DocType: Workstation,Operating Costs,هزینه های عملیاتی DocType: Employee Leave Approver,Employee Leave Approver,کارمند مرخصی تصویب apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} با موفقیت به لیست خبرنامه اضافه شده است. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},ردیف {0}: ورود ترتیب مجدد در حال حاضر برای این انبار وجود دارد {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},ردیف {0}: ورود ترتیب مجدد در حال حاضر برای این انبار وجود دارد {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.",نمی تواند به عنوان از دست رفته اعلام، به دلیل عبارت ساخته شده است. DocType: Purchase Taxes and Charges Template,Purchase Master Manager,خرید استاد مدیر apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,سفارش تولید {0} باید ارائه شود @@ -3234,7 +3243,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,فاکتور فروش {0} در حال حاضر ارائه شده است apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,تاریخ تکمیل DocType: Purchase Invoice Item,Amount (Company Currency),مقدار (شرکت ارز) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,واحد سازمانی (گروه آموزشی) استاد. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,واحد سازمانی (گروه آموزشی) استاد. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,لطفا NOS تلفن همراه معتبر وارد کنید DocType: Budget Detail,Budget Detail,جزئیات بودجه apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,لطفا قبل از ارسال پیام را وارد کنید @@ -3250,13 +3259,13 @@ DocType: Purchase Receipt Item,Received and Accepted,دریافت و پذیرف ,Serial No Service Contract Expiry,سریال بدون خدمات قرارداد انقضاء DocType: Item,Unit of Measure Conversion,واحد تبدیل اندازه گیری apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,کارمند نمی تواند تغییر کند -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,شما نمی توانید اعتباری و بدهی همان حساب در همان زمان +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,شما نمی توانید اعتباری و بدهی همان حساب در همان زمان DocType: Naming Series,Help HTML,راهنما HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},بین وزنها مجموع اختصاص داده باید 100٪ باشد. این {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},کمک هزینه برای بیش از {0} عبور برای مورد {1} DocType: Address,Name of person or organization that this address belongs to.,نام و نام خانوادگی شخص و یا سازمانی که این آدرس متعلق به. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,تامین کنندگان شما -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,می توانید مجموعه ای نه به عنوان از دست داده تا سفارش فروش ساخته شده است. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,می توانید مجموعه ای نه به عنوان از دست داده تا سفارش فروش ساخته شده است. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,یکی دیگر از ساختار حقوق {0} برای کارکنان فعال است {1}. لطفا مطمئن وضعیت خود را غیر فعال 'به عنوان خوانده شده DocType: Purchase Invoice,Contact,تماس apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,دریافت شده از @@ -3266,11 +3275,11 @@ DocType: Item,Has Serial No,دارای سریال بدون DocType: Employee,Date of Issue,تاریخ صدور apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: از {0} برای {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},ردیف # {0}: تنظیم کننده برای آیتم {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,وب سایت تصویر {0} متصل به مورد {1} را نمی توان یافت +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,وب سایت تصویر {0} متصل به مورد {1} را نمی توان یافت DocType: Issue,Content Type,نوع محتوا apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,کامپیوتر DocType: Item,List this Item in multiple groups on the website.,فهرست این مورد در گروه های متعدد بر روی وب سایت. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,لطفا گزینه ارز چند اجازه می دهد تا حساب با ارز دیگر را بررسی کنید +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,لطفا گزینه ارز چند اجازه می دهد تا حساب با ارز دیگر را بررسی کنید apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,مورد: {0} در سیستم وجود ندارد apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,شما مجاز به تنظیم مقدار ثابت شده نیستید DocType: Payment Reconciliation,Get Unreconciled Entries,دریافت Unreconciled مطالب @@ -3280,14 +3289,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,چه کار DocType: Delivery Note,To Warehouse,به انبار apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},حساب {0} است بیش از یک بار برای سال مالی وارد شده است {1} ,Average Commission Rate,متوسط نرخ کمیسیون -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,"""دارای شماره سریال"" برای موارد غیر انباری نمی تواند ""بله"" باشد" +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,"""دارای شماره سریال"" برای موارد غیر انباری نمی تواند ""بله"" باشد" apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,حضور و غیاب می تواند برای تاریخ های آینده باشد مشخص شده DocType: Pricing Rule,Pricing Rule Help,قانون قیمت گذاری راهنما DocType: Purchase Taxes and Charges,Account Head,سر حساب apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,به روز رسانی هزینه های اضافی برای محاسبه هزینه فرود آمد از اقلام apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,برق DocType: Stock Entry,Total Value Difference (Out - In),تفاوت ارزش ها (خارج - در) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,ردیف {0}: نرخ ارز الزامی است +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,ردیف {0}: نرخ ارز الزامی است apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},ID کاربر برای کارمند تنظیم نشده {0} DocType: Stock Entry,Default Source Warehouse,به طور پیش فرض منبع انبار DocType: Item,Customer Code,کد مشتری @@ -3306,15 +3315,15 @@ DocType: Notification Control,Sales Invoice Message,فاکتور فروش پیا apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,با بستن حساب {0} باید از نوع مسئولیت / حقوق صاحبان سهام می باشد DocType: Authorization Rule,Based On,بر اساس DocType: Sales Order Item,Ordered Qty,دستور داد تعداد -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,مورد {0} غیر فعال است +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,مورد {0} غیر فعال است DocType: Stock Settings,Stock Frozen Upto,سهام منجمد تا حد apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},دوره و دوره به تاریخ برای تکرار اجباری {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,فعالیت پروژه / وظیفه. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,تولید حقوق و دستمزد ورقه +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,تولید حقوق و دستمزد ورقه apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}",خرید باید بررسی شود، اگر قابل استفاده برای عنوان انتخاب شده {0} apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,تخفیف باید کمتر از 100 باشد DocType: Purchase Invoice,Write Off Amount (Company Currency),ارسال کردن مقدار (شرکت ارز) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,ردیف # {0}: لطفا مقدار سفارش مجدد مجموعه +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,ردیف # {0}: لطفا مقدار سفارش مجدد مجموعه DocType: Landed Cost Voucher,Landed Cost Voucher,فرود کوپن هزینه apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},لطفا {0} DocType: Purchase Invoice,Repeat on Day of Month,تکرار در روز از ماه @@ -3366,7 +3375,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,پیش فرض کار در انبار پیشرفت apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,تنظیمات پیش فرض برای انجام معاملات حسابداری. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,تاریخ انتظار نمی رود می تواند قبل از درخواست عضویت مواد است -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,مورد {0} باید مورد فروش می شود +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,مورد {0} باید مورد فروش می شود DocType: Naming Series,Update Series Number,به روز رسانی سری شماره DocType: Account,Equity,انصاف DocType: Sales Order,Printing Details,اطلاعات چاپ @@ -3418,7 +3427,7 @@ DocType: Task,Review Date,بررسی تاریخ DocType: Purchase Invoice,Advance Payments,پیش پرداخت DocType: Purchase Taxes and Charges,On Net Total,در مجموع خالص apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,انبار هدف در ردیف {0} باید به همان ترتیب تولید می شود -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,بدون اجازه به استفاده از ابزار پرداخت +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,بدون اجازه به استفاده از ابزار پرداخت apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,'هشدار از طریق آدرس ایمیل' برای دوره ی زمانی محدود %s مشخص نشده است apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,نرخ ارز می تواند پس از ساخت ورودی با استفاده از یک ارز دیگر، نمی توان تغییر داد DocType: Company,Round Off Account,دور کردن حساب @@ -3441,7 +3450,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,تعداد آیتم به دست آمده پس از تولید / repacking از مقادیر داده شده از مواد خام DocType: Payment Reconciliation,Receivable / Payable Account,حساب دریافتنی / پرداختنی DocType: Delivery Note Item,Against Sales Order Item,علیه سفارش فروش مورد -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},لطفا موجودیت مقدار برای صفت مشخص {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},لطفا موجودیت مقدار برای صفت مشخص {0} DocType: Item,Default Warehouse,به طور پیش فرض انبار DocType: Task,Actual End Date (via Time Logs),واقعی پایان تاریخ (از طریق زمان سیاههها) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},بودجه می تواند در برابر حساب گروه اختصاص {0} @@ -3466,10 +3475,10 @@ DocType: Lead,Blog Subscriber,وبلاگ مشترک apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,ایجاد قوانین برای محدود کردن معاملات بر اساس ارزش. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day",اگر علامت زده شود، هیچ مجموع. از روز کاری شامل تعطیلات، و این خواهد شد که ارزش حقوق پستها در طول روز کاهش DocType: Purchase Invoice,Total Advance,جستجوی پیشرفته مجموع -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,پردازش حقوق و دستمزد +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,پردازش حقوق و دستمزد DocType: Opportunity Item,Basic Rate,نرخ پایه DocType: GL Entry,Credit Amount,مقدار وام -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,تنظیم به عنوان از دست رفته +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,تنظیم به عنوان از دست رفته apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,دریافت پرداخت توجه DocType: Supplier,Credit Days Based On,روز اعتباری بر اساس DocType: Tax Rule,Tax Rule,قانون مالیات @@ -3499,7 +3508,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,تعداد پذیرفته شد apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} وجود ندارد apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,لوایح مطرح شده به مشتریان. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,پروژه کد -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},ردیف بدون {0}: مبلغ نمی تواند بیشتر از انتظار مقدار برابر هزینه ادعای {1}. در انتظار مقدار است {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},ردیف بدون {0}: مبلغ نمی تواند بیشتر از انتظار مقدار برابر هزینه ادعای {1}. در انتظار مقدار است {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} مشترک افزوده شد DocType: Maintenance Schedule,Schedule,برنامه DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""",تعریف بودجه برای این مرکز هزینه. برای تنظیم اقدام بودجه، نگاه کنید به "فهرست شرکت" @@ -3560,19 +3569,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,نمایش POS DocType: Payment Gateway Account,Payment URL Message,پرداخت URL پیام apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.",فصلی برای تنظیم بودجه، اهداف و غیره -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,ردیف {0}: مبلغ پرداخت نمی تواند بیشتر از مقدار برجسته +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,ردیف {0}: مبلغ پرداخت نمی تواند بیشتر از مقدار برجسته apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,مجموع پرداخت نشده -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,زمان ورود است قابل پرداخت نیست -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants",مورد {0} یک قالب است، لطفا یکی از انواع آن را انتخاب کنید +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,زمان ورود است قابل پرداخت نیست +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants",مورد {0} یک قالب است، لطفا یکی از انواع آن را انتخاب کنید apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,خریدار apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,پرداخت خالص نمی تونه منفی -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,لطفا علیه کوپن دستی وارد کنید +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,لطفا علیه کوپن دستی وارد کنید DocType: SMS Settings,Static Parameters,پارامترهای استاتیک DocType: Purchase Order,Advance Paid,پیش پرداخت DocType: Item,Item Tax,مالیات مورد apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,مواد به کننده apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,فاکتور مالیات کالاهای داخلی DocType: Expense Claim,Employees Email Id,کارکنان پست الکترونیکی شناسه +DocType: Employee Attendance Tool,Marked Attendance,حضور و غیاب مشخص شده apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,بدهی های جاری apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,ارسال اس ام اس انبوه به مخاطبین خود DocType: Purchase Taxes and Charges,Consider Tax or Charge for,مالیات و یا هزینه در نظر بگیرید برای @@ -3595,7 +3605,7 @@ DocType: Item Attribute,Numeric Values,مقادیر عددی apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,ضمیمه لوگو DocType: Customer,Commission Rate,کمیسیون نرخ apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,متغیر را -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,برنامه بلوک مرخصی توسط بخش. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,برنامه بلوک مرخصی توسط بخش. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,سبد خرید خالی است DocType: Production Order,Actual Operating Cost,هزینه های عملیاتی واقعی apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,ریشه را نمیتوان ویرایش کرد. @@ -3614,7 +3624,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,به طور خودکار ایجاد درخواست مواد اگر مقدار می افتد در زیر این سطح ,Item-wise Purchase Register,مورد عاقلانه ثبت نام خرید DocType: Batch,Expiry Date,تاریخ انقضا -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item",برای تنظیم سطح دوباره سفارش دادن، مورد باید مورد خرید و یا مورد ساخت می باشد +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item",برای تنظیم سطح دوباره سفارش دادن، مورد باید مورد خرید و یا مورد ساخت می باشد ,Supplier Addresses and Contacts,آدرس منبع و اطلاعات تماس apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,لطفا ابتدا دسته را انتخاب کنید apps/erpnext/erpnext/config/projects.py +18,Project master.,کارشناسی ارشد پروژه. diff --git a/erpnext/translations/fi.csv b/erpnext/translations/fi.csv index b2fb9f410c..089b31da6c 100644 --- a/erpnext/translations/fi.csv +++ b/erpnext/translations/fi.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,Luotto Yritys Valuutta DocType: Delivery Note,Installation Status,asennus tila apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},hyväksyttyjen + hylättyjen yksikkömäärä on sama kuin tuotteiden vastaanotettu määrä {0} DocType: Item,Supply Raw Materials for Purchase,toimita raaka-aineita ostoon -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,tuotteen {0} tulee olla ostotuote +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,tuotteen {0} tulee olla ostotuote DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","lataa mallipohja, täytä tarvittavat tiedot ja liitä muokattu tiedosto, kaikki päivämäärä- ja työntekijäyhdistelmät tulee malliin valitun kauden ja olemassaolevien osallistumistietueiden mukaan" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,tuote {0} ei ole aktiivinen tai sen elinkaari loppu DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,päivitetään kun myyntilasku on lähetetty -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","sisällytä verorivi {0} tuotteen tasoon, verot riveillä {1} tulee myös sisällyttää" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,henkilöstömoduulin asetukset +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","sisällytä verorivi {0} tuotteen tasoon, verot riveillä {1} tulee myös sisällyttää" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,henkilöstömoduulin asetukset DocType: SMS Center,SMS Center,tekstiviesti keskus DocType: BOM Replace Tool,New BOM,uusi BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,erän aikaloki laskutukseen @@ -198,10 +198,10 @@ DocType: Offer Letter,Select Terms and Conditions,valitse ehdot ja säännöt DocType: Production Planning Tool,Sales Orders,myyntitilaukset DocType: Purchase Taxes and Charges,Valuation,arvo ,Purchase Order Trends,Ostotilaus Trendit -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,kohdistaa poistumisen vuodelle +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,kohdistaa poistumisen vuodelle DocType: Earning Type,Earning Type,ansio tyyppi DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,poista kapasiteettisuunnittelu ja aikaseuranta käytöstä -DocType: Bank Reconciliation,Bank Account,pankkitili +DocType: Bank Reconciliation,Bank Account,Pankkitili DocType: Leave Type,Allow Negative Balance,hyväksy negatiivinen tase DocType: Selling Settings,Default Territory,oletus alue apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +53,Television,televisio @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,tuote verkkosivujen asetukset DocType: Payment Tool,Reference No,Viitenumero apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,poistuminen estetty -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},tuote {0} on saavuttanut elinkaaren lopun {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},tuote {0} on saavuttanut elinkaaren lopun {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Vuotuinen DocType: Stock Reconciliation Item,Stock Reconciliation Item,"varaston täsmäytys, tuote" DocType: Stock Entry,Sales Invoice No,"myyntilasku, nro" @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,minimi tilaus yksikkömäärä DocType: Pricing Rule,Supplier Type,toimittaja tyyppi DocType: Item,Publish in Hub,Julkaista Hub ,Terretory,alue -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,tuote {0} on peruutettu +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,tuote {0} on peruutettu apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,materiaalipyyntö DocType: Bank Reconciliation,Update Clearance Date,päivitä tilityspäivä DocType: Item,Purchase Details,oston lisätiedot @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Hylätty Määrä DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","kenttä on saatavilla lähetteellä, tarjouksella, myyntilaskulla ja myyntitilauksella" DocType: SMS Settings,SMS Sender Name,tekstiviesti lähettäjän nimi DocType: Contact,Is Primary Contact,ensisijainen yhteystieto +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Aika Log on panostettiin laskutusta DocType: Notification Control,Notification Control,Ilmoittaminen Ohjaus DocType: Lead,Suggestions,ehdotuksia DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,"tuoteryhmä työkalu, aseta budjetit tällä, voit tehdä kausiluonteisen budjetin asettamalla jaksotuksen" apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},syötä emotiliryhmä varastolle {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Maksu vastaan {0} {1} ei voi olla suurempi kuin jäljellä {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Maksu vastaan {0} {1} ei voi olla suurempi kuin jäljellä {2} DocType: Supplier,Address HTML,osoite HTML DocType: Lead,Mobile No.,Mobile No. DocType: Maintenance Schedule,Generate Schedule,muodosta aikataulu @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,synkronoi Hub:lla apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,väärä salasana DocType: Item,Variant Of,mallista -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,tuote {0} tulee olla palvelutuote apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',"valmiit yksikkömäärä ei voi olla suurempi kuin ""tuotannon määrä""" DocType: Period Closing Voucher,Closing Account Head,tilin otsikon sulkeminen DocType: Employee,External Work History,ulkoinen työhistoria @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,Tiedote DocType: Stock Settings,Notify by Email on creation of automatic Material Request,ilmoita automaattisen materiaalipyynnön luomisesta sähköpostitse DocType: Journal Entry,Multi Currency,Multi Valuutta DocType: Payment Reconciliation Invoice,Invoice Type,lasku tyyppi -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,lähete +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,lähete apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,verojen perusmääritykset apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,"maksukirjausta on muutettu siirron jälkeen, siirrä se uudelleen" -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} vero on kirjattu kahdesti +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} vero on kirjattu kahdesti apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Yhteenveto tällä viikolla ja keskeneräisten toimien DocType: Workstation,Rent Cost,vuokrakustannukset apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Ole hyvä ja valitse kuukausi ja vuosi @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,Voimassa Maat DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","kaikkiin tuontiin liittyviin asakirjoihin kuten toimittajan ostotarjous, ostotilaus, ostolasku, ostokuitti, jne on saatavilla esim valuutta, muuntotaso, vienti yhteensä, tuonnin loppusumma ym" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"tämä tuote on mallipohja, eikä sitä voi käyttää tapahtumissa, tuotteen tuntomerkit kopioidaan ellei 'älä kopioi' ole aktivoitu" apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,pidetään kokonaistilauksena -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","työntekijän nimitys (myyjä, varastomies jne)." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","työntekijän nimitys (myyjä, varastomies jne)." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,Syötä "Toista päivänä Kuukausi 'kentän arvo DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,"taso, jolla asiakkaan valuutta muunnetaan asiakkaan käyttämäksi perusvaluutaksi" DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","BOM on saatavana, lähetteessä, ostolaskussa, tuotannon tilauksessa, ostotilauksessa, ostokuitissa, myyntilaskussa, myyntilauksessa, varaston kirjauksessa ja aikataulukossa" @@ -355,7 +355,7 @@ DocType: Workstation,Consumable Cost,käytettävät kustannukset apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) tulee olla rooli 'poistumisen hyväksyjä' DocType: Purchase Receipt,Vehicle Date,Ajoneuvo Päivämäärä apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Lääketieteellinen -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,häviön syy +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,häviön syy apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},työasema on suljettu seuraavina päivinä lomapäivien {0} mukaan apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Mahdollisuudet DocType: Employee,Single,yksittäinen @@ -383,14 +383,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,välityskumppani DocType: Account,Old Parent,Vanha Parent DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,"muokkaa johdantotekstiä joka lähetetään sähköpostin osana, joka tapahtumalla on oma johdantoteksi" +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Älä lisää symboleja (esim. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,"myynninhallinta, valvonta" apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,yleiset asetukset valmistusprosesseille DocType: Accounts Settings,Accounts Frozen Upto,tilit jäädytetty toistaiseksi / asti DocType: SMS Log,Sent On,lähetetty -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Taito {0} valittu useita kertoja määritteet taulukossa +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Taito {0} valittu useita kertoja määritteet taulukossa DocType: HR Settings,Employee record is created using selected field. ,työntekijä tietue luodaan käyttämällä valittua kenttää DocType: Sales Order,Not Applicable,ei sovellettu -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,lomien valvonta +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,lomien valvonta DocType: Material Request Item,Required Date,pyydetty päivä DocType: Delivery Note,Billing Address,laskutusosoite apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,syötä tuotekoodi @@ -426,7 +427,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,syötä varasto jonne materiaalipyyntö ohjataan DocType: Production Order,Additional Operating Cost,lisätoimintokustannukset apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,kosmetiikka -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items",seuraavat ominaisuudet tulee olla samat molemmilla tuotteilla jotta ne voi sulauttaa +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items",seuraavat ominaisuudet tulee olla samat molemmilla tuotteilla jotta ne voi sulauttaa DocType: Shipping Rule,Net Weight,Netto DocType: Employee,Emergency Phone,hätänumero ,Serial No Warranty Expiry,sarjanumeron takuu on päättynyt @@ -481,17 +482,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Laskutus ja Toiminnan tila apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Toista asiakkaat DocType: Leave Control Panel,Allocate,Jakaa -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Myynti Return +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Myynti Return DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,"valitse ne myyntitilaukset, josta haluat tehdä tuotannon tilauksen" DocType: Item,Delivered by Supplier (Drop Ship),Toimitetaan Toimittaja (Drop Ship) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,palkkakomponentteja +apps/erpnext/erpnext/config/hr.py +128,Salary components.,palkkakomponentteja apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,tietokanta potentiaalisista asiakkaista DocType: Authorization Rule,Customer or Item,Asiakas tai Tuote apps/erpnext/erpnext/config/crm.py +17,Customer database.,asiakasrekisteri DocType: Quotation,Quotation To,tarjoukseen DocType: Lead,Middle Income,keskitason tulo apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Opening (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Oletus mittayksikkö Tuote {0} ei voi muuttaa suoraan, koska olet jo tehnyt joitakin tapahtuma (s) toisen UOM. Sinun täytyy luoda uusi Tuote käyttää eri Default UOM." +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Oletus mittayksikkö Tuote {0} ei voi muuttaa suoraan, koska olet jo tehnyt joitakin tapahtuma (s) toisen UOM. Sinun täytyy luoda uusi Tuote käyttää eri Default UOM." apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,kohdennettu arvomäärä ei voi olla negatiivinen DocType: Purchase Order Item,Billed Amt,"laskutettu, pankkipääte" DocType: Warehouse,A logical Warehouse against which stock entries are made.,"perustettu varasto, minne varastokirjaukset tehdään" @@ -510,14 +511,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,myynnin verot ja maksut DocType: Employee,Organization Profile,Organisaatio Profile apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,numeroi käytettävät sarjat kohdasta osallistumis asetukset> sarjojen numerointi DocType: Employee,Reason for Resignation,eroamisen syy -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,mallipohja kehityskeskusteluihin +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,mallipohja kehityskeskusteluihin DocType: Payment Reconciliation,Invoice/Journal Entry Details,"lasku / päiväkirjakirjaus, lisätiedot" apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' ei ole tilikaudella {2} DocType: Buying Settings,Settings for Buying Module,ostomoduulin asetukset apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,Anna ostokuitti ensin DocType: Buying Settings,Supplier Naming By,toimittajan nimennyt DocType: Activity Type,Default Costing Rate,Oletus Kustannuslaskenta Hinta -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,huoltoaikataulu +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,huoltoaikataulu apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","hinnoittelusääntöjen perusteet suodatetaan asiakkaan, asiakasryhmän, alueen, toimittajan, toimittaja tyypin, myyntikumppanin jne mukaan" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Nettomuutos Inventory DocType: Employee,Passport Number,passin numero @@ -556,7 +557,7 @@ DocType: Purchase Invoice,Quarterly,Neljännesvuosittain DocType: Selling Settings,Delivery Note Required,lähete vaaditaan DocType: Sales Order Item,Basic Rate (Company Currency),perustaso (yrityksen valuutta) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush raaka-aineet perustuvat -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,syötä tuotten lisätiedot +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,syötä tuotten lisätiedot DocType: Purchase Receipt,Other Details,muut lisätiedot DocType: Account,Accounts,tilit apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Markkinointi @@ -569,7 +570,7 @@ DocType: Employee,Provide email id registered in company,tarkista sähköpostitu DocType: Hub Settings,Seller City,myyjä kaupunki DocType: Email Digest,Next email will be sent on:,Seuraava sähköpostiviesti lähetetään: DocType: Offer Letter Term,Offer Letter Term,Tarjoa Kirje Term -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,tuotteella on useampia malleja +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,tuotteella on useampia malleja apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,tuotetta {0} ei löydy DocType: Bin,Stock Value,varastoarvo apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,tyyppipuu @@ -577,7 +578,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,käytetty yksikkömäärä / y DocType: Serial No,Warranty Expiry Date,takuu umpeutumispäivä DocType: Material Request Item,Quantity and Warehouse,Määrä ja Warehouse DocType: Sales Invoice,Commission Rate (%),provisio taso (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","tositetyypin kirjaus tulee kohdistaa myyntitilaukseen, myyntilaskuun tai päiväkirjaan" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","tositetyypin kirjaus tulee kohdistaa myyntitilaukseen, myyntilaskuun tai päiväkirjaan" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,ilmakehä DocType: Journal Entry,Credit Card Entry,luottokorttikirjaus apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,tehtävän aihe @@ -632,7 +633,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 7. Total: Cumulative total to this point. 8. Enter Row: If based on ""Previous Row Total"" you can select the row number which will be taken as a base for this calculation (default is the previous row). 9. Is this Tax included in Basic Rate?: If you check this, it means that this tax will not be shown below the item table, but will be included in the Basic Rate in your main item table. This is useful where you want give a flat price (inclusive of all taxes) price to customers.","perusveromallipohja, jota voidaan käyttää kaikkiin myyntitapahtumiin. tämä mallipohja voi sisältää listan perusveroista ja myös muita veroja, kuten ""toimitus"", ""vakuutus"", ""käsittely"" jne #### huomaa että tänne määritelty veroprosentti tulee olemaan oletus kaikille **tuotteille**, mikäli **tuotteella** on eri veroprosentti tulee se määritellä **tuotteen vero** taulukossa **tuote** työkalussa. #### sarakkeiden kuvaus 1. laskennan tyyppi: - tämä voi olla **netto yhteensä** (eli summa perusarvosta). - **edellisen rivin summa / arvomäärä ** (kumulatiivisille veroille tai maksuille, mikäli tämän on valittu edellisen rivin vero lasketaan prosentuaalisesti (verotaulukon) mukaan määrästä tai summasta 2. tilin otsikko: tilin tilikirja, johon verot varataan 3. kustannuspaikka: mikäli vero / maksu on tuloa (kuten toimitus) tai kulua tulee se varata kustannuspaikkaa vastaan 4. kuvaus: veron kuvaus (joka tulostetaan laskulla / tositteella) 5. taso: veroprosentti. 6. arvomäärä: veron määrä 7. yhteensä: kumulatiivinen yhteissumma tähän asti. 8. syötä rivi: mikäli käytetään riviä ""edellinen rivi yhteensä"", voit valita rivin numeron, jota käytetään laskelman pohjana 9. onko tämä vero perustasoa: mikäli täppäät tämän verovalintaa ei näy alhaalla tuotevalikossa, mutta liitetään perusverotuotteisiin tuotteen pääsivulla, tämä helpottaa könttisumman antoa asiakkaalle (sisältäen kaikki verot)" -DocType: Employee,Bank A/C No.,pankki A / C nro +DocType: Employee,Bank A/C No.,Pankki A / C nro DocType: Expense Claim,Project,Hanke DocType: Quality Inspection Reading,Reading 7,Lukeminen 7 DocType: Address,Personal,henkilökohtainen @@ -645,10 +646,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,vastattavat apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,sanktioitujen arvomäärä ei voi olla suurempi kuin vaatimuksien arvomäärä rivillä {0}. DocType: Company,Default Cost of Goods Sold Account,oletus myytyjen tuotteiden arvo tili -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Hinnasto ei valittu +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Hinnasto ei valittu DocType: Employee,Family Background,taustaperhe DocType: Process Payroll,Send Email,lähetä sähköposti -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Varoitus: Virheellinen Liite {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Varoitus: Virheellinen Liite {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Ei oikeuksia DocType: Company,Default Bank Account,oletus pankkitili apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first",valitse osapuoli tyyppi saadaksesi osapuolen mukaisen suodatuksen @@ -657,7 +658,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +292,Nos,Nos DocType: Item,Items with higher weightage will be shown higher,tuotteet joilla on korkeampi painoarvo nätetään ylempänä DocType: Bank Reconciliation Detail,Bank Reconciliation Detail,pankin täsmäytys lisätiedot apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +668,My Invoices,omat laskut -apps/erpnext/erpnext/hr/doctype/leave_control_panel/leave_control_panel.py +43,No employee found,Yksikään työntekijä ei löytynyt +apps/erpnext/erpnext/hr/doctype/leave_control_panel/leave_control_panel.py +43,No employee found,Yhtään työntekijää ei löytynyt DocType: Purchase Order,Stopped,pysäytetty DocType: Item,If subcontracted to a vendor,alihankinta toimittajalle apps/erpnext/erpnext/manufacturing/page/bom_browser/bom_browser.js +17,Select BOM to start,aloittaaksesi valitse BOM @@ -676,7 +677,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,asiak DocType: Features Setup,"To enable ""Point of Sale"" features",Jotta "Point of Sale" ominaisuuksia DocType: Bin,Moving Average Rate,liukuva keskiarvo taso DocType: Production Planning Tool,Select Items,valitse tuotteet -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} kuittia vastaan {1} päivätty {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} kuittia vastaan {1} päivätty {2} DocType: Maintenance Visit,Completion Status,katselmus tila DocType: Sales Invoice Item,Target Warehouse,tavoite varasto DocType: Item,Allow over delivery or receipt upto this percent,Salli yli toimitus- tai kuitti lähetettävään tähän prosenttia @@ -736,7 +737,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,valu apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},aika-aukkoa ei löydy seuraavaan {0} päivän toiminnolle {1} DocType: Production Order,Plan material for sub-assemblies,suunnittele materiaalit alituotantoon apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} tulee olla aktiivinen -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,valitse ensin asiakirjan tyyppi +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,valitse ensin asiakirjan tyyppi apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Siirry ostoskoriin apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,peruuta materiaalikäynti {0} ennen peruutat huoltokäynnin DocType: Salary Slip,Leave Encashment Amount,"perintä, arvomäärä" @@ -754,7 +755,7 @@ DocType: Purchase Receipt,Range,Alue DocType: Supplier,Default Payable Accounts,oletus maksettava tilit apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,työntekijä {0} ei ole aktiivinen tai ei ole olemassa DocType: Features Setup,Item Barcode,tuote viivakoodi -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,tuotemallit {0} päivitetty +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,tuotemallit {0} päivitetty DocType: Quality Inspection Reading,Reading 6,Lukeminen 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,"ostolasku, edistynyt" DocType: Address,Shop,osta @@ -777,7 +778,7 @@ DocType: Salary Slip,Total in words,sanat yhteensä DocType: Material Request Item,Lead Time Date,"virtausaika, päiväys" apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,on pakollinen. Ehkä Valuutanvaihto tietuetta ei luotu apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Rivi # {0}: Ilmoittakaa Sarjanumero alamomentin {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","tuotteet 'tavarakokonaisuudessa' varasto, sarjanumero ja eränumero pidetään olevan samasta 'pakkausluettelosta' taulukossa, mikäli sarja- ja eränumero on sama kaikille tuotteille tai 'tuotekokonaisuus' tuotteelle, (arvoja voi kirjata tuotteen päätaulukossa), arvot kopioidaan 'pakkausluettelo' taulukkoon" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","tuotteet 'tavarakokonaisuudessa' varasto, sarjanumero ja eränumero pidetään olevan samasta 'pakkausluettelosta' taulukossa, mikäli sarja- ja eränumero on sama kaikille tuotteille tai 'tuotekokonaisuus' tuotteelle, (arvoja voi kirjata tuotteen päätaulukossa), arvot kopioidaan 'pakkausluettelo' taulukkoon" apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,toimitukset asiakkaille DocType: Purchase Invoice Item,Purchase Order Item,Ostotilaus Kohde apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,välilliset tulot @@ -798,6 +799,7 @@ DocType: Process Payroll,Select Payroll Year and Month,valitse palkkaluettelo vu apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""","siirry kyseiseen ryhmään (yleensä kohteessa rahastot> lyhytaikaiset vastaavat> pankkitilit ja tee uusi tili (valitsemalla lisää alasidos) ""pankki""" DocType: Workstation,Electricity Cost,sähkön kustannukset DocType: HR Settings,Don't send Employee Birthday Reminders,älä lähetä työntekijälle syntymäpäivämuistutuksia +,Employee Holiday Attendance,Työntekijän Holiday Läsnäolo DocType: Opportunity,Walk In,kävele sisään apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Stock Viestit DocType: Item,Inspection Criteria,tarkastuskriteerit @@ -820,7 +822,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options," DocType: Journal Entry Account,Expense Claim,kuluvaatimus apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},yksikkömäärään {0} DocType: Leave Application,Leave Application,poistumissovellus -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,poistumiskohdistus työkalu +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,poistumiskohdistus työkalu DocType: Leave Block List,Leave Block List Dates,"poistu estoluettelo, päivät" DocType: Company,If Monthly Budget Exceeded (for expense account),Jos Kuukausibudjetti ylitetty (varten kululaskelma) DocType: Workstation,Net Hour Rate,netto tuntitaso @@ -830,7 +832,7 @@ DocType: Packing Slip Item,Packing Slip Item,"pakkauslappu, tuote" DocType: POS Profile,Cash/Bank Account,kassa- / pankkitili apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Poistettu kohteita ei muutu määrän tai arvon. DocType: Delivery Note,Delivery To,toimitus (lle) -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Taito pöytä on pakollinen +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Taito pöytä on pakollinen DocType: Production Planning Tool,Get Sales Orders,hae myyntitilaukset apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} ei voi olla negatiivinen apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,alennus @@ -894,7 +896,7 @@ DocType: SMS Center,Total Characters,henkilöt yhteensä apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},valitse BOM tuotteelle BOM kentästä {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-muoto laskutus lisätiedot DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,maksun täsmäytys laskuun -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,panostus % +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,panostus % DocType: Item,website page link,verkkosivusto sivulla linkki DocType: Company,Company registration numbers for your reference. Tax numbers etc.,"yrityksen rekisterinumero viitteeksi, vero numerot jne" DocType: Sales Partner,Distributor,jakelija @@ -936,10 +938,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM muuntokerroin DocType: Stock Settings,Default Item Group,oletus tuoteryhmä apps/erpnext/erpnext/config/buying.py +13,Supplier database.,toimittaja tietokanta DocType: Account,Balance Sheet,tasekirja -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',tuotteen kustannuspaikka tuotekoodilla +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',tuotteen kustannuspaikka tuotekoodilla DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,"myyjä, joka saa muistutuksen asiakkaan yhetdenotosta" apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","lisätilejä voidaan tehdä kohdassa ryhmät, mutta kirjaukset toi suoraan tilille" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,verot- ja muut palkan vähennykset +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,verot- ja muut palkan vähennykset DocType: Lead,Lead,vihje DocType: Email Digest,Payables,maksettavat DocType: Account,Warehouse,Varasto @@ -956,10 +958,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,kohdistamattomien m DocType: Global Defaults,Current Fiscal Year,nykyinen tilikausi DocType: Global Defaults,Disable Rounded Total,poista 'pyöristys yhteensä' käytöstä DocType: Lead,Call,pyyntö -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'kirjaukset' ei voi olla tyhjä +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'kirjaukset' ei voi olla tyhjä apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},monista rivi {0} sama kuin {1} ,Trial Balance,tasekokeilu -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,työntekijän perusmääritykset +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,työntekijän perusmääritykset apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","raja """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,Ole hyvä ja valitse etuliite ensin apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Tutkimus @@ -968,7 +970,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,käyttäjätunnus apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,näytä tilikirja apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,aikaisintaan -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","samanniminen tuoteryhmä on jo olemassa, vaihda tuotteen nimeä tai nimeä tuoteryhmä uudelleen" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","samanniminen tuoteryhmä on jo olemassa, vaihda tuotteen nimeä tai nimeä tuoteryhmä uudelleen" DocType: Production Order,Manufacture against Sales Order,valmistus kohdistus myyntitilaukseen apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Rest Of The World apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,tuote {0} ei voi olla erä @@ -993,7 +995,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Hylätty Warehouse DocType: GL Entry,Against Voucher,kuitin kohdistus DocType: Item,Default Buying Cost Center,ostojen oletuskustannuspaikka apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Jotta saat parhaan pois ERPNext, suosittelemme, että otat aikaa ja katsella näitä apua videoita." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,tuotteen {0} tulee olla myyntituote +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,tuotteen {0} tulee olla myyntituote apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,että DocType: Item,Lead Time in days,"virtausaika, päivinä" ,Accounts Payable Summary,maksettava tilien yhteenveto @@ -1019,7 +1021,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Maatalous apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Omat tavarat tai palvelut DocType: Mode of Payment,Mode of Payment,maksutapa -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Website Kuva pitäisi olla julkinen tiedoston tai verkkosivuston URL- +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Website Kuva pitäisi olla julkinen tiedoston tai verkkosivuston URL- apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,tämä on kantatuoteryhmä eikä sitä voi muokata DocType: Journal Entry Account,Purchase Order,Ostotilaus DocType: Warehouse,Warehouse Contact Info,Varaston yhteystiedot @@ -1030,7 +1032,7 @@ DocType: Serial No,Serial No Details,sarjanumeron lisätiedot DocType: Purchase Invoice Item,Item Tax Rate,tuotteen verotaso apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","{0}, vain kredit tili voidaan kohdistaa debet kirjaukseen" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,lähetettä {0} ei ole lähetetty -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,tuote {0} on alihankintatuote +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,tuote {0} on alihankintatuote apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,käyttöomaisuuspääoma apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","hinnoittelusääntö tulee ensin valita 'käytä tässä' kentästä, joka voi olla tuote, tuoteryhmä tai brändi" DocType: Hub Settings,Seller Website,myyjä verkkosivut @@ -1039,7 +1041,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,tavoite DocType: Sales Invoice Item,Edit Description,Muokkaa Kuvaus apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,odotettu toimituspäivä on pienempi kuin suunniteltu aloituspäivä -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,toimittajalle +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,toimittajalle DocType: Account,Setting Account Type helps in selecting this Account in transactions.,tilityypin asetukset auttaa valitsemaan oikean tilin tapahtumaan DocType: Purchase Invoice,Grand Total (Company Currency),kokonaissumma (yrityksen valuutta) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,lähtevät yhteensä @@ -1080,7 +1082,7 @@ apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/custome apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +38,Food,ruoka apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +51,Ageing Range 3,vanhentumisen skaala 3 apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +137,You can make a time log only against a submitted production order,voit kohdistaa aikalokin tuotannon tilaukseen -DocType: Maintenance Schedule Item,No of Visits,Ei annettu Vierailut +DocType: Maintenance Schedule Item,No of Visits,Vierailujen lukumäärä apps/erpnext/erpnext/config/support.py +33,"Newsletters to contacts, leads.","uutiskirjeet yhteystiedoiksi, vihjeiksi" apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +33,Currency of the Closing Account must be {0},Valuutta sulkeminen on otettava {0} apps/erpnext/erpnext/hr/doctype/appraisal_template/appraisal_template.py +21,Sum of points for all goals should be 100. It is {0},"kaikista tavoitteiden pisteiden summa tulee olla 100, nyt se on {0}" @@ -1091,7 +1093,6 @@ DocType: Authorization Rule,Average Discount,Keskimääräinen alennus DocType: Address,Utilities,hyödykkeet DocType: Purchase Invoice Item,Accounting,Kirjanpito DocType: Features Setup,Features Setup,ominaisuuksien määritykset -DocType: Item,Is Service Item,on palvelutuote apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Hakuaika ei voi ulkona loman jakokauteen DocType: Activity Cost,Projects,Projektit apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,Ole hyvä ja valitse Tilikausi @@ -1112,7 +1113,7 @@ DocType: Item,Maintain Stock,huolla varastoa apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,varaston kirjaukset on muodostettu tuotannon tilauksesta apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Nettomuutos kiinteä omaisuus DocType: Leave Control Panel,Leave blank if considered for all designations,tyhjä mikäli se pidetään vihtoehtona kaikille nimityksille -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,maksun tyyppiä 'todellinen' rivillä {0} ei voi sisällyttää tuotearvoon +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,maksun tyyppiä 'todellinen' rivillä {0} ei voi sisällyttää tuotearvoon apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,alkaen aikajana DocType: Email Digest,For Company,yritykselle @@ -1121,8 +1122,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,toimitusosoitteen nimi apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,tilikartta DocType: Material Request,Terms and Conditions Content,ehdot ja säännöt sisältö -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,ei voi olla suurempi kuin 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,tuote {0} ei ole varastotuote +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,ei voi olla suurempi kuin 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,tuote {0} ei ole varastotuote DocType: Maintenance Visit,Unscheduled,ei aikataulutettu DocType: Employee,Owned,Omistuksessa DocType: Salary Slip Deduction,Depends on Leave Without Pay,riippuu poistumisesta ilman palkkaa @@ -1143,7 +1144,7 @@ Used for Taxes and Charges","verotaulukkotiedot, jotka merkataan ja tallennetä apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,työntekijä ei voi raportoida itselleen DocType: Account,"If the account is frozen, entries are allowed to restricted users.","mikäli tili on jäädytetty, kirjaukset on rajattu tietyille käyttäjille" DocType: Email Digest,Bank Balance,Pankkitili -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Kirjaus {0}: {1} voidaan tehdä vain valuutassa: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Kirjaus {0}: {1} voidaan tehdä vain valuutassa: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Ei aktiivisia Palkkarakenne löytynyt työntekijä {0} ja kuukausi DocType: Job Opening,"Job profile, qualifications required etc.","työprofiili, vaaditut pätevydet jne" DocType: Journal Entry Account,Account Balance,tilin tase @@ -1160,7 +1161,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,alikokoonpano DocType: Shipping Rule Condition,To Value,arvoon DocType: Supplier,Stock Manager,varastohallinta apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},lähde varasto on pakollinen rivin {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,pakkauslappu +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,pakkauslappu apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Toimisto Rent apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,tekstiviestin reititinmääritykset apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,tuonti epäonnistui! @@ -1204,7 +1205,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM yksittäisnumero DocType: Purchase Invoice,Additional Discount Amount (Company Currency),lisäalennuksen arvomäärä (yrityksen valuutta) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},virhe: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,"tee uusi tili, tilikartasta" -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,"huolto, käynti" +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,"huolto, käynti" apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,asiakas> asiakasryhmä> alue DocType: Sales Invoice Item,Available Batch Qty at Warehouse,saatava varaston eräyksikkömäärä DocType: Time Log Batch Detail,Time Log Batch Detail,aikaloki erä lisätiedot @@ -1213,7 +1214,7 @@ DocType: Leave Block List,Block Holidays on important days.,estölomat tärkein ,Accounts Receivable Summary,saatava tilien yhteenveto apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,kirjoita käyttäjätunnus työntekijä tietue kenttään valitaksesi työntekijän roolin DocType: UOM,UOM Name,UOM nimi -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,panostuksen arvomäärä +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,panostuksen arvomäärä DocType: Sales Invoice,Shipping Address,toimitusosoite DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,"tämä työkalu auttaa sinua päivittämään tai korjaamaan varastomäärän ja -arvon järjestelmään, sitä käytetään yleensä synkronoitaessa järjestelmän arvoja ja varaston todellisia fyysisiä arvoja" DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,"sanat näkyvät, kun tallennat lähetteen" @@ -1254,7 +1255,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,"seuraa tuotteita viivakoodia käyttämällä, löydät tuotteet lähetteeltä ja myyntilaskulta skannaamalla tuotteen viivakoodin" apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Lähettää maksu Sähköposti DocType: Dependent Task,Dependent Task,riippuvainen tehtävä -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},muuntokerroin oletus mittayksikkön tulee olla 1 rivillä {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},muuntokerroin oletus mittayksikkön tulee olla 1 rivillä {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},poistumis tyyppi {0} ei voi olla pidempi kuin {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,kokeile suunnitella toimia X päivää etukäteen DocType: HR Settings,Stop Birthday Reminders,lopeta syntymäpäivämuistutukset @@ -1264,7 +1265,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} näytä apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Rahavarojen muutos DocType: Salary Structure Deduction,Salary Structure Deduction,"palkkarakenne, vähennys" -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,yksikköä {0} on kirjattu useammin kuin kerran muuntokerroin taulukossa +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,yksikköä {0} on kirjattu useammin kuin kerran muuntokerroin taulukossa apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Maksupyyntö on jo olemassa {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,aiheen tuotteiden kustannukset apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Määrä saa olla enintään {0} @@ -1293,7 +1294,7 @@ DocType: BOM Item,BOM Item,BOM tuote DocType: Appraisal,For Employee,työntekijän apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Rivi {0}: Advance vastaan Toimittaja on veloittaa DocType: Company,Default Values,oletus arvot -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,rivi {0}: maksun arvomäärä ei voi olla negatiivinen +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,rivi {0}: maksun arvomäärä ei voi olla negatiivinen DocType: Expense Claim,Total Amount Reimbursed,hyvityksen kokonaisarvomäärä apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},toimittajan ostolaskun kohdistus {0} päiväys {1} DocType: Customer,Default Price List,oletus hinnasto @@ -1321,8 +1322,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,tak DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","korvaa BOM kaikissa muissa BOM:ssa, jossa sitä käytetään, korvaa vanhan BOM linkin, päivittää kustannukset ja muodostaa uuden ""BOM tuote räjäytyksen"" tilaston uutena BOM:na" DocType: Shopping Cart Settings,Enable Shopping Cart,aktivoi ostoskori DocType: Employee,Permanent Address,pysyvä osoite -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,tuote {0} on palvelutuote -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Maksettu ennakko vastaan {0} {1} ei voi olla suurempi \ kuin Grand Yhteensä {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,valitse tuotekoodi DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),pienennä vähennystä poistuttaessa ilman palkkaa (LWP) @@ -1378,12 +1378,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Tärkein apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,malli DocType: Naming Series,Set prefix for numbering series on your transactions,aseta sarjojen numeroinnin etuliite tapahtumiin +DocType: Employee Attendance Tool,Employees HTML,Työntekijät HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,"pysäytettyä tilausta ei voi peruuttaa peruuttaa, käynnistä se jotta voit peruuttaa" -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,oletus BOM ({0}) tulee olla aktiivinen tälle tuotteelle tai sen mallipohjalle +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,oletus BOM ({0}) tulee olla aktiivinen tälle tuotteelle tai sen mallipohjalle DocType: Employee,Leave Encashed?,perintä? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,tilaisuuteen kenttä vaaditaan DocType: Item,Variants,mallit -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Tee Ostotilaus +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Tee Ostotilaus DocType: SMS Center,Send To,lähetä kenelle apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},jäännöstyypille {0} ei ole tarpeeksi vapaata jäännöstasetta DocType: Payment Reconciliation Payment,Allocated amount,kohdennettu arvomäärä @@ -1479,11 +1480,11 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p must be greater than or equal to {2}",rivi {0}: asettaaksesi {1} kausituksen aloitus ja päättymispäivän ero \ tulee olla suurempi tai yhtä suuri kuin {2} DocType: Pricing Rule,Selling,myynti DocType: Employee,Salary Information,palkkatietoja -DocType: Sales Person,Name and Employee ID,Nimi ja Employee ID +DocType: Sales Person,Name and Employee ID,Nimi ja Työntekijän ID apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,eräpäivä voi olla ennen lähetyspäivää DocType: Website Item Group,Website Item Group,tuoteryhmän verkkosivu apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,tullit ja verot -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,Anna Viiteajankohta +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,Anna Viiteajankohta apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Maksu Gateway tili ei ole määritetty apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} maksukirjauksia ei voida suodattaa {1}:lla DocType: Item Website Specification,Table for Item that will be shown in Web Site,verkkosivuilla näkyvien tuotteiden taulukko @@ -1504,7 +1505,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,johtopäätös lisätiedot DocType: Quality Inspection Reading,Acceptance Criteria,hyväksymiskriteerit DocType: Item Attribute,Attribute Name,"tuntomerkki, nimi" -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},tuote {0} tulee olla myynti- tai palvelutuotteessa {1} DocType: Item Group,Show In Website,näytä verkkosivustossa apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,ryhmä DocType: Task,Expected Time (in hours),odotettu aika (tunteina) @@ -1536,7 +1536,7 @@ DocType: Shipping Rule Condition,Shipping Amount,toimituskustannus arvomäärä ,Pending Amount,odottaa arvomäärä DocType: Purchase Invoice Item,Conversion Factor,muuntokerroin DocType: Purchase Order,Delivered,toimitettu -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),määritä työpaikkahaun sähköpostin saapuvan palvelimen asetukset (esim ura@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),määritä työpaikkahaun sähköpostin saapuvan palvelimen asetukset (esim ura@example.com) DocType: Purchase Receipt,Vehicle Number,Ajoneuvojen lukumäärä DocType: Purchase Invoice,The date on which recurring invoice will be stop,päivä jolloin toistuva lasku lakkaa apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Yhteensä myönnetty lehdet {0} ei voi olla pienempi kuin jo hyväksytty lehdet {1} kaudeksi @@ -1553,7 +1553,7 @@ DocType: HR Settings,HR Settings,henkilöstön asetukset apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,"kuluvaatimus odottaa hyväksyntää, vain kulujen hyväksyjä voi päivittää tilan" DocType: Purchase Invoice,Additional Discount Amount,lisäalennuksen arvomäärä DocType: Leave Block List Allow,Leave Block List Allow,"poistu estoluettelo, salli" -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,lyhenne ei voi olla tyhjä tai välilyönti +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,lyhenne ei voi olla tyhjä tai välilyönti apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Ryhmä Non-ryhmän apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,urheilu apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,"yhteensä, todellinen" @@ -1577,7 +1577,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},UOM muuntokerroin vaaditaan rivillä {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},tilityspäivä ei voi olla ennen tarkistuspäivää rivillä {0} DocType: Salary Slip,Deduction,vähennys -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Hinta lisätty {0} ja hinnasto {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Hinta lisätty {0} ja hinnasto {1} DocType: Address Template,Address Template,"osoite, mallipohja" apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,syötä työntekijätunnu tälle myyjälle DocType: Territory,Classification of Customers by region,asiakkaiden luokittelu alueittain @@ -1594,7 +1594,7 @@ DocType: Employee,Date of Birth,syntymäpäivä apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,tuote {0} on palautettu DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,**tilikausi** kaikki tilikauden kirjanpitoon kirjatut tositteet ja päätapahtumat on jäljitetty **tilikausi** DocType: Opportunity,Customer / Lead Address,asiakas / vihje osoite -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Varoitus: Virheellinen SSL-varmenteen kiinnittymiseen {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Varoitus: Virheellinen SSL-varmenteen kiinnittymiseen {0} DocType: Production Order Operation,Actual Operation Time,todellinen toiminta-aika DocType: Authorization Rule,Applicable To (User),sovellettavissa (käyttäjä) DocType: Purchase Taxes and Charges,Deduct,vähentää @@ -1611,7 +1611,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,jaa lähete pakkauksien kesken apps/erpnext/erpnext/hooks.py +69,Shipments,toimitukset DocType: Purchase Order Item,To be delivered to customer,Toimitetaan asiakkaalle -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,aikalokin tila pitää lähettää +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,aikalokin tila pitää lähettää apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,Sarjanumero {0} ei kuulu mihinkään Warehouse apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Rivi # DocType: Purchase Invoice,In Words (Company Currency),sanat (yrityksen valuutta) @@ -1628,7 +1628,7 @@ DocType: Leave Application,Total Leave Days,"poistumisten yhteismäärä, päiv DocType: Email Digest,Note: Email will not be sent to disabled users,huom: sähköpostia ei lähetetä käytöstä poistetuille käyttäjille apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,valitse yritys... DocType: Leave Control Panel,Leave blank if considered for all departments,tyhjä mikäli se pidetään vaihtoehtona kaikilla osastoilla -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","työsopimuksen tyypit (jatkuva, sopimus, sisäinen jne)" +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","työsopimuksen tyypit (jatkuva, sopimus, sisäinen jne)" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} on pakollinen tuotteelle {1} DocType: Currency Exchange,From Currency,valuutasta apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","valitse kohdennettava arvomäärä, laskun tyyppi ja laskun numero vähintään yhdelle riville" @@ -1647,7 +1647,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,prosessissa DocType: Authorization Rule,Itemwise Discount,"tuote työkalu, alennus" DocType: Purchase Order Item,Reference Document Type,Viite Asiakirjan tyyppi -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} myyntitilausta vastaan {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} myyntitilausta vastaan {1} DocType: Account,Fixed Asset,pitkaikaiset vastaavat apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Serialized Inventory DocType: Activity Type,Default Billing Rate,Oletus laskutustaksa @@ -1657,7 +1657,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,myyntitilauksesta maksuun DocType: Expense Claim Detail,Expense Claim Detail,kuluvaatimus lisätiedot apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,aikaloki on luotu: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,Valitse oikea tili +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,Valitse oikea tili DocType: Item,Weight UOM,paino UOM DocType: Employee,Blood Group,Veriryhmä DocType: Purchase Invoice Item,Page Break,Sivunvaihto @@ -1692,7 +1692,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM palautus: {0} ei voi pää tai alasidos {2} DocType: Production Order Operation,Completed Qty,valmiit yksikkömäärä apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","{0}, vain debet tili voidaan kohdistaa kredit kirjaukseen" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,hinnasto {0} on poistettu käytöstä +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,hinnasto {0} on poistettu käytöstä DocType: Manufacturing Settings,Allow Overtime,Salli Ylityöt apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} sarjanumerot tarvitaan Tuote {1}. Olet antanut {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,nykyinen arvotaso @@ -1743,7 +1743,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Ei I apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,asianumero ei voi olla 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,mikäli sinulla on myyntitiimi ja myyntikumppaneita (välityskumppanit) voidaan ne tagata ja ylläpitää niiden panostusta myyntiaktiviteetteihin DocType: Item,Show a slideshow at the top of the page,näytä diaesitys sivun yläreunassa -DocType: Item,"Allow in Sales Order of type ""Service""","salli myyntitilaukset tyypille ""palvelu""" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,varastoi DocType: Time Log,Projects Manager,"projektihallinta, pääkäyttäjä" DocType: Serial No,Delivery Time,toimitusaika @@ -1758,6 +1757,7 @@ DocType: Rename Tool,Rename Tool,Nimeä Tool apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,päivitä kustannukset DocType: Item Reorder,Item Reorder,tuote tiedostot apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,materiaalisiirto +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Kohta {0} on oltava myynti alkio {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","määritä toiminnot, käyttökustannukset ja anna toiminnoille oma uniikki numero" DocType: Purchase Invoice,Price List Currency,"hinnasto, valuutta" DocType: Naming Series,User must always select,käyttäjän tulee aina valita @@ -1778,7 +1778,7 @@ DocType: Appraisal,Employee,työntekijä apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,tuo sähköposti mistä apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Kutsu Käyttäjä DocType: Features Setup,After Sale Installations,jälkimarkkinointi asennukset -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} on kokonaan laskutettu +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} on kokonaan laskutettu DocType: Workstation Working Hour,End Time,ajan loppu apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,"perussopimusehdot, myynti tai osto" apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,tositteen ryhmä @@ -1804,7 +1804,7 @@ DocType: Upload Attendance,Attendance To Date,osallistuminen päivään apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),määritä myynnin sähköpostin saapuvan palvelimen asetukset (esim myynti@example.com) DocType: Warranty Claim,Raised By,Raised By DocType: Payment Gateway Account,Payment Account,maksutili -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,Ilmoitathan Yritys jatkaa +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,Ilmoitathan Yritys jatkaa apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Nettomuutos Myyntireskontra apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,korvaava on pois DocType: Quality Inspection Reading,Accepted,hyväksytyt @@ -1816,14 +1816,14 @@ DocType: Shipping Rule,Shipping Rule Label,toimitus sääntö etiketti apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,raaka-aineet ei voi olla tyhjiä apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Ei voinut päivittää hyllyssä, lasku sisältää pudota merenkulku erä." DocType: Newsletter,Test,testi -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","tuotteella on varastotapahtumia \ ei voi muuttaa arvoja ""sarjanumero"", ""eränumero"", ""varastotuote"" ja ""arvomenetelmä""" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Nopea Päiväkirjakirjaus apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,"tasoa ei voi muuttaa, jos BOM liitetty johonkin tuotteeseen" DocType: Employee,Previous Work Experience,Edellinen Työkokemus DocType: Stock Entry,For Quantity,yksikkömäärään apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},syötä suunniteltu yksikkömäärä tuotteelle {0} rivillä {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} ei ole lähetetty +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} ei ole lähetetty apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Pyynnöt kohteita. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,erillinen tuotannon tilaus luodaan jokaiselle valmistuneelle tuotteelle DocType: Purchase Invoice,Terms and Conditions1,ehdot ja säännöt 1 @@ -1838,7 +1838,7 @@ DocType: Contact,Enter department to which this Contact belongs,"syötä osasto, apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +57,Total Absent,"yhteensä, puuttua" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +736,Item or Warehouse for row {0} does not match Material Request,tuote tai varastorivi {0} ei täsmää materiaalipyynnön kanssa apps/erpnext/erpnext/config/stock.py +104,Unit of Measure,mittayksikkö -DocType: Fiscal Year,Year End Date,Vuoden lopetuspäivä +DocType: Fiscal Year,Year End Date,Vuoden viimeinen päivä DocType: Task Depends On,Task Depends On,tehtävä riippuu DocType: Lead,Opportunity,tilaisuus DocType: Salary Structure Earning,Salary Structure Earning,"palkkarakenne, ansiot" @@ -1848,6 +1848,7 @@ DocType: Notification Control,Expense Claim Approved Message,kuluvaatimus hyväk DocType: Email Digest,How frequently?,kuinka usein DocType: Purchase Receipt,Get Current Stock,hae nykyinen varasto apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,materiaalilaskupuu +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Mark Nykyinen apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},huollon aloituspäivä ei voi olla ennen sarjanumeron {0} toimitusaikaa DocType: Production Order,Actual End Date,todellinen päättymispäivä DocType: Authorization Rule,Applicable To (Role),sovellettavissa (rooli) @@ -1862,7 +1863,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,sopimuksen päättymispäivä tulee olla liittymispäivän jälkeen DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,"kolmas osapuoli kuten välittäjä / edustaja / agentti / jälleenmyyjä, joka myy tavaraa yrityksille provisiolla" DocType: Customer Group,Has Child Node,alasidoksessa -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} ostotilausta vastaan {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} ostotilausta vastaan {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","syötä staattiset url parametrit tähän (esim, lähettäjä = ERPNext, käyttäjätunnus = ERPNext, salasana = 1234 jne)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,"{0} {1} ei ole millään aktiivisella tilikaudella, täppää {2} saadaksesi lisätietoja" apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,"tämä on demo verkkosivu, joka on muodostettu automaattisesti ERPNext:ssä" @@ -1890,8 +1891,8 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Add or Deduct: Whether you want to add or deduct the tax.","perusveromallipohja, jota voidaan käyttää kaikkiin ostotapahtumiin. tämä mallipohja voi sisältää listan perusveroista ja myös muita veroja, kuten ""toimitus"", ""vakuutus"", ""käsittely"" jne #### huomaa että tänne määritelty veroprosentti tulee olemaan oletus kaikille **tuotteille**, mikäli **tuotteella** on eri veroprosentti tulee se määritellä **tuotteen vero** taulukossa **tuote** työkalussa. #### sarakkeiden kuvaus 1. laskennan tyyppi: - tämä voi olla **netto yhteensä** (eli summa perusarvosta). - **edellisen rivin summa / määrä ** (kumulatiivisille veroille tai maksuille, mikäli tämän on valittu edellisen rivin vero lasketaan prosentuaalisesti (verotaulukon) mukaan arvomäärästä tai summasta 2. tilin otsikko: tilin tilikirja, johon verot varataan 3. kustannuspaikka: mikäli vero / maksu on tuloa (kuten toimitus) tai kulua tulee se varata kustannuspaikkaa vastaan 4. kuvaus: veron kuvaus (joka tulostetaan laskulla / tositteella) 5. taso: veroprosentti. 6. määrä: veron arvomäärä 7. yhteensä: kumulatiivinen yhteissumma tähän asti. 8. syötä rivi: mikäli käytetään riviä ""edellinen rivi yhteensä"", voit valita rivin numeron, jota käytetään laskelman pohjana 9. pidä vero tai kustannus: tässä osiossa voit määrittää, jos vero / kustannus on pelkkä arvo (ei kuulu summaan) tai pelkästään summaan (ei lisää tuotteen arvoa) tai kumpaakin 10. lisää tai vähennä: voit lisätä tai vähentää veroa" DocType: Purchase Receipt Item,Recd Quantity,RECD Määrä apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},ei voi valmistaa suurempaa määrää tuotteita {0} kuin myyntitilauksen määrä {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,varaston kirjaus {0} ei ole lähetetty -DocType: Payment Reconciliation,Bank / Cash Account,pankki / kassa +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,varaston kirjaus {0} ei ole lähetetty +DocType: Payment Reconciliation,Bank / Cash Account,Pankki-tai Kassatili DocType: Tax Rule,Billing City,Laskutus Kaupunki DocType: Global Defaults,Hide Currency Symbol,piilota valuuttasymbooli apps/erpnext/erpnext/config/accounts.py +174,"e.g. Bank, Cash, Credit Card","esim, pankki, kassa, luottokortti" @@ -1916,7 +1917,7 @@ DocType: Salary Structure,Total Earning,ansiot yhteensä DocType: Purchase Receipt,Time at which materials were received,vaihtomateriaalien vastaanottoaika apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,omat osoitteet DocType: Stock Ledger Entry,Outgoing Rate,lähtevä taso -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,"organisaatio, toimiala valvonta" +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,"organisaatio, toimiala valvonta" apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,tai DocType: Sales Order,Billing Status,Laskutus tila apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,hyödykekulut @@ -1954,7 +1955,7 @@ DocType: Bin,Reserved Quantity,Varattu Määrä DocType: Landed Cost Voucher,Purchase Receipt Items,Ostokuitti Items apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,muotojen muokkaus DocType: Account,Income Account,tulotili -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Toimitus +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Toimitus DocType: Stock Reconciliation Item,Current Qty,nykyinen yksikkömäärä DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section","katso ""materiaaleihin perustuva arvo"" kustannuslaskenta osiossa" DocType: Appraisal Goal,Key Responsibility Area,Key Vastuu Area @@ -1966,8 +1967,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,tos DocType: Notification Control,Purchase Order Message,Ostotilaus Message DocType: Tax Rule,Shipping Country,Toimitusmaa DocType: Upload Attendance,Upload HTML,lataa HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})",ennakot yhteensä ({0}) kohdistettuna tilauksiin {1} ei voi olla suurempi \ kuin kokonaissumma ({2}) DocType: Employee,Relieving Date,Lievittää Date apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","hinnoittelu sääntö on tehty tämä korvaa hinnaston / määritä alennus, joka perustuu kriteereihin" DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Varastoa voi muuttaa ainoastaan varaston Kirjauksella / Lähetteellä / Ostokuitilla @@ -1977,8 +1976,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,tulov apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","mikäli 'hinnalle' on tehty hinnoittelusääntö se korvaa hinnaston, hinnoittelusääntö on lopullinen hinta joten lisäalennusta ei voi antaa, näin myyntitilaus, ostotilaus ym tapahtumaissa tuote sijoittuu paremmin 'arvo' kenttään 'hinnaston arvo' kenttään" apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,jäljitä vihjeitä toimialan mukaan DocType: Item Supplier,Item Supplier,tuote toimittaja -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,syötä tuotekoodi saadaksesi eränumeron -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},syötä arvot tarjouksesta {0} tarjoukseen {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,syötä tuotekoodi saadaksesi eränumeron +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},syötä arvot tarjouksesta {0} tarjoukseen {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,kaikki osoitteet DocType: Company,Stock Settings,varastoasetukset apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","yhdistäminen on mahdollista vain, jos seuraavat arvot ovat samoja molemmissa tietueissa, kantatyyppi, ryhmä, viite, yritys" @@ -2001,7 +2000,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,takaus/shekki numero DocType: Payment Tool Detail,Payment Tool Detail,maksutyökalu lisätiedot ,Sales Browser,myyntiselain DocType: Journal Entry,Total Credit,kredit yhteensä -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},varoitus: toinen varaston kirjausksen kohdistus {0} # {1} on jo olemassa {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},varoitus: toinen varaston kirjausksen kohdistus {0} # {1} on jo olemassa {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Paikallinen apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),lainat ja ennakot (vastaavat) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,velalliset @@ -2021,8 +2020,8 @@ DocType: Price List,Price List Master,hinnasto valvonta DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,kaikki myyntitapahtumat voidaan kohdistaa useammalle ** myyjälle ** tavoitteiden asettamiseen ja seurantaan ,S.O. No.,myyntitilaus nro DocType: Production Order Operation,Make Time Log,Tee Time Log -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Aseta tilausrajaa -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},tee asiakasvihje {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Aseta tilausrajaa +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},tee asiakasvihje {0} DocType: Price List,Applicable for Countries,Sovelletaan Maat apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,tietokoneet apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,tämä on kanta-asiakasryhmä eikä sitä voi muokata @@ -2058,7 +2057,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),laskut DocType: Payment Reconciliation Invoice,Outstanding Amount,odottava arvomäärä DocType: Project Task,Working,työskennellä DocType: Stock Ledger Entry,Stock Queue (FIFO),varastojono (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Ole hyvä ja valitse Time Lokit. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Ole hyvä ja valitse Time Lokit. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} ei kuulu yritykseen {1} DocType: Account,Round Off,pyöristys ,Requested Qty,pyydetty yksikkömäärä @@ -2096,7 +2095,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,hae tarvittavat kirjaukset apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,kirjanpidon varaston kirjaus DocType: Sales Invoice,Sales Team1,myyntitiimi 1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,tuotetta {0} ei ole olemassa +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,tuotetta {0} ei ole olemassa DocType: Sales Invoice,Customer Address,asiakkaan osoite DocType: Payment Request,Recipient and Message,Vastaanottaja ja Viesti DocType: Purchase Invoice,Apply Additional Discount On,käytä lisäalennusta @@ -2115,7 +2114,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Mute Sähköposti apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","ruoka, juoma ja tupakka" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL tai BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Voi vain maksun vastaan laskuttamattomia {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Voi vain maksun vastaan laskuttamattomia {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,provisio taso ei voi olla suurempi kuin 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Pienin Inventory Level DocType: Stock Entry,Subcontract,alihankinta @@ -2133,9 +2132,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,ohjelmisto apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,väritä DocType: Maintenance Visit,Scheduled,aikataulutettu apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","valitse tuote joka ""varastotuote"", ""numero"" ja ""myyntituote"" valinnat täpätty kohtaan ""kyllä"", tuotteella ole muuta tavarakokonaisuutta" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Yhteensä etukäteen ({0}) vastaan Order {1} ei voi olla suurempi kuin Grand Total ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,valitse toimitusten kk jaksotus tehdäksesi kausiluonteiset toimitusttavoitteet DocType: Purchase Invoice Item,Valuation Rate,arvotaso -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,"hinnasto, valuutta ole valittu" +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,"hinnasto, valuutta ole valittu" apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,tuotetta rivillä {0}: ostokuittilla {1} ei ole olemassa ylläolevassa 'ostokuitit' taulukossa apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},työntekijällä {0} on jo {1} hakemus {2} ja {3} välilltä apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Projekti aloituspäivä @@ -2147,6 +2147,7 @@ DocType: Quality Inspection,Inspection Type,tarkistus tyyppi apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},Ole hyvä ja valitse {0} DocType: C-Form,C-Form No,C-muoto nro DocType: BOM,Exploded_items,räjäytetyt_tuotteet +DocType: Employee Attendance Tool,Unmarked Attendance,merkitsemätön Läsnäolo apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Tutkija apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,Säilytä uutiskirje ennen lähettämistä apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Nimi tai Sähköposti on pakollinen @@ -2172,7 +2173,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Vahvist DocType: Payment Gateway,Gateway,Portti apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,toimittaja> toimittaja tyyppi apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Syötä lievittää päivämäärä. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,pankkipääte +apps/erpnext/erpnext/controllers/trends.py +138,Amt,pankkipääte apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,vain 'hyväksytty' poistumissovellus voidaan lähettää apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,osoiteotsikko on pakollinen. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,syötä kampanjan nimi jos kirjauksen lähde on kampanja @@ -2187,10 +2188,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,hyväksytyt varasto DocType: Bank Reconciliation Detail,Posting Date,Julkaisupäivä DocType: Item,Valuation Method,arvomenetelmä apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Ei löydy valuuttakurssin {0} on {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Mark Half Day DocType: Sales Invoice,Sales Team,myyntitiimi apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,monista kirjaus DocType: Serial No,Under Warranty,takuun alla -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[virhe] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[virhe] DocType: Sales Order,In Words will be visible once you save the Sales Order.,"sanat näkyvät, kun tallennat myyntitilauksen" ,Employee Birthday,työntekijän syntymäpäivä apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,pääomasijoitus @@ -2213,6 +2215,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,olemassaolevien tapahtumien kustannuspaikkaa ei voi muuttaa ryhmäksi DocType: Account,Depreciation,arvonalennus apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),toimittaja/toimittajat +DocType: Employee Attendance Tool,Employee Attendance Tool,Työntekijän läsnäolo Tool DocType: Supplier,Credit Limit,luottoraja apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,valitse tapahtuman tyyppi DocType: GL Entry,Voucher No,tosite nro @@ -2239,7 +2242,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,kantaa ei voi poistaa ,Is Primary Address,On Ensisijainen osoite DocType: Production Order,Work-in-Progress Warehouse,työnalla varasto -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Viite # {0} päivätty {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Viite # {0} päivätty {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Hallitse Osoitteet DocType: Pricing Rule,Item Code,tuotekoodi DocType: Production Planning Tool,Create Production Orders,tee tuotannon tilaus @@ -2266,7 +2269,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,pankin täsmäytys apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,hae päivitykset apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,materiaalipyyntö {0} on peruttu tai keskeytetty apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Lisää muutama esimerkkitietue -apps/erpnext/erpnext/config/hr.py +210,Leave Management,poistumishallinto +apps/erpnext/erpnext/config/hr.py +225,Leave Management,poistumishallinto apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,tilin ryhmä DocType: Sales Order,Fully Delivered,täysin toimitettu DocType: Lead,Lower Income,matala tulo @@ -2281,6 +2284,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','aloituspäivä' tulee olla ennen 'päättymispäivää' ,Stock Projected Qty,ennustettu varaston yksikkömäärä apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},asiakas {0} ei kuulu projektiin {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Merkitty Läsnäolo HTML DocType: Sales Order,Customer's Purchase Order,Asiakkaan Ostotilaus DocType: Warranty Claim,From Company,yrityksestä apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,arvo tai yksikkömäärä @@ -2345,6 +2349,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,johdotus siirto apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,valitse pankkitili DocType: Newsletter,Create and Send Newsletters,tee ja lähetä uutiskirjeitä +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Tarkista kaikki DocType: Sales Order,Recurring Order,Toistuvat Order DocType: Company,Default Income Account,oletus tulotili apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,asiakasryhmä / asiakas @@ -2376,6 +2381,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,"ostolasku, palautukse DocType: Item,Warranty Period (in days),takuuaika (päivinä) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Liiketoiminnan nettorahavirta apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,"esim, alv" +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Mark työntekijän läsnäolo irtolastina apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,tuote 4 DocType: Journal Entry Account,Journal Entry Account,päiväkirjakirjaus tili DocType: Shopping Cart Settings,Quotation Series,"tarjous, sarjat" @@ -2520,14 +2526,14 @@ DocType: Task,Actual Start Date (via Time Logs),todellinen aloituspäivä (aikal DocType: Stock Reconciliation Item,Before reconciliation,ennen täsmäytystä apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},(lle) {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),verot ja maksut lisätty (yrityksen valuutta) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,"tuotteen vero, rivi {0} veron tyyppi tulee määritellä (tulo, kulu, veloitettava)" +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,"tuotteen vero, rivi {0} veron tyyppi tulee määritellä (tulo, kulu, veloitettava)" DocType: Sales Order,Partly Billed,Osittain Laskutetaan DocType: Item,Default BOM,oletus BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,kirjoita yrityksen nimi uudelleen vahvistukseksi apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,"odottaa, pankkipääte yhteensä" DocType: Time Log Batch,Total Hours,tunnit yhteensä DocType: Journal Entry,Printing Settings,Asetusten tulostaminen -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},"debet yhteensä tulee olla sama kuin kredit yhteensä, ero on {0}" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},"debet yhteensä tulee olla sama kuin kredit yhteensä, ero on {0}" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Automotive apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,lähetteestä DocType: Time Log,From Time,ajasta @@ -2553,7 +2559,7 @@ DocType: Account,Bank,pankki apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +9,Airline,lentoyhtiö apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +579,Issue Material,materiaali aihe DocType: Material Request Item,For Warehouse,varastoon -DocType: Employee,Offer Date,Tarjous Date +DocType: Employee,Offer Date,Ehdota päivää apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +33,Quotations,Lainaukset DocType: Hub Settings,Access Token,Access Token DocType: Sales Invoice Item,Serial No,sarjanumero @@ -2573,7 +2579,7 @@ DocType: Purchase Invoice Item,Image View,kuvanäkymä DocType: Issue,Opening Time,Aukeamisaika apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,alkaen- ja päätyen päivä vaaditaan apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,arvopaperit & hyödykkeet vaihto -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Oletus mittayksikkö Variant "{0}" on oltava sama kuin malli "{1}" +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Oletus mittayksikkö Variant "{0}" on oltava sama kuin malli "{1}" DocType: Shipping Rule,Calculate Based On,"laske, perusteet" DocType: Delivery Note Item,From Warehouse,Varastosta DocType: Purchase Taxes and Charges,Valuation and Total,arvo ja summa @@ -2595,7 +2601,7 @@ DocType: Leave Application,Follow via Email,seuraa sähköpostitse DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,veron arvomäärä alennuksen jälkeen apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,"tällä tilillä on alatili, et voi poistaa tätä tiliä" apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,tavoite yksikkömäärä tai tavoite arvomäärä vaaditaan -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},tuotteelle {0} ei ole olemassa oletus BOM:ia +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},tuotteelle {0} ei ole olemassa oletus BOM:ia apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,Valitse julkaisupäivä ensimmäinen apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Aukiolopäivä pitäisi olla ennen Tarjouksentekijä DocType: Leave Control Panel,Carry Forward,siirrä @@ -2672,7 +2678,7 @@ DocType: Leave Type,Is Encash,on perintä DocType: Purchase Invoice,Mobile No,Mobile No DocType: Payment Tool,Make Journal Entry,tee päiväkirjakirjaus DocType: Leave Allocation,New Leaves Allocated,uusi poistumisten kohdennus -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,"projekti työkalu, tietoja ei ole saatavilla tarjousvaiheessa" +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,"projekti työkalu, tietoja ei ole saatavilla tarjousvaiheessa" DocType: Project,Expected End Date,odotettu päättymispäivä DocType: Appraisal Template,Appraisal Template Title,"arviointi, mallipohja otsikko" apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,kaupallinen @@ -2720,6 +2726,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,sa apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Ilmoitathan DocType: Offer Letter,Awaiting Response,Odottaa vastausta apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Yläpuolella +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Aika Log on laskutetaan DocType: Salary Slip,Earning & Deduction,ansio & vähennys apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,tili {0} ei voi ryhmä apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,"valinnainen, asetusta käytetään suodatettaessa eri tapahtumia" @@ -2734,7 +2741,7 @@ DocType: Serial No,Creation Time,tekoaika apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +62,Total Revenue,liikevaihto yhteensä DocType: Sales Invoice,Product Bundle Help,"tavarakokonaisuus, ohjeet" ,Monthly Attendance Sheet,kuukausittaiset osallistumistaulukot -apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +16,No record found,tietuetta ei löydy +apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +16,No record found,Tietuetta ei löydy apps/erpnext/erpnext/controllers/stock_controller.py +175,{0} {1}: Cost Center is mandatory for Item {2},{0} {1}: kustannuspaikka on pakollinen tuotteelle {2} apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +468,Get Items from Product Bundle,Saamaan kohteita Product Bundle apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +79,Account {0} is inactive,tili {0} ei ole aktiivinen @@ -2790,14 +2797,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,kaikki tähän yritykseen liittyvät tapahtumat on poistettu apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Kuin Päivämäärä apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Koeaika -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,oletus Varasto vaaditaan varastotuotteelle +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,oletus Varasto vaaditaan varastotuotteelle apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},palkanmaksu kuukausi {0} vuosi {1} DocType: Stock Settings,Auto insert Price List rate if missing,"Automaattinen käynnistys Hinnasto korolla, jos puuttuu" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,maksettu arvomäärä yhteensä ,Transferred Qty,siirretty yksikkömäärä apps/erpnext/erpnext/config/learn.py +11,Navigating,Liikkuminen apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Suunnittelu -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Tee Time Log Erä +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Tee Time Log Erä apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,liitetty DocType: Project,Total Billing Amount (via Time Logs),laskutuksen kokomaisarvomäärä (aikaloki) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,myymme tätä tuotetta @@ -2805,7 +2812,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Määrä olisi oltava suurempi kuin 0 DocType: Journal Entry,Cash Entry,kassakirjaus DocType: Sales Partner,Contact Desc,"yhteystiedot, kuvailu" -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","poistumissyy, kuten vapaa, sairas jne" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","poistumissyy, kuten vapaa, sairas jne" DocType: Email Digest,Send regular summary reports via Email.,lähetä yhteenvetoraportteja säännöllisesti sähköpostitse DocType: Brand,Item Manager,tuotehallinta DocType: Cost Center,Add rows to set annual budgets on Accounts.,lisää rivejä tilien vuosibudjetin tekoon @@ -2820,7 +2827,7 @@ DocType: GL Entry,Party Type,osapuoli tyyppi apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,raaka-aine ei voi olla päätuote DocType: Item Attribute Value,Abbreviation,Lyhenne apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Ei authroized koska {0} ylittää rajat -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,palkka mallipohja valvonta +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,palkka mallipohja valvonta DocType: Leave Type,Max Days Leave Allowed,maksimi poistumispäivät sallittu apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Aseta Tax Rule ostoskoriin DocType: Payment Tool,Set Matching Amounts,aseta täsmäävät arvomäärät @@ -2833,7 +2840,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,noteera DocType: Stock Settings,Role Allowed to edit frozen stock,rooli saa muokata jäädytettyä varastoa ,Territory Target Variance Item Group-Wise,"aluetavoite vaihtelu, tuoteryhmä työkalu" apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,kaikki asiakasryhmät -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,"{0} on pakollinen, voi olla ettei valuutanvaihto tietuetta ei tehty {1}:stä {2}:n." +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,"{0} on pakollinen, voi olla ettei valuutanvaihto tietuetta ei tehty {1}:stä {2}:n." apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Vero malli on pakollinen. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,tili {0}: emotili {1} ei ole olemassa DocType: Purchase Invoice Item,Price List Rate (Company Currency),"hinnasto, taso (yrityksen valuutta)" @@ -2853,8 +2860,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,"tuote työkalu, veroti ,Item-wise Price List Rate,"tuote työkalu, hinnasto taso" apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,toimittajan tarjouskysely DocType: Quotation,In Words will be visible once you save the Quotation.,"sanat näkyvät, kun tallennat tarjouksen" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} on pysäytetty -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},viivakoodi {0} on jo käytössä tuotteella {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} on pysäytetty +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},viivakoodi {0} on jo käytössä tuotteella {1} DocType: Lead,Add to calendar on this date,lisää kalenteriin (tämä päivä) apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,toimituskustannusten lisäys säännöt apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Tulevat tapahtumat @@ -2880,8 +2887,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,pe apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Ainakin yksi varasto on pakollinen DocType: Serial No,Out of Warranty,Out of Takuu DocType: BOM Replace Tool,Replace,Korvata -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} myyntilaskua vastaan {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,syötä oletus mittayksikkö +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} myyntilaskua vastaan {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,syötä oletus mittayksikkö DocType: Purchase Invoice Item,Project Name,Hankkeen nimi DocType: Supplier,Mention if non-standard receivable account,Mainitse jos ei-standardi velalliset DocType: Journal Entry Account,If Income or Expense,mikäli tulot tai kulut @@ -2906,7 +2913,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,tilikautta: {0} ei ole olemassa DocType: Currency Exchange,To Currency,valuuttakursseihin DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,salli seuraavien käyttäjien hyväksyä poistumissovelluksen estopäivät -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,kuluvaatimus tyypit +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,kuluvaatimus tyypit DocType: Item,Taxes,verot apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Maksettu ja ei toimiteta DocType: Project,Default Cost Center,oletus kustannuspaikka @@ -2936,7 +2943,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Rivi # {0}: Sarjanumero {1} ei vastaa {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,tavallinen poistuminen DocType: Batch,Batch ID,erän tunnus -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Huomautus: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Huomautus: {0} ,Delivery Note Trends,lähete trendit apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Viikon yhteenveto apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} on ostettu tai alihankintatuotteena rivillä {1} @@ -2976,6 +2983,7 @@ DocType: Project Task,Pending Review,odottaa näkymä apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Klikkaa tästä maksaa DocType: Task,Total Expense Claim (via Expense Claim),kuluvaatimus yhteensä (kuluvaatimuksesta) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,asiakastunnus +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Mark Absent apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,aikaan on oltava suurempi kuin aloitusaika DocType: Journal Entry Account,Exchange Rate,valuutta taso apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,myyntitilausta {0} ei ole lähetetty @@ -3023,7 +3031,7 @@ DocType: Item Group,Default Expense Account,oletus kulutili DocType: Employee,Notice (days),Ilmoitus (päivää) DocType: Tax Rule,Sales Tax Template,Sales Tax Malline DocType: Employee,Encashment Date,perintä päivä -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","tositetyypin kirjaus tulee kohdistaa ostotilauksen, ostolaskuun tai päiväkirjaan" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","tositetyypin kirjaus tulee kohdistaa ostotilauksen, ostolaskuun tai päiväkirjaan" DocType: Account,Stock Adjustment,varastonsäätö apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},oletus aktiviteettikustannus aktiviteetin tyypille - {0} DocType: Production Order,Planned Operating Cost,suunnitellut käyttökustannukset @@ -3078,6 +3086,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,poiston kirjaus DocType: BOM,Rate Of Materials Based On,materiaaliarvostelu perustuen apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,tuki Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Poista kaikki apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},yritystä ei löydy varastoissa {0} DocType: POS Profile,Terms and Conditions,ehdot ja säännöt apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},"päivä tulee olla tällä tilikaudella, oletettu lopetuspäivä = {0}" @@ -3099,7 +3108,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","asettaaksesi tämän tilikaudenoletukseksi, klikkaa ""aseta oletukseksi""" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),määritä teknisen tuen sähköpostin saapuvan palvelimen asetukset (esim tekniikka@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,yksikkömäärä vähissä -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Tuote variantti {0} ovat olemassa samoja ominaisuuksia +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Tuote variantti {0} ovat olemassa samoja ominaisuuksia DocType: Salary Slip,Salary Slip,palkkalaskelma apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,'päättymispäivä' vaaditaan DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","muodosta pakkausluetteloita toimitettaville pakkauksille, käytetään pakkausnumeron, -sisältö ja painon määritykseen" @@ -3147,7 +3156,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,näytä DocType: Item Attribute Value,Attribute Value,"tuntomerkki, arvo" apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","sähköpostitunnus tulee olla uniikki, tunnus on jo olemassa {0}" ,Itemwise Recommended Reorder Level,"tuote työkalu, uuden ostotilauksen suositusarvo" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,Ole hyvä ja valitse {0} Ensimmäinen +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,Ole hyvä ja valitse {0} Ensimmäinen DocType: Features Setup,To get Item Group in details table,saadaksesi tuoteryhmän lisätiedot taulukossa apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,erä {0} tuotteesta {1} on vanhentunut DocType: Sales Invoice,Commission,provisio @@ -3191,7 +3200,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,hae odottavat tositteet DocType: Warranty Claim,Resolved By,ratkaissut DocType: Appraisal,Start Date,aloituspäivä -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,kohdistaa poistumisen kaudelle +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,kohdistaa poistumisen kaudelle apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Sekkejä ja Talletukset virheellisesti selvitetty apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,vahvistaaksesi klikkaa tästä apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,tili {0}: et voi nimetä tätä tiliä emotiliksi @@ -3211,7 +3220,7 @@ DocType: Employee,Educational Qualification,koulutusksen arviointi DocType: Workstation,Operating Costs,käyttökustannukset DocType: Employee Leave Approver,Employee Leave Approver,työntekijän poistumis hyväksyjä apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} on lisätty uutiskirje luetteloon. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},rivi {0}: uusi tilaus on jo kirjattu tähän varastoon {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},rivi {0}: uusi tilaus on jo kirjattu tähän varastoon {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","ei voida vahvistaa hävityksi, sillä tarjous on tehty" DocType: Purchase Taxes and Charges Template,Purchase Master Manager,"ostojenhallinta, valvonta" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,tuotannon tilaus {0} on lähetettävä @@ -3235,7 +3244,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,myyntilasku {0} on lähetetty apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,katselmus päivä DocType: Purchase Invoice Item,Amount (Company Currency),arvomäärä (yrityksen valuutta) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,"organisaatioyksikkö, osasto valvonta" +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,"organisaatioyksikkö, osasto valvonta" apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Anna kelvolliset mobiili nos DocType: Budget Detail,Budget Detail,budjetti yksityiskohdat apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,Anna viestin ennen lähettämistä @@ -3251,13 +3260,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Saanut ja hyväksynyt ,Serial No Service Contract Expiry,palvelusopimuksen päättyminen sarjanumerolle DocType: Item,Unit of Measure Conversion,mittayksikön muunto apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,työntekijää ei voi muuttaa -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,kredit / debet kirjausta ei voi tehdä samalle tilille yhtäaikaa +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,kredit / debet kirjausta ei voi tehdä samalle tilille yhtäaikaa DocType: Naming Series,Help HTML,"HTML, ohje" apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},nimetty painoarvo yhteensä tulee olla 100% nyt se on {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Avustus yli- {0} ristissä Kohta {1} DocType: Address,Name of person or organization that this address belongs to.,henkilön- tai organisaation nimi kenelle tämä osoite kuuluu apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,omat toimittajat -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,ei voi asettaa hävityksi sillä myyntitilaus on tehty +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,ei voi asettaa hävityksi sillä myyntitilaus on tehty apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,toinen palkkarakenne {0} on aktiivinen työntekijälle {1}. päivitä tila 'passiiviseksi' jatkaaksesi DocType: Purchase Invoice,Contact,yhteystiedot apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Saadut @@ -3267,11 +3276,11 @@ DocType: Item,Has Serial No,on sarjanumero DocType: Employee,Date of Issue,aiheen päivä apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: valitse {0} on {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Rivi # {0}: Aseta toimittaja kohteen {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Website Kuva {0} kiinnitetty Tuote {1} ei löydy +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Website Kuva {0} kiinnitetty Tuote {1} ei löydy DocType: Issue,Content Type,sisällön tyyppi apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,tietokone DocType: Item,List this Item in multiple groups on the website.,Listaa tästä Kohta useisiin ryhmiin verkkosivuilla. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,Tarkista usean valuutan mahdollisuuden sallia tilejä muu valuutta +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,Tarkista usean valuutan mahdollisuuden sallia tilejä muu valuutta apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,tuote: {0} ei ole järjestelmässä apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,sinulla ei ole oikeutta asettaa jäätymis arva DocType: Payment Reconciliation,Get Unreconciled Entries,hae täsmäämättömät kirjaukset @@ -3281,21 +3290,21 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,mitä tämä DocType: Delivery Note,To Warehouse,varastoon apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},"tilillä {0} on useampi, kuin yksi kirjaus tilikaudella {1}" ,Average Commission Rate,keskimääräinen provisio taso -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'on sarjanumero' joka voi olla ainoastaan varastotuote +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'on sarjanumero' joka voi olla ainoastaan varastotuote apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,osallistumisia ei voi merkitä tuleville päiville DocType: Pricing Rule,Pricing Rule Help,"hinnoittelusääntö, ohjeet" DocType: Purchase Taxes and Charges,Account Head,tilin otsikko apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,päivitä lisäkustannukset jotta tuotteisiin kohdistuneet kustannukset voidaan laskea apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,sähköinen DocType: Stock Entry,Total Value Difference (Out - In),arvoero (ulos-sisään) yhteensä -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Rivi {0}: Vaihtokurssi on pakollinen +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Rivi {0}: Vaihtokurssi on pakollinen apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},käyttäjätunnusta ei asetettu työntekijälle {0} DocType: Stock Entry,Default Source Warehouse,oletus lähde varasto DocType: Item,Customer Code,asiakkaan koodi apps/erpnext/erpnext/hr/doctype/employee/employee.py +212,Birthday Reminder for {0},Syntymäpäivämuistutus {0} apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +72,Days Since Last Order,päivää edellisestä tilauksesta apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +307,Debit To account must be a Balance Sheet account,Pankkikortti tilille on kuitenkin taseen tili -DocType: Buying Settings,Naming Series,nimeä sarjat +DocType: Buying Settings,Naming Series,Nimeä sarjat DocType: Leave Block List,Leave Block List Name,"poistu estoluettelo, nimi" apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +32,Stock Assets,"varasto, vastaavat" apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.js +29,Do you really want to Submit all Salary Slip for month {0} and year {1},haluatko varmasti lähettää kaikkii kuukausi {0} vuosi {1} palkkalaskelmat @@ -3307,15 +3316,15 @@ DocType: Notification Control,Sales Invoice Message,"myyntilasku, viesti" apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Tilin sulkemisen {0} on oltava tyyppiä Vastuu / Oma pääoma DocType: Authorization Rule,Based On,perustuu DocType: Sales Order Item,Ordered Qty,tilattu yksikkömäärä -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Tuote {0} on poistettu käytöstä +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Tuote {0} on poistettu käytöstä DocType: Stock Settings,Stock Frozen Upto,varasto jäädytetty asti apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Ajanjaksona ja AIKA Voit päivämäärät pakollinen toistuvia {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Hanketoimintaa / tehtävä. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,muodosta palkkalaskelmat +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,muodosta palkkalaskelmat apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}",osto tulee täpätä mikälisovellus on valittu {0}:na apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,alennus on oltava alle 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Kirjoita Off Määrä (Yrityksen valuutta) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Rivi # {0}: Aseta tilausrajaa +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Rivi # {0}: Aseta tilausrajaa DocType: Landed Cost Voucher,Landed Cost Voucher,"kohdistetut kustannukset, tosite" apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},Aseta {0} DocType: Purchase Invoice,Repeat on Day of Month,Toista päivä Kuukausi @@ -3360,14 +3369,14 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +73,Customer Service DocType: Item,Thumbnail,Thumbnail DocType: Item Customer Detail,Item Customer Detail,tuote asiakas lisätyedot apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +147,Confirm Your Email,vahvista sähköposti -apps/erpnext/erpnext/config/hr.py +53,Offer candidate a Job.,Tarjous ehdokas Job. +apps/erpnext/erpnext/config/hr.py +53,Offer candidate a Job.,Tarjoa ehdokkaalle töitä DocType: Notification Control,Prompt for Email on Submission of,Kysyy Sähköposti esitettäessä apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +81,Total allocated leaves are more than days in the period,Yhteensä myönnetty lehdet ovat enemmän kuin päivää kaudella apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70,Item {0} must be a stock Item,tuote {0} tulee olla varastotuote DocType: Manufacturing Settings,Default Work In Progress Warehouse,Oletus Work In Progress Warehouse apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,kirjanpidon tapahtumien oletusasetukset apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,odotettu päivä ei voi olla ennen materiaalipyynnön päiväystä -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,tuotteen {0} tulee olla myyntituote +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,tuotteen {0} tulee olla myyntituote DocType: Naming Series,Update Series Number,päivitä sarjanumerot DocType: Account,Equity,oma pääoma DocType: Sales Order,Printing Details,Tulostus Lisätiedot @@ -3419,7 +3428,7 @@ DocType: Task,Review Date,Review Date DocType: Purchase Invoice,Advance Payments,Ennakkomaksut DocType: Purchase Taxes and Charges,On Net Total,netto yhteensä:ssä apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,tavoite varasto rivillä {0} on oltava yhtäsuuri kuin tuotannon tilaus -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,ei valtuutusta käyttää maksutyökalua +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,ei valtuutusta käyttää maksutyökalua apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,'sähköposti-ilmoituksille' ei ole määritelty jatkuvaa % apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Valuutta ei voi muuttaa tehtyään merkinnät jollakin toisella valuutta DocType: Company,Round Off Account,pyöristys tili @@ -3442,7 +3451,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,tuotemääräarvio valmistuksen- / uudelleenpakkauksen jälkeen annetuista raaka-aineen määristä DocType: Payment Reconciliation,Receivable / Payable Account,saatava / maksettava tili DocType: Delivery Note Item,Against Sales Order Item,myyntitilauksen kohdistus / tuote -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},Ilmoitathan Taito Vastinetta määrite {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},Ilmoitathan Taito Vastinetta määrite {0} DocType: Item,Default Warehouse,oletus varasto DocType: Task,Actual End Date (via Time Logs),todellinen päättymispäivä (aikalokin mukaan) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},budjettia ei voi nimetä ryhmätiliin {0} @@ -3467,10 +3476,10 @@ DocType: Lead,Blog Subscriber,Blogi Subscriber apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,tee tapahtumien arvoon perustuvia rajoitussääntöjä DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day",täpättäessä lomapäivät sisältyvät työpäiviin ja tämä lisää palkan avoa / päivä DocType: Purchase Invoice,Total Advance,"yhteensä, ennakko" -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Käsittely Payroll +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Käsittely Payroll DocType: Opportunity Item,Basic Rate,perustaso DocType: GL Entry,Credit Amount,Luoton määrä -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,aseta kadonneeksi +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,aseta kadonneeksi apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Maksukuitin Huomautus DocType: Supplier,Credit Days Based On,"kredit päivää, perustuen" DocType: Tax Rule,Tax Rule,Verosääntöön @@ -3500,7 +3509,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,hyväksytyt määrä apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} ei löydy apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Laskut nostetaan asiakkaille. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Projekti Id -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},"rivi nro {0}: arvomäärä ei voi olla suurempi kuin odottava kuluvaatimus {1}, odottavien arvomäärä on {2}" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},"rivi nro {0}: arvomäärä ei voi olla suurempi kuin odottava kuluvaatimus {1}, odottavien arvomäärä on {2}" apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} luettelo lisätty DocType: Maintenance Schedule,Schedule,aikataulu DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Määritä budjetti tälle Kustannuspaikka. Asettaa budjetti toiminta, katso "Yhtiö List"" @@ -3561,19 +3570,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS Profile DocType: Payment Gateway Account,Payment URL Message,Maksu URL Viesti apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","kausivaihtelu asetukset esim, budjettiin, tavoitteisiin jne" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,rivi {0}: maksun summa ei voi olla suurempi kuin odottava arvomäärä +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,rivi {0}: maksun summa ei voi olla suurempi kuin odottava arvomäärä apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,maksamattomat yhteensä -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,aikaloki ei ole laskutettavissa -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","tuote {0} on mallipohja, valitse yksi sen malleista" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,aikaloki ei ole laskutettavissa +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","tuote {0} on mallipohja, valitse yksi sen malleista" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Ostaja apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Net palkkaa ei voi olla negatiivinen -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Anna Against Lahjakortit manuaalisesti +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Anna Against Lahjakortit manuaalisesti DocType: SMS Settings,Static Parameters,staattinen parametri DocType: Purchase Order,Advance Paid,ennakkoon maksettu DocType: Item,Item Tax,tuote vero apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Materiaalin Toimittaja apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Valmistevero Lasku DocType: Expense Claim,Employees Email Id,työntekijän sähköpostitunnus +DocType: Employee Attendance Tool,Marked Attendance,Merkitty Läsnäolo apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,lyhytaikaiset vastattavat apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,lähetä massatekstiviesti yhteystiedoillesi DocType: Purchase Taxes and Charges,Consider Tax or Charge for,pidetään veroille tai maksuille @@ -3596,7 +3606,7 @@ DocType: Item Attribute,Numeric Values,Numeroarvot apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Kiinnitä Logo DocType: Customer,Commission Rate,provisio taso apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Tee Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,estä poistumissovellukset osastoittain +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,estä poistumissovellukset osastoittain apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Ostoskori on tyhjä DocType: Production Order,Actual Operating Cost,todelliset toimintakustannukset apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,kantaa ei voi muokata @@ -3615,7 +3625,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,tee materiaalipyyntö automaattisesti mikäli määrä laskee alle asetetun tason ,Item-wise Purchase Register,"tuote työkalu, ostorekisteri" DocType: Batch,Expiry Date,vanhenemis päivä -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Asettaa reorder tasolla, kohde on osto Tuote tai valmistus Tuote" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Asettaa reorder tasolla, kohde on osto Tuote tai valmistus Tuote" ,Supplier Addresses and Contacts,toimittajien osoitteet ja yhteystiedot apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,Ole hyvä ja valitse Luokka ensin apps/erpnext/erpnext/config/projects.py +18,Project master.,projekti valvonta diff --git a/erpnext/translations/fr.csv b/erpnext/translations/fr.csv index 073c1af70e..168bad76e6 100644 --- a/erpnext/translations/fr.csv +++ b/erpnext/translations/fr.csv @@ -7,7 +7,7 @@ DocType: Buying Settings,Allow Item to be added multiple times in a transaction, apps/erpnext/erpnext/support/doctype/warranty_claim/warranty_claim.py +33,Cancel Material Visit {0} before cancelling this Warranty Claim,Annuler Matériau Visitez {0} avant d'annuler cette revendication de garantie apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +19,Consumer Products,Produits de consommation apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +68,Please select Party Type first,S'il vous plaît sélectionner partie Type premier -DocType: Item,Customer Items,Articles de clients +DocType: Item,Customer Items,Articles du clients apps/erpnext/erpnext/accounts/doctype/account/account.py +48,Account {0}: Parent account {1} can not be a ledger,Compte {0}: Le Compte parent {1} ne peut pas être un grand livre DocType: Item,Publish Item to hub.erpnext.com,Publier un item au hub.erpnext.com apps/erpnext/erpnext/config/setup.py +93,Email Notifications,Notifications par Email @@ -164,14 +164,14 @@ DocType: Journal Entry Account,Credit in Company Currency,Crédit Entreprise Dev DocType: Delivery Note,Installation Status,Etat de l'installation apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},La quantité acceptée + rejetée doit être égale à la quantité reçue pour l'Item {0} DocType: Item,Supply Raw Materials for Purchase,Approvisionnement en matières premières pour l'achat -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Parent Site Route +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Parent Site Route DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Télécharger le modèle, remplissez les données appropriées et joindre le fichier modifié. Toutes les dates et employé combinaison dans la période choisie viendra dans le modèle, avec des records de fréquentation existants" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,« À jour» est nécessaire DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Sera mis à jour après la facture de vente est soumise. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","D'inclure la taxe dans la ligne {0} dans le prix de l'article , les impôts dans les lignes {1} doivent également être inclus" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Réglages pour le Module des ressources humaines +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","D'inclure la taxe dans la ligne {0} dans le prix de l'article , les impôts dans les lignes {1} doivent également être inclus" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Réglages pour le Module des ressources humaines DocType: SMS Center,SMS Center,Centre SMS DocType: BOM Replace Tool,New BOM,Nouvelle nomenclature apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Regroupement de relevés de temps pour la facturation. @@ -199,7 +199,7 @@ DocType: Offer Letter,Select Terms and Conditions,Sélectionnez Termes et Condit DocType: Production Planning Tool,Sales Orders,Commandes clients DocType: Purchase Taxes and Charges,Valuation,Évaluation ,Purchase Order Trends,Bon de commande Tendances -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Allouer des congés pour l'année. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Allouer des congés pour l'année. DocType: Earning Type,Earning Type,Type de Revenus DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Planification de la capacité Désactiver et Gestion du Temps DocType: Bank Reconciliation,Bank Account,Compte bancaire @@ -236,8 +236,8 @@ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +104,Row {0 apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to company {1},Entrepôt {0} n'appartient pas à la société {1} DocType: Item Website Specification,Item Website Specification,Spécification Site élément DocType: Payment Tool,Reference No,No de référence -apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Laisser Bloqué -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},dépenses +apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Laisser verouillé +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},dépenses apps/erpnext/erpnext/accounts/utils.py +341,Annual,Annuel DocType: Stock Reconciliation Item,Stock Reconciliation Item,Stock réconciliation article DocType: Stock Entry,Sales Invoice No,Aucune facture de vente @@ -249,23 +249,24 @@ DocType: Item,Minimum Order Qty,Quantité de commande minimum DocType: Pricing Rule,Supplier Type,Type de fournisseur DocType: Item,Publish in Hub,Publier dans Hub ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Nom de la campagne est nécessaire +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Nom de la campagne est nécessaire apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Demande de matériel DocType: Bank Reconciliation,Update Clearance Date,Mettre à jour Date de Garde DocType: Item,Purchase Details,Détails de l'achat apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +325,Item {0} not found in 'Raw Materials Supplied' table in Purchase Order {1},Article {0} introuvable dans 'matières premières Fournies' table dans la commande d'achat {1} DocType: Employee,Relation,Rapport DocType: Shipping Rule,Worldwide Shipping,Livraison internationale -apps/erpnext/erpnext/config/selling.py +23,Confirmed orders from Customers.,Confirmé commandes provenant de clients. +apps/erpnext/erpnext/config/selling.py +23,Confirmed orders from Customers.,Commandes confirmées des clients. DocType: Purchase Receipt Item,Rejected Quantity,Quantité rejetée DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Champ disponible dans la note de livraison, devis, facture de vente, Sales Order" DocType: SMS Settings,SMS Sender Name,SMS Sender Nom DocType: Contact,Is Primary Contact,Est-ressource principale +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Heure du journal a été dosé pour la facturation DocType: Notification Control,Notification Control,Contrôle de notification DocType: Lead,Suggestions,Suggestions DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Set Point du Groupe sages budgets sur ce territoire. Vous pouvez également inclure la saisonnalité en réglant la distribution. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},S'il vous plaît entrer parent groupe compte pour l'entrepôt {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Paiement contre {0} {1} ne peut pas être supérieure à Encours {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Paiement contre {0} {1} ne peut pas être supérieure à Encours {2} DocType: Supplier,Address HTML,Adresse HTML DocType: Lead,Mobile No.,N° mobile. DocType: Maintenance Schedule,Generate Schedule,Générer annexe @@ -282,7 +283,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Synchronisé avec Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Mauvais Mot De Passe DocType: Item,Variant Of,Variante du -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Réglages pour le Module des ressources humaines apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',Terminé Quantité ne peut pas être supérieure à «Quantité de Fabrication ' DocType: Period Closing Voucher,Closing Account Head,Fermeture chef Compte DocType: Employee,External Work History,Histoire de travail externe @@ -294,10 +294,10 @@ DocType: Newsletter,Newsletter,Newsletter DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Notification par courriel lors de la création de la demande de matériel automatique DocType: Journal Entry,Multi Currency,Multi-devise DocType: Payment Reconciliation Invoice,Invoice Type,Type de facture -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Bon de livraison +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Bon de livraison apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Mise en place d'impôts apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,Paiement entrée a été modifié après que vous avez tiré il. Se il vous plaît tirez encore. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} est entré deux fois dans la Taxe de l'Article +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} est entré deux fois dans la Taxe de l'Article apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Résumé pour cette semaine et les activités en suspens DocType: Workstation,Rent Cost,louer coût apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,S'il vous plaît sélectionner le mois et l'année @@ -308,7 +308,7 @@ DocType: Shipping Rule,Valid for Countries,Valable pour les Pays DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Tous les champs importation connexes comme monnaie , taux de conversion , total d'importation , importation grande etc totale sont disponibles en Achat réception , Devis fournisseur , Facture d'achat , bon de commande , etc" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,Cet article est un modèle et ne peut être utilisé dans les transactions. Attributs d'élément seront copiés dans les variantes moins 'No Copy »est réglé apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Total de la commande Considéré -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Intitulé de Poste (par exemple Directeur Général, Directeur...)" +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Intitulé de Poste (par exemple Directeur Général, Directeur...)" apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,1 devise = [ ? ] Fraction DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,Vitesse à laquelle la devise du client est converti en devise de base du client DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Disponible en nomenclature , bon de livraison , facture d'achat , ordre de production, bon de commande , bon de réception , la facture de vente , Sales Order , Stock entrée , des feuilles de temps" @@ -357,7 +357,7 @@ DocType: Workstation,Consumable Cost,Coût de consommable apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) doit avoir le rôle «Approbateur de congé' DocType: Purchase Receipt,Vehicle Date,Date de véhicule apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Médical -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Raison pour perdre +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Raison pour perdre apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Workstation est fermé aux dates suivantes selon la liste de vacances: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Des opportunités DocType: Employee,Single,Unique @@ -385,14 +385,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Channel Partner DocType: Account,Old Parent,Parent Vieux DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,Personnaliser le texte d'introduction qui se déroule comme une partie de cet courriel. Chaque transaction a un texte séparé d'introduction. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Ne pas inclure des symboles (ex. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Directeur des Ventes apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Paramètres globaux pour tous les processus de fabrication. DocType: Accounts Settings,Accounts Frozen Upto,Comptes gelés jusqu'au DocType: SMS Log,Sent On,Sur envoyé -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Attribut {0} sélectionnée à plusieurs reprises dans le tableau Attributs +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Attribut {0} sélectionnée à plusieurs reprises dans le tableau Attributs DocType: HR Settings,Employee record is created using selected field. ,dossier de l'employé est créé en utilisant champ sélectionné. DocType: Sales Order,Not Applicable,Non applicable -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Débit doit être égal à crédit . La différence est {0} +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Débit doit être égal à crédit . La différence est {0} DocType: Material Request Item,Required Date,Requis Date DocType: Delivery Note,Billing Address,Adresse de facturation apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,S'il vous plaît entrez le code d'article . @@ -428,7 +429,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,S'il vous plaît entrer Entrepôt à qui demande de matériel sera porté DocType: Production Order,Additional Operating Cost,Coût de fonctionnement supplémentaires apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,produits de beauté -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Pour fusionner , les propriétés suivantes doivent être les mêmes pour les deux articles" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Pour fusionner , les propriétés suivantes doivent être les mêmes pour les deux articles" DocType: Shipping Rule,Net Weight,Poids net DocType: Employee,Emergency Phone,téléphone d'urgence ,Serial No Warranty Expiry,N ° de série expiration de garantie @@ -485,17 +486,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Facturation et de livraison Statut apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Répéter les clients DocType: Leave Control Panel,Allocate,Allouer -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Retour de Ventes +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Retour de Ventes DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Sélectionnez les commandes clients à partir de laquelle vous souhaitez créer des ordres de fabrication. DocType: Item,Delivered by Supplier (Drop Ship),Livré par le Fournisseur (Drop Ship) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Éléments du salaire. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Éléments du salaire. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Base de données de clients potentiels. -DocType: Authorization Rule,Customer or Item,Client ou Point +DocType: Authorization Rule,Customer or Item,Client ou article apps/erpnext/erpnext/config/crm.py +17,Customer database.,Base de données clients. DocType: Quotation,Quotation To,Devis Pour DocType: Lead,Middle Income,Revenu intermédiaire apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Ouverture ( Cr ) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Unité de mesure pour le point de défaut {0} ne peut pas être modifié directement parce que vous avez déjà fait une transaction (s) avec une autre unité de mesure. Vous aurez besoin de créer un nouveau poste d'utiliser un défaut UOM différente. +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Unité de mesure pour le point de défaut {0} ne peut pas être modifié directement parce que vous avez déjà fait une transaction (s) avec une autre unité de mesure. Vous aurez besoin de créer un nouveau poste d'utiliser un défaut UOM différente. apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Le montant alloué ne peut être négatif DocType: Purchase Order Item,Billed Amt,Bec Amt DocType: Warehouse,A logical Warehouse against which stock entries are made.,Un Entrepôt logique dans lequel les entrées en stocks sont faites. @@ -514,14 +515,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Taxes de vente et frais DocType: Employee,Organization Profile,Maître de l'employé . apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,S'il vous plaît configuration série de numérotation à la fréquentation via Configuration> Série de numérotation DocType: Employee,Reason for Resignation,Raison de la démission -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Modèle pour l'évaluation du rendement . +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Modèle pour l'évaluation du rendement . DocType: Payment Reconciliation,Invoice/Journal Entry Details,Facture / Journal Détails Entrée apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' n'est pas dans l'année financière {2} DocType: Buying Settings,Settings for Buying Module,Réglages pour l'achat Module apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,S'il vous plaît entrer Reçu d'achat en premier DocType: Buying Settings,Supplier Naming By,Fournisseur de nommage par DocType: Activity Type,Default Costing Rate,Taux de défaut Costing -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Calendrier d'entretien +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Calendrier d'entretien apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Ensuite, les règles de tarification sont filtrés sur la base de clientèle, par groupe de clients, Territoire, fournisseur, le type de fournisseur, campagne, etc Sales Partner" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Variation nette des stocks DocType: Employee,Passport Number,Numéro de passeport @@ -560,7 +561,7 @@ DocType: Purchase Invoice,Quarterly,Trimestriel DocType: Selling Settings,Delivery Note Required,Remarque livraison requis DocType: Sales Order Item,Basic Rate (Company Currency),Taux de base (Monnaie de la Société ) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush matières premières basée sur -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,"Pour signaler un problème, passez à" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,"Pour signaler un problème, passez à" DocType: Purchase Receipt,Other Details,Autres détails DocType: Account,Accounts,Comptes apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,commercialisation @@ -573,15 +574,15 @@ DocType: Employee,Provide email id registered in company,Fournir id courriel enr DocType: Hub Settings,Seller City,Vendeur Ville DocType: Email Digest,Next email will be sent on:,Le prochain Email sera envoyé le : DocType: Offer Letter Term,Offer Letter Term,Offrez Lettre terme -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Point a variantes. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Point a variantes. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Article {0} introuvable DocType: Bin,Stock Value,Valeur de l'action apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Type d' arbre -DocType: BOM Explosion Item,Qty Consumed Per Unit,Quantité consommée par unité +DocType: BOM Explosion Item,Qty Consumed Per Unit,Qté consommée par unité DocType: Serial No,Warranty Expiry Date,Date d'expiration de la garantie DocType: Material Request Item,Quantity and Warehouse,Quantité et entrepôt DocType: Sales Invoice,Commission Rate (%),Taux de commission (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","le type de bon doit être un ordre de vente, une facture de vente ou une entrée du journal" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","le type de bon doit être un ordre de vente, une facture de vente ou une entrée du journal" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,aérospatial DocType: Journal Entry,Credit Card Entry,Entrée de carte de crédit apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Tâche Objet @@ -598,7 +599,7 @@ apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +33,Please select w DocType: Production Order Operation,Planned End Time,Fin planifiée Temps ,Sales Person Target Variance Item Group-Wise,S'il vous plaît entrer un message avant de l'envoyer apps/erpnext/erpnext/accounts/doctype/account/account.py +92,Account with existing transaction cannot be converted to ledger,Un compte contenant une transaction ne peut pas être converti en grand livre -DocType: Delivery Note,Customer's Purchase Order No,Bon de commande du client Non +DocType: Delivery Note,Customer's Purchase Order No,Numéro bon de commande du client DocType: Employee,Cell Number,Nombre de cellules apps/erpnext/erpnext/stock/reorder_item.py +171,Auto Material Requests Generated,Demandes de matériel généré automatiquement apps/erpnext/erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js +7,Lost,perdu @@ -665,18 +666,18 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +340,"Journal Entry {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +13,Biotechnology,biotechnologie apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +108,Office Maintenance Expenses,Entretient et dépense bureau apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.js +66,Please enter Item first,S'il vous plaît entrer article premier -DocType: Account,Liability,responsabilité +DocType: Account,Liability,Responsabilité apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Le montant approuvé ne peut pas être supérieur au montant réclamé en ligne {0}. DocType: Company,Default Cost of Goods Sold Account,Par défaut Coût des marchandises vendues compte -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Barcode valide ou N ° de série +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Barcode valide ou N ° de série DocType: Employee,Family Background,Antécédents familiaux DocType: Process Payroll,Send Email,Envoyer un E-mail -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Attention: Pièce jointe non valide {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Attention: Pièce jointe non valide {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Aucune autorisation DocType: Company,Default Bank Account,Compte bancaire par défaut apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Pour filtrer sur la base du Parti, sélectionnez Parti premier type" apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},'Mettre à jour Stock' ne peut pas être vérifié parce que les articles ne sont pas livrés par {0} -apps/erpnext/erpnext/public/js/setup_wizard.js +292,Nos,Transaction non autorisée contre arrêté l'ordre de fabrication {0} +apps/erpnext/erpnext/public/js/setup_wizard.js +292,Nos,Nos DocType: Item,Items with higher weightage will be shown higher,Articles avec weightage supérieur seront affichés supérieur DocType: Bank Reconciliation Detail,Bank Reconciliation Detail,Détail du rapprochement bancaire apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +668,My Invoices,Mes factures @@ -699,7 +700,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,En ch DocType: Features Setup,"To enable ""Point of Sale"" features",Pour activer "Point de vente" caractéristiques DocType: Bin,Moving Average Rate,Moving Prix moyen DocType: Production Planning Tool,Select Items,Sélectionner les objets -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} contre le projet de loi en date du {1} {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} contre le projet de loi en date du {1} {2} DocType: Maintenance Visit,Completion Status,L'état d'achèvement DocType: Sales Invoice Item,Target Warehouse,Cible d'entrepôt DocType: Item,Allow over delivery or receipt upto this percent,autoriser plus de livraison ou de réception jusqu'à ce pour cent @@ -759,7 +760,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Camp apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Impossible de trouver le Créneau de Temps dans les prochains {0} jours pour l'Opération {1} DocType: Production Order,Plan material for sub-assemblies,matériau de plan pour les sous-ensembles apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} doit être actif -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,S'il vous plaît sélectionner le type de document premier +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,S'il vous plaît sélectionner le type de document premier apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Goto panier apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,S'il vous plaît créer la structure des salaires pour les employés {0} DocType: Salary Slip,Leave Encashment Amount,Laisser Montant Encaissement @@ -777,7 +778,7 @@ DocType: Purchase Receipt,Range,Gamme DocType: Supplier,Default Payable Accounts,Comptes de créances fournisseur par défaut apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,"L'employé {0} n'est pas actif, ou n'existe pas" DocType: Features Setup,Item Barcode,Barcode article -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Point variantes {0} mis à jour +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Point variantes {0} mis à jour DocType: Quality Inspection Reading,Reading 6,Lecture 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Paiement à l'avance Facture DocType: Address,Shop,Magasiner @@ -800,7 +801,7 @@ DocType: Salary Slip,Total in words,Total En Toutes Lettres DocType: Material Request Item,Lead Time Date,Délai Date Heure apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,est obligatoire. Peut-être que le taux de change n'est pas créé pour apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Ligne # {0}: S'il vous plaît spécifier Pas de série pour objet {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Pour les articles, de stockage, de série et de lot »Aucun produit Bundle 'Aucune sera considérée comme de la table" Packing List'. Si Entrepôt et Batch Non sont les mêmes pour tous les éléments d'emballage pour un objet quelconque 'Bundle produit', ces valeurs peuvent être saisies dans le tableau principal de l'article, les valeurs seront copiés sur "Packing List 'table." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Pour les articles, de stockage, de série et de lot »Aucun produit Bundle 'Aucune sera considérée comme de la table" Packing List'. Si Entrepôt et Batch Non sont les mêmes pour tous les éléments d'emballage pour un objet quelconque 'Bundle produit', ces valeurs peuvent être saisies dans le tableau principal de l'article, les valeurs seront copiés sur "Packing List 'table." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Les livraisons aux clients. DocType: Purchase Invoice Item,Purchase Order Item,Achat Passer commande apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,{0} {1} statut est débouchées @@ -821,6 +822,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Sélectionnez paie Année apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Aller au groupe approprié (généralement l'utilisation des fonds> Actif à court terme> Comptes bancaires et de créer un nouveau compte (en cliquant sur Ajouter un enfant) de type «Banque» DocType: Workstation,Electricity Cost,Coût de l'électricité DocType: HR Settings,Don't send Employee Birthday Reminders,Ne pas envoyer des employés anniversaire rappels +,Employee Holiday Attendance,Employé vacances Participation DocType: Opportunity,Walk In,Walk In apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Stock entrées DocType: Item,Inspection Criteria,Critères d'inspection @@ -841,9 +843,9 @@ apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_ DocType: Holiday List,Holiday List Name,Nom de la liste de vacances apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,Options sur actions DocType: Journal Entry Account,Expense Claim,Note de frais -apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Quantité pour {0} +apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Qté pour {0} DocType: Leave Application,Leave Application,Demande de Congés -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Absence outil de répartition +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Absence outil de répartition DocType: Leave Block List,Leave Block List Dates,Laisser Dates de listes rouges d' DocType: Company,If Monthly Budget Exceeded (for expense account),Si le budget mensuel dépassé (pour compte de dépenses) DocType: Workstation,Net Hour Rate,Taux Horaire Net @@ -853,7 +855,7 @@ DocType: Packing Slip Item,Packing Slip Item,Emballage article Slip DocType: POS Profile,Cash/Bank Account,Trésorerie / Compte bancaire apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Les articles retirés avec aucun changement dans la quantité ou la valeur. DocType: Delivery Note,Delivery To,Livrer à -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Table attribut est obligatoire +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Table attribut est obligatoire DocType: Production Planning Tool,Get Sales Orders,Obtenez des commandes clients apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} ne peut pas être négatif apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Rabais @@ -891,7 +893,7 @@ apps/erpnext/erpnext/config/stock.py +273,Making Stock Entries,Faire Stock entr DocType: Packing Slip,Net Weight UOM,Unité de mesure Poids Net DocType: Item,Default Supplier,Par défaut Fournisseur DocType: Manufacturing Settings,Over Production Allowance Percentage,Surproduction Allocation Pourcentage -DocType: Shipping Rule Condition,Shipping Rule Condition,Livraison Condition de règle +DocType: Shipping Rule Condition,Shipping Rule Condition,Condition règle de livraison DocType: Features Setup,Miscelleneous,Miscelleneous DocType: Holiday List,Get Weekly Off Dates,Obtenez hebdomadaires Dates Off apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +30,End Date can not be less than Start Date,Évaluation de l'objet mis à jour @@ -917,7 +919,7 @@ DocType: SMS Center,Total Characters,Nombre de caractères apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},S'il vous plaît sélectionner dans le champ BOM BOM pour objet {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-Form Détail Facture DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Rapprochement des paiements de facture -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Contribution% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Contribution% DocType: Item,website page link,Lien vers page web DocType: Company,Company registration numbers for your reference. Tax numbers etc.,"Numéros d'immatriculation de l’entreprise pour votre référence. Numéros de taxes, etc" DocType: Sales Partner,Distributor,Distributeur @@ -959,10 +961,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,Facteur de conversion Unité DocType: Stock Settings,Default Item Group,Groupe d'éléments par défaut apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Base de données fournisseurs. DocType: Account,Balance Sheet,Bilan -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Centre de coûts pour l'objet avec le code d'objet ' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Centre de coûts pour l'objet avec le code d'objet ' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,Votre personne de ventes recevera un rappel cette date pour contacter le client apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","D'autres comptes individuels peuvent être faits dans les groupes, mais les écritures ne peuvent être faites que dans les comptes individuels" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,De l'impôt et autres déductions salariales. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,De l'impôt et autres déductions salariales. DocType: Lead,Lead,Prospect DocType: Email Digest,Payables,Dettes DocType: Account,Warehouse,entrepôt @@ -979,10 +981,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Détail des paiemen DocType: Global Defaults,Current Fiscal Year,Exercice en cours DocType: Global Defaults,Disable Rounded Total,Désactiver le Total arrondi DocType: Lead,Call,Appeler -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'Les entrées' ne peuvent pas être vide +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'Les entrées' ne peuvent pas être vide apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Pièces de journal {0} sont non liée ,Trial Balance,Balance -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Mise en place d'employés +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Mise en place d'employés apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","grille """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,nourriture apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,recherche @@ -991,7 +993,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,ID utilisateur apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Voir Grand Livre apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,plus tôt -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Un groupe d'article existe avec le même nom, changez le nom de l'article ou renommez le groupe d'article SVP" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Un groupe d'article existe avec le même nom, changez le nom de l'article ou renommez le groupe d'article SVP" DocType: Production Order,Manufacture against Sales Order,Fabrication à l'encontre des commandes clients apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,revenu indirect apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,Le Point {0} ne peut pas avoir lot @@ -1016,7 +1018,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Entrepôt rejetée DocType: GL Entry,Against Voucher,Sur le bon DocType: Item,Default Buying Cost Center,Centre de coûts d'achat par défaut apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Pour tirer le meilleur parti de ERPNext, nous vous recommandons de prendre un peu de temps et de regarder ces vidéos d'aide." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Point {0} doit être objet de vente +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Point {0} doit être objet de vente apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,à DocType: Item,Lead Time in days,Délai en jours ,Accounts Payable Summary,Le résumé des comptes à payer @@ -1042,7 +1044,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,agriculture apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Vos produits ou services DocType: Mode of Payment,Mode of Payment,Mode de paiement -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,L'image de site Web doit être un fichier public ou l'URL d'un site web +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,L'image de site Web doit être un fichier public ou l'URL d'un site web apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,Ceci est un groupe d'élément de racine et ne peut être modifié . DocType: Journal Entry Account,Purchase Order,Bon de commande DocType: Warehouse,Warehouse Contact Info,Entrepôt Info Contact @@ -1053,7 +1055,7 @@ DocType: Serial No,Serial No Details,Détails Pas de série DocType: Purchase Invoice Item,Item Tax Rate,Taux de la Taxe sur l'Article apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","Pour {0}, seuls les comptes de crédit peuvent être liés avec une autre entrée de débit" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Livraison Remarque {0} n'est pas soumis -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Exercice Date de début +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Exercice Date de début apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Equipements de capitaux apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Prix règle est d'abord sélectionné sur la base de «postuler en« champ, qui peut être l'article, groupe d'articles ou de marque." DocType: Hub Settings,Seller Website,Site Vendeur @@ -1062,7 +1064,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Objectif DocType: Sales Invoice Item,Edit Description,Modifier la description apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Date de livraison prévue est moindre que prévue Date de début. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,pour fournisseur +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,pour fournisseur DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Type de compte Configuration aide à sélectionner ce compte dans les transactions. DocType: Purchase Invoice,Grand Total (Company Currency),Total (Société Monnaie) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Sortant total @@ -1114,7 +1116,6 @@ DocType: Authorization Rule,Average Discount,Remise moyenne DocType: Address,Utilities,Utilitaires DocType: Purchase Invoice Item,Accounting,Comptabilité DocType: Features Setup,Features Setup,Features Setup -DocType: Item,Is Service Item,Est-Point de service apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Période d'application ne peut pas être la période d'allocation de congé à l'extérieur DocType: Activity Cost,Projects,Projets apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,S'il vous plaît sélectionner l'Exercice @@ -1135,7 +1136,7 @@ DocType: Item,Maintain Stock,Maintenir Stock apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Stock entrées déjà créés pour ordre de fabrication apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Variation nette de l'actif fixe DocType: Leave Control Panel,Leave blank if considered for all designations,Laisser vide si cela est jugé pour toutes les désignations -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Charge de type ' réel ' à la ligne {0} ne peut pas être inclus dans l'article Noter +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Charge de type ' réel ' à la ligne {0} ne peut pas être inclus dans l'article Noter apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,De l'heure de la date DocType: Email Digest,For Company,Pour l'entreprise @@ -1144,8 +1145,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Adresse Nom d'expédition apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Plan comptable DocType: Material Request,Terms and Conditions Content,Termes et Conditions de contenu -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,ne peut pas être supérieure à 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Point {0} n'est pas un stock Article +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,ne peut pas être supérieure à 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Point {0} n'est pas un stock Article DocType: Maintenance Visit,Unscheduled,Non programmé DocType: Employee,Owned,Détenue DocType: Salary Slip Deduction,Depends on Leave Without Pay,Dépend de congé non payé @@ -1167,7 +1168,7 @@ Used for Taxes and Charges","Impôt table récupérées par le maître de l'arti apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,L'employé ne peut pas rendre compte à lui-même. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Si le compte est gelé , les entrées sont autorisés pour les utilisateurs restreints ." DocType: Email Digest,Bank Balance,Solde bancaire -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Entrée comptabilité pour {0}: {1} ne peut être faite qu'en monnaie: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Entrée comptabilité pour {0}: {1} ne peut être faite qu'en monnaie: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Aucune Structure Salariale actif trouvé pour l'employé {0} et le mois DocType: Job Opening,"Job profile, qualifications required etc.",Non authroized depuis {0} dépasse les limites DocType: Journal Entry Account,Account Balance,Solde du compte @@ -1184,7 +1185,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,sous assembl DocType: Shipping Rule Condition,To Value,To Value DocType: Supplier,Stock Manager,Responsable des Stocks apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Entrepôt de Source est obligatoire pour la ligne {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Bordereau +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Bordereau apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Loyer du bureau apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,paramètres de la passerelle SMS de configuration apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Importation a échoué! @@ -1197,7 +1198,7 @@ DocType: Features Setup,"To enable ""Point of Sale"" view",Pour activer "Po apps/erpnext/erpnext/public/js/pos/pos.js +411,Payment cannot be made for empty cart,Le paiement ne peut être fait pour le chariot vide DocType: Item,Sales Details,Détails ventes DocType: Opportunity,With Items,Avec Articles -apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,In Qty,Qté +apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,In Qty,En Qté DocType: Notification Control,Expense Claim Rejected,Note de Frais Rejetée DocType: Sales Invoice,"The date on which next invoice will be generated. It is generated on submit. ",La date à laquelle prochaine facture sera générée. Il est généré sur soumettre. @@ -1228,7 +1229,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,Numéro du détail BOM DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Montant de réduction supplémentaire (devise Société) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Erreur: {0} > {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,S'il vous plaît créer un nouveau compte de plan comptable . -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Visite de maintenance +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Visite de maintenance apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Client> Groupe de clientèle> Territoire DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Disponible lot Quantité à Entrepôt DocType: Time Log Batch Detail,Time Log Batch Detail,Temps connecter Détail du lot @@ -1237,7 +1238,7 @@ DocType: Leave Block List,Block Holidays on important days.,Bloc Vacances sur le ,Accounts Receivable Summary,Le résumé de comptes débiteurs apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,S'il vous plaît mettre champ ID de l'utilisateur dans un dossier de l'employé pour définir le rôle des employés DocType: UOM,UOM Name,Nom Unité de mesure -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Montant de la contribution +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Montant de la contribution DocType: Sales Invoice,Shipping Address,Adresse de livraison DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,Cet outil vous permet de mettre à jour ou de corriger la quantité et l'évaluation de stock dans le système. Il est généralement utilisé pour synchroniser les valeurs du système et ce qui existe réellement dans vos entrepôts. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,En Toutes Lettres. Sera visible une fois que vous enregistrez le bon de livraison. @@ -1278,7 +1279,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Pour suivre les éléments à l'aide de code à barres. Vous serez en mesure d'entrer dans les articles bon de livraison et la facture de vente par balayage de code à barres de l'article. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Renvoyer Paiement Email DocType: Dependent Task,Dependent Task,Tâche dépendante -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Facteur de conversion de l'unité de mesure par défaut doit être 1 dans la ligne {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Facteur de conversion de l'unité de mesure par défaut doit être 1 dans la ligne {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Les entrées en stocks existent contre entrepôt {0} ne peut pas réaffecter ou modifier Maître Nom ' DocType: Manufacturing Settings,Try planning operations for X days in advance.,Essayez opérations de X jours de la planification à l'avance. DocType: HR Settings,Stop Birthday Reminders,Arrêter anniversaire rappels @@ -1288,7 +1289,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Voir apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Variation nette des espèces DocType: Salary Structure Deduction,Salary Structure Deduction,Déduction structure salariale -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Unité de mesure {0} a été saisi plus d'une fois dans la Table de facteur de Conversion +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Unité de mesure {0} a été saisi plus d'une fois dans la Table de facteur de Conversion apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Demande de paiement existe déjà {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Coût de documents publiés apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Quantité ne doit pas être plus de {0} @@ -1317,7 +1318,7 @@ DocType: BOM Item,BOM Item,Article BOM DocType: Appraisal,For Employee,Pour les employés apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Row {0}: Advance contre le fournisseur doit être débiter DocType: Company,Default Values,Valeurs Par Défaut -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Row {0}: Montant du paiement ne peut être négative +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Row {0}: Montant du paiement ne peut être négative DocType: Expense Claim,Total Amount Reimbursed,Montant total remboursé apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Sur le fournisseur de la facture {0} datée {1} DocType: Customer,Default Price List,Liste des prix défaut @@ -1345,8 +1346,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,rev DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Remplacer une nomenclature particulière dans tous les autres nomenclatures où il est utilisé. Il remplacera l'ancien lien BOM, mettre à jour les coûts et régénérer ""BOM explosion Item"" table par nouvelle nomenclature" DocType: Shopping Cart Settings,Enable Shopping Cart,Activer Panier DocType: Employee,Permanent Address,Adresse permanente -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Point {0} doit être un service Point . -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Avance versée contre {0} {1} ne peut pas être supérieure \ que Total {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Etes-vous sûr de vouloir unstop DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Réduire la déduction de congé sans solde (PLT) @@ -1402,17 +1402,18 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Principal apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Variante DocType: Naming Series,Set prefix for numbering series on your transactions,Définir le préfixe des séries numérotées pour vos transactions +DocType: Employee Attendance Tool,Employees HTML,Les employés HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Compte des parents ne peut pas être un grand livre -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Par défaut BOM ({0}) doit être actif pour ce produit ou de son modèle +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Par défaut BOM ({0}) doit être actif pour ce produit ou de son modèle DocType: Employee,Leave Encashed?,Laisser encaissés? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Opportunité champ est obligatoire DocType: Item,Variants,Variantes -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Faites bon de commande +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Faites bon de commande DocType: SMS Center,Send To,Send To apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Il n'y a pas assez de solde de congés d'autorisation de type {0} DocType: Payment Reconciliation Payment,Allocated amount,Montant alloué DocType: Sales Team,Contribution to Net Total,Contribution à Total net -DocType: Sales Invoice Item,Customer's Item Code,Code article client +DocType: Sales Invoice Item,Customer's Item Code,Code article clients DocType: Stock Reconciliation,Stock Reconciliation,Stock réconciliation DocType: Territory,Territory Name,Nom du territoire apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +152,Work-in-Progress Warehouse is required before Submit,Les travaux en progrès entrepôt est nécessaire avant Soumettre @@ -1508,7 +1509,7 @@ DocType: Sales Person,Name and Employee ID,Nom et ID employé apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,La date d'échéance ne peut être antérieure Date de publication DocType: Website Item Group,Website Item Group,Groupe Article Site apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Frais et taxes -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,S'il vous plaît entrer Date de référence +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,S'il vous plaît entrer Date de référence apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Paiement Gateway Account est pas configuré apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} entrées de paiement ne peuvent pas être filtrées par {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,Tableau pour le point qui sera affiché dans le site Web @@ -1529,7 +1530,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Détails de la résolution DocType: Quality Inspection Reading,Acceptance Criteria,Critères d'acceptation DocType: Item Attribute,Attribute Name,Nom de l'attribut -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Ajouter au panier DocType: Item Group,Show In Website,Afficher dans le site Web apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Groupe DocType: Task,Expected Time (in hours),Durée prévue (en heures) @@ -1539,7 +1539,7 @@ apps/erpnext/erpnext/config/projects.py +51,Gantt chart of all tasks.,Diagramme DocType: Appraisal,For Employee Name,Pour Nom de l'employé DocType: Holiday List,Clear Table,Effacer le tableau DocType: Features Setup,Brands,Marques -DocType: C-Form Invoice Detail,Invoice No,Aucune facture +DocType: C-Form Invoice Detail,Invoice No,No de facture apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +93,"Leave cannot be applied/cancelled before {0}, as leave balance has already been carry-forwarded in the future leave allocation record {1}","Congé ne peut être appliquée / annulée avant {0}, que l'équilibre de congé a déjà été transmis report dans le futur enregistrement d'allocation de congé {1}" DocType: Activity Cost,Costing Rate,Taux Costing ,Customer Addresses And Contacts,Adresses et contacts clients @@ -1561,7 +1561,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Montant de livraison ,Pending Amount,Montant en attente DocType: Purchase Invoice Item,Conversion Factor,Facteur de conversion DocType: Purchase Order,Delivered,Livré -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Configuration serveur entrant pour les emplois id courriel . (par exemple jobs@example.com ) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Configuration serveur entrant pour les emplois id courriel . (par exemple jobs@example.com ) DocType: Purchase Receipt,Vehicle Number,Nombre de véhicules DocType: Purchase Invoice,The date on which recurring invoice will be stop,La date à laquelle la facture récurrente sera arrêter apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Nombre de feuilles alloués {0} ne peut pas être inférieure à feuilles déjà approuvés {1} pour la période @@ -1578,7 +1578,7 @@ DocType: HR Settings,HR Settings,Paramètrages RH apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,La note de frais est en attente d'approbation. Seul l'approbateur des frais peut mettre à jour le statut. DocType: Purchase Invoice,Additional Discount Amount,Montant de réduction supplémentaire DocType: Leave Block List Allow,Leave Block List Allow,Laisser Block List Autoriser -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abr ne peut être vide ou l'espace +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abr ne peut être vide ou l'espace apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Groupe non-groupe apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,sportif apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Total réel @@ -1602,7 +1602,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},Point {0} a été saisi plusieurs fois avec la même description ou la date ou de l'entrepôt apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Chefs de lettre pour des modèles d'impression . DocType: Salary Slip,Deduction,Déduction -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Prix de l'article ajouté pour {0} dans la liste Prix {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Prix de l'article ajouté pour {0} dans la liste Prix {1} DocType: Address Template,Address Template,Modèle d'adresse apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,S'il vous plaît entrer Employee ID de cette personne de ventes DocType: Territory,Classification of Customers by region,Classification des clients par région @@ -1619,7 +1619,7 @@ DocType: Employee,Date of Birth,Date de naissance apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Nouveau Stock UDM doit être différent de stock actuel Emballage DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** Exercice ** représente un exercice. Toutes les écritures comptables et autres transactions majeures sont suivis dans ** Exercice **. DocType: Opportunity,Customer / Lead Address,Adresse Client / Prospect -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Attention: certificat SSL non valide sur la pièce jointe {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Attention: certificat SSL non valide sur la pièce jointe {0} DocType: Production Order Operation,Actual Operation Time,Temps Opérationnel Réel DocType: Authorization Rule,Applicable To (User),Applicable aux (Utilisateur) DocType: Purchase Taxes and Charges,Deduct,Déduire @@ -1636,7 +1636,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Séparer le bon de livraison dans des packages. apps/erpnext/erpnext/hooks.py +69,Shipments,Livraisons DocType: Purchase Order Item,To be delivered to customer,Pour être livré à la clientèle -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Log Time Etat doit être soumis. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Log Time Etat doit être soumis. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,N ° de série {0} ne fait pas partie de tout entrepôt apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Ligne # DocType: Purchase Invoice,In Words (Company Currency),En Toutes Lettres (Devise Entreprise) @@ -1653,7 +1653,7 @@ DocType: Leave Application,Total Leave Days,Total des jours de congé DocType: Email Digest,Note: Email will not be sent to disabled users,Remarque: Email ne sera pas envoyé aux utilisateurs désactivé apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Sélectionnez Société ... DocType: Leave Control Panel,Leave blank if considered for all departments,Laisser vide si cela est jugé pour tous les ministères -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Types d'emploi ( , contrat permanent, stagiaire , etc. ) ." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Types d'emploi ( , contrat permanent, stagiaire , etc. ) ." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} est obligatoire pour l'objet {1} DocType: Currency Exchange,From Currency,De Monnaie apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","S'il vous plaît sélectionnez Montant alloué, type de facture et numéro de facture dans atleast une rangée" @@ -1672,7 +1672,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,In Process DocType: Authorization Rule,Itemwise Discount,Remise (par Article) DocType: Purchase Order Item,Reference Document Type,Référence Type de document -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} contre le bon de commande de vente {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} contre le bon de commande de vente {1} DocType: Account,Fixed Asset,Actifs immobilisés apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Stocks en série DocType: Activity Type,Default Billing Rate,Par défaut taux de facturation @@ -1682,7 +1682,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Classement des ventes au paiement DocType: Expense Claim Detail,Expense Claim Detail,Détail Note de Frais apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Time Logs créé: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,S'il vous plaît sélectionnez compte correct +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,S'il vous plaît sélectionnez compte correct DocType: Item,Weight UOM,Poids Emballage DocType: Employee,Blood Group,Groupe sanguin DocType: Purchase Invoice Item,Page Break,Saut de page @@ -1717,11 +1717,11 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},S'il vous plaît entrer une adresse valide Id DocType: Production Order Operation,Completed Qty,Quantité complétée apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","Pour {0}, seuls les comptes de débit peuvent être liés avec une autre entrée de crédit" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Série {0} déjà utilisé dans {1} +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Série {0} déjà utilisé dans {1} DocType: Manufacturing Settings,Allow Overtime,Autoriser heures supplémentaires apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} Numéros de Série requis pour objet {1}. Vous avez fourni {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Valorisation Taux actuel -DocType: Item,Customer Item Codes,Codes de référence du client +DocType: Item,Customer Item Codes,Codes article du client DocType: Opportunity,Lost Reason,Raison perdu apps/erpnext/erpnext/config/accounts.py +73,Create Payment Entries against Orders or Invoices.,Créer des entrées de paiement contre commandes ou factures. apps/erpnext/erpnext/public/js/templates/address_list.html +1,New Address,Nouvelle adresse @@ -1736,7 +1736,7 @@ DocType: Branch,Branch,Branche apps/erpnext/erpnext/config/setup.py +61,Printing and Branding,équité apps/erpnext/erpnext/hr/report/monthly_salary_register/monthly_salary_register.py +66,No salary slip found for month:,Pas de fiche de salaire trouvé pour le mois: DocType: Bin,Actual Quantity,Quantité réelle -DocType: Shipping Rule,example: Next Day Shipping,Exemple: Jour suivant Livraison +DocType: Shipping Rule,example: Next Day Shipping,Exemple: Livraison le jour suivant apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +188,Serial No {0} not found,N ° de série {0} introuvable apps/erpnext/erpnext/public/js/setup_wizard.js +233,Your Customers,Vos clients DocType: Leave Block List Date,Block Date,Date de bloquer @@ -1768,7 +1768,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Aucu apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Cas n ° ne peut pas être 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,"Si vous avez équipe de vente et Partenaires Vente (Channel Partners), ils peuvent être marqués et maintenir leur contribution à l'activité commerciale" DocType: Item,Show a slideshow at the top of the page,Afficher un diaporama en haut de la page -DocType: Item,"Allow in Sales Order of type ""Service""","Autoriser les bon de commandes de type ""Service""" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Magasins DocType: Time Log,Projects Manager,Chef de Projet DocType: Serial No,Delivery Time,L'heure de la livraison @@ -1776,13 +1775,14 @@ apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +27,Ag DocType: Item,End of Life,Fin de vie apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +41,Travel,Déplacement DocType: Leave Block List,Allow Users,Autoriser les utilisateurs -DocType: Purchase Order,Customer Mobile No,Client Mobile Pas +DocType: Purchase Order,Customer Mobile No,Numéro GSM client DocType: Sales Invoice,Recurring,Récurrent DocType: Cost Center,Track separate Income and Expense for product verticals or divisions.,Suivre les revenus et dépenses de séparée verticales ou divisions produits. DocType: Rename Tool,Rename Tool,Outil de renommage apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Mettre à jour le coût DocType: Item Reorder,Item Reorder,Réorganiser article apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,transfert de matériel +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Item {0} doit être un élément de vente dans {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Précisez les activités, le coût d'exploitation et de donner une opération unique, non à vos opérations ." DocType: Purchase Invoice,Price List Currency,Devise Prix DocType: Naming Series,User must always select,L'utilisateur doit toujours sélectionner @@ -1798,12 +1798,12 @@ DocType: Quality Inspection,Purchase Receipt No,Achetez un accusé de réception apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +30,Earnest Money,Arrhes DocType: Process Payroll,Create Salary Slip,Créer bulletin de salaire apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +158,Source of Funds (Liabilities),Source des fonds ( Passif ) -apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +349,Quantity in row {0} ({1}) must be same as manufactured quantity {2},Entrepôt ne peut pas être supprimé car il existe entrée stock registre pour cet entrepôt . +apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +349,Quantity in row {0} ({1}) must be same as manufactured quantity {2},Quantité alignée {0} ({1}) doit être égale a la quantité fabriquée {2} DocType: Appraisal,Employee,Employés apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Importer Email De apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Inviter en tant qu'utilisateur DocType: Features Setup,After Sale Installations,Installations Après Vente -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} est entièrement facturé +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} est entièrement facturé DocType: Workstation Working Hour,End Time,Heure de fin apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Date prévue d'achèvement ne peut pas être inférieure à projet Date de début apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Règles pour ajouter les frais d'envoi . @@ -1829,7 +1829,7 @@ DocType: Upload Attendance,Attendance To Date,La participation à ce jour apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Cas No (s ) en cours d'utilisation . Essayez de l'affaire n ° {0} DocType: Warranty Claim,Raised By,Raised By DocType: Payment Gateway Account,Payment Account,Compte de paiement -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,Veuillez indiquer Société de procéder +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,Veuillez indiquer Société de procéder apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Variation nette des comptes débiteurs apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,faire DocType: Quality Inspection Reading,Accepted,Accepté @@ -1841,14 +1841,14 @@ DocType: Shipping Rule,Shipping Rule Label,Livraison règle étiquette apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Matières premières ne peuvent pas être vide. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Impossible de mettre à jour de stock, facture contient baisse élément de l'expédition." DocType: Newsletter,Test,Test -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Comme il ya des transactions sur actions existants pour cet article, \ vous ne pouvez pas modifier les valeurs de 'A Numéro de série "," A lot Non »,« Est-Stock Item »et« Méthode d'évaluation »" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Journal Entrée rapide apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,Vous ne pouvez pas modifier le taux si BOM mentionné agianst un article DocType: Employee,Previous Work Experience,L'expérience de travail antérieure DocType: Stock Entry,For Quantity,Pour Quantité apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},Vous ne pouvez pas sélectionner le type de charge comme « Sur la ligne précédente Montant » ou « Le précédent Row totale » pour l'évaluation . Vous ne pouvez sélectionner que l'option «Total» pour le montant de la ligne précédente ou total de la ligne précédente -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} n'a pas été soumis +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} n'a pas été soumis apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Gestion des demandes d'articles. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Pour la production séparée sera créée pour chaque article produit fini. DocType: Purchase Invoice,Terms and Conditions1,Termes et conditions1 @@ -1873,6 +1873,7 @@ DocType: Notification Control,Expense Claim Approved Message,Note de Frais Appro DocType: Email Digest,How frequently?,Quelle est la fréquence? DocType: Purchase Receipt,Get Current Stock,Obtenez Stock actuel apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Arbre de la Bill of Materials +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Mark Présent apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Entretien date de début ne peut pas être avant la date de livraison pour série n ° {0} DocType: Production Order,Actual End Date,Date de fin réelle DocType: Authorization Rule,Applicable To (Role),Applicable à (Rôle) @@ -1887,7 +1888,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,La date de fin de contrat doit être supérieure à la date d'embauche DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,Un tiers distributeur / commerçant / commissionnaire / affilié / revendeur qui vend les produits de l'entreprise en échange d'une commission. DocType: Customer Group,Has Child Node,A Node enfant -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} contre le bon de commande d'achat {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} contre le bon de commande d'achat {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Entrez les paramètres url statiques (par exemple ici sender = ERPNext, username = ERPNext, mot de passe = 1234 etc)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,"{0} {1} dans aucun exercice actif. Pour plus de détails, consultez {2}." apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Par défaut Warehouse est obligatoire pour les stock Article . @@ -1935,7 +1936,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Ajouter ou déduire: Que vous voulez ajouter ou déduire la taxe." DocType: Purchase Receipt Item,Recd Quantity,Quantité recd apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},effondrement -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Stock entrée {0} est pas soumis +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Stock entrée {0} est pas soumis DocType: Payment Reconciliation,Bank / Cash Account,Compte en Banque / trésorerie DocType: Tax Rule,Billing City,Facturation Ville DocType: Global Defaults,Hide Currency Symbol,Masquer le symbole monétaire @@ -1961,7 +1962,7 @@ DocType: Salary Structure,Total Earning,Total Revenus DocType: Purchase Receipt,Time at which materials were received,Heure à laquelle les matériaux ont été reçues apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Mes adresses DocType: Stock Ledger Entry,Outgoing Rate,Taux sortant -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Organisation principale des branches. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Organisation principale des branches. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,ou DocType: Sales Order,Billing Status,Statut de la facturation apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Commande {0} n'est pas soumis @@ -1999,7 +2000,7 @@ DocType: Bin,Reserved Quantity,Quantité réservée DocType: Landed Cost Voucher,Purchase Receipt Items,Acheter des articles reçus apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Personnalisation des formulaires DocType: Account,Income Account,Compte de revenu -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Livraison +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Livraison DocType: Stock Reconciliation Item,Current Qty,Quantité actuelle DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",Voir «Taux de matériaux à base de« coûts dans la section DocType: Appraisal Goal,Key Responsibility Area,Section à responsabilité importante @@ -2011,9 +2012,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,Bon DocType: Notification Control,Purchase Order Message,Achat message Ordre DocType: Tax Rule,Shipping Country,Pays de livraison DocType: Upload Attendance,Upload HTML,Télécharger HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","Avance totale ({0}) contre l'ordonnance {1} ne peut pas être supérieure \ - que le Grand total ({2})" DocType: Employee,Relieving Date,Date de soulager apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Prix règle est faite pour remplacer la liste des prix / définir le pourcentage de remise, sur la base de certains critères." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Entrepôt ne peut être modifié que via Stock Entrée / Bon de Livraison / Reçu d'Achat @@ -2023,14 +2021,14 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Facte apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Se il est sélectionné Prix règle est faite pour «Prix», il écrasera Prix. Prix Prix de la règle est le prix définitif, donc pas de réduction supplémentaire devrait être appliqué. Ainsi, dans les transactions comme des commandes clients, bon de commande, etc., il sera récupéré dans le champ 'Prix', plutôt que champ 'Prix List Noter »." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Prospects clés par Type d'Industrie DocType: Item Supplier,Item Supplier,Fournisseur d'article -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,S'il vous plaît entrez le code d'article pour obtenir n ° de lot -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},S'il vous plaît sélectionnez une valeur pour {0} {1} quotation_to +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,S'il vous plaît entrez le code d'article pour obtenir n ° de lot +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},S'il vous plaît sélectionnez une valeur pour {0} {1} quotation_to apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Toutes les adresses. DocType: Company,Stock Settings,Paramètres de stock apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","La fusion est seulement possible si les propriétés suivantes sont les mêmes dans les deux dossiers. Est Groupe, type de racine, Société" apps/erpnext/erpnext/config/crm.py +72,Manage Customer Group Tree.,Gérer l'arborescence de groupe de clients . apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +302,New Cost Center Name,Nom du Nouveau Centre de Coûts -DocType: Leave Control Panel,Leave Control Panel,Laisser le Panneau de configuration +DocType: Leave Control Panel,Leave Control Panel,Quitter le panneau de configuration apps/erpnext/erpnext/utilities/doctype/address/address.py +95,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Aucune Modèle d'Adresse par défaut trouvé. S'il vous plaît créez un nouveau modèle à partir de Configuration> Impression et Branding> Modèle d'Adresse DocType: Appraisal,HR User,Chargé de Ressources Humaines DocType: Purchase Invoice,Taxes and Charges Deducted,Taxes et frais déduits @@ -2047,7 +2045,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Numéro de chèque DocType: Payment Tool Detail,Payment Tool Detail,Paiement outil Détail ,Sales Browser,Exceptionnelle pour {0} ne peut pas être inférieur à zéro ( {1} ) DocType: Journal Entry,Total Credit,Crédit total -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Attention: Un autre {0} {1} # existe contre l'entrée en stock {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Attention: Un autre {0} {1} # existe contre l'entrée en stock {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,arrondis apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Prêts et avances ( actif) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Débiteurs @@ -2067,8 +2065,8 @@ DocType: Price List,Price List Master,Liste des Prix Maître DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,Toutes les opérations de vente peuvent être assignées à plusieurs **Agent Commerciaux** de sorte que vous pouvez configurer et surveiller les cibles. ,S.O. No.,S.O. Non. DocType: Production Order Operation,Make Time Log,Prenez le temps Connexion -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,S'il vous plaît définir la quantité de réapprovisionnement -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},Merci de créer un Client à partir du Prospect {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,S'il vous plaît définir la quantité de réapprovisionnement +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},Merci de créer un Client à partir du Prospect {0} DocType: Price List,Applicable for Countries,Applicable pour les pays apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Ordinateurs apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,Il s'agit d'un groupe de clients de la racine et ne peut être modifié . @@ -2116,7 +2114,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Factur DocType: Payment Reconciliation Invoice,Outstanding Amount,Encours DocType: Project Task,Working,De travail DocType: Stock Ledger Entry,Stock Queue (FIFO),Stock file d'attente (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,S'il vous plaît sélectionner registres de temps. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,S'il vous plaît sélectionner registres de temps. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} n'appartient pas à la société {1} DocType: Account,Round Off,Compléter ,Requested Qty,Quantité demandée @@ -2154,7 +2152,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Obtenez les entrées pertinentes apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Entrée comptable pour Stock DocType: Sales Invoice,Sales Team1,Ventes Equipe1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Point {0} n'existe pas +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Point {0} n'existe pas DocType: Sales Invoice,Customer Address,Adresse du client DocType: Payment Request,Recipient and Message,Destinataire Message DocType: Purchase Invoice,Apply Additional Discount On,Appliquer de remise supplémentaire sur @@ -2173,7 +2171,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Muet Email apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Alimentation , boissons et tabac" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL ou BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Ne peut effectuer le paiement que contre non facturés {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Ne peut effectuer le paiement que contre non facturés {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Taux de commission ne peut pas être supérieure à 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Niveau de Stock Minimal DocType: Stock Entry,Subcontract,Sous-traiter @@ -2191,9 +2189,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,logiciel apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Couleur DocType: Maintenance Visit,Scheduled,Prévu apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle",S'il vous plaît sélectionner Point où "Est Stock Item" est "Non" et "est le point de vente" est "Oui" et il n'y a pas d'autre groupe de produits +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Avance totale ({0}) contre l'ordonnance {1} ne peut pas être supérieure à la Grand total ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Sélectionnez une distribution mensuelle de distribuer inégalement cibles à travers les mois. DocType: Purchase Invoice Item,Valuation Rate,Taux d'évaluation -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Liste des Prix devise sélectionné +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Liste des Prix devise sélectionné apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,Point Row {0}: Reçu d'achat {1} ne existe pas dans le tableau ci-dessus 'achat reçus » apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Employé {0} a déjà appliqué pour {1} entre {2} et {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Date de début du projet @@ -2205,6 +2204,7 @@ DocType: Quality Inspection,Inspection Type,Type d'inspection apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},S'il vous plaît sélectionnez {0} DocType: C-Form,C-Form No,C-formulaire n ° DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,Participation banalisée apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,chercheur apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,S'il vous plaît sauvegarder l'infolettre avant de l'envoyer apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Nom ou Email est obligatoire @@ -2230,7 +2230,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Confirm DocType: Payment Gateway,Gateway,passerelle apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Fournisseur> Type de fournisseur apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Type de partie de Parent -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,Date de livraison prévue ne peut pas être avant commande date apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Le titre de l'adresse est obligatoire DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,Entrez le nom de la campagne si la source de l'enquête est la campagne @@ -2240,15 +2240,16 @@ apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_re DocType: Attendance,Attendance Date,Date de Présence DocType: Salary Structure,Salary breakup based on Earning and Deduction.,rupture des salaires basée sur l'obtention et la déduction. apps/erpnext/erpnext/accounts/doctype/account/account.py +127,Account with child nodes cannot be converted to ledger,Un compte avec des enfants ne peut pas être converti en grand livre -DocType: Address,Preferred Shipping Address,Preferred Adresse de livraison +DocType: Address,Preferred Shipping Address,Adresse de livraison préférée DocType: Purchase Receipt Item,Accepted Warehouse,Entrepôt acceptable DocType: Bank Reconciliation Detail,Posting Date,Date de publication DocType: Item,Valuation Method,Méthode d'évaluation apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Impossible de trouver le taux de change pour {0} à {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Mark Demi-journée DocType: Sales Invoice,Sales Team,Équipe des ventes apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,dupliquer entrée DocType: Serial No,Under Warranty,Sous garantie -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Erreur] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Erreur] DocType: Sales Order,In Words will be visible once you save the Sales Order.,En Toutes Lettres. Sera visible une fois que vous enregistrerez le bon de commande. ,Employee Birthday,Anniversaire de l'employé apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Capital Risque @@ -2271,6 +2272,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,S'il vous plaît entrer les détails de l' article DocType: Account,Depreciation,Actifs d'impôt apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Fournisseur (s) +DocType: Employee Attendance Tool,Employee Attendance Tool,La présence des employés Outil DocType: Supplier,Credit Limit,Limite de crédit apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Sélectionner le type de transaction DocType: GL Entry,Voucher No,No du bon @@ -2280,7 +2282,7 @@ apps/erpnext/erpnext/config/selling.py +122,Template of terms or contract.,Modè DocType: Customer,Address and Contact,Adresse et contact DocType: Supplier,Last Day of the Next Month,Dernier jour du mois prochain DocType: Employee,Feedback,Commentaire -apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +66,"Leave cannot be allocated before {0}, as leave balance has already been carry-forwarded in the future leave allocation record {1}","Congé ne peut être attribué avant {0}, que l'équilibre de congé a déjà été transmis report dans le futur enregistrement d'allocation de congé {1}" +apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +66,"Leave cannot be allocated before {0}, as leave balance has already been carry-forwarded in the future leave allocation record {1}","Congé ne peut être accordé avant {0}, car le congé a déjà été porté en avant. Ne pas toucher le registre des congés {1}" apps/erpnext/erpnext/accounts/party.py +280,Note: Due / Reference Date exceeds allowed customer credit days by {0} day(s),Remarque: En raison / Date de référence dépasse autorisés jours de crédit client par {0} jour (s) DocType: Stock Settings,Freeze Stock Entries,Congeler entrées en stocks DocType: Item,Reorder level based on Warehouse,Niveau de réapprovisionnement basée sur Entrepôt @@ -2297,7 +2299,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Prix ou à prix réduits ,Is Primary Address,Est-Adresse primaire DocType: Production Order,Work-in-Progress Warehouse,Travaux en cours Entrepôt -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Référence #{0} daté {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Référence #{0} daté {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Gérer les adresses DocType: Pricing Rule,Item Code,Code de l'article DocType: Production Planning Tool,Create Production Orders,Créer des ordres de fabrication @@ -2324,7 +2326,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Rapprochement bancaire apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Obtenir les Mises à jour apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Demande de Matériel {0} est annulé ou arrêté apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Ajouter quelque exemple de dossier -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Gestion des congés +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Gestion des congés apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Groupe par compte DocType: Sales Order,Fully Delivered,Entièrement Livré DocType: Lead,Lower Income,Basse revenu @@ -2339,6 +2341,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','La date due' doit être antérieure à la 'Date' ,Stock Projected Qty,Stock projeté Quantité apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},S'il vous plaît définir la valeur par défaut {0} dans Société {0} +DocType: Employee Attendance Tool,Marked Attendance HTML,Présence marquée HTML DocType: Sales Order,Customer's Purchase Order,Bon de commande du client DocType: Warranty Claim,From Company,De Company apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Valeur ou Quantité @@ -2403,6 +2406,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Virement apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,S'il vous plaît sélectionner compte bancaire DocType: Newsletter,Create and Send Newsletters,Créer et envoyer des infolettres +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Cochez toutes DocType: Sales Order,Recurring Order,Ordre récurrent DocType: Company,Default Income Account,Compte d'exploitation apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Groupe de client / client @@ -2410,12 +2414,12 @@ DocType: Payment Gateway Account,Default Payment Request Message,Défaut de dema DocType: Item Group,Check this if you want to show in website,Cochez cette case si vous souhaitez afficher sur le site ,Welcome to ERPNext,Bienvenue à ERPNext DocType: Payment Reconciliation Payment,Voucher Detail Number,Bon nombre de Détail -apps/erpnext/erpnext/config/crm.py +146,Lead to Quotation,Délai pour estimation +apps/erpnext/erpnext/config/crm.py +146,Lead to Quotation,Délai pour l'offre DocType: Lead,From Customer,Du client apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +37,Calls,appels DocType: Project,Total Costing Amount (via Time Logs),Montant total Costing (via Time Logs) DocType: Purchase Order Item Supplied,Stock UOM,Stock UDM -apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +199,Purchase Order {0} is not submitted,entrer une valeur +apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +199,Purchase Order {0} is not submitted,Bon de commande {0} est pas soumis apps/erpnext/erpnext/stock/doctype/item/item.js +32,Projected,Projection apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +218,Serial No {0} does not belong to Warehouse {1},Les paramètres par défaut pour les transactions boursières . apps/erpnext/erpnext/controllers/status_updater.py +139,Note: System will not check over-delivery and over-booking for Item {0} as quantity or amount is 0,Remarque : Le système ne vérifie pas sur - livraison et la sur- réservation pour objet {0} que la quantité ou le montant est égal à 0 @@ -2434,6 +2438,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Retour contre la factu DocType: Item,Warranty Period (in days),Période de garantie (en jours) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Capacité d'autofinancement apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,par exemple TVA +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Participation Mark employés en vrac apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Point 4 DocType: Journal Entry Account,Journal Entry Account,Compte Entrée Journal DocType: Shopping Cart Settings,Quotation Series,Soumission série @@ -2462,7 +2467,7 @@ DocType: Employee,Confirmation Date,Date de confirmation DocType: C-Form,Total Invoiced Amount,Montant total facturé DocType: Account,Sales User,Intervenant/Chargé de Ventes apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +46,Min Qty can not be greater than Max Qty,Quantité de minute ne peut être supérieure à Max Quantité -DocType: Stock Entry,Customer or Supplier Details,Client ou fournisseur détails +DocType: Stock Entry,Customer or Supplier Details,Client ou détails fournisseur DocType: Payment Request,Email To,Envoyer à DocType: Lead,Lead Owner,Responsable du prospect apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +257,Warehouse is required,Entrepôt est nécessaire @@ -2504,7 +2509,7 @@ DocType: Purchase Taxes and Charges,Reference Row #,Ligne de référence # apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +76,Batch number is mandatory for Item {0},Le numéro de lot est obligatoire pour objet {0} apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.js +14,This is a root sales person and cannot be edited.,Il s'agit d'une personne de ventes de racines et ne peut être modifié . ,Stock Ledger,Stock Ledger -apps/erpnext/erpnext/templates/pages/order.html +67,Rate: {0},Taux: {0} +apps/erpnext/erpnext/templates/pages/order.html +67,Rate: {0},Prix: {0} DocType: Salary Slip Deduction,Salary Slip Deduction,Déduction bulletin de salaire apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +202,Select a group node first.,Sélectionnez un noeud de premier groupe. apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +75,Purpose must be one of {0},L'objectif doit être l'un des {0} @@ -2566,7 +2571,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +231,"Row {0}: Qty Available Qty: {4}, Transfer Qty: {5}","Row {0}: Quantité pas avalable dans l'entrepôt {1} sur {2} {3}. Disponible Quantité: {4}, transfert Quantité: {5}" apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +20,Item 3,Point 3 -DocType: Purchase Order,Customer Contact Email,Client Contact Courriel +DocType: Purchase Order,Customer Contact Email,Email contact client DocType: Sales Team,Contribution (%),Contribution (%) apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +471,Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified,Casual congé apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +171,Responsibilities,Responsabilités @@ -2579,14 +2584,14 @@ DocType: Task,Actual Start Date (via Time Logs),Date de début réelle (via Time DocType: Stock Reconciliation Item,Before reconciliation,Avant la réconciliation apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},A {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Les impôts et les frais supplémentaires (Société Monnaie) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,"La ligne ""Taxe sur l'Article"" {0} doit indiquer un compte de type Revenu ou Dépense ou Facturable" +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,"La ligne ""Taxe sur l'Article"" {0} doit indiquer un compte de type Revenu ou Dépense ou Facturable" DocType: Sales Order,Partly Billed,Présentée en partie DocType: Item,Default BOM,Nomenclature par défaut apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,S'il vous plaît retaper nom de l'entreprise pour confirmer apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Encours total Amt DocType: Time Log Batch,Total Hours,Total des heures DocType: Journal Entry,Printing Settings,Réglages d'impression -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Débit total doit être égal au total du crédit . +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Débit total doit être égal au total du crédit . apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,automobile apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,De bon de livraison DocType: Time Log,From Time,From Time @@ -2594,7 +2599,7 @@ DocType: Notification Control,Custom Message,Message personnalisé apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +33,Investment Banking,Banques d'investissement apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +377,Cash or Bank Account is mandatory for making payment entry,N ° de série {0} a déjà été reçu DocType: Purchase Invoice,Price List Exchange Rate,Taux de change Prix de liste -DocType: Purchase Invoice Item,Rate,Taux +DocType: Purchase Invoice Item,Rate,Prix apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +62,Intern,interne DocType: Newsletter,A Lead with this email id should exist,Un responsable de cet identifiant de courriel doit exister DocType: Stock Entry,From BOM,De BOM @@ -2633,7 +2638,7 @@ DocType: Purchase Invoice Item,Image View,Voir l'image DocType: Issue,Opening Time,Ouverture Heure apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,De et la date exigée apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Valeurs mobilières et des bourses de marchandises -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Unité de mesure pour la variante par défaut '{0}' doit être la même que dans le modèle '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Unité de mesure pour la variante par défaut '{0}' doit être la même que dans le modèle '{1}' DocType: Shipping Rule,Calculate Based On,Calculer en fonction DocType: Delivery Note Item,From Warehouse,De Entrepôt DocType: Purchase Taxes and Charges,Valuation and Total,Valorisation et Total @@ -2643,7 +2648,7 @@ DocType: Account,Purchase User,Achat utilisateur DocType: Notification Control,Customize the Notification,Personnaliser la notification apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +17,Cash Flow from Operations,Flux de trésorerie provenant des opérations apps/erpnext/erpnext/utilities/doctype/address_template/address_template.py +24,Default Address Template cannot be deleted,Adresse par défaut modèle ne peut pas être supprimé -DocType: Sales Invoice,Shipping Rule,Livraison règle +DocType: Sales Invoice,Shipping Rule,Règle de livraison DocType: Manufacturer,Limited to 12 characters,Limité à 12 caractères DocType: Journal Entry,Print Heading,Imprimer Cap DocType: Quotation,Maintenance Manager,Responsable Maintenance @@ -2655,7 +2660,7 @@ DocType: Leave Application,Follow via Email,Suivre par Email DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Aucun article avec Barcode {0} apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Les matières premières ne peut pas être le même que l'article principal apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Voulez-vous vraiment arrêter -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},services impressionnants +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},services impressionnants apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,S'il vous plaît sélectionnez Date de publication abord apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Date d'ouverture devrait être avant la date de clôture DocType: Leave Control Panel,Carry Forward,Reporter @@ -2733,7 +2738,7 @@ DocType: Leave Type,Is Encash,Est encaisser DocType: Purchase Invoice,Mobile No,N° mobile DocType: Payment Tool,Make Journal Entry,Assurez Journal Entrée DocType: Leave Allocation,New Leaves Allocated,Nouvelle Attribution de Congés -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,alloué avec succès +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,alloué avec succès DocType: Project,Expected End Date,Date de fin prévue DocType: Appraisal Template,Appraisal Template Title,Titre modèle d'évaluation apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Reste du monde @@ -2781,6 +2786,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,N apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Veuillez spécifier un DocType: Offer Letter,Awaiting Response,En attente de réponse apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Au dessus +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Heure du journal a été facturé DocType: Salary Slip,Earning & Deduction,Gains et déduction apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Compte {0} ne peut pas être un groupe apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Facultatif. Ce paramètre sera utilisé pour filtrer différentes écritures. @@ -2822,7 +2828,7 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +37,Serial #,# S apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +87,Commission on Sales,Commission sur les ventes DocType: Offer Letter Term,Value / Description,Valeur / Description DocType: Tax Rule,Billing Country,Pays de facturation -,Customers Not Buying Since Long Time,Les clients ne pas acheter Depuis Long Time +,Customers Not Buying Since Long Time,Clients qui n'ont pas achetés depuis longtemps DocType: Production Order,Expected Delivery Date,Date de livraison prévue apps/erpnext/erpnext/accounts/general_ledger.py +121,Debit and Credit not equal for {0} #{1}. Difference is {2}.,De débit et de crédit pas égale pour {0} # {1}. La différence est {2}. apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +93,Entertainment Expenses,Frais de représentation @@ -2832,7 +2838,7 @@ DocType: Time Log,Billing Amount,Montant de facturation apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +84,Invalid quantity specified for item {0}. Quantity should be greater than 0.,Quantité spécifiée non valide pour l'élément {0} . Quantité doit être supérieur à 0 . apps/erpnext/erpnext/config/hr.py +18,Applications for leave.,Les demandes de congé. apps/erpnext/erpnext/accounts/doctype/account/account.py +196,Account with existing transaction can not be deleted,Un compte contenant une transaction ne peut pas être supprimé -apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +99,Legal Expenses,Actifs stock +apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +99,Legal Expenses,Frais juridiques DocType: Sales Order,"The day of the month on which auto order will be generated e.g. 05, 28 etc","Le jour du mois au cours duquel l'ordre automatique sera généré par exemple 05, 28 etc" DocType: Sales Invoice,Posting Time,Affichage Temps DocType: Sales Order,% Amount Billed,Montant Facturé% @@ -2851,14 +2857,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Supprimé avec succès toutes les transactions liées à cette société! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Comme le Date apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,probation -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,{0} {1} contre le projet de loi {2} du {3} +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,{0} {1} contre le projet de loi {2} du {3} apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Centre de coûts est nécessaire à la ligne {0} dans le tableau des impôts pour le type {1} DocType: Stock Settings,Auto insert Price List rate if missing,Insertion automatique de taux de la liste de prix si manquante apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Montant total payé ,Transferred Qty,Quantité transféré apps/erpnext/erpnext/config/learn.py +11,Navigating,Naviguer apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Planification -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Prenez le temps Connexion lot +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Prenez le temps Connexion lot apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Publié DocType: Project,Total Billing Amount (via Time Logs),Montant total de la facturation (via Time Logs) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Nous vendons cet article @@ -2866,7 +2872,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Quantité doit être supérieure à 0 DocType: Journal Entry,Cash Entry,Cash Prix d'entrée DocType: Sales Partner,Contact Desc,Contact Desc -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Type de feuilles comme occasionnel, etc malades" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Type de feuilles comme occasionnel, etc malades" DocType: Email Digest,Send regular summary reports via Email.,Envoyer des rapports réguliers sommaires par courriel. DocType: Brand,Item Manager,Item Manager DocType: Cost Center,Add rows to set annual budgets on Accounts.,Ajoutez des lignes pour établir des budgets annuels sur des comptes. @@ -2881,7 +2887,7 @@ DocType: GL Entry,Party Type,Type de partie apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Point {0} ignoré car il n'est pas un article en stock DocType: Item Attribute Value,Abbreviation,Abréviation apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,{0} {1} a été modifié . S'il vous plaît Actualiser -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Maître de modèle de salaires . +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Maître de modèle de salaires . DocType: Leave Type,Max Days Leave Allowed,Laisser jours Max admis apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Définissez la règle d'impôt pour panier DocType: Payment Tool,Set Matching Amounts,Montants assortis Assortiment @@ -2894,7 +2900,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Devis DocType: Stock Settings,Role Allowed to edit frozen stock,Rôle autorisés à modifier stock congelé ,Territory Target Variance Item Group-Wise,Territoire cible Variance Item Group-Wise apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Tous les groupes client -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} est obligatoire. Peut-être que l'échange monétaire n'est pas créé pour {1} et {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} est obligatoire. Peut-être que l'échange monétaire n'est pas créé pour {1} et {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Modèle d'impôt est obligatoire. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Compte {0}: Le Compte parent {1} n'existe pas DocType: Purchase Invoice Item,Price List Rate (Company Currency),Tarifs Taux (Société Monnaie) @@ -2914,12 +2920,12 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Liste des Prix doit êt ,Item-wise Price List Rate,Article sage Prix Tarif apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Estimation Fournisseur DocType: Quotation,In Words will be visible once you save the Quotation.,En Toutes Lettres. Sera visible une fois que vous enregistrerez le devis. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} est arrêté -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Le code barre {0} est déjà utilisé dans l'article {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} est arrêté +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Le code barre {0} est déjà utilisé dans l'article {1} DocType: Lead,Add to calendar on this date,Ajouter cette date au calendrier apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,S'il vous plaît entrer atleast une facture dans le tableau apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Evénements à venir -apps/erpnext/erpnext/support/doctype/warranty_claim/warranty_claim.py +20,Customer is required,Approuver rôle ne peut pas être même que le rôle de l'État est applicable aux +apps/erpnext/erpnext/support/doctype/warranty_claim/warranty_claim.py +20,Customer is required,Client est requis apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +27,Quick Entry,Entrée rapide apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +20,{0} is mandatory for Return,{0} est obligatoire pour le retour DocType: Purchase Order,To Receive,A Recevoir @@ -2942,8 +2948,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,ve apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Au moins un entrepôt est obligatoire DocType: Serial No,Out of Warranty,Hors garantie DocType: BOM Replace Tool,Replace,Remplacer -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} contre la facture de vente {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Entrepôt de cible dans la ligne {0} doit être la même que la production de commande +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} contre la facture de vente {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Entrepôt de cible dans la ligne {0} doit être la même que la production de commande DocType: Purchase Invoice Item,Project Name,Nom du projet DocType: Supplier,Mention if non-standard receivable account,Mentionner si créance non standard DocType: Journal Entry Account,If Income or Expense,Si les produits ou charges @@ -2968,7 +2974,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Exercice: {0} ne existe pas DocType: Currency Exchange,To Currency,Pour Devise DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Autoriser les utilisateurs suivants d'approuver demandes d'autorisation pour les jours de bloc. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Types de demande de remboursement. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Types de demande de remboursement. DocType: Item,Taxes,Impôts apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Payés et non Livré DocType: Project,Default Cost Center,Centre de coûts par défaut @@ -2998,7 +3004,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Row # {0}: N ° de série {1} ne correspond pas à {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Règles d'application des prix et de ristournes . DocType: Batch,Batch ID,ID. du lot -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Compte avec des nœuds enfants ne peut pas être converti en livre +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Compte avec des nœuds enfants ne peut pas être converti en livre ,Delivery Note Trends,Bordereau de livraison Tendances apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Résumé de la semaine apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},"{0} doit être un article ""Acheté"" ou ""Sous-traité"" à la ligne {1}" @@ -3038,6 +3044,7 @@ DocType: Project Task,Pending Review,Attente d'examen apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Cliquez ici pour payer DocType: Task,Total Expense Claim (via Expense Claim),Frais totaux (via Note de Frais) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Client Id +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Mark Absent apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Time doit être supérieur From Time DocType: Journal Entry Account,Exchange Rate,Taux de change apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Maximum {0} lignes autorisées @@ -3085,7 +3092,7 @@ DocType: Item Group,Default Expense Account,Compte de dépenses DocType: Employee,Notice (days),Avis ( jours ) DocType: Tax Rule,Sales Tax Template,Modèle de la taxe de vente DocType: Employee,Encashment Date,Date de l'encaissement -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Le type de bon doit être un de bon de commande, une facture d'achat ou une entrée du journal" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Le type de bon doit être un de bon de commande, une facture d'achat ou une entrée du journal" DocType: Account,Stock Adjustment,Stock ajustement apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Existe défaut Activité Coût pour le type d'activité - {0} DocType: Production Order,Planned Operating Cost,Coût de fonctionnement prévues @@ -3139,6 +3146,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Write Off Entrée DocType: BOM,Rate Of Materials Based On,Taux de matériaux à base apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Analyse du support +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Décocher tout apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Société est manquant dans les entrepôts {0} DocType: POS Profile,Terms and Conditions,Termes et Conditions apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},Pour la date doit être dans l'exercice. En supposant à ce jour = {0} @@ -3160,7 +3168,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Pour définir cette Année financière que par défaut , cliquez sur "" Définir par défaut """ apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Configuration serveur entrant de soutien id courriel . (par exemple support@example.com ) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Qté non couverte -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Variante d'objet {0} existe avec les mêmes caractéristiques +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Variante d'objet {0} existe avec les mêmes caractéristiques DocType: Salary Slip,Salary Slip,Fiche de paye apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,'La date' est requise DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Générer bordereaux des paquets à livrer. Utilisé pour notifier numéro de colis, le contenu du paquet et son poids." @@ -3180,7 +3188,7 @@ DocType: Purchase Invoice,Recurring Id,Id récurrent DocType: Customer,Sales Team Details,Détails équipe de vente DocType: Expense Claim,Total Claimed Amount,Montant total réclamé apps/erpnext/erpnext/config/crm.py +22,Potential opportunities for selling.,Possibilités pour la vente. -apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +177,Invalid {0},Non valide {0} +apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +177,Invalid {0},Invalide {0} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +48,Sick Leave,{0} numéros de série valides pour objet {1} DocType: Email Digest,Email Digest,Email Digest DocType: Delivery Note,Billing Address Name,Nom de l'adresse de facturation @@ -3208,7 +3216,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Voir Pr DocType: Item Attribute Value,Attribute Value,Attribut Valeur apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","Email id doit être unique , existe déjà pour {0}" ,Itemwise Recommended Reorder Level,Seuil de renouvellement des commandes (par Article) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,S'il vous plaît sélectionnez {0} premier +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,S'il vous plaît sélectionnez {0} premier DocType: Features Setup,To get Item Group in details table,Pour obtenir Groupe d'éléments dans le tableau de détails apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Lot {0} du point {1} a expiré. DocType: Sales Invoice,Commission,commission @@ -3238,7 +3246,7 @@ DocType: Address Template,"

        Default Template

        DocType: Salary Slip Deduction,Default Amount,Montant par défaut apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +96,Warehouse not found in the system,Entrepôt pas trouvé dans le système apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +107,This Month's Summary,Résumé de ce mois-ci -DocType: Quality Inspection Reading,Quality Inspection Reading,Lecture d'inspection de la qualité +DocType: Quality Inspection Reading,Quality Inspection Reading,Libellé du contrôle de qualité apps/erpnext/erpnext/stock/doctype/stock_settings/stock_settings.py +26,`Freeze Stocks Older Than` should be smaller than %d days.,`Figer les stocks datant de plus` doit être inférieur que %d jours. DocType: Tax Rule,Purchase Tax Template,Achetez modèle impôt ,Project wise Stock Tracking,Projet sage Stock Tracking @@ -3263,7 +3271,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Obtenez suspens Chèques DocType: Warranty Claim,Resolved By,Résolu par DocType: Appraisal,Start Date,Date de début -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Compte temporaire ( actif) +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Compte temporaire ( actif) apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Les chèques et les dépôts de manière incorrecte effacés apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Cliquez ici pour vérifier apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Compte {0}: Vous ne pouvez pas assigner un compte comme son propre parent @@ -3283,7 +3291,7 @@ DocType: Employee,Educational Qualification,Qualification pour l'éducation DocType: Workstation,Operating Costs,Coûts d'exploitation DocType: Employee Leave Approver,Employee Leave Approver,Approbateur des Congés de l'employé apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} a été ajouté avec succès à notre liste de diffusion. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Row {0}: Une entrée Réorganiser existe déjà pour cet entrepôt {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Row {0}: Une entrée Réorganiser existe déjà pour cet entrepôt {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Vous ne pouvez pas déclarer comme perdu , parce offre a été faite." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Directeur des Achats apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Ordre de fabrication {0} doit être soumis @@ -3307,7 +3315,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,BOM {0} n'est pas actif ou non soumis apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Date d'achèvement DocType: Purchase Invoice Item,Amount (Company Currency),Montant (Devise de la Société) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Unité d'organisation (département) maître . +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Unité d'organisation (département) maître . apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,nos DocType: Budget Detail,Budget Detail,Détail du budget apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,"Vous ne pouvez pas supprimer Aucune série {0} en stock . Première retirer du stock, puis supprimer ." @@ -3323,13 +3331,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Reçus et acceptés ,Serial No Service Contract Expiry,N ° de série expiration du contrat de service DocType: Item,Unit of Measure Conversion,Conversion d'Unité de mesure apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,L'employé ne peut pas être modifié -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Vous ne pouvez pas crédit et de débit même compte en même temps +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Vous ne pouvez pas crédit et de débit même compte en même temps DocType: Naming Series,Help HTML,Aide HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Weightage totale attribuée devrait être de 100 % . Il est {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Allocation pour les plus de {0} croisés pour objet {1} DocType: Address,Name of person or organization that this address belongs to.,Nom de la personne ou de la société à qui cette adresse appartient. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,vos fournisseurs -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,Impossible de définir aussi perdu que les ventes décret. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,Impossible de définir aussi perdu que les ventes décret. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,Une autre structure salariale {0} est actif pour l'employé {1}. S'il vous plaît faire son statut «inactif» pour continuer. DocType: Purchase Invoice,Contact,Contact apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Reçu de @@ -3339,11 +3347,11 @@ DocType: Item,Has Serial No,N ° de série a DocType: Employee,Date of Issue,Date d'émission apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: Du {0} pour {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Row # {0}: Réglez Fournisseur pour le point {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Site Web image {0} attaché à Point {1} ne peut pas être trouvé +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Site Web image {0} attaché à Point {1} ne peut pas être trouvé DocType: Issue,Content Type,Type de contenu apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,ordinateur DocType: Item,List this Item in multiple groups on the website.,Liste cet article dans plusieurs groupes sur le site. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,S'il vous plaît vérifier l'option multi-devises pour permettre comptes avec autre monnaie +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,S'il vous plaît vérifier l'option multi-devises pour permettre comptes avec autre monnaie apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Item: {0} ne existe pas dans le système apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Vous n'êtes pas autorisé à mettre en valeur Frozen DocType: Payment Reconciliation,Get Unreconciled Entries,Obtenez non rapprochés entrées @@ -3353,14 +3361,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Que fait-ell DocType: Delivery Note,To Warehouse,Pour Entrepôt apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Le compte {0} a été renseigné plus d'une fois pour l'année fiscale {1} ,Average Commission Rate,Taux moyen de la commission -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'A un numéro de série' ne peut pas être 'Oui' pour un article non-stock +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'A un numéro de série' ne peut pas être 'Oui' pour un article non-stock apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,La participation ne peut pas être marqué pour les dates à venir DocType: Pricing Rule,Pricing Rule Help,Prix règle Aide DocType: Purchase Taxes and Charges,Account Head,Responsable du compte apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Mettre à jour les coûts supplémentaires pour calculer le coût au débarquement des articles apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,local DocType: Stock Entry,Total Value Difference (Out - In),Valeur totale Différence (Out - En) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Row {0}: Taux de change est obligatoire +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Row {0}: Taux de change est obligatoire apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},ID utilisateur non défini pour l'Employé {0} DocType: Stock Entry,Default Source Warehouse,Source d'entrepôt par défaut DocType: Item,Customer Code,Code client @@ -3379,15 +3387,15 @@ DocType: Notification Control,Sales Invoice Message,Message facture de vente apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Fermeture compte {0} doit être de type passif / Equity DocType: Authorization Rule,Based On,Basé sur DocType: Sales Order Item,Ordered Qty,Quantité commandée -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Point {0} est désactivé +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Point {0} est désactivé DocType: Stock Settings,Stock Frozen Upto,Stock Frozen Jusqu'à apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Période De et période dates obligatoires pour récurrents {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Activité de projet / tâche. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Générer les bulletins de salaire +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Générer les bulletins de salaire apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Achat doit être vérifiée, si pour Applicable est sélectionné comme {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,La remise doit être inférieure à 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Write Off Montant (Société devise) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Row # {0}: S'il vous plaît définir la quantité de réapprovisionnement +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Row # {0}: S'il vous plaît définir la quantité de réapprovisionnement DocType: Landed Cost Voucher,Landed Cost Voucher,Bon d'Landed Cost apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},S'il vous plaît mettre {0} DocType: Purchase Invoice,Repeat on Day of Month,Répétez le Jour du Mois @@ -3403,7 +3411,7 @@ apps/erpnext/erpnext/hub_node/doctype/hub_settings/hub_settings.py +93,{0} Items DocType: Sales Order,Partly Delivered,Livré en partie DocType: Sales Invoice,Existing Customer,Client existant DocType: Email Digest,Receivables,Créances -DocType: Customer,Additional information regarding the customer.,Des informations supplémentaires concernant le client. +DocType: Customer,Additional information regarding the customer.,Informations supplémentaires concernant le client. DocType: Quality Inspection Reading,Reading 5,Reading 5 DocType: Purchase Order,"Enter email id separated by commas, order will be mailed automatically on particular date","Entrez courriel id séparés par des virgules, l'ordre sera envoyé automatiquement à la date particulière" apps/erpnext/erpnext/crm/doctype/lead/lead.py +37,Campaign Name is required,Le nom de la campagne est requis @@ -3440,7 +3448,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Par défaut Work In Progress Entrepôt apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Les paramètres par défaut pour les opérations comptables . apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Date prévu ne peut pas être avant Matériel Date de la demande -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Point {0} doit être un élément de ventes +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Point {0} doit être un élément de ventes DocType: Naming Series,Update Series Number,Mettre à jour la Série DocType: Account,Equity,Capitaux propres DocType: Sales Order,Printing Details,Impression Détails @@ -3492,7 +3500,7 @@ DocType: Task,Review Date,Date de revoir DocType: Purchase Invoice,Advance Payments,Paiements anticipés DocType: Purchase Taxes and Charges,On Net Total,Le total net apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Bon de commande {0} n'est pas soumis -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Pas d'autorisation pour utiliser l'Outil Paiement +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Pas d'autorisation pour utiliser l'Outil Paiement apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,«notification adresse e-mail non spécifiés pour% s récurrents apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Devise ne peut être modifié après avoir fait des entrées en utilisant une autre monnaie DocType: Company,Round Off Account,Arrondir compte @@ -3515,7 +3523,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Quantité de produit obtenue après fabrication / reconditionnement des quantités données de matières premières DocType: Payment Reconciliation,Receivable / Payable Account,Compte à recevoir / payer DocType: Delivery Note Item,Against Sales Order Item,Sur l'objet de la commande -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},S'il vous plaît spécifier Attribut Valeur pour l'attribut {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},S'il vous plaît spécifier Attribut Valeur pour l'attribut {0} DocType: Item,Default Warehouse,Entrepôt de défaut DocType: Task,Actual End Date (via Time Logs),Date réelle de fin (via Time Logs) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Budget ne peut pas être attribué à l'encontre du compte de groupe {0} @@ -3540,10 +3548,10 @@ DocType: Lead,Blog Subscriber,Abonné Blog apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Créer des règles pour restreindre les transactions fondées sur des valeurs . DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Si elle est cochée, aucune totale. des jours de travail comprennent vacances, ce qui réduira la valeur de salaire par jour" DocType: Purchase Invoice,Total Advance,Total avance -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Traitement de la paie +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Traitement de la paie DocType: Opportunity Item,Basic Rate,Taux de base DocType: GL Entry,Credit Amount,Le montant du crédit -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Définir comme perdu +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Définir comme perdu apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Reçu de paiement Remarque DocType: Supplier,Credit Days Based On,Jours de crédit basée sur DocType: Tax Rule,Tax Rule,Règle d'impôt @@ -3573,7 +3581,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Quantité acceptés apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} ne existe pas apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Factures émises aux clients. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Référence du projet -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Row Non {0}: montant ne peut être supérieur à l'attente Montant contre remboursement de frais {1}. Montant attente est {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Row Non {0}: montant ne peut être supérieur à l'attente Montant contre remboursement de frais {1}. Montant attente est {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} abonnés ajoutés DocType: Maintenance Schedule,Schedule,Calendrier DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Définir budget pour ce centre de coûts. Pour définir l'action budgétaire, voir «Liste des entreprises»" @@ -3634,19 +3642,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,Profil POS DocType: Payment Gateway Account,Payment URL Message,Paiement URL message apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Saisonnalité de l'établissement des budgets, des objectifs, etc." -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Row {0}: Montant du paiement ne peut pas être supérieure à Encours +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Row {0}: Montant du paiement ne peut pas être supérieure à Encours apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Total non rémunéré -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Heure du journal n'est pas facturable -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Point {0} est un modèle, s'il vous plaît sélectionnez l'une de ses variantes" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Heure du journal n'est pas facturable +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Point {0} est un modèle, s'il vous plaît sélectionnez l'une de ses variantes" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Acheteur apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Salaire Net ne peut pas être négatif -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,S'il vous plaît entrer le contre Chèques manuellement +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,S'il vous plaît entrer le contre Chèques manuellement DocType: SMS Settings,Static Parameters,Paramètres statiques DocType: Purchase Order,Advance Paid,Acompte payée DocType: Item,Item Tax,Taxe sur l'Article apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Matériel au fournisseur apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Accise facture DocType: Expense Claim,Employees Email Id,Identifiants email des employés +DocType: Employee Attendance Tool,Marked Attendance,Présence marquée apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Dette courante apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Envoyer un SMS en masse à vos contacts DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Prenons l'impôt ou charge pour @@ -3669,7 +3678,7 @@ DocType: Item Attribute,Numeric Values,Valeurs numériques apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Joindre le logo DocType: Customer,Commission Rate,Taux de commission apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Assurez Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Bloquer les demandes d'autorisation par le ministère. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Bloquer les demandes d'autorisation par le ministère. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Le panier est vide DocType: Production Order,Actual Operating Cost,Coût de fonctionnement réel apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Racine ne peut pas être modifié. @@ -3688,7 +3697,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,Créer automatiquement Demande de Matériel si la quantité tombe en dessous de ce niveau ,Item-wise Purchase Register,S'enregistrer Achat point-sage DocType: Batch,Expiry Date,Date d'expiration -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Pour définir le niveau de réapprovisionnement, item doit être un objet d'achat ou de fabrication de l'article" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Pour définir le niveau de réapprovisionnement, item doit être un objet d'achat ou de fabrication de l'article" ,Supplier Addresses and Contacts,Adresses des fournisseurs et contacts apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,S'il vous plaît sélectionnez d'abord Catégorie apps/erpnext/erpnext/config/projects.py +18,Project master.,Liste de projets. diff --git a/erpnext/translations/gu.csv b/erpnext/translations/gu.csv index 5b1f65bd9c..010da3dd02 100644 --- a/erpnext/translations/gu.csv +++ b/erpnext/translations/gu.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,કંપની કર DocType: Delivery Note,Installation Status,સ્થાપન સ્થિતિ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Qty નકારેલું સ્વીકારાયું + વસ્તુ માટે પ્રાપ્ત જથ્થો માટે સમાન હોવો જોઈએ {0} DocType: Item,Supply Raw Materials for Purchase,પુરવઠા કાચો માલ ખરીદી માટે -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,વસ્તુ {0} ખરીદી વસ્તુ જ હોવી જોઈએ +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,વસ્તુ {0} ખરીદી વસ્તુ જ હોવી જોઈએ DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records",", નમૂનો ડાઉનલોડ યોગ્ય માહિતી ભરો અને ફેરફાર ફાઇલ સાથે જોડે છે. પસંદ કરેલ સમયગાળામાં તમામ તારીખો અને કર્મચારી સંયોજન હાલની એટેન્ડન્સ રેકર્ડઝ સાથે, નમૂનો આવશે" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,{0} વસ્તુ સક્રિય નથી અથવા જીવનનો અંત સુધી પહોંચી ગઇ હશે DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,સેલ્સ ભરતિયું રજૂ કરવામાં આવે છે પછી અપડેટ કરવામાં આવશે. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","આઇટમ રેટ પંક્તિ {0} કર સમાવેશ કરવા માટે, પંક્તિઓ કર {1} પણ સમાવેશ કરવો જ જોઈએ" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,એચઆર મોડ્યુલ માટે સેટિંગ્સ +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","આઇટમ રેટ પંક્તિ {0} કર સમાવેશ કરવા માટે, પંક્તિઓ કર {1} પણ સમાવેશ કરવો જ જોઈએ" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,એચઆર મોડ્યુલ માટે સેટિંગ્સ DocType: SMS Center,SMS Center,એસએમએસ કેન્દ્ર DocType: BOM Replace Tool,New BOM,ન્યૂ BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,બેચ બિલિંગ માટે સમય લોગ. @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,પસંદ કરો નિ DocType: Production Planning Tool,Sales Orders,વેચાણ ઓર્ડર DocType: Purchase Taxes and Charges,Valuation,મૂલ્યાંકન ,Purchase Order Trends,ઓર્ડર પ્રવાહો ખરીદી -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,વર્ષ માટે પાંદડા ફાળવો. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,વર્ષ માટે પાંદડા ફાળવો. DocType: Earning Type,Earning Type,અર્નિંગ પ્રકાર DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,અક્ષમ કરો ક્ષમતા આયોજન અને સમય ટ્રેકિંગ DocType: Bank Reconciliation,Bank Account,બેંક એકાઉન્ટ @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,વસ્તુ વેબસાઇટ સ્પષ્ટીકરણ DocType: Payment Tool,Reference No,સંદર્ભ કોઈ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,છોડો અવરોધિત -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},વસ્તુ {0} પર તેના જીવનના અંતે પહોંચી ગયું છે {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},વસ્તુ {0} પર તેના જીવનના અંતે પહોંચી ગયું છે {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,વાર્ષિક DocType: Stock Reconciliation Item,Stock Reconciliation Item,સ્ટોક રિકંસીલેશન વસ્તુ DocType: Stock Entry,Sales Invoice No,સેલ્સ ભરતિયું કોઈ @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,ન્યુનત્તમ ઓર્ડર Qty DocType: Pricing Rule,Supplier Type,પુરવઠોકર્તા પ્રકાર DocType: Item,Publish in Hub,હબ પ્રકાશિત ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,{0} વસ્તુ રદ કરવામાં આવે છે +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,{0} વસ્તુ રદ કરવામાં આવે છે apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,સામગ્રી વિનંતી DocType: Bank Reconciliation,Update Clearance Date,સુધારા ક્લિયરન્સ તારીખ DocType: Item,Purchase Details,ખરીદી વિગતો @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,નકારેલું જથ DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","ડ લવર નોંધ, અવતરણ, સેલ્સ ભરતિયું, સેલ્સ ઓર્ડર ઉપલબ્ધ ક્ષેત્ર" DocType: SMS Settings,SMS Sender Name,એસએમએસ પ્રેષકનું નામ DocType: Contact,Is Primary Contact,પ્રાથમિક સંપર્ક +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,સમય લોગ બિલિંગ માટે બેચ કરવામાં આવી છે DocType: Notification Control,Notification Control,સૂચના નિયંત્રણ DocType: Lead,Suggestions,સૂચનો DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,આ પ્રદેશ પર સેટ વસ્તુ ગ્રુપ મુજબની બજેટ. પણ તમે વિતરણ સુયોજિત કરીને મોસમ સમાવેશ થાય છે. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},વેરહાઉસ માટે પિતૃ એકાઉન્ટ જૂથ દાખલ કરો {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},સામે ચુકવણી {0} {1} બાકી રકમ કરતાં વધારે ન હોઈ શકે {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},સામે ચુકવણી {0} {1} બાકી રકમ કરતાં વધારે ન હોઈ શકે {2} DocType: Supplier,Address HTML,સરનામું HTML DocType: Lead,Mobile No.,મોબાઇલ નંબર DocType: Maintenance Schedule,Generate Schedule,સૂચિ બનાવો @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,હબ સાથે સમન્વયિત apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,ખોટો પાસવર્ડ DocType: Item,Variant Of,ચલ -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,વસ્તુ {0} સેવા આઇટમ જ હોવી જોઈએ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',કરતાં 'Qty ઉત્પાદન' પૂર્ણ Qty વધારે ન હોઈ શકે DocType: Period Closing Voucher,Closing Account Head,એકાઉન્ટ વડા બંધ DocType: Employee,External Work History,બાહ્ય કામ ઇતિહાસ @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,ન્યૂઝલેટર DocType: Stock Settings,Notify by Email on creation of automatic Material Request,આપોઆપ સામગ્રી વિનંતી બનાવટ પર ઇમેઇલ દ્વારા સૂચિત DocType: Journal Entry,Multi Currency,મલ્ટી કરન્સી DocType: Payment Reconciliation Invoice,Invoice Type,ભરતિયું પ્રકાર -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,ડિલીવરી નોંધ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,ડિલીવરી નોંધ apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,કર સુયોજિત કરી રહ્યા છે apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,તમે તેને ખેંચી ચુકવણી પછી એન્ટ્રી સુધારાઈ ગયેલ છે. તેને ફરીથી ખેંચી કરો. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} વસ્તુ ટેક્સ બે વખત દાખલ +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} વસ્તુ ટેક્સ બે વખત દાખલ apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,આ અઠવાડિયે અને બાકી પ્રવૃત્તિઓ માટે સારાંશ DocType: Workstation,Rent Cost,ભાડું ખર્ચ apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,મહિનો અને વર્ષ પસંદ કરો @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,દેશો માટે માન DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","ચલણ, રૂપાંતરણ દર, આયાત કુલ આયાત ગ્રાન્ડ કુલ વગેરે જેવી તમામ આયાત સંબંધિત ક્ષેત્રો ખરીદી રસીદ, સપ્લાયર અવતરણ, ખરીદી ભરતિયું, ખરીદી ઓર્ડર વગેરે ઉપલબ્ધ છે" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"આ આઇટમ એક નમૂનો છે અને વ્યવહારો ઉપયોગ કરી શકતા નથી. 'ના નકલ' સુયોજિત થયેલ છે, જ્યાં સુધી વસ્તુ લક્ષણો ચલો માં ઉપર નકલ થશે" apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,ગણવામાં કુલ ઓર્ડર -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).",કર્મચારીનું હોદ્દો (દા.ત. સીઇઓ ડિરેક્ટર વગેરે). +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).",કર્મચારીનું હોદ્દો (દા.ત. સીઇઓ ડિરેક્ટર વગેરે). apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,દાખલ ક્ષેત્ર કિંમત 'ડે મહિનો પર પુનરાવર્તન' કરો DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,"ગ્રાહક કરન્સી ગ્રાહક આધાર ચલણ ફેરવાય છે, જે અંતે દર" DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","BOM, ડ લવર નોંધ, ખરીદી ભરતિયું, ઉત્પાદન ઓર્ડર, ખરીદી ઓર્ડર, ખરીદી રસીદ, સેલ્સ ભરતિયું, વેચાણ ઓર્ડર, સ્ટોક એન્ટ્રી, Timesheet ઉપલબ્ધ" @@ -355,7 +355,7 @@ DocType: Workstation,Consumable Cost,ઉપભોજ્ય કિંમત apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) ભૂમિકા હોવી જ જોઈએ 'છોડી તાજનો' DocType: Purchase Receipt,Vehicle Date,વાહન તારીખ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,મેડિકલ -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,ગુમાવી માટે કારણ +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,ગુમાવી માટે કારણ apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},વર્કસ્ટેશન રજા યાદી મુજબ નીચેની તારીખો પર બંધ છે: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,તકો DocType: Employee,Single,એક @@ -383,14 +383,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,ચેનલ ભાગીદાર DocType: Account,Old Parent,ઓલ્ડ પિતૃ DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,કે ઇમેઇલ એક ભાગ તરીકે જાય છે કે પ્રારંભિક લખાણ કસ્ટમાઇઝ કરો. દરેક વ્યવહાર અલગ પ્રારંભિક લખાણ છે. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),પ્રતીકો સમાવશો નહિં (નિર્ગ. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,સેલ્સ માસ્ટર વ્યવસ્થાપક apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,બધા ઉત્પાદન પ્રક્રિયા માટે વૈશ્વિક સુયોજનો. DocType: Accounts Settings,Accounts Frozen Upto,ફ્રોઝન સુધી એકાઉન્ટ્સ DocType: SMS Log,Sent On,પર મોકલવામાં -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,એટ્રીબ્યુટ {0} લક્ષણો ટેબલ ઘણી વખત પસંદ +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,એટ્રીબ્યુટ {0} લક્ષણો ટેબલ ઘણી વખત પસંદ DocType: HR Settings,Employee record is created using selected field. ,કર્મચારીનું રેકોર્ડ પસંદ ક્ષેત્ર ઉપયોગ કરીને બનાવવામાં આવે છે. DocType: Sales Order,Not Applicable,લાગુ નથી -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,હોલિડે માસ્ટર. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,હોલિડે માસ્ટર. DocType: Material Request Item,Required Date,જરૂરી તારીખ DocType: Delivery Note,Billing Address,બિલિંગ સરનામું apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,વસ્તુ કોડ દાખલ કરો. @@ -426,7 +427,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,"સામગ્રી વિનંતી ઊભા કરવામાં આવશે, જેના માટે વેરહાઉસ દાખલ કરો" DocType: Production Order,Additional Operating Cost,વધારાની ઓપરેટીંગ ખર્ચ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,કોસ્મેટિક્સ -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","મર્જ, નીચેના ગુણધર્મો બંને આઇટમ્સ માટે જ હોવી જોઈએ" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","મર્જ, નીચેના ગુણધર્મો બંને આઇટમ્સ માટે જ હોવી જોઈએ" DocType: Shipping Rule,Net Weight,કુલ વજન DocType: Employee,Emergency Phone,સંકટકાલીન ફોન ,Serial No Warranty Expiry,સીરીયલ કોઈ વોરંટી સમાપ્તિ @@ -481,17 +482,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,બિલિંગ અને ડ લવર સ્થિતિ apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,પુનરાવર્તન ગ્રાહકો DocType: Leave Control Panel,Allocate,ફાળવો -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,વેચાણ પરત +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,વેચાણ પરત DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,તમે ઉત્પાદન ઓર્ડર્સ બનાવવા માંગો છો કે જેમાંથી વેચાણ ઓર્ડર પસંદ કરો. DocType: Item,Delivered by Supplier (Drop Ship),સપ્લાયર દ્વારા વિતરિત (ડ્રૉપ જહાજ) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,પગાર ઘટકો. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,પગાર ઘટકો. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,સંભવિત ગ્રાહકો ડેટાબેઝ. DocType: Authorization Rule,Customer or Item,ગ્રાહક અથવા વસ્તુ apps/erpnext/erpnext/config/crm.py +17,Customer database.,ગ્રાહક ડેટાબેઝ. DocType: Quotation,Quotation To,માટે અવતરણ DocType: Lead,Middle Income,મધ્યમ આવક apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),ખુલી (સીઆર) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,જો તમે પહેલાથી જ અન્ય UOM સાથે કેટલાક વ્યવહાર (ઓ) કર્યા છે કારણ કે વસ્તુ માટે માપવા એકમ મૂળભૂત {0} સીધા બદલી શકાતું નથી. તમે વિવિધ મૂળભૂત UOM વાપરવા માટે એક નવી આઇટમ બનાવવા માટે જરૂર પડશે. +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,જો તમે પહેલાથી જ અન્ય UOM સાથે કેટલાક વ્યવહાર (ઓ) કર્યા છે કારણ કે વસ્તુ માટે માપવા એકમ મૂળભૂત {0} સીધા બદલી શકાતું નથી. તમે વિવિધ મૂળભૂત UOM વાપરવા માટે એક નવી આઇટમ બનાવવા માટે જરૂર પડશે. apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,ફાળવેલ રકમ નકારાત્મક ન હોઈ શકે DocType: Purchase Order Item,Billed Amt,ચાંચ એએમટી DocType: Warehouse,A logical Warehouse against which stock entries are made.,"સ્ટોક પ્રવેશો કરવામાં આવે છે, જે સામે લોજિકલ વેરહાઉસ." @@ -510,14 +511,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,વેચાણ કર અને DocType: Employee,Organization Profile,સંસ્થા પ્રોફાઇલ apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,સેટઅપ ક્રમાંકન સિરીઝ> સેટઅપ દ્વારા હાજરી સિરીઝ નંબર કરો DocType: Employee,Reason for Resignation,રાજીનામાની કારણ -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,કામગીરી appraisals માટે નમૂનો. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,કામગીરી appraisals માટે નમૂનો. DocType: Payment Reconciliation,Invoice/Journal Entry Details,ભરતિયું / જર્નલ પ્રવેશ વિગતો apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' નથી નાણાકીય વર્ષમાં {2} DocType: Buying Settings,Settings for Buying Module,મોડ્યુલ ખરીદવી માટે સેટિંગ્સ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,પ્રથમ ખરીદી રસીદ દાખલ કરો DocType: Buying Settings,Supplier Naming By,દ્વારા પુરવઠોકર્તા નામકરણ DocType: Activity Type,Default Costing Rate,મૂળભૂત પડતર દર -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,જાળવણી સૂચિ +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,જાળવણી સૂચિ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","પછી કિંમતના નિયમોમાં વગેરે ગ્રાહક, ગ્રાહક જૂથ, પ્રદેશ, સપ્લાયર, પુરવઠોકર્તા પ્રકાર, ઝુંબેશ, વેચાણ ભાગીદાર પર આધારિત બહાર ફિલ્ટર કરવામાં આવે છે" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,ઇન્વેન્ટરીમાં કુલ ફેરફાર DocType: Employee,Passport Number,પાસપોર્ટ નંબર @@ -556,7 +557,7 @@ DocType: Purchase Invoice,Quarterly,ત્રિમાસિક DocType: Selling Settings,Delivery Note Required,ડ લવર નોંધ જરૂરી DocType: Sales Order Item,Basic Rate (Company Currency),મૂળભૂત દર (કંપની ચલણ) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush કાચો માલ પર આધારિત -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,આઇટમ વિગતો દાખલ કરો +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,આઇટમ વિગતો દાખલ કરો DocType: Purchase Receipt,Other Details,અન્ય વિગતો DocType: Account,Accounts,એકાઉન્ટ્સ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,માર્કેટિંગ @@ -569,7 +570,7 @@ DocType: Employee,Provide email id registered in company,કંપની રજ DocType: Hub Settings,Seller City,વિક્રેતા સિટી DocType: Email Digest,Next email will be sent on:,આગામી ઇમેઇલ પર મોકલવામાં આવશે: DocType: Offer Letter Term,Offer Letter Term,પત્ર ગાળાના ઓફર -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,વસ્તુ ચલો છે. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,વસ્તુ ચલો છે. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,વસ્તુ {0} મળી નથી DocType: Bin,Stock Value,સ્ટોક ભાવ apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,વૃક્ષ પ્રકાર @@ -577,7 +578,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Qty યુનિટ દીઠ DocType: Serial No,Warranty Expiry Date,વોરંટી સમાપ્તિ તારીખ DocType: Material Request Item,Quantity and Warehouse,જથ્થો અને વેરહાઉસ DocType: Sales Invoice,Commission Rate (%),કમિશન દર (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry",વાઉચર સામે પ્રકાર વેચાણ ઓર્ડર એક સેલ્સ ભરતિયું અથવા જર્નલ પ્રવેશ હોવા જ જોઈએ +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry",વાઉચર સામે પ્રકાર વેચાણ ઓર્ડર એક સેલ્સ ભરતિયું અથવા જર્નલ પ્રવેશ હોવા જ જોઈએ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,એરોસ્પેસ DocType: Journal Entry,Credit Card Entry,ક્રેડિટ કાર્ડ એન્ટ્રી apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,ટાસ્ક વિષય @@ -645,10 +646,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,જવાબદારી apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,મંજુર રકમ રો દાવો રકમ કરતાં વધારે ન હોઈ શકે {0}. DocType: Company,Default Cost of Goods Sold Account,ચીજવસ્તુઓનું વેચાણ એકાઉન્ટ મૂળભૂત કિંમત -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,ભાવ યાદી પસંદ નહી +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,ભાવ યાદી પસંદ નહી DocType: Employee,Family Background,કૌટુંબિક પૃષ્ઠભૂમિ DocType: Process Payroll,Send Email,ઇમેઇલ મોકલો -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},ચેતવણી: અમાન્ય જોડાણ {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},ચેતવણી: અમાન્ય જોડાણ {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,પરવાનગી નથી DocType: Company,Default Bank Account,મૂળભૂત બેન્ક એકાઉન્ટ apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","પાર્ટી પર આધારિત ફિલ્ટર કરવા માટે, પસંદ પાર્ટી પ્રથમ પ્રકાર" @@ -676,7 +677,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,ગ DocType: Features Setup,"To enable ""Point of Sale"" features","વેચાણ પોઇન્ટ" લક્ષણો સક્રિય કરવા માટે DocType: Bin,Moving Average Rate,સરેરાશ દર ખસેડવું DocType: Production Planning Tool,Select Items,આઇટમ્સ પસંદ કરો -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} બિલ સામે {1} ના રોજ {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} બિલ સામે {1} ના રોજ {2} DocType: Maintenance Visit,Completion Status,પૂર્ણ સ્થિતિ DocType: Sales Invoice Item,Target Warehouse,લક્ષ્યાંક વેરહાઉસ DocType: Item,Allow over delivery or receipt upto this percent,આ ટકા સુધી ડિલિવરી અથવા રસીદ પર પરવાનગી આપે છે @@ -736,7 +737,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,ચ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},ઓપરેશન માટે આગામી {0} દિવસોમાં સમય સ્લોટ શોધવામાં અસમર્થ {1} DocType: Production Order,Plan material for sub-assemblies,પેટા-સ્થળોના માટે યોજના સામગ્રી apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} સક્રિય હોવા જ જોઈએ -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,પ્રથમ દસ્તાવેજ પ્રકાર પસંદ કરો +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,પ્રથમ દસ્તાવેજ પ્રકાર પસંદ કરો apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,જાઓ કાર્ટ apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,આ જાળવણી મુલાકાત લો રદ રદ સામગ્રી મુલાકાત {0} DocType: Salary Slip,Leave Encashment Amount,એન્કેશમેન્ટ રકમ છોડો @@ -754,7 +755,7 @@ DocType: Purchase Receipt,Range,રેંજ DocType: Supplier,Default Payable Accounts,મૂળભૂત ચૂકવવાપાત્ર હિસાબ apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,{0} કર્મચારીનું સક્રિય નથી અથવા અસ્તિત્વમાં નથી DocType: Features Setup,Item Barcode,વસ્તુ બારકોડ -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,વસ્તુ ચલો {0} સુધારાશે +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,વસ્તુ ચલો {0} સુધારાશે DocType: Quality Inspection Reading,Reading 6,6 વાંચન DocType: Purchase Invoice Advance,Purchase Invoice Advance,ભરતિયું એડવાન્સ ખરીદી DocType: Address,Shop,દુકાન @@ -777,7 +778,7 @@ DocType: Salary Slip,Total in words,શબ્દોમાં કુલ DocType: Material Request Item,Lead Time Date,લીડ સમય તારીખ apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,ફરજિયાત છે. કદાચ ચલણ એક્સચેન્જ રેકોર્ડ માટે બનાવવામાં નથી apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},ROW # {0}: વસ્તુ માટે કોઈ સીરીયલ સ્પષ્ટ કરો {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","'ઉત્પાદન બંડલ' વસ્તુઓ, વેરહાઉસ, સીરીયલ કોઈ અને બેચ માટે કોઈ 'પેકિંગ યાદી' ટેબલ પરથી ગણવામાં આવશે. વેરહાઉસ અને બેચ કોઈ કોઈ 'ઉત્પાદન બંડલ' આઇટમ માટે બધા પેકિંગ વસ્તુઓ માટે જ છે, તો તે કિંમતો મુખ્ય વસ્તુ ટેબલ દાખલ કરી શકાય, મૂલ્યો મેજની યાદી પેકિંગ 'નકલ થશે." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","'ઉત્પાદન બંડલ' વસ્તુઓ, વેરહાઉસ, સીરીયલ કોઈ અને બેચ માટે કોઈ 'પેકિંગ યાદી' ટેબલ પરથી ગણવામાં આવશે. વેરહાઉસ અને બેચ કોઈ કોઈ 'ઉત્પાદન બંડલ' આઇટમ માટે બધા પેકિંગ વસ્તુઓ માટે જ છે, તો તે કિંમતો મુખ્ય વસ્તુ ટેબલ દાખલ કરી શકાય, મૂલ્યો મેજની યાદી પેકિંગ 'નકલ થશે." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,ગ્રાહકો માટે આવેલા શિપમેન્ટની. DocType: Purchase Invoice Item,Purchase Order Item,ઓર્ડર વસ્તુ ખરીદી apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,પરોક્ષ આવક @@ -798,6 +799,7 @@ DocType: Process Payroll,Select Payroll Year and Month,પગારપત્ર apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",યોગ્ય ગ્રુપ (સામાન્ય ભંડોળનો ઉપયોગ> વર્તમાન અસ્કયામતો> બેન્ક એકાઉન્ટ્સ પર જાઓ અને પ્રકાર) બાળ ઉમેરો પર ક્લિક કરીને (એક નવું એકાઉન્ટ બનાવો "બેન્ક" DocType: Workstation,Electricity Cost,વીજળી ખર્ચ DocType: HR Settings,Don't send Employee Birthday Reminders,કર્મચારીનું જન્મદિવસ રિમાઇન્ડર્સ મોકલશો નહીં +,Employee Holiday Attendance,કર્મચારીનું રજા એટેન્ડન્સ DocType: Opportunity,Walk In,ચાલવા apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,સ્ટોક પ્રવેશો DocType: Item,Inspection Criteria,નિરીક્ષણ માપદંડ @@ -820,7 +822,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options, DocType: Journal Entry Account,Expense Claim,ખર્ચ દાવો apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},માટે Qty {0} DocType: Leave Application,Leave Application,રજા અરજી -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,ફાળવણી સાધન મૂકો +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,ફાળવણી સાધન મૂકો DocType: Leave Block List,Leave Block List Dates,બ્લોક યાદી તારીખો છોડો DocType: Company,If Monthly Budget Exceeded (for expense account),માસિક બજેટ (ખર્ચ એકાઉન્ટ માટે) વધી જાય તો DocType: Workstation,Net Hour Rate,નેટ કલાક દર @@ -830,7 +832,7 @@ DocType: Packing Slip Item,Packing Slip Item,પેકિંગ કાપલી DocType: POS Profile,Cash/Bank Account,કેશ / બેન્ક એકાઉન્ટ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,જથ્થો અથવા કિંમત કોઈ ફેરફાર સાથે દૂર વસ્તુઓ. DocType: Delivery Note,Delivery To,ડ લવર -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,એટ્રીબ્યુટ ટેબલ ફરજિયાત છે +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,એટ્રીબ્યુટ ટેબલ ફરજિયાત છે DocType: Production Planning Tool,Get Sales Orders,વેચાણ ઓર્ડર મેળવો apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} નકારાત્મક ન હોઈ શકે apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,ડિસ્કાઉન્ટ @@ -894,7 +896,7 @@ DocType: SMS Center,Total Characters,કુલ અક્ષરો apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},વસ્તુ માટે BOM ક્ષેત્રમાં BOM પસંદ કરો {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,સી-ફોર્મ ભરતિયું વિગતવાર DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,ચુકવણી રિકંસીલેશન ભરતિયું -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,યોગદાન% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,યોગદાન% DocType: Item,website page link,વેબસાઇટ પાનું લિંક DocType: Company,Company registration numbers for your reference. Tax numbers etc.,તમારા સંદર્ભ માટે કંપની નોંધણી નંબરો. ટેક્સ નંબરો વગેરે DocType: Sales Partner,Distributor,ડિસ્ટ્રીબ્યુટર @@ -936,10 +938,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM રૂપાંતર ફ DocType: Stock Settings,Default Item Group,મૂળભૂત વસ્તુ ગ્રુપ apps/erpnext/erpnext/config/buying.py +13,Supplier database.,પુરવઠોકર્તા ડેટાબેઝ. DocType: Account,Balance Sheet,સરવૈયા -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ','આઇટમ કોડ સાથે આઇટમ માટે કેન્દ્ર ખર્ચ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ','આઇટમ કોડ સાથે આઇટમ માટે કેન્દ્ર ખર્ચ DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,તમારા વેચાણ વ્યક્તિ ગ્રાહક સંપર્ક કરવા માટે આ તારીખ પર એક રીમાઇન્ડર મળશે apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","વધુ એકાઉન્ટ્સ જૂથો હેઠળ કરી શકાય છે, પરંતુ પ્રવેશો બિન-જૂથો સામે કરી શકાય છે" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,કરવેરા અને અન્ય પગાર કપાતો. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,કરવેરા અને અન્ય પગાર કપાતો. DocType: Lead,Lead,લીડ DocType: Email Digest,Payables,ચૂકવણીના DocType: Account,Warehouse,વેરહાઉસ @@ -956,10 +958,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Unreconciled ચુ DocType: Global Defaults,Current Fiscal Year,ચાલુ નાણાકીય વર્ષ DocType: Global Defaults,Disable Rounded Total,ગોળાકાર કુલ અક્ષમ કરો DocType: Lead,Call,કૉલ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'એન્ટ્રીઝ' ખાલી ન હોઈ શકે +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'એન્ટ્રીઝ' ખાલી ન હોઈ શકે apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},સાથે નકલી પંક્તિ {0} જ {1} ,Trial Balance,ટ્રાયલ બેલેન્સ -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,કર્મચારીઓ સુયોજિત કરી રહ્યા છે +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,કર્મચારીઓ સુયોજિત કરી રહ્યા છે apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid """,ગ્રીડ " apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,પ્રથમ ઉપસર્ગ પસંદ કરો apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,સંશોધન @@ -968,7 +970,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,વપરાશકર્તા ID apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,જુઓ ખાતાવહી apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,જુનું -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","એક વસ્તુ ગ્રુપ જ નામ સાથે હાજર, આઇટમ નામ બદલવા અથવા વસ્તુ જૂથ નામ બદલી કૃપા કરીને" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","એક વસ્તુ ગ્રુપ જ નામ સાથે હાજર, આઇટમ નામ બદલવા અથવા વસ્તુ જૂથ નામ બદલી કૃપા કરીને" DocType: Production Order,Manufacture against Sales Order,વેચાણ ઓર્ડર સામે ઉત્પાદન apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,બાકીનું વિશ્વ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,આ આઇટમ {0} બેચ હોઈ શકે નહિં @@ -993,7 +995,7 @@ DocType: Purchase Receipt,Rejected Warehouse,નકારેલું વેર DocType: GL Entry,Against Voucher,વાઉચર સામે DocType: Item,Default Buying Cost Center,ડિફૉલ્ટ ખરીદી ખર્ચ કેન્દ્રને apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","ERPNext બહાર શ્રેષ્ઠ વિચાર, અમે તમને થોડો સમય લાગી અને આ સહાય વિડિઓઝ જોઈ ભલામણ કરીએ છીએ." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,વસ્તુ {0} સેલ્સ વસ્તુ જ હોવી જોઈએ +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,વસ્તુ {0} સેલ્સ વસ્તુ જ હોવી જોઈએ apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,માટે DocType: Item,Lead Time in days,દિવસોમાં લીડ સમય ,Accounts Payable Summary,એકાઉન્ટ્સ ચૂકવવાપાત્ર સારાંશ @@ -1019,7 +1021,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,કૃષિ apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,તમારી ઉત્પાદનો અથવા સેવાઓ DocType: Mode of Payment,Mode of Payment,ચૂકવણીની પદ્ધતિ -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,વેબસાઇટ છબી જાહેર ફાઈલ અથવા વેબસાઇટ URL હોવો જોઈએ +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,વેબસાઇટ છબી જાહેર ફાઈલ અથવા વેબસાઇટ URL હોવો જોઈએ apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,આ રુટ વસ્તુ જૂથ છે અને સંપાદિત કરી શકાતી નથી. DocType: Journal Entry Account,Purchase Order,ખરીદી ઓર્ડર DocType: Warehouse,Warehouse Contact Info,વેરહાઉસ સંપર્ક માહિતી @@ -1030,7 +1032,7 @@ DocType: Serial No,Serial No Details,સીરીયલ કોઈ વિગત DocType: Purchase Invoice Item,Item Tax Rate,વસ્તુ ટેક્સ રેટ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","{0}, માત્ર ક્રેડિટ ખાતાઓ અન્ય ડેબિટ પ્રવેશ સામે લિંક કરી શકો છો" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,ડ લવર નોંધ {0} અપર્ણ ન કરાય -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,વસ્તુ {0} એ પેટા કોન્ટ્રાક્ટ વસ્તુ જ હોવી જોઈએ +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,વસ્તુ {0} એ પેટા કોન્ટ્રાક્ટ વસ્તુ જ હોવી જોઈએ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,કેપિટલ સાધનો apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","પ્રાઇસીંગ નિયમ પ્રથમ પર આધારિત પસંદ થયેલ વસ્તુ, આઇટમ ગ્રુપ અથવા બ્રાન્ડ બની શકે છે, જે ક્ષેત્ર 'પર લાગુ પડે છે." DocType: Hub Settings,Seller Website,વિક્રેતા વેબસાઇટ @@ -1039,7 +1041,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,ગોલ DocType: Sales Invoice Item,Edit Description,સંપાદિત કરો વર્ણન apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,અપેક્ષિત બોલ તારીખ આયોજિત પ્રારંભ તારીખ કરતાં ઓછા છે. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,સપ્લાયર માટે +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,સપ્લાયર માટે DocType: Account,Setting Account Type helps in selecting this Account in transactions.,એકાઉન્ટ પ્રકાર સેટિંગ વ્યવહારો આ એકાઉન્ટ પસંદ કરે છે. DocType: Purchase Invoice,Grand Total (Company Currency),કુલ સરવાળો (કંપની ચલણ) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,કુલ આઉટગોઇંગ @@ -1091,7 +1093,6 @@ DocType: Authorization Rule,Average Discount,સરેરાશ ડિસ્ક DocType: Address,Utilities,ઉપયોગીતાઓ DocType: Purchase Invoice Item,Accounting,હિસાબી DocType: Features Setup,Features Setup,લક્ષણો સેટઅપ -DocType: Item,Is Service Item,સેવા વસ્તુ છે apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,એપ્લિકેશન સમયગાળાની બહાર રજા ફાળવણી સમય ન હોઈ શકે DocType: Activity Cost,Projects,પ્રોજેક્ટ્સ apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,ફિસ્કલ વર્ષ પસંદ કરો @@ -1112,7 +1113,7 @@ DocType: Item,Maintain Stock,સ્ટોક જાળવો apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,પહેલેથી જ ઉત્પાદન ઓર્ડર માટે બનાવવામાં સ્ટોક પ્રવેશો apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,સ્થિર એસેટ કુલ ફેરફાર DocType: Leave Control Panel,Leave blank if considered for all designations,બધા ડેઝીગ્નેશન્સ માટે વિચારણા તો ખાલી છોડી દો -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,પ્રકાર 'વાસ્તવિક' પંક્તિ માં ચાર્જ {0} આઇટમ રેટ સમાવેશ કરવામાં નથી કરી શકો છો +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,પ્રકાર 'વાસ્તવિક' પંક્તિ માં ચાર્જ {0} આઇટમ રેટ સમાવેશ કરવામાં નથી કરી શકો છો apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},મહત્તમ: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,તારીખ સમય પ્રતિ DocType: Email Digest,For Company,કંપની માટે @@ -1121,8 +1122,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,શિપિંગ સરનામું નામ apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,એકાઉન્ટ્સ ઓફ ચાર્ટ DocType: Material Request,Terms and Conditions Content,નિયમો અને શરતો સામગ્રી -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,100 કરતા વધારે ન હોઈ શકે -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,{0} વસ્તુ સ્ટોક વસ્તુ નથી +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,100 કરતા વધારે ન હોઈ શકે +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,{0} વસ્તુ સ્ટોક વસ્તુ નથી DocType: Maintenance Visit,Unscheduled,અનિશ્ચિત DocType: Employee,Owned,માલિકીની DocType: Salary Slip Deduction,Depends on Leave Without Pay,પગાર વિના રજા પર આધાર રાખે છે @@ -1143,7 +1144,7 @@ Used for Taxes and Charges",સ્ટ્રિંગ તરીકે વસ્ apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,કર્મચારીનું પોતાની જાતને જાણ કરી શકો છો. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","એકાઉન્ટ સ્થિર છે, તો પ્રવેશો પ્રતિબંધિત વપરાશકર્તાઓ માટે માન્ય છે." DocType: Email Digest,Bank Balance,બેંક બેલેન્સ -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},{1} માત્ર ચલણ કરી શકાય છે: {0} માટે એકાઉન્ટિંગ એન્ટ્રી {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},{1} માત્ર ચલણ કરી શકાય છે: {0} માટે એકાઉન્ટિંગ એન્ટ્રી {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,કર્મચારી {0} અને મહિનાના માટે કોઈ સક્રિય પગાર માળખું DocType: Job Opening,"Job profile, qualifications required etc.","જોબ પ્રોફાઇલ, યોગ્યતાઓ જરૂરી વગેરે" DocType: Journal Entry Account,Account Balance,એકાઉન્ટ બેલેન્સ @@ -1160,7 +1161,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,પેટા DocType: Shipping Rule Condition,To Value,કિંમત DocType: Supplier,Stock Manager,સ્ટોક વ્યવસ્થાપક apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},સોર્સ વેરહાઉસ પંક્તિ માટે ફરજિયાત છે {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,પેકિંગ કાપલી +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,પેકિંગ કાપલી apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,ઓફિસ ભાડે apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,સેટઅપ એસએમએસ ગેટવે સેટિંગ્સ apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,આયાત નિષ્ફળ! @@ -1204,7 +1205,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM વિગતવાર DocType: Purchase Invoice,Additional Discount Amount (Company Currency),વધારાના ડિસ્કાઉન્ટ રકમ (કંપની ચલણ) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},ભૂલ: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,એકાઉન્ટ્સ ચાર્ટ પરથી નવું એકાઉન્ટ ખોલાવવું કરો. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,જાળવણી મુલાકાત લો +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,જાળવણી મુલાકાત લો apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,ગ્રાહક> ગ્રાહક જૂથ> પ્રદેશ DocType: Sales Invoice Item,Available Batch Qty at Warehouse,વેરહાઉસ ખાતે ઉપલબ્ધ બેચ Qty DocType: Time Log Batch Detail,Time Log Batch Detail,સમય લોગ બેચ વિગતવાર @@ -1213,7 +1214,7 @@ DocType: Leave Block List,Block Holidays on important days.,મહત્વપ ,Accounts Receivable Summary,એકાઉન્ટ્સ પ્રાપ્ત સારાંશ apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,કર્મચારીનું ભૂમિકા સુયોજિત કરવા માટે એક કર્મચારી રેકોર્ડ વપરાશકર્તા ID ક્ષેત્ર સુયોજિત કરો DocType: UOM,UOM Name,UOM નામ -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,ફાળાની રકમ +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,ફાળાની રકમ DocType: Sales Invoice,Shipping Address,પહોંચાડવાનું સરનામું DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,આ સાધન તમે અપડેટ અથવા સિસ્ટમ સ્ટોક જથ્થો અને મૂલ્યાંકન સુધારવા માટે મદદ કરે છે. તે સામાન્ય રીતે સિસ્ટમ મૂલ્યો અને શું ખરેખર તમારા વખારો માં અસ્તિત્વમાં સુમેળ કરવા માટે વપરાય છે. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,તમે બોલ પર કોઈ નોંધ સેવ વાર શબ્દો દૃશ્યમાન થશે. @@ -1254,7 +1255,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,બારકોડ મદદથી વસ્તુઓ ટ્રેક કરવા માટે. તમે વસ્તુ ના બારકોડ સ્કેન દ્વારા બોલ પર કોઈ નોંધ અને વેચાણ ભરતિયું વસ્તુઓ દાખલ કરવા માટે સમર્થ હશે. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,ચુકવણી ઇમેઇલ ફરી મોકલો DocType: Dependent Task,Dependent Task,આશ્રિત ટાસ્ક -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},માપવા એકમ મૂળભૂત માટે રૂપાંતર પરિબળ પંક્તિ માં 1 હોવા જ જોઈએ {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},માપવા એકમ મૂળભૂત માટે રૂપાંતર પરિબળ પંક્તિ માં 1 હોવા જ જોઈએ {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},પ્રકાર રજા {0} કરતાં લાંબા સમય સુધી ન હોઈ શકે {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,અગાઉથી X દિવસ માટે કામગીરી આયોજન કરવાનો પ્રયાસ કરો. DocType: HR Settings,Stop Birthday Reminders,સ્ટોપ જન્મદિવસ રિમાઇન્ડર્સ @@ -1264,7 +1265,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} જુઓ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,કેશ કુલ ફેરફાર DocType: Salary Structure Deduction,Salary Structure Deduction,પગાર માળખું કપાત -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,મેઝર {0} એકમ રૂપાંતર ફેક્ટર ટેબલ એક કરતા વધુ વખત દાખલ કરવામાં આવી છે +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,મેઝર {0} એકમ રૂપાંતર ફેક્ટર ટેબલ એક કરતા વધુ વખત દાખલ કરવામાં આવી છે apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},ચુકવણી વિનંતી પહેલેથી હાજર જ છે {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,બહાર પાડેલી વસ્તુઓ કિંમત apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},જથ્થો કરતાં વધુ ન હોવું જોઈએ {0} @@ -1293,7 +1294,7 @@ DocType: BOM Item,BOM Item,BOM વસ્તુ DocType: Appraisal,For Employee,કર્મચારી માટે apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,રો {0}: પુરવઠોકર્તા સામે એડવાન્સ ડેબિટ હોવું જ જોઈએ DocType: Company,Default Values,મૂળભૂત મૂલ્યો -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,રો {0}: ચુકવણી રકમ નકારાત્મક ન હોઈ શકે +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,રો {0}: ચુકવણી રકમ નકારાત્મક ન હોઈ શકે DocType: Expense Claim,Total Amount Reimbursed,કુલ રકમ reimbursed apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},પુરવઠોકર્તા સામે ભરતિયું {0} ના રોજ {1} DocType: Customer,Default Price List,ડિફૉલ્ટ ભાવ યાદી @@ -1321,8 +1322,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,સ DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM",તે વપરાય છે જ્યાં અન્ય તમામ BOMs ચોક્કસ BOM બદલો. તે જૂના BOM લિંક બદલો કિંમત સુધારા અને નવી BOM મુજબ "BOM વિસ્ફોટ વસ્તુ" ટેબલ પુનર્જીવિત કરશે DocType: Shopping Cart Settings,Enable Shopping Cart,શોપિંગ કાર્ટ સક્ષમ DocType: Employee,Permanent Address,કાયમી સરનામું -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,વસ્તુ {0} એ સેવા આઇટમ હોવા જ જોઈએ. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",કુલ સરવાળો કરતાં \ {0} {1} વધારે ન હોઈ શકે સામે ચૂકવણી એડવાન્સ {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,આઇટમ કોડ પસંદ કરો DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),પગાર વિના રજા માટે કપાત ઘટાડો (LWP) @@ -1378,12 +1378,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,મુખ્ય apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,વેરિએન્ટ DocType: Naming Series,Set prefix for numbering series on your transactions,તમારા વ્યવહારો પર શ્રેણી નંબર માટે સેટ ઉપસર્ગ +DocType: Employee Attendance Tool,Employees HTML,કર્મચારીઓ HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,બંધ ઓર્ડર રદ કરી શકાતી નથી. રદ કરવા Unstop. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,મૂળભૂત BOM ({0}) આ આઇટમ અથવા તેના નમૂના માટે સક્રિય હોવા જ જોઈએ +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,મૂળભૂત BOM ({0}) આ આઇટમ અથવા તેના નમૂના માટે સક્રિય હોવા જ જોઈએ DocType: Employee,Leave Encashed?,વટાવી છોડી? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,ક્ષેત્રમાં પ્રતિ તક ફરજિયાત છે DocType: Item,Variants,ચલો -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,ખરીદી ઓર્ડર બનાવો +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,ખરીદી ઓર્ડર બનાવો DocType: SMS Center,Send To,ને મોકલવું apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},છોડો પ્રકાર માટે પૂરતી રજા બેલેન્સ નથી {0} DocType: Payment Reconciliation Payment,Allocated amount,ફાળવેલ રકમ @@ -1483,7 +1484,7 @@ DocType: Sales Person,Name and Employee ID,નામ અને કર્મચ apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,કારણે તારીખ તારીખ પોસ્ટ કરતા પહેલા ન હોઈ શકે DocType: Website Item Group,Website Item Group,વેબસાઇટ વસ્તુ ગ્રુપ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,કર અને વેરામાંથી -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,સંદર્ભ તારીખ દાખલ કરો +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,સંદર્ભ તારીખ દાખલ કરો apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,પેમેન્ટ ગેટવે એકાઉન્ટ રૂપરેખાંકિત થયેલ છે apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} ચુકવણી પ્રવેશો દ્વારા ફિલ્ટર કરી શકતા નથી {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,વેબ સાઇટ બતાવવામાં આવશે કે વસ્તુ માટે કોષ્ટક @@ -1504,7 +1505,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,ઠરાવ વિગતો DocType: Quality Inspection Reading,Acceptance Criteria,સ્વીકૃતિ માપદંડ DocType: Item Attribute,Attribute Name,નામ લક્ષણ -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},વસ્તુ {0} માં વેચાણ અથવા સેવા વસ્તુ જ હોવી જોઈએ {1} DocType: Item Group,Show In Website,વેબસાઇટ બતાવો apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,ગ્રુપ DocType: Task,Expected Time (in hours),(કલાકોમાં) અપેક્ષિત સમય @@ -1536,7 +1536,7 @@ DocType: Shipping Rule Condition,Shipping Amount,શીપીંગ રકમ ,Pending Amount,બાકી રકમ DocType: Purchase Invoice Item,Conversion Factor,રૂપાંતર ફેક્ટર DocType: Purchase Order,Delivered,વિતરિત -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),નોકરી ઇમેઇલ ને માટે સેટઅપ ઇનકમ ગ સવર. (દા.ત. jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),નોકરી ઇમેઇલ ને માટે સેટઅપ ઇનકમ ગ સવર. (દા.ત. jobs@example.com) DocType: Purchase Receipt,Vehicle Number,વાહન સંખ્યા DocType: Purchase Invoice,The date on which recurring invoice will be stop,રિકરિંગ ભરતિયું સ્ટોપ હશે કે જેના પર તારીખ apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,કુલ ફાળવેલ પાંદડા {0} ઓછી ન હોઈ શકે સમયગાળા માટે પહેલાથી મંજૂર પાંદડા {1} કરતાં @@ -1553,7 +1553,7 @@ DocType: HR Settings,HR Settings,એચઆર સેટિંગ્સ apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,ખર્ચ દાવો મંજૂરી બાકી છે. માત્ર ખર્ચ તાજનો સ્થિતિ અપડેટ કરી શકો છો. DocType: Purchase Invoice,Additional Discount Amount,વધારાના ડિસ્કાઉન્ટ રકમ DocType: Leave Block List Allow,Leave Block List Allow,બ્લોક પરવાનગી સૂચિ છોડો -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,સંક્ષિપ્ત ખાલી અથવા જગ્યા ન હોઈ શકે +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,સંક્ષિપ્ત ખાલી અથવા જગ્યા ન હોઈ શકે apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,બિન-ગ્રુપ ગ્રુપ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,રમતો apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,વાસ્તવિક કુલ @@ -1577,7 +1577,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},UOM રૂપાંતર પરિબળ પંક્તિ જરૂરી છે {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},ક્લિયરન્સ તારીખ પંક્તિ ચેક તારીખ પહેલાં ન હોઈ શકે {0} DocType: Salary Slip,Deduction,કપાત -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},વસ્તુ ભાવ માટે ઉમેરવામાં {0} ભાવ યાદીમાં {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},વસ્તુ ભાવ માટે ઉમેરવામાં {0} ભાવ યાદીમાં {1} DocType: Address Template,Address Template,સરનામું ઢાંચો apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,આ વેચાણ વ્યક્તિ કર્મચારી ID દાખલ કરો DocType: Territory,Classification of Customers by region,પ્રદેશ દ્વારા ગ્રાહકો વર્ગીકરણ @@ -1594,7 +1594,7 @@ DocType: Employee,Date of Birth,જ્ન્મતારીખ apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,વસ્તુ {0} પહેલાથી જ પરત કરવામાં આવી છે DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** ફિસ્કલ વર્ષ ** એક નાણાકીય વર્ષ રજૂ કરે છે. બધા હિસાબી પ્રવેશો અને અન્ય મોટા પાયાના વ્યવહારો ** ** ફિસ્કલ યર સામે ટ્રેક છે. DocType: Opportunity,Customer / Lead Address,ગ્રાહક / લીડ સરનામું -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},ચેતવણી: જોડાણ પર અમાન્ય SSL પ્રમાણપત્ર {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},ચેતવણી: જોડાણ પર અમાન્ય SSL પ્રમાણપત્ર {0} DocType: Production Order Operation,Actual Operation Time,વાસ્તવિક કામગીરી સમય DocType: Authorization Rule,Applicable To (User),લાગુ કરો (વપરાશકર્તા) DocType: Purchase Taxes and Charges,Deduct,કપાત @@ -1611,7 +1611,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,પેકેજોમાં વિભાજિત બોલ પર કોઈ નોંધ. apps/erpnext/erpnext/hooks.py +69,Shipments,આવેલા શિપમેન્ટની DocType: Purchase Order Item,To be delivered to customer,ગ્રાહક પર વિતરિત કરવામાં -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,સમય લોગ સ્થિતિ સબમિટ હોવું જ જોઈએ. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,સમય લોગ સ્થિતિ સબમિટ હોવું જ જોઈએ. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,સીરીયલ કોઈ {0} કોઈપણ વેરહાઉસ સંબંધ નથી apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,ROW # DocType: Purchase Invoice,In Words (Company Currency),શબ્દો માં (કંપની ચલણ) @@ -1628,7 +1628,7 @@ DocType: Leave Application,Total Leave Days,કુલ છોડો દિવસ DocType: Email Digest,Note: Email will not be sent to disabled users,નોંધ: આ ઇમેઇલ નિષ્ક્રિય વપરાશકર્તાઓ માટે મોકલવામાં આવશે નહીં apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,કંપની પસંદ કરો ... DocType: Leave Control Panel,Leave blank if considered for all departments,તમામ વિભાગો માટે ગણવામાં તો ખાલી છોડી દો -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","રોજગાર પ્રકાર (કાયમી, કરાર, ઇન્ટર્ન વગેરે)." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","રોજગાર પ્રકાર (કાયમી, કરાર, ઇન્ટર્ન વગેરે)." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} વસ્તુ માટે ફરજિયાત છે {1} DocType: Currency Exchange,From Currency,ચલણ apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","ઓછામાં ઓછા એક પંક્તિ ફાળવવામાં રકમ, ભરતિયું પ્રકાર અને ભરતિયું નંબર પસંદ કરો" @@ -1647,7 +1647,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,પ્રક્રિયામાં DocType: Authorization Rule,Itemwise Discount,મુદ્દાવાર ડિસ્કાઉન્ટ DocType: Purchase Order Item,Reference Document Type,સંદર્ભ દસ્તાવેજ પ્રકારની -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} વેચાણ ઓર્ડર સામે {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} વેચાણ ઓર્ડર સામે {1} DocType: Account,Fixed Asset,સ્થિર એસેટ apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,શ્રેણીબદ્ધ ઈન્વેન્ટરી DocType: Activity Type,Default Billing Rate,મૂળભૂત બિલિંગ રેટ @@ -1657,7 +1657,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,ચુકવણી માટે વેચાણ ઓર્ડર DocType: Expense Claim Detail,Expense Claim Detail,ખર્ચ દાવાની વિગત apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,સમય લોગ બનાવવામાં: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,યોગ્ય એકાઉન્ટ પસંદ કરો +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,યોગ્ય એકાઉન્ટ પસંદ કરો DocType: Item,Weight UOM,વજન UOM DocType: Employee,Blood Group,બ્લડ ગ્રુપ DocType: Purchase Invoice Item,Page Break,પૃષ્ઠ વિરામ @@ -1692,7 +1692,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM રિકર્ઝન: {0} ના માતાપિતા અથવા બાળકને ન હોઈ શકે {2} DocType: Production Order Operation,Completed Qty,પૂર્ણ Qty apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","{0}, માત્ર ડેબિટ એકાઉન્ટ્સ બીજા ક્રેડિટ પ્રવેશ સામે લિંક કરી શકો છો" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,ભાવ યાદી {0} અક્ષમ છે +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,ભાવ યાદી {0} અક્ષમ છે DocType: Manufacturing Settings,Allow Overtime,અતિકાલિક માટે પરવાનગી આપે છે apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} વસ્તુ માટે જરૂરી સીરીયલ નંબર {1}. તમે પ્રદાન કરે છે {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,વર્તમાન મૂલ્યાંકન દર @@ -1743,7 +1743,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},બ apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,કેસ નંબર 0 ન હોઈ શકે DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,"તમે (ચેનલ પાર્ટનર્સ) વેચાણ ટીમ અને વેચાણ ભાગીદારો છે, તો તેઓ ટૅગ કર્યા છે અને વેચાણ પ્રવૃત્તિ તેમના યોગદાન જાળવી શકાય છે" DocType: Item,Show a slideshow at the top of the page,પાનાંની ટોચ પર એક સ્લાઇડ શો બતાવવા -DocType: Item,"Allow in Sales Order of type ""Service""",પ્રકાર "સેવા" ના વેચાણ ઓર્ડર માટે પરવાનગી આપે છે apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,સ્ટોર્સ DocType: Time Log,Projects Manager,પ્રોજેક્ટ્સ વ્યવસ્થાપક DocType: Serial No,Delivery Time,ડ લવર સમય @@ -1758,6 +1757,7 @@ DocType: Rename Tool,Rename Tool,સાધન નામ બદલો apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,સુધારો કિંમત DocType: Item Reorder,Item Reorder,વસ્તુ પુનઃક્રમાંકિત કરો apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,ટ્રાન્સફર સામગ્રી +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},વસ્તુ {0} માં વેચાણ વસ્તુ જ હોવી જોઈએ {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","કામગીરી, સંચાલન ખર્ચ સ્પષ્ટ અને તમારી કામગીરી કરવા માટે કોઈ એક અનન્ય ઓપરેશન આપે છે." DocType: Purchase Invoice,Price List Currency,ભાવ યાદી કરન્સી DocType: Naming Series,User must always select,વપરાશકર્તા હંમેશા પસંદ કરવી જ પડશે @@ -1778,7 +1778,7 @@ DocType: Appraisal,Employee,કર્મચારીનું apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,આયાત ઇમેઇલ apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,વપરાશકર્તા તરીકે આમંત્રણ આપો DocType: Features Setup,After Sale Installations,વેચાણ સ્થાપનો પછી -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} સંપૂર્ણપણે ગણાવી છે +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} સંપૂર્ણપણે ગણાવી છે DocType: Workstation Working Hour,End Time,અંત સમય apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,સેલ્સ અથવા ખરીદી માટે નિયમ કરાર શરતો. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,વાઉચર દ્વારા ગ્રુપ @@ -1804,7 +1804,7 @@ DocType: Upload Attendance,Attendance To Date,તારીખ હાજરી apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),વેચાણ ઇમેઇલ ને માટે સેટઅપ ઇનકમ ગ સવર. (દા.ત. sales@example.com) DocType: Warranty Claim,Raised By,દ્વારા ઊભા DocType: Payment Gateway Account,Payment Account,ચુકવણી એકાઉન્ટ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,આગળ વધવા માટે કંપની સ્પષ્ટ કરો +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,આગળ વધવા માટે કંપની સ્પષ્ટ કરો apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,એકાઉન્ટ્સ પ્રાપ્ત નેટ બદલો apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,વળતર બંધ DocType: Quality Inspection Reading,Accepted,સ્વીકારાયું @@ -1816,14 +1816,14 @@ DocType: Shipping Rule,Shipping Rule Label,શીપીંગ નિયમ લ apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,કાચો માલ ખાલી ન હોઈ શકે. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","સ્ટોક અપડેટ કરી શકાયું નથી, ભરતિયું ડ્રોપ શીપીંગ વસ્તુ છે." DocType: Newsletter,Test,ટેસ્ટ -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","હાલની સ્ટોક વ્યવહારો તમે ના કિંમતો બદલી શકતા નથી \ આ આઇટમ માટે ત્યાં હોય છે 'સીરિયલ કોઈ છે', 'બેચ છે કોઈ', 'સ્ટોક વસ્તુ છે' અને 'મૂલ્યાંકન પદ્ધતિ'" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,ઝડપી જર્નલ પ્રવેશ apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,BOM કોઈપણ વસ્તુ agianst ઉલ્લેખ તો તમે દર બદલી શકતા નથી DocType: Employee,Previous Work Experience,પહેલાંના કામ અનુભવ DocType: Stock Entry,For Quantity,જથ્થો માટે apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},પંક્તિ પર વસ્તુ {0} માટે આયોજન Qty દાખલ કરો {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} અપર્ણ ન કરાય +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} અપર્ણ ન કરાય apps/erpnext/erpnext/config/stock.py +18,Requests for items.,આઇટમ્સ માટે વિનંતી કરે છે. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,અલગ ઉત્પાદન ક્રમમાં દરેક સમાપ્ત સારી વસ્તુ માટે બનાવવામાં આવશે. DocType: Purchase Invoice,Terms and Conditions1,નિયમો અને Conditions1 @@ -1848,6 +1848,7 @@ DocType: Notification Control,Expense Claim Approved Message,ખર્ચ દા DocType: Email Digest,How frequently?,કેવી રીતે વારંવાર? DocType: Purchase Receipt,Get Current Stock,વર્તમાન સ્ટોક મેળવો apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,સામગ્રી બિલ વૃક્ષ +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,માર્ક હાજર apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},જાળવણી શરૂઆત તારીખ સીરીયલ કોઈ ડ લવર તારીખ પહેલાં ન હોઈ શકે {0} DocType: Production Order,Actual End Date,વાસ્તવિક ઓવરને તારીખ DocType: Authorization Rule,Applicable To (Role),લાગુ કરવા માટે (ભૂમિકા) @@ -1862,7 +1863,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,કરારનો અંત તારીખ જોડાયા તારીખ કરતાં મોટી હોવી જ જોઈએ DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,એક કમિશન માટે કંપનીઓ ઉત્પાદનો વેચે છે તે તૃતીય પક્ષ ડિસ્ટ્રીબ્યુટર / વેપારી / કમિશન એજન્ટ / સંલગ્ન / પુનર્વિક્રેતા. DocType: Customer Group,Has Child Node,બાળક નોડ છે -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} ખરીદી ઓર્ડર સામે {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} ખરીદી ઓર્ડર સામે {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","અહીં સ્થિર URL પેરામીટર્સ દાખલ કરો (ઉદા. પ્રેષક = ERPNext, વપરાશકર્તા નામ = ERPNext, પાસવર્ડ = 1234 વગેરે)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} નથી કોઈ સક્રિય નાણાકીય વર્ષમાં. વધુ વિગતો તપાસ માટે {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,આ એક ઉદાહરણ વેબસાઇટ ERPNext માંથી ઓટો પેદા થાય છે @@ -1890,7 +1891,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Add or Deduct: Whether you want to add or deduct the tax.","બધા ખરીદી વ્યવહારો પર લાગુ કરી શકાય છે કે જે પ્રમાણભૂત કર નમૂનો. આ નમૂનો વગેરે #### તમે બધા ** આઇટમ્સ માટે પ્રમાણભૂત કર દર હશે અહીં વ્યાખ્યાયિત કર દર નોંધ "હેન્ડલીંગ", કર માથા અને "શીપીંગ", "વીમો" જેવા પણ અન્ય ખર્ચ હેડ યાદી સમાવી શકે છે * *. વિવિધ દર હોય ** ** કે વસ્તુઓ છે, તો તેઓ ** વસ્તુ કર ઉમેરાવી જ જોઈએ ** આ ** ** વસ્તુ માસ્ટર કોષ્ટક. #### સ્તંભોને વર્ણન 1. ગણતરી પ્રકાર: - આ (કે જે મૂળભૂત રકમ ની રકમ છે) ** નેટ કુલ ** પર હોઇ શકે છે. - ** અગાઉના પંક્તિ કુલ / રકમ ** પર (સંચિત કર અથવા ખર્ચ માટે). તમે આ વિકલ્પ પસંદ કરો, તો કર રકમ અથવા કુલ (કર કોષ્ટકમાં) અગાઉના પંક્તિ ટકાવારી તરીકે લાગુ કરવામાં આવશે. - ** ** વાસ્તવમાં (ઉલ્લેખ કર્યો છે). 2. એકાઉન્ટ હેડ: આ કર 3. ખર્ચ કેન્દ્રને નક્કી કરવામાં આવશે, જે હેઠળ એકાઉન્ટ ખાતાવહી: કર / ચાર્જ (શીપીંગ જેમ) એક આવક છે અથવા ખર્ચ તો તે ખર્ચ કેન્દ્રને સામે નક્કી કરવાની જરૂર છે. 4. વર્ણન: કર વર્ણન (કે ઇન્વૉઇસેસ / અવતરણ છાપવામાં આવશે). 5. દર: કર દર. 6. રકમ: ટેક્સની રકમ. 7. કુલ: આ બોલ પર સંચિત કુલ. 8. રો દાખલ કરો: પર આધારિત "જો અગાઉના પંક્તિ કુલ" તમે આ ગણતરી માટે આધાર (મૂળભૂત અગાઉના પંક્તિ છે) તરીકે લેવામાં આવશે જે પંક્તિ નંબર પસંદ કરી શકો છો. 9. કર અથવા ચાર્જ વિચાર કરો: કરવેરા / ચાર્જ મૂલ્યાંકન માટે જ છે (કુલ ભાગ ન હોય) અથવા માત્ર (આઇટમ કિંમત ઉમેરી શકતા નથી) કુલ માટે અથવા બંને માટે જો આ વિભાગમાં તમે સ્પષ્ટ કરી શકો છો. 10. ઉમેરો અથવા કપાત: જો તમે ઉમેરવા અથવા કર કપાત માંગો છો." DocType: Purchase Receipt Item,Recd Quantity,Recd જથ્થો apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},સેલ્સ ક્રમ સાથે જથ્થો કરતાં વધુ આઇટમ {0} પેદા કરી શકતા નથી {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,સ્ટોક એન્ટ્રી {0} અપર્ણ ન કરાય +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,સ્ટોક એન્ટ્રી {0} અપર્ણ ન કરાય DocType: Payment Reconciliation,Bank / Cash Account,બેન્ક / રોકડ એકાઉન્ટ DocType: Tax Rule,Billing City,બિલિંગ સિટી DocType: Global Defaults,Hide Currency Symbol,કરન્સી નિશાનીનો છુપાવો @@ -1916,7 +1917,7 @@ DocType: Salary Structure,Total Earning,કુલ અર્નિંગ DocType: Purchase Receipt,Time at which materials were received,"સામગ્રી પ્રાપ્ત કરવામાં આવી હતી, જે અંતે સમય" apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,મારા સરનામાંઓ DocType: Stock Ledger Entry,Outgoing Rate,આઉટગોઇંગ દર -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,સંસ્થા શાખા માસ્ટર. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,સંસ્થા શાખા માસ્ટર. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,અથવા DocType: Sales Order,Billing Status,બિલિંગ સ્થિતિ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,ઉપયોગિતા ખર્ચ @@ -1954,7 +1955,7 @@ DocType: Bin,Reserved Quantity,અનામત જથ્થો DocType: Landed Cost Voucher,Purchase Receipt Items,ખરીદી રસીદ વસ્તુઓ apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,જોઈએ એ પ્રમાણે લેખનું ફોર્મ DocType: Account,Income Account,આવક એકાઉન્ટ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,ડ લવર +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,ડ લવર DocType: Stock Reconciliation Item,Current Qty,વર્તમાન Qty DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",જુઓ પડતર વિભાગ "સામગ્રી પર આધારિત દર" DocType: Appraisal Goal,Key Responsibility Area,કી જવાબદારી વિસ્તાર @@ -1966,8 +1967,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,વ DocType: Notification Control,Purchase Order Message,ઓર્ડર સંદેશ ખરીદી DocType: Tax Rule,Shipping Country,શીપીંગ દેશ DocType: Upload Attendance,Upload HTML,અપલોડ કરો HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})",કુલ એડવાન્સ ({0}) ઓર્ડર સામે {1} \ વધારે ન હોઈ શકે ગ્રાન્ડ કુલ કરતાં ({2}) DocType: Employee,Relieving Date,રાહત તારીખ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","પ્રાઇસીંગ નિયમ કેટલાક માપદંડ પર આધારિત, / ભાવ યાદી પર ફરીથી લખી ડિસ્કાઉન્ટ ટકાવારી વ્યાખ્યાયિત કરવા માટે કરવામાં આવે છે." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,વેરહાઉસ માત્ર સ્ટોક એન્ટ્રી મારફતે બદલી શકાય છે / ડિલિવરી નોંધ / ખરીદી રસીદ @@ -1977,8 +1976,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,આ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","પસંદ પ્રાઇસીંગ નિયમ 'કિંમત' માટે કરવામાં આવે છે, તો તે ભાવ યાદી પર ફરીથી લખી નાંખશે. પ્રાઇસીંગ નિયમ ભાવ અંતિમ ભાવ છે, તેથી કોઇ વધુ ડિસ્કાઉન્ટ લાગુ પાડવામાં આવવી જોઈએ. તેથી, વગેરે સેલ્સ ઓર્ડર, ખરીદી ઓર્ડર જેવા વ્યવહારો, તે બદલે 'ભાવ યાદી દર' ક્ષેત્ર કરતાં 'રેટ ભૂલી નથી' ફીલ્ડમાં મેળવ્યાં કરવામાં આવશે." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,ટ્રેક ઉદ્યોગ પ્રકાર દ્વારા દોરી જાય છે. DocType: Item Supplier,Item Supplier,વસ્તુ પુરવઠોકર્તા -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,બેચ કોઈ વિચાર વસ્તુ કોડ દાખલ કરો -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},{0} quotation_to માટે નીચેની પસંદ કરો {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,બેચ કોઈ વિચાર વસ્તુ કોડ દાખલ કરો +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},{0} quotation_to માટે નીચેની પસંદ કરો {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,બધા સંબોધે છે. DocType: Company,Stock Settings,સ્ટોક સેટિંગ્સ apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","નીચેના ગુણધર્મો બંને રેકોર્ડ જ છે, તો મર્જ જ શક્ય છે. ગ્રુપ root લખવું, કંપની છે" @@ -2001,7 +2000,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,ચેક સંખ્યા DocType: Payment Tool Detail,Payment Tool Detail,ચુકવણી સાધન વિગતવાર ,Sales Browser,સેલ્સ બ્રાઉઝર DocType: Journal Entry,Total Credit,કુલ ક્રેડિટ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},ચેતવણી: અન્ય {0} # {1} સ્ટોક પ્રવેશ સામે અસ્તિત્વમાં {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},ચેતવણી: અન્ય {0} # {1} સ્ટોક પ્રવેશ સામે અસ્તિત્વમાં {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,સ્થાનિક apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),લોન અને એડવાન્સિસ (અસ્ક્યામત) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,ડેટર્સ @@ -2021,8 +2020,8 @@ DocType: Price List,Price List Master,ભાવ યાદી માસ્ટર DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,તમે સુયોજિત અને લક્ષ્યો મોનીટર કરી શકે છે કે જેથી બધા સેલ્સ વ્યવહારો બહુવિધ ** વેચાણ વ્યક્તિઓ ** સામે ટૅગ કરી શકો છો. ,S.O. No.,તેથી નંબર DocType: Production Order Operation,Make Time Log,સમય લોગ બનાવો -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,પુનઃક્રમાંકિત કરો જથ્થો સુયોજિત કરો -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},લીડ પ્રતિ ગ્રાહક બનાવવા કૃપા કરીને {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,પુનઃક્રમાંકિત કરો જથ્થો સુયોજિત કરો +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},લીડ પ્રતિ ગ્રાહક બનાવવા કૃપા કરીને {0} DocType: Price List,Applicable for Countries,દેશો માટે લાગુ પડે છે apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,એન્જીનિયરિંગ apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,આ રુટ ગ્રાહક જૂથ છે અને સંપાદિત કરી શકાતી નથી. @@ -2058,7 +2057,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),બિ DocType: Payment Reconciliation Invoice,Outstanding Amount,બાકી રકમ DocType: Project Task,Working,કામ DocType: Stock Ledger Entry,Stock Queue (FIFO),સ્ટોક કતારમાં (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,સમય લોગ પસંદ કરો. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,સમય લોગ પસંદ કરો. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} કંપની ને અનુલક્ષતું નથી {1} DocType: Account,Round Off,બોલ ધરપકડ ,Requested Qty,વિનંતી Qty @@ -2096,7 +2095,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,સંબંધિત પ્રવેશો મળી apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,સ્ટોક માટે એકાઉન્ટિંગ એન્ટ્રી DocType: Sales Invoice,Sales Team1,સેલ્સ team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,વસ્તુ {0} અસ્તિત્વમાં નથી +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,વસ્તુ {0} અસ્તિત્વમાં નથી DocType: Sales Invoice,Customer Address,ગ્રાહક સરનામું DocType: Payment Request,Recipient and Message,મેળવનાર અને સંદેશ DocType: Purchase Invoice,Apply Additional Discount On,વધારાના ડિસ્કાઉન્ટ પર લાગુ પડે છે @@ -2115,7 +2114,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,મ્યૂટ કરો ઇમેઇલ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","ફૂડ, પીણું અને તમાકુ" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,પોલ અથવા BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},માત્ર સામે ચુકવણી કરી શકો છો unbilled {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},માત્ર સામે ચુકવણી કરી શકો છો unbilled {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,કમિશન દર કરતા વધારે 100 ન હોઈ શકે apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,ન્યુનત્તમ ઈન્વેન્ટરી સ્તર DocType: Stock Entry,Subcontract,Subcontract @@ -2133,9 +2132,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,સોફ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,કલર DocType: Maintenance Visit,Scheduled,અનુસૂચિત apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle",""ના" અને "વેચાણ વસ્તુ છે" "સ્ટોક વસ્તુ છે" છે, જ્યાં "હા" છે વસ્તુ પસંદ કરો અને કોઈ અન્ય ઉત્પાદન બંડલ છે, કૃપા કરીને" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),કુલ એડવાન્સ ({0}) ઓર્ડર સામે {1} ગ્રાન્ડ કુલ કરતાં વધારે ન હોઈ શકે છે ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,અસમાન મહિના સમગ્ર લક્ષ્યો વિતરિત કરવા માટે માસિક વિતરણ પસંદ કરો. DocType: Purchase Invoice Item,Valuation Rate,મૂલ્યાંકન દર -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,ભાવ યાદી કરન્સી પસંદ નહી +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,ભાવ યાદી કરન્સી પસંદ નહી apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,વસ્તુ રો {0}: {1} ઉપર 'ખરીદી રસીદો' ટેબલ અસ્તિત્વમાં નથી ખરીદી રસીદ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},કર્મચારીનું {0} પહેલાથી માટે અરજી કરી છે {1} વચ્ચે {2} અને {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,પ્રોજેક્ટ પ્રારંભ તારીખ @@ -2147,6 +2147,7 @@ DocType: Quality Inspection,Inspection Type,નિરીક્ષણ પ્ર apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},પસંદ કરો {0} DocType: C-Form,C-Form No,સી-ફોર્મ નં DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,જેનું એટેન્ડન્સ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,સંશોધક apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,મોકલતા પહેલા ન્યૂઝલેટર સેવ કરો apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,નામ અથવા ઇમેઇલ ફરજિયાત છે @@ -2172,7 +2173,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,પુ DocType: Payment Gateway,Gateway,ગેટવે apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,પુરવઠોકર્તા> પુરવઠોકર્તા પ્રકાર apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,તારીખ રાહત દાખલ કરો. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,એએમટી +apps/erpnext/erpnext/controllers/trends.py +138,Amt,એએમટી apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,માત્ર પરિસ્થિતિ 'માન્ય' સબમિટ કરી શકો છો પૂરૂં છોડો apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,સરનામું શીર્ષક ફરજિયાત છે. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,"તપાસ સ્ત્રોત અભિયાન છે, તો ઝુંબેશ નામ દાખલ કરો" @@ -2187,10 +2188,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,સ્વીકારાયુ DocType: Bank Reconciliation Detail,Posting Date,પોસ્ટ તારીખ DocType: Item,Valuation Method,મૂલ્યાંકન પદ્ધતિ apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},{0} માટે વિનિમય દર શોધવામાં અસમર્થ {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,માર્ક અડધા દિવસ DocType: Sales Invoice,Sales Team,સેલ્સ ટીમ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,નકલી નોંધણી DocType: Serial No,Under Warranty,વોરંટી હેઠળ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[ભૂલ] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[ભૂલ] DocType: Sales Order,In Words will be visible once you save the Sales Order.,તમે વેચાણ ઓર્ડર સેવ વાર શબ્દો દૃશ્યમાન થશે. ,Employee Birthday,કર્મચારીનું જન્મદિવસ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,વેન્ચર કેપિટલ @@ -2213,6 +2215,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,હાલની વ્યવહારો સાથે ખર્ચ કેન્દ્રને જૂથ રૂપાંતરિત કરી શકતા નથી DocType: Account,Depreciation,અવમૂલ્યન apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),પુરવઠોકર્તા (ઓ) +DocType: Employee Attendance Tool,Employee Attendance Tool,કર્મચારીનું એટેન્ડન્સ સાધન DocType: Supplier,Credit Limit,ક્રેડિટ મર્યાદા apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,વ્યવહાર પ્રકાર પસંદ કરો DocType: GL Entry,Voucher No,વાઉચર કોઈ @@ -2239,7 +2242,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,રુટ ખાતું કાઢી શકાતી નથી ,Is Primary Address,પ્રાથમિક સરનામું છે DocType: Production Order,Work-in-Progress Warehouse,વર્ક ઈન પ્રોગ્રેસ વેરહાઉસ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},સંદર્ભ # {0} ના રોજ {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},સંદર્ભ # {0} ના રોજ {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,સરનામાંઓ મેનેજ કરો DocType: Pricing Rule,Item Code,વસ્તુ કોડ DocType: Production Planning Tool,Create Production Orders,ઉત્પાદન ઓર્ડર્સ બનાવો @@ -2266,7 +2269,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,બેન્ક રિકંસ apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,સુધારાઓ મેળવો apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,સામગ્રી વિનંતી {0} રદ અથવા બંધ છે apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,થોડા નમૂના રેકોર્ડ ઉમેરો -apps/erpnext/erpnext/config/hr.py +210,Leave Management,મેનેજમેન્ટ છોડો +apps/erpnext/erpnext/config/hr.py +225,Leave Management,મેનેજમેન્ટ છોડો apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,એકાઉન્ટ દ્વારા ગ્રુપ DocType: Sales Order,Fully Delivered,સંપૂર્ણપણે વિતરિત DocType: Lead,Lower Income,ઓછી આવક @@ -2281,6 +2284,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','તારીખ પ્રતિ' પછી 'તારીખ' હોવા જ જોઈએ ,Stock Projected Qty,સ્ટોક Qty અંદાજિત apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},સંબંધ નથી {0} ગ્રાહક પ્રોજેક્ટ {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,નોંધપાત્ર હાજરી HTML DocType: Sales Order,Customer's Purchase Order,ગ્રાહક ખરીદી ઓર્ડર DocType: Warranty Claim,From Company,કંપનીથી apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,ભાવ અથવા Qty @@ -2345,6 +2349,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,વાયર ટ્રાન્સફર apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,બેન્ક એકાઉન્ટ પસંદ કરો DocType: Newsletter,Create and Send Newsletters,બનાવો અને મોકલો ન્યૂઝલેટર્સ +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,બધા તપાસો DocType: Sales Order,Recurring Order,રીકરીંગ ઓર્ડર DocType: Company,Default Income Account,ડિફૉલ્ટ આવક એકાઉન્ટ apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,ગ્રાહક જૂથ / ગ્રાહક @@ -2376,6 +2381,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,સામે ખરી DocType: Item,Warranty Period (in days),(દિવસોમાં) વોરંટી સમયગાળા apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,ઓપરેશન્સ થી ચોખ્ખી રોકડ apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,દા.ત. વેટ +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,બલ્ક માર્ક કર્મચારીનું હાજરી apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,આઇટમ 4 DocType: Journal Entry Account,Journal Entry Account,જર્નલ પ્રવેશ એકાઉન્ટ DocType: Shopping Cart Settings,Quotation Series,અવતરણ સિરીઝ @@ -2520,14 +2526,14 @@ DocType: Task,Actual Start Date (via Time Logs),વાસ્તવિક પ્ DocType: Stock Reconciliation Item,Before reconciliation,સમાધાન પહેલાં apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},માટે {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),કર અને ખર્ચ ઉમેરાયેલ (કંપની ચલણ) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,વસ્તુ ટેક્સ રો {0} પ્રકાર વેરો કે આવક અથવા ખર્ચ અથવા લેવાપાત્ર કારણે હોવી જ જોઈએ +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,વસ્તુ ટેક્સ રો {0} પ્રકાર વેરો કે આવક અથવા ખર્ચ અથવા લેવાપાત્ર કારણે હોવી જ જોઈએ DocType: Sales Order,Partly Billed,આંશિક ગણાવી DocType: Item,Default BOM,મૂળભૂત BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,ફરીથી લખો કંપની નામ ખાતરી કરવા માટે કરો apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,કુલ બાકી એએમટી DocType: Time Log Batch,Total Hours,કુલ કલાકો DocType: Journal Entry,Printing Settings,પ્રિન્ટિંગ સેટિંગ્સ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},કુલ ડેબિટ કુલ ક્રેડિટ માટે સમાન હોવો જોઈએ. તફાવત છે {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},કુલ ડેબિટ કુલ ક્રેડિટ માટે સમાન હોવો જોઈએ. તફાવત છે {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,ઓટોમોટિવ apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,ડ લવર નોંધ DocType: Time Log,From Time,સમય @@ -2573,7 +2579,7 @@ DocType: Purchase Invoice Item,Image View,છબી જુઓ DocType: Issue,Opening Time,ઉદઘાટન સમય apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,પ્રતિ અને જરૂરી તારીખો apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,સિક્યોરિટીઝ એન્ડ કોમોડિટી એક્સચેન્જો -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',વેરિએન્ટ માટે માપવા એકમ મૂળભૂત '{0}' નમૂનો તરીકે જ હોવી જોઈએ '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',વેરિએન્ટ માટે માપવા એકમ મૂળભૂત '{0}' નમૂનો તરીકે જ હોવી જોઈએ '{1}' DocType: Shipping Rule,Calculate Based On,પર આધારિત ગણતરી DocType: Delivery Note Item,From Warehouse,વેરહાઉસ માંથી DocType: Purchase Taxes and Charges,Valuation and Total,મૂલ્યાંકન અને કુલ @@ -2595,7 +2601,7 @@ DocType: Leave Application,Follow via Email,ઈમેઈલ મારફતે DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,ડિસ્કાઉન્ટ રકમ બાદ કર જથ્થો apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,બાળ એકાઉન્ટ આ એકાઉન્ટ માટે અસ્તિત્વમાં છે. તમે આ એકાઉન્ટ કાઢી શકતા નથી. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,ક્યાં લક્ષ્ય Qty અથવા લક્ષ્ય રકમ ફરજિયાત છે -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},મૂળભૂત BOM વસ્તુ માટે અસ્તિત્વમાં {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},મૂળભૂત BOM વસ્તુ માટે અસ્તિત્વમાં {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,પ્રથમ પોસ્ટ તારીખ પસંદ કરો apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,તારીખ ઓપનિંગ તારીખ બંધ કરતા પહેલા પ્રયત્ન કરીશું DocType: Leave Control Panel,Carry Forward,આગળ લઈ @@ -2672,7 +2678,7 @@ DocType: Leave Type,Is Encash,વેચીને રોકડાં નાણા DocType: Purchase Invoice,Mobile No,મોબાઈલ નં DocType: Payment Tool,Make Journal Entry,જર્નલ પ્રવેશ કરો DocType: Leave Allocation,New Leaves Allocated,નવા પાંદડા સોંપાયેલ -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,પ્રોજેક્ટ મુજબના માહિતી અવતરણ માટે ઉપલબ્ધ નથી +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,પ્રોજેક્ટ મુજબના માહિતી અવતરણ માટે ઉપલબ્ધ નથી DocType: Project,Expected End Date,અપેક્ષિત ઓવરને તારીખ DocType: Appraisal Template,Appraisal Template Title,મૂલ્યાંકન ઢાંચો શીર્ષક apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,કોમર્શિયલ @@ -2720,6 +2726,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No., apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,એક સ્પષ્ટ કરો DocType: Offer Letter,Awaiting Response,પ્રતિભાવ પ્રતીક્ષામાં apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,ઉપર +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,સમય લોગ વર્ણવવામાં આવ્યા છે DocType: Salary Slip,Earning & Deduction,અર્નિંગ અને કપાત apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,એકાઉન્ટ {0} ગ્રુપ ન હોઈ શકે apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,વૈકલ્પિક. આ ગોઠવણી વિવિધ વ્યવહારો ફિલ્ટર કરવા માટે ઉપયોગ કરવામાં આવશે. @@ -2790,14 +2797,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,સફળતાપૂર્વક આ કંપની સંબંધિત તમામ વ્યવહારો કાઢી! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,તારીખના રોજ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,પ્રોબેશન -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,મૂળભૂત વેરહાઉસ સ્ટોક વસ્તુ માટે ફરજિયાત છે. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,મૂળભૂત વેરહાઉસ સ્ટોક વસ્તુ માટે ફરજિયાત છે. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},મહિના માટે પગાર ચુકવણી {0} અને વર્ષ {1} DocType: Stock Settings,Auto insert Price List rate if missing,ઓટો સામેલ ભાવ યાદી દર ગુમ તો apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,કુલ ભરપાઈ રકમ ,Transferred Qty,પરિવહન Qty apps/erpnext/erpnext/config/learn.py +11,Navigating,શોધખોળ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,આયોજન -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,સમય લોગ બેચ બનાવવા +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,સમય લોગ બેચ બનાવવા apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,જારી DocType: Project,Total Billing Amount (via Time Logs),કુલ બિલિંગ રકમ (સમય લોગ મારફતે) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,અમે આ આઇટમ વેચાણ @@ -2805,7 +2812,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,જથ્થો 0 કરતાં મોટી હોવી જોઈએ DocType: Journal Entry,Cash Entry,કેશ એન્ટ્રી DocType: Sales Partner,Contact Desc,સંપર્ક DESC -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","કેઝ્યુઅલ જેવા પાંદડા પ્રકાર, માંદા વગેરે" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","કેઝ્યુઅલ જેવા પાંદડા પ્રકાર, માંદા વગેરે" DocType: Email Digest,Send regular summary reports via Email.,ઈમેઈલ મારફતે નિયમિત સારાંશ અહેવાલ મોકલો. DocType: Brand,Item Manager,વસ્તુ વ્યવસ્થાપક DocType: Cost Center,Add rows to set annual budgets on Accounts.,એકાઉન્ટ્સ વાર્ષિક બજેટ સુયોજિત કરવા માટે પંક્તિઓ ઉમેરો. @@ -2820,7 +2827,7 @@ DocType: GL Entry,Party Type,પાર્ટી પ્રકાર apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,કાચો માલ મુખ્ય વસ્તુ તરીકે જ ન હોઈ શકે DocType: Item Attribute Value,Abbreviation,સંક્ષેપનો apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,"{0} મર્યાદા કરતાં વધી જાય છે, કારણ કે authroized નથી" -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,પગાર નમૂનો માસ્ટર. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,પગાર નમૂનો માસ્ટર. DocType: Leave Type,Max Days Leave Allowed,મેક્સ દિવસો રજા આપવામાં apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,શોપિંગ કાર્ટ માટે સેટ ટેક્સ નિયમ DocType: Payment Tool,Set Matching Amounts,સેટ મેચિંગ માત્રામાં @@ -2833,7 +2840,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,દો DocType: Stock Settings,Role Allowed to edit frozen stock,ભૂમિકા સ્થિર સ્ટોક ફેરફાર કરવા માટે પરવાનગી ,Territory Target Variance Item Group-Wise,પ્રદેશ લક્ષ્યાંક ફેરફાર વસ્તુ ગ્રુપ મુજબની apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,બધા ગ્રાહક જૂથો -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} ફરજિયાત છે. કદાચ ચલણ એક્સચેન્જ રેકોર્ડ {1} {2} માટે બનાવેલ નથી. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} ફરજિયાત છે. કદાચ ચલણ એક્સચેન્જ રેકોર્ડ {1} {2} માટે બનાવેલ નથી. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,ટેક્સ ઢાંચો ફરજિયાત છે. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,એકાઉન્ટ {0}: પિતૃ એકાઉન્ટ {1} અસ્તિત્વમાં નથી DocType: Purchase Invoice Item,Price List Rate (Company Currency),ભાવ યાદી દર (કંપની ચલણ) @@ -2853,8 +2860,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,વસ્તુ વા ,Item-wise Price List Rate,વસ્તુ મુજબના ભાવ યાદી દર apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,પુરવઠોકર્તા અવતરણ DocType: Quotation,In Words will be visible once you save the Quotation.,તમે આ અવતરણ સેવ વાર શબ્દો દૃશ્યમાન થશે. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} બંધ છે -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},બારકોડ {0} પહેલાથી જ વસ્તુ ઉપયોગ {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} બંધ છે +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},બારકોડ {0} પહેલાથી જ વસ્તુ ઉપયોગ {1} DocType: Lead,Add to calendar on this date,આ તારીખ પર કૅલેન્ડર ઉમેરો apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,શિપિંગ ખર્ચ ઉમેરવા માટે નિયમો. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,આવનારી પ્રવૃત્તિઓ @@ -2880,8 +2887,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling, apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,ઓછામાં ઓછા એક વખાર ફરજિયાત છે DocType: Serial No,Out of Warranty,વોરંટી બહાર DocType: BOM Replace Tool,Replace,બદલો -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} સેલ્સ ભરતિયું સામે {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,માપવા એકમ મૂળભૂત દાખલ કરો +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} સેલ્સ ભરતિયું સામે {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,માપવા એકમ મૂળભૂત દાખલ કરો DocType: Purchase Invoice Item,Project Name,પ્રોજેક્ટ નામ DocType: Supplier,Mention if non-standard receivable account,ઉલ્લેખ બિન પ્રમાણભૂત મળવાપાત્ર એકાઉન્ટ તો DocType: Journal Entry Account,If Income or Expense,આવક અથવા ખર્ચ તો @@ -2906,7 +2913,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,ફિસ્કલ વર્ષ: {0} નથી અસ્તિત્વમાં DocType: Currency Exchange,To Currency,ચલણ DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,નીચેના ઉપયોગકર્તાઓને બ્લૉક દિવસો માટે છોડી દો કાર્યક્રમો મંજૂર કરવા માટે પરવાનગી આપે છે. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,ખર્ચ દાવા પ્રકાર. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,ખર્ચ દાવા પ્રકાર. DocType: Item,Taxes,કર apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,ચૂકવેલ અને વિતરિત નથી DocType: Project,Default Cost Center,મૂળભૂત ખર્ચ કેન્દ્રને @@ -2936,7 +2943,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},ROW # {0}: સીરીયલ કોઈ {1} સાથે મેળ ખાતું નથી {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,પરચુરણ રજા DocType: Batch,Batch ID,બેચ ID ને -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},નોંધ: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},નોંધ: {0} ,Delivery Note Trends,ડ લવર નોંધ પ્રવાહો apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,આ અઠવાડિયાના સારાંશ apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} પંક્તિમાં ખરીદી અથવા પેટા કોન્ટ્રાક્ટ વસ્તુ જ હોવી જોઈએ {1} @@ -2976,6 +2983,7 @@ DocType: Project Task,Pending Review,બાકી સમીક્ષા apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,પગાર માટે અહીં ક્લિક કરો DocType: Task,Total Expense Claim (via Expense Claim),(ખર્ચ દાવો મારફતે) કુલ ખર્ચ દાવો apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,ગ્રાહક આઈડી +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,માર્ક ગેરહાજર apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,સમય સમય કરતાં મોટી હોવી જ જોઈએ કરવા માટે DocType: Journal Entry Account,Exchange Rate,વિનિમય દર apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,વેચાણ ઓર્ડર {0} અપર્ણ ન કરાય @@ -3023,7 +3031,7 @@ DocType: Item Group,Default Expense Account,મૂળભૂત ખર્ચ એ DocType: Employee,Notice (days),સૂચના (દિવસ) DocType: Tax Rule,Sales Tax Template,સેલ્સ ટેક્સ ઢાંચો DocType: Employee,Encashment Date,એન્કેશમેન્ટ તારીખ -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry",વાઉચર સામે પ્રકારની ખરીદી ઓર્ડર ઓફ એક ખરીદી ભરતિયું અથવા જર્નલ પ્રવેશ હોવા જ જોઈએ +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry",વાઉચર સામે પ્રકારની ખરીદી ઓર્ડર ઓફ એક ખરીદી ભરતિયું અથવા જર્નલ પ્રવેશ હોવા જ જોઈએ DocType: Account,Stock Adjustment,સ્ટોક એડજસ્ટમેન્ટ apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},મૂળભૂત પ્રવૃત્તિ કિંમત પ્રવૃત્તિ પ્રકાર માટે અસ્તિત્વમાં છે - {0} DocType: Production Order,Planned Operating Cost,આયોજિત ઓપરેટિંગ ખર્ચ @@ -3077,6 +3085,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,એન્ટ્રી માંડવાળ DocType: BOM,Rate Of Materials Based On,દર સામગ્રી પર આધારિત apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,આધાર Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,અનચેક બધા apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},કંપની વખારો માં ગુમ થયેલ {0} DocType: POS Profile,Terms and Conditions,નિયમો અને શરત apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},"તારીખ કરવા માટે, નાણાકીય વર્ષ અંદર પ્રયત્ન કરીશું. = તારીખ ધારી રહ્યા છીએ {0}" @@ -3098,7 +3107,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'",મૂળભૂત તરીકે ચાલુ નાણાકીય વર્ષના સુયોજિત કરવા માટે 'મૂળભૂત તરીકે સેટ કરો' પર ક્લિક કરો apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),આધાર ઇમેઇલ ID ને માટે સેટઅપ ઇનકમ ગ સવર. (દા.ત. support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,અછત Qty -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,વસ્તુ ચલ {0} જ લક્ષણો સાથે હાજર +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,વસ્તુ ચલ {0} જ લક્ષણો સાથે હાજર DocType: Salary Slip,Salary Slip,પગાર કાપલી apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,'તારીખ કરવા માટે' જરૂરી છે DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","પેકેજો પહોંચાડી શકાય માટે સ્લિપ પેકિંગ બનાવો. પેકેજ નંબર, પેકેજ સમાવિષ્ટો અને તેનું વજન સૂચિત કરવા માટે વપરાય છે." @@ -3146,7 +3155,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,જુ DocType: Item Attribute Value,Attribute Value,લક્ષણની કિંમત apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","ઇમેઇલ ID ને પહેલાથી જ અસ્તિત્વમાં છે, અનન્ય હોવો જોઈએ {0}" ,Itemwise Recommended Reorder Level,મુદ્દાવાર પુનઃક્રમાંકિત કરો સ્તર ભલામણ -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,પ્રથમ {0} પસંદ કરો +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,પ્રથમ {0} પસંદ કરો DocType: Features Setup,To get Item Group in details table,વિગતો ટેબલ વસ્તુ જૂથ વિચાર apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,વસ્તુ બેચ {0} {1} સમયસીમા સમાપ્ત થઈ ગઈ છે. DocType: Sales Invoice,Commission,કમિશન @@ -3190,7 +3199,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,ઉત્કૃષ્ટ વાઉચર મેળવો DocType: Warranty Claim,Resolved By,દ્વારા ઉકેલાઈ DocType: Appraisal,Start Date,પ્રારંભ તારીખ -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,સમયગાળા માટે પાંદડા ફાળવો. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,સમયગાળા માટે પાંદડા ફાળવો. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Cheques અને થાપણો ખોટી રીતે સાફ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,ચકાસવા માટે અહીં ક્લિક કરો apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,એકાઉન્ટ {0}: તમે પિતૃ એકાઉન્ટ તરીકે પોતાને સોંપી શકો છો @@ -3210,7 +3219,7 @@ DocType: Employee,Educational Qualification,શૈક્ષણિક લાય DocType: Workstation,Operating Costs,ઓપરેટિંગ ખર્ચ DocType: Employee Leave Approver,Employee Leave Approver,કર્મચારી રજા તાજનો apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} સફળતાપૂર્વક અમારા ન્યૂઝલેટર યાદીમાં ઉમેરવામાં આવ્યું છે. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},રો {0}: એક પુનઃક્રમાંકિત કરો પ્રવેશ પહેલેથી જ આ વેરહાઉસ માટે અસ્તિત્વમાં {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},રો {0}: એક પુનઃક્રમાંકિત કરો પ્રવેશ પહેલેથી જ આ વેરહાઉસ માટે અસ્તિત્વમાં {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","અવતરણ કરવામાં આવી છે, કારણ કે લોસ્ટ જાહેર કરી શકતા નથી." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,ખરીદી માસ્ટર વ્યવસ્થાપક apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,ઓર્ડર {0} સબમિટ હોવું જ જોઈએ ઉત્પાદન @@ -3234,7 +3243,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,ભરતિયું {0} પહેલાથી જ સબમિટ કરવામાં આવી છે સેલ્સ apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,પૂર્ણાહુતિ તારીખ્ DocType: Purchase Invoice Item,Amount (Company Currency),રકમ (કંપની ચલણ) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,સંસ્થા યુનિટ (વિભાગ) માસ્ટર. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,સંસ્થા યુનિટ (વિભાગ) માસ્ટર. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,માન્ય મોબાઇલ અમે દાખલ કરો DocType: Budget Detail,Budget Detail,બજેટ વિગતવાર apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,મોકલતા પહેલા સંદેશ દાખલ કરો @@ -3250,13 +3259,13 @@ DocType: Purchase Receipt Item,Received and Accepted,પ્રાપ્ત થ ,Serial No Service Contract Expiry,સીરીયલ કોઈ સેવા કોન્ટ્રેક્ટ સમાપ્તિ DocType: Item,Unit of Measure Conversion,માપ રૂપાંતર એકમ apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,કર્મચારીનું બદલી શકાતું નથી -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,તમે ક્રેડિટ અને તે જ સમયે એક જ ખાતામાં ડેબિટ શકતા નથી +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,તમે ક્રેડિટ અને તે જ સમયે એક જ ખાતામાં ડેબિટ શકતા નથી DocType: Naming Series,Help HTML,મદદ HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},100% પ્રયત્ન કરીશું સોંપાયેલ કુલ વેઇટેજ. તે {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},{0} વસ્તુ માટે ઓળંગી over- માટે ભથ્થું {1} DocType: Address,Name of person or organization that this address belongs to.,આ સરનામા માટે અનુસરે છે કે વ્યક્તિ કે સંસ્થા નામ. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,તમારા સપ્લાયર્સ -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,વેચાણ ઓર્ડર કરવામાં આવે છે ગુમાવી સેટ કરી શકાતો નથી. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,વેચાણ ઓર્ડર કરવામાં આવે છે ગુમાવી સેટ કરી શકાતો નથી. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,અન્ય પગાર માળખું {0} કર્મચારી માટે સક્રિય છે {1}. તેની પરિસ્થિતિ 'નિષ્ક્રિય' આગળ વધવા માટે ખાતરી કરો. DocType: Purchase Invoice,Contact,સંપર્ક apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,પ્રતિ પ્રાપ્ત @@ -3266,11 +3275,11 @@ DocType: Item,Has Serial No,સીરીયલ કોઈ છે DocType: Employee,Date of Issue,ઇશ્યૂ તારીખ apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: પ્રતિ {0} માટે {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},ROW # {0}: આઇટમ માટે સેટ પુરવઠોકર્તા {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,વસ્તુ {1} સાથે જોડાયેલ વેબસાઇટ છબી {0} શોધી શકાતી નથી +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,વસ્તુ {1} સાથે જોડાયેલ વેબસાઇટ છબી {0} શોધી શકાતી નથી DocType: Issue,Content Type,સામગ્રી પ્રકાર apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,કમ્પ્યુટર DocType: Item,List this Item in multiple groups on the website.,આ વેબસાઇટ પર બહુવિધ જૂથો આ આઇટમ યાદી. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,અન્ય ચલણ સાથે એકાઉન્ટ્સ માટે પરવાનગી આપે છે મલ્ટી કરન્સી વિકલ્પ તપાસો +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,અન્ય ચલણ સાથે એકાઉન્ટ્સ માટે પરવાનગી આપે છે મલ્ટી કરન્સી વિકલ્પ તપાસો apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,વસ્તુ: {0} સિસ્ટમ અસ્તિત્વમાં નથી apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,તમે ફ્રોઝન કિંમત સુયોજિત કરવા માટે અધિકૃત નથી DocType: Payment Reconciliation,Get Unreconciled Entries,Unreconciled પ્રવેશો મળી @@ -3280,14 +3289,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,તે શ DocType: Delivery Note,To Warehouse,વેરહાઉસ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},એકાઉન્ટ {0} નાણાકીય વર્ષ માટે એક કરતા વધુ વખત દાખલ કરવામાં આવી છે {1} ,Average Commission Rate,સરેરાશ કમિશન દર -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'હા' હોઈ નોન-સ્ટોક આઇટમ માટે નથી કરી શકો છો 'સીરિયલ કોઈ છે' +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'હા' હોઈ નોન-સ્ટોક આઇટમ માટે નથી કરી શકો છો 'સીરિયલ કોઈ છે' apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,એટેન્ડન્સ ભવિષ્યમાં તારીખો માટે ચિહ્નિત કરી શકાતી નથી DocType: Pricing Rule,Pricing Rule Help,પ્રાઇસીંગ નિયમ મદદ DocType: Purchase Taxes and Charges,Account Head,એકાઉન્ટ હેડ apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,વસ્તુઓ ઉતરાણ ખર્ચ ગણતરી માટે વધારાના ખર્ચ અપડેટ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,ઇલેક્ટ્રિકલ DocType: Stock Entry,Total Value Difference (Out - In),કુલ મૂલ્ય તફાવત (બહાર - માં) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,રો {0}: વિનિમય દર ફરજિયાત છે +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,રો {0}: વિનિમય દર ફરજિયાત છે apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},વપરાશકર્તા ID કર્મચારી માટે સેટ નથી {0} DocType: Stock Entry,Default Source Warehouse,મૂળભૂત સોર્સ વેરહાઉસ DocType: Item,Customer Code,ગ્રાહક કોડ @@ -3306,15 +3315,15 @@ DocType: Notification Control,Sales Invoice Message,સેલ્સ ભરતિ apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,એકાઉન્ટ {0} બંધ પ્રકાર જવાબદારી / ઈક્વિટી હોવું જ જોઈએ DocType: Authorization Rule,Based On,પર આધારિત DocType: Sales Order Item,Ordered Qty,આદેશ આપ્યો Qty -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,વસ્તુ {0} અક્ષમ છે +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,વસ્તુ {0} અક્ષમ છે DocType: Stock Settings,Stock Frozen Upto,સ્ટોક ફ્રોઝન સુધી apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},પ્રતિ અને સમય રિકરિંગ માટે ફરજિયાત તારીખો પીરિયડ {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,પ્રોજેક્ટ પ્રવૃત્તિ / કાર્ય. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,પગાર સ્લિપ બનાવો +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,પગાર સ્લિપ બનાવો apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","માટે લાગુ તરીકે પસંદ કરેલ છે તે ખરીદી, ચકાસાયેલ જ હોવું જોઈએ {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,ડિસ્કાઉન્ટ કરતાં ઓછી 100 હોવી જ જોઈએ DocType: Purchase Invoice,Write Off Amount (Company Currency),રકમ માંડવાળ (કંપની ચલણ) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,ROW # {0}: પુનઃક્રમાંકિત કરો જથ્થો સુયોજિત કરો +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,ROW # {0}: પુનઃક્રમાંકિત કરો જથ્થો સુયોજિત કરો DocType: Landed Cost Voucher,Landed Cost Voucher,ઉતારેલ માલની કિંમત વાઉચર apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},સેટ કરો {0} DocType: Purchase Invoice,Repeat on Day of Month,મહિનાનો દિવસ પર પુનરાવર્તન @@ -3366,7 +3375,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,પ્રગતિ વેરહાઉસ માં મૂળભૂત કામ apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,હિસાબી વ્યવહારો માટે મૂળભૂત સુયોજનો. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,અપેક્ષિત તારીખ સામગ્રી વિનંતી તારીખ પહેલાં ન હોઈ શકે -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,વસ્તુ {0} એક સેલ્સ વસ્તુ જ હોવી જોઈએ +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,વસ્તુ {0} એક સેલ્સ વસ્તુ જ હોવી જોઈએ DocType: Naming Series,Update Series Number,સુધારા સિરીઝ સંખ્યા DocType: Account,Equity,ઈક્વિટી DocType: Sales Order,Printing Details,પ્રિન્ટિંગ વિગતો @@ -3418,7 +3427,7 @@ DocType: Task,Review Date,સમીક્ષા તારીખ DocType: Purchase Invoice,Advance Payments,અગાઉથી ચૂકવણી DocType: Purchase Taxes and Charges,On Net Total,નેટ કુલ પર apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,{0} પંક્તિ માં લક્ષ્યાંક વેરહાઉસ ઉત્પાદન ઓર્ડર તરીકે જ હોવી જોઈએ -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,કોઈ પરવાનગી ચુકવણી સાધન વાપરવા માટે +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,કોઈ પરવાનગી ચુકવણી સાધન વાપરવા માટે apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,% S રિકરિંગ માટે સ્પષ્ટ નથી 'સૂચના ઇમેઇલ સરનામાંઓ' apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,કરન્સી કેટલાક અન્ય ચલણ ઉપયોગ પ્રવેશો કર્યા પછી બદલી શકાતું નથી DocType: Company,Round Off Account,એકાઉન્ટ બંધ રાઉન્ડ @@ -3441,7 +3450,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,આઇટમ જથ્થો કાચા માલના આપવામાં જથ્થામાં થી repacking / ઉત્પાદન પછી પ્રાપ્ત DocType: Payment Reconciliation,Receivable / Payable Account,પ્રાપ્ત / ચૂકવવાપાત્ર એકાઉન્ટ DocType: Delivery Note Item,Against Sales Order Item,વેચાણ ઓર્ડર વસ્તુ સામે -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},લક્ષણ માટે લક્ષણની કિંમત સ્પષ્ટ કરો {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},લક્ષણ માટે લક્ષણની કિંમત સ્પષ્ટ કરો {0} DocType: Item,Default Warehouse,મૂળભૂત વેરહાઉસ DocType: Task,Actual End Date (via Time Logs),વાસ્તવિક ઓવરને તારીખ (સમય લોગ મારફતે) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},બજેટ ગ્રુપ એકાઉન્ટ સામે અસાઇન કરી શકાતી નથી {0} @@ -3466,10 +3475,10 @@ DocType: Lead,Blog Subscriber,બ્લોગ ઉપભોક્તા apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,મૂલ્યો પર આધારિત વ્યવહારો પ્રતિબંધિત કરવા માટે નિયમો બનાવો. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","ચકાસાયેલ હોય, તો કુલ નં. દિવસની રજાઓ સમાવેશ થાય છે, અને આ પગાર પ્રતિ દિવસ ની કિંમત ઘટાડશે" DocType: Purchase Invoice,Total Advance,કુલ એડવાન્સ -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,પ્રોસેસીંગ પગારપત્રક +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,પ્રોસેસીંગ પગારપત્રક DocType: Opportunity Item,Basic Rate,મૂળ દર DocType: GL Entry,Credit Amount,ક્રેડિટ રકમ -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,લોસ્ટ તરીકે સેટ કરો +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,લોસ્ટ તરીકે સેટ કરો apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,ચુકવણી રસીદ નોંધ DocType: Supplier,Credit Days Based On,ક્રેડિટ ટ્રેડીંગ પર આધારિત છે DocType: Tax Rule,Tax Rule,ટેક્સ નિયમ @@ -3499,7 +3508,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,સ્વીકારાયુ apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} નથી અસ્તિત્વમાં apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,ગ્રાહકો માટે ઊભા બીલો. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,પ્રોજેક્ટ ID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},રો કોઈ {0}: રકમ ખર્ચ દાવો {1} સામે રકમ બાકી કરતાં વધારે ન હોઈ શકે. બાકી રકમ છે {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},રો કોઈ {0}: રકમ ખર્ચ દાવો {1} સામે રકમ બાકી કરતાં વધારે ન હોઈ શકે. બાકી રકમ છે {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} ગ્રાહકો ઉમેર્યા DocType: Maintenance Schedule,Schedule,સૂચિ DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","આ ખર્ચ કેન્દ્ર માટે બજેટ વ્યાખ્યાયિત કરે છે. બજેટ ક્રિયા સુયોજિત કરવા માટે, જુઓ "કંપની યાદી"" @@ -3560,19 +3569,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS પ્રોફાઇલ DocType: Payment Gateway Account,Payment URL Message,ચુકવણી URL સંદેશ apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","સુયોજિત બજેટ, લક્ષ્યાંકો વગેરે માટે મોસમ" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,રો {0}: ચુકવણી રકમ બાકી રકમ કરતાં વધારે ન હોઈ શકે +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,રો {0}: ચુકવણી રકમ બાકી રકમ કરતાં વધારે ન હોઈ શકે apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,અવેતન કુલ -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,સમય લોગ બિલયોગ્ય નથી -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","{0} વસ્તુ એક નમૂનો છે, તેના ચલો એક પસંદ કરો" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,સમય લોગ બિલયોગ્ય નથી +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","{0} વસ્તુ એક નમૂનો છે, તેના ચલો એક પસંદ કરો" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,ખરીદનાર apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,નેટ પગાર નકારાત્મક ન હોઈ શકે -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,જાતે સામે વાઉચર દાખલ કરો +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,જાતે સામે વાઉચર દાખલ કરો DocType: SMS Settings,Static Parameters,સ્થિર પરિમાણો DocType: Purchase Order,Advance Paid,આગોતરી ચુકવણી DocType: Item,Item Tax,વસ્તુ ટેક્સ apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,સપ્લાયર સામગ્રી apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,એક્સાઇઝ ભરતિયું DocType: Expense Claim,Employees Email Id,કર્મચારીઓ ઇમેઇલ આઈડી +DocType: Employee Attendance Tool,Marked Attendance,માર્કડ એટેન્ડન્સ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,વર્તમાન જવાબદારીઓ apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,સામૂહિક એસએમએસ તમારા સંપર્કો મોકલો DocType: Purchase Taxes and Charges,Consider Tax or Charge for,માટે કરવેરા અથવા ચાર્જ ધ્યાનમાં @@ -3595,7 +3605,7 @@ DocType: Item Attribute,Numeric Values,આંકડાકીય મૂલ્ય apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,લોગો જોડો DocType: Customer,Commission Rate,કમિશન દર apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,વેરિએન્ટ બનાવો -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,વિભાગ દ્વારા બ્લોક છોડી કાર્યક્રમો. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,વિભાગ દ્વારા બ્લોક છોડી કાર્યક્રમો. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,કાર્ટ ખાલી છે DocType: Production Order,Actual Operating Cost,વાસ્તવિક ઓપરેટિંગ ખર્ચ apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,રુટ ફેરફાર કરી શકતા નથી. @@ -3614,7 +3624,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,"જથ્થો આ સ્તરની નીચે પડે છે, તો આપમેળે સામગ્રી વિનંતી બનાવવા" ,Item-wise Purchase Register,વસ્તુ મુજબના ખરીદી રજીસ્ટર DocType: Batch,Expiry Date,અંતિમ તારીખ -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","પુનઃક્રમાંકિત કરો સ્તર સુયોજિત કરવા માટે, આઇટમ ખરીદી વસ્તુ અથવા ઉત્પાદન વસ્તુ જ હોવી જોઈએ" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","પુનઃક્રમાંકિત કરો સ્તર સુયોજિત કરવા માટે, આઇટમ ખરીદી વસ્તુ અથવા ઉત્પાદન વસ્તુ જ હોવી જોઈએ" ,Supplier Addresses and Contacts,પુરવઠોકર્તા સરનામાંઓ અને સંપર્કો apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,પ્રથમ શ્રેણી પસંદ કરો apps/erpnext/erpnext/config/projects.py +18,Project master.,પ્રોજેક્ટ માસ્ટર. diff --git a/erpnext/translations/he.csv b/erpnext/translations/he.csv index c270d059f1..aa9ab92ba3 100644 --- a/erpnext/translations/he.csv +++ b/erpnext/translations/he.csv @@ -31,6 +31,7 @@ DocType: Purchase Receipt Item,Required By,הנדרש על ידי DocType: Delivery Note,Return Against Delivery Note,חזור נגד תעודת משלוח DocType: Department,Department,מחלקה DocType: Purchase Order,% Billed,% שחויבו +apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +43,Exchange Rate must be same as {0} {1} ({2}),שער החליפין חייב להיות זהה {0} {1} ({2}) DocType: Sales Invoice,Customer Name,שם לקוח DocType: Features Setup,"All export related fields like currency, conversion rate, export total, export grand total etc are available in Delivery Note, POS, Quotation, Sales Invoice, Sales Order etc.","כל התחומים הקשורים ליצוא כמו מטבע, שער המרה, סך יצוא, וכו 'הסכום כולל יצוא זמינים בתעודת משלוח, POS, הצעת המחיר, מכירות חשבונית, להזמין מכירות וכו'" DocType: Account,Heads (or groups) against which Accounting Entries are made and balances are maintained.,ראשים (או קבוצות) נגד שרישומים חשבונאיים נעשים ומתוחזקים יתרות. @@ -96,6 +97,7 @@ apps/erpnext/erpnext/public/js/stock_analytics.js +63,Select Warehouse...,בחר apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +6,Advertising,פרסום apps/erpnext/erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py +22,Same Company is entered more than once,אותו החברה נכנסה יותר מפעם אחת DocType: Employee,Married,נשוי +apps/erpnext/erpnext/accounts/party.py +38,Not permitted for {0},חל איסור על {0} apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +441,Get items from,קבל פריטים מ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +399,Stock cannot be updated against Delivery Note {0},המניה לא ניתן לעדכן נגד תעודת משלוח {0} DocType: Payment Reconciliation,Reconcile,ליישב @@ -158,13 +160,13 @@ DocType: Journal Entry Account,Credit in Company Currency,אשראי במטבע DocType: Delivery Note,Installation Status,מצב התקנה apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},+ מקובל שנדחו הכמות חייבת להיות שווה לכמות שהתקבל עבור פריט {0} DocType: Item,Supply Raw Materials for Purchase,חומרי גלם לאספקת רכישה -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,פריט {0} חייב להיות פריט רכישה +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,פריט {0} חייב להיות פריט רכישה DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","הורד את התבנית, למלא נתונים מתאימים ולצרף את הקובץ הנוכחי. כל שילוב התאריכים ועובדים בתקופה שנבחרה יבוא בתבנית, עם רישומי נוכחות קיימים" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,פריט {0} אינו פעיל או שהגיע הסוף של חיים DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,יעודכן לאחר חשבונית מכירות הוגשה. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","כדי לכלול מס בשורת {0} בשיעור פריט, מסים בשורות {1} חייבים להיות כלולים גם" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,הגדרות עבור מודול HR +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","כדי לכלול מס בשורת {0} בשיעור פריט, מסים בשורות {1} חייבים להיות כלולים גם" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,הגדרות עבור מודול HR DocType: SMS Center,SMS Center,SMS מרכז DocType: BOM Replace Tool,New BOM,BOM החדש apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,אצווה יומני זמן לחיוב. @@ -192,7 +194,7 @@ DocType: Offer Letter,Select Terms and Conditions,תנאים והגבלות בח DocType: Production Planning Tool,Sales Orders,הזמנות ומכירות DocType: Purchase Taxes and Charges,Valuation,הערכת שווי ,Purchase Order Trends,לרכוש מגמות להזמין -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,להקצות עלים לשנה. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,להקצות עלים לשנה. DocType: Earning Type,Earning Type,סוג ההשתכרות DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,תכנון קיבולת השבת ומעקב זמן DocType: Bank Reconciliation,Bank Account,חשבון בנק @@ -223,13 +225,14 @@ apps/erpnext/erpnext/config/buying.py +18,Request for purchase.,בקש לרכי apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +173,Only the selected Leave Approver can submit this Leave Application,רק המאשר Leave נבחר יכול להגיש בקשה זו החופשה apps/erpnext/erpnext/hr/doctype/employee/employee.py +114,Relieving Date must be greater than Date of Joining,להקלה על התאריך חייבת להיות גדולה מ תאריך ההצטרפות apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +172,Leaves per Year,עלים בכל שנה +apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +187,Please set Naming Series for {0} via Setup > Settings > Naming Series,אנא להגדיר שמות סדרה עבור {0} באמצעות התקנה> הגדרות> סדרת Naming DocType: Time Log,Will be updated when batched.,יעודכן כאשר לכלך. apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +104,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,שורת {0}: בדוק את 'האם Advance' נגד חשבון {1} אם זה כניסה מראש. apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to company {1},מחסן {0} אינו שייך לחברת {1} DocType: Item Website Specification,Item Website Specification,מפרט אתר פריט DocType: Payment Tool,Reference No,אסמכתא apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,השאר חסימה -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},פריט {0} הגיע לסיומו של חיים על {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},פריט {0} הגיע לסיומו של חיים על {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,שנתי DocType: Stock Reconciliation Item,Stock Reconciliation Item,פריט במלאי פיוס DocType: Stock Entry,Sales Invoice No,מכירות חשבונית לא @@ -241,7 +244,7 @@ DocType: Item,Minimum Order Qty,להזמין כמות מינימום DocType: Pricing Rule,Supplier Type,סוג ספק DocType: Item,Publish in Hub,פרסם בHub ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,פריט {0} יבוטל +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,פריט {0} יבוטל apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,בקשת חומר DocType: Bank Reconciliation,Update Clearance Date,תאריך שחרור עדכון DocType: Item,Purchase Details,פרטי רכישה @@ -253,11 +256,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,כמות שנדחו DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","שדה זמין בתעודת משלוח, הצעת המחיר, מכירות חשבונית, הזמנת מכירות" DocType: SMS Settings,SMS Sender Name,שם שולח SMS DocType: Contact,Is Primary Contact,האם איש קשר ראשי +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,הזמן התחבר כבר לכלך לחיוב DocType: Notification Control,Notification Control,בקרת הודעה DocType: Lead,Suggestions,הצעות DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,תקציבי סט פריט קבוצה חכמה על טריטוריה זו. אתה יכול לכלול גם עונתיות על ידי הגדרת ההפצה. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},נא להזין את קבוצת חשבון הורה למחסן {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},תשלום כנגד {0} {1} לא יכול להיות גדול מהסכום מצטיין {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},תשלום כנגד {0} {1} לא יכול להיות גדול מהסכום מצטיין {2} DocType: Supplier,Address HTML,כתובת HTML DocType: Lead,Mobile No.,מס 'נייד DocType: Maintenance Schedule,Generate Schedule,צור לוח זמנים @@ -274,7 +278,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,סונכרן עם רכזת apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,סיסמא שגויה DocType: Item,Variant Of,גרסה של -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,פריט {0} חייב להיות פריט השירות apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',"כמות שהושלמה לא יכולה להיות גדולה מ 'כמות לייצור """ DocType: Period Closing Voucher,Closing Account Head,סגירת חשבון ראש DocType: Employee,External Work History,חיצוני היסטוריה עבודה @@ -286,10 +289,10 @@ DocType: Newsletter,Newsletter,עלון DocType: Stock Settings,Notify by Email on creation of automatic Material Request,להודיע באמצעות דואר אלקטרוני על יצירת בקשת חומר אוטומטית DocType: Journal Entry,Multi Currency,מטבע רב DocType: Payment Reconciliation Invoice,Invoice Type,סוג חשבונית -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,תעודת משלוח +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,תעודת משלוח apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,הגדרת מסים apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,כניסת תשלום השתנתה לאחר שמשכת אותו. אנא למשוך אותו שוב. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} נכנס פעמיים במס פריט +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} נכנס פעמיים במס פריט apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,סיכום השבוע הזה ופעילויות תלויות ועומדות DocType: Workstation,Rent Cost,עלות השכרה apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,אנא בחר חודש והשנה @@ -300,7 +303,7 @@ DocType: Shipping Rule,Valid for Countries,תקף למדינות DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","כל התחומים הקשורים היבוא כמו מטבע, שער המרה, סך יבוא, וכו 'הסכום כולל יבוא זמינים בקבלת רכישה, הצעת מחיר של ספק, רכישת חשבונית, הזמנת רכש וכו'" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"פריט זה הוא תבנית ולא ניתן להשתמש בם בעסקות. תכונות פריט תועתק על לגרסות אלא אם כן ""לא העתק 'מוגדרת" apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,"להזמין סה""כ נחשב" -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","ייעוד עובד (למשל מנכ""ל, מנהל וכו ')." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","ייעוד עובד (למשל מנכ""ל, מנהל וכו ')." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,נא להזין את 'חזור על פעולה ביום בחודש' ערך שדה DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,קצב שבו מטבע לקוחות מומר למטבע הבסיס של הלקוח DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","זמין בBOM, תעודת משלוח, חשבוניות רכש, ייצור להזמין, הזמנת רכש, קבלת רכישה, מכירות חשבונית, הזמנת מכירות, מלאי כניסה, גליון" @@ -347,7 +350,7 @@ DocType: Workstation,Consumable Cost,עלות מתכלה apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',"{0} ({1}) חייב להיות תפקיד ""Leave מאשר '" DocType: Purchase Receipt,Vehicle Date,תאריך רכב apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,רפואי -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,סיבה לאיבוד +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,סיבה לאיבוד apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},תחנת עבודה סגורה בתאריכים הבאים בהתאם לרשימת Holiday: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,הזדמנויות DocType: Employee,Single,אחת @@ -375,14 +378,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Channel Partner DocType: Account,Old Parent,האם ישן DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,התאמה אישית של הטקסט המקדים שהולך כחלק מהודעה. לכל עסקה טקסט מקדים נפרד. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),אינו כולל סמלים (לשעבר. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,מנהל המכירות Master apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,הגדרות גלובליות עבור כל תהליכי הייצור. DocType: Accounts Settings,Accounts Frozen Upto,חשבונות קפואים Upto DocType: SMS Log,Sent On,נשלח ב -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,תכונה {0} נבחר מספר פעמים בטבלה תכונות +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,תכונה {0} נבחר מספר פעמים בטבלה תכונות DocType: HR Settings,Employee record is created using selected field. ,שיא עובד שנוצר באמצעות שדה שנבחר. DocType: Sales Order,Not Applicable,לא ישים -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,אב חג. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,אב חג. DocType: Material Request Item,Required Date,תאריך הנדרש DocType: Delivery Note,Billing Address,כתובת לחיוב apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,נא להזין את קוד פריט. @@ -418,7 +422,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,נא להזין את המחסן שלבקשת חומר יועלה DocType: Production Order,Additional Operating Cost,עלות הפעלה נוספות apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,קוסמטיקה -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","למזג, המאפיינים הבאים חייבים להיות זהים בשני הפריטים" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","למזג, המאפיינים הבאים חייבים להיות זהים בשני הפריטים" DocType: Shipping Rule,Net Weight,משקל נטו DocType: Employee,Emergency Phone,טל 'חירום ,Serial No Warranty Expiry,Serial No תפוגה אחריות @@ -473,17 +477,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,סטטוס חיוב ומשלוח apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,חזרו על לקוחות DocType: Leave Control Panel,Allocate,להקצות -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,חזור מכירות +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,חזור מכירות DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,בחר הזמנות ומכירות ממנו ברצונך ליצור הזמנות ייצור. DocType: Item,Delivered by Supplier (Drop Ship),נמסר על ידי ספק (זרוק משלוח) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,רכיבי שכר. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,רכיבי שכר. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,מסד הנתונים של לקוחות פוטנציאליים. DocType: Authorization Rule,Customer or Item,הלקוח או פריט apps/erpnext/erpnext/config/crm.py +17,Customer database.,מאגר מידע על לקוחות. DocType: Quotation,Quotation To,הצעת מחיר ל DocType: Lead,Middle Income,הכנסה התיכונה apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),פתיחה (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"ברירת מחדל של יחידת מדידה לפריט {0} לא ניתן לשנות באופן ישיר, כי כבר עשו כמה עסקה (ים) עם יחידת מידה אחרת. יהיה עליך ליצור פריט חדש לשימוש יחידת מידת ברירת מחדל שונה." +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"ברירת מחדל של יחידת מדידה לפריט {0} לא ניתן לשנות באופן ישיר, כי כבר עשו כמה עסקה (ים) עם יחידת מידה אחרת. יהיה עליך ליצור פריט חדש לשימוש יחידת מידת ברירת מחדל שונה." apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,סכום שהוקצה אינו יכול להיות שלילי DocType: Purchase Order Item,Billed Amt,Amt שחויב DocType: Warehouse,A logical Warehouse against which stock entries are made.,מחסן לוגי שנגדו מרשמו רשומות מלאי @@ -501,14 +505,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,מסים מכירות וחיוב DocType: Employee,Organization Profile,ארגון פרופיל apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,אנא התקנת המונה סדרה לנוכחות באמצעות התקנה> סדרת מספור DocType: Employee,Reason for Resignation,סיבה להתפטרות -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,תבנית להערכות ביצועים. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,תבנית להערכות ביצועים. DocType: Payment Reconciliation,Invoice/Journal Entry Details,חשבונית / יומן פרטים apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' לא בשנת הכספים {2} DocType: Buying Settings,Settings for Buying Module,הגדרות עבור רכישת מודול apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,אנא ראשון להיכנס קבלת רכישה DocType: Buying Settings,Supplier Naming By,Naming ספק ב DocType: Activity Type,Default Costing Rate,דרג תמחיר ברירת מחדל -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,לוח זמנים תחזוקה +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,לוח זמנים תחזוקה apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","חוקים ואז תמחור מסוננים החוצה על בסיס לקוחות, קבוצת לקוחות, טריטוריה, ספק, סוג של ספק, המבצע, שותף מכירות וכו '" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,שינוי נטו במלאי DocType: Employee,Passport Number,דרכון מספר @@ -547,7 +551,7 @@ DocType: Purchase Invoice,Quarterly,הרבעונים DocType: Selling Settings,Delivery Note Required,תעודת משלוח חובה DocType: Sales Order Item,Basic Rate (Company Currency),שיעור בסיסי (חברת מטבע) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush חומרי גלם המבוסס על -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,נא להזין את פרטי פריט +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,נא להזין את פרטי פריט DocType: Purchase Receipt,Other Details,פרטים נוספים DocType: Account,Accounts,חשבונות apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,שיווק @@ -560,7 +564,7 @@ DocType: Employee,Provide email id registered in company,"לספק id הדוא"" DocType: Hub Settings,Seller City,מוכר עיר DocType: Email Digest,Next email will be sent on:,"הדוא""ל הבא יישלח על:" DocType: Offer Letter Term,Offer Letter Term,להציע מכתב לטווח -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,יש פריט גרסאות. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,יש פריט גרסאות. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,פריט {0} לא נמצא DocType: Bin,Stock Value,מניית ערך apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,סוג העץ @@ -568,7 +572,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,כמות נצרכת ליחיד DocType: Serial No,Warranty Expiry Date,תאריך תפוגה אחריות DocType: Material Request Item,Quantity and Warehouse,כמות ומחסן DocType: Sales Invoice,Commission Rate (%),ועדת שיעור (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","נגד שובר סוג חייב להיות אחד מלהזמין מכירות, חשבוניות מכירות או יומן" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","נגד שובר סוג חייב להיות אחד מלהזמין מכירות, חשבוניות מכירות או יומן" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,התעופה והחלל DocType: Journal Entry,Credit Card Entry,כניסת כרטיס אשראי apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,נושא משימה @@ -635,10 +639,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,אחריות apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,סכום גושפנקא לא יכול להיות גדול מסכום תביעה בשורה {0}. DocType: Company,Default Cost of Goods Sold Account,עלות ברירת מחדל של חשבון מכר -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,מחיר המחירון לא נבחר +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,מחיר המחירון לא נבחר DocType: Employee,Family Background,רקע משפחתי DocType: Process Payroll,Send Email,שלח אי-מייל -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},אזהרה: קובץ מצורף לא חוקי {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},אזהרה: קובץ מצורף לא חוקי {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,אין אישור DocType: Company,Default Bank Account,חשבון בנק ברירת מחדל apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","כדי לסנן מבוסס על המפלגה, מפלגה בחר את הסוג ראשון" @@ -666,7 +670,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,שא DocType: Features Setup,"To enable ""Point of Sale"" features",כדי לאפשר "נקודת המכירה" תכונות DocType: Bin,Moving Average Rate,נע תעריף ממוצע DocType: Production Planning Tool,Select Items,פריטים בחרו -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} נגד ביל {1} יום {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} נגד ביל {1} יום {2} DocType: Maintenance Visit,Completion Status,סטטוס השלמה DocType: Sales Invoice Item,Target Warehouse,יעד מחסן DocType: Item,Allow over delivery or receipt upto this percent,לאפשר על משלוח או קבלת upto אחוזים זה @@ -694,6 +698,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +77,Research & Devel DocType: Company,Registration Details,פרטי רישום DocType: Item,Re-Order Qty,Re-להזמין כמות DocType: Leave Block List Date,Leave Block List Date,השאר תאריך בלוק רשימה +apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +25,Scheduled to send to {0},מתוכנן לשלוח {0} DocType: Pricing Rule,Price or Discount,מחיר או הנחה DocType: Sales Team,Incentives,תמריצים DocType: SMS Log,Requested Numbers,מספרים מבוקשים @@ -722,9 +727,10 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +583, ,Received Items To Be Billed,פריטים שהתקבלו לחיוב DocType: Employee,Ms,גב ' apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,שער חליפין של מטבע שני. +apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},לא ניתן למצוא משבצת הזמן בעולם הבא {0} ימים למבצע {1} DocType: Production Order,Plan material for sub-assemblies,חומר תכנית לתת מכלולים apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} חייב להיות פעיל -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,אנא בחר את סוג המסמך ראשון +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,אנא בחר את סוג המסמך ראשון apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,סל גוטו apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,ביקורי חומר לבטל {0} לפני ביטול תחזוקת הביקור הזה DocType: Salary Slip,Leave Encashment Amount,השאר encashment הסכום @@ -742,7 +748,7 @@ DocType: Purchase Receipt,Range,טווח DocType: Supplier,Default Payable Accounts,חשבונות לתשלום ברירת מחדל apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,עובד {0} אינו פעיל או שאינו קיים DocType: Features Setup,Item Barcode,ברקוד פריט -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,פריט גרסאות {0} מעודכן +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,פריט גרסאות {0} מעודכן DocType: Quality Inspection Reading,Reading 6,קריאת 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,לרכוש חשבונית מראש DocType: Address,Shop,חנות @@ -765,7 +771,7 @@ DocType: Salary Slip,Total in words,"סה""כ במילים" DocType: Material Request Item,Lead Time Date,תאריך עופרת זמן apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,הוא חובה. אולי שיא המרה לא נוצר ל apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},# שורה {0}: נא לציין את מספר סידורי לפריט {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","לפריטים 'מוצרי Bundle', מחסן, מספר סידורי ויצוו לא ייחשב מהשולחן "רשימת האריזה". אם מחסן ויצוו אין הם זהים עבור כל פריטי האריזה עבור כל הפריט "מוצרים Bundle ', ניתן להזין ערכים אלה בטבלת הפריט העיקרית, ערכים יועתקו ל'אריזת רשימה' שולחן." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","לפריטים 'מוצרי Bundle', מחסן, מספר סידורי ויצוו לא ייחשב מהשולחן "רשימת האריזה". אם מחסן ויצוו אין הם זהים עבור כל פריטי האריזה עבור כל הפריט "מוצרים Bundle ', ניתן להזין ערכים אלה בטבלת הפריט העיקרית, ערכים יועתקו ל'אריזת רשימה' שולחן." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,משלוחים ללקוחות. DocType: Purchase Invoice Item,Purchase Order Item,לרכוש פריט להזמין apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,הכנסות עקיפות @@ -786,6 +792,7 @@ DocType: Process Payroll,Select Payroll Year and Month,בחר שכר שנה וח apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",עבור לקבוצה המתאימה (בדרך כלל יישום של קרנות> נכסים שוטפים> חשבונות בנק וליצור חשבון חדש (על ידי לחיצה על הוסף לילדים) מסוג "בנק" DocType: Workstation,Electricity Cost,עלות חשמל DocType: HR Settings,Don't send Employee Birthday Reminders,אל תשלחו לעובדי יום הולדת תזכורות +,Employee Holiday Attendance,נוכחות נופש לעובדים DocType: Opportunity,Walk In,ללכת ב apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,ערכי מניות DocType: Item,Inspection Criteria,קריטריונים לבדיקה @@ -800,13 +807,15 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +562, DocType: Journal Entry,Total Amount in Words,סכתי-הכל סכום מילים apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +7,There was an error. One probable reason could be that you haven't saved the form. Please contact support@erpnext.com if the problem persists.,הייתה שגיאה. סיבה סבירה אחת יכולה להיות שלא שמרת את הטופס. אנא צור קשר עם support@erpnext.com אם הבעיה נמשכת. apps/erpnext/erpnext/templates/pages/cart.html +5,My Cart,סל הקניות שלי +apps/erpnext/erpnext/controllers/selling_controller.py +150,Order Type must be one of {0},סוג ההזמנה חייבת להיות אחד {0} DocType: Lead,Next Contact Date,התאריך לתקשר הבא apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +35,Opening Qty,פתיחת כמות DocType: Holiday List,Holiday List Name,שם רשימת החג apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,אופציות DocType: Journal Entry Account,Expense Claim,תביעת הוצאות +apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},כמות עבור {0} DocType: Leave Application,Leave Application,החופשה Application -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,השאר הקצאת כלי +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,השאר הקצאת כלי DocType: Leave Block List,Leave Block List Dates,השאר תאריכי בלוק רשימה DocType: Company,If Monthly Budget Exceeded (for expense account),אם תקציב חודשי חריגה (לחשבון הוצאות) DocType: Workstation,Net Hour Rate,שערי שעה נטו @@ -816,7 +825,7 @@ DocType: Packing Slip Item,Packing Slip Item,פריט Slip אריזה DocType: POS Profile,Cash/Bank Account,מזומנים / חשבון בנק apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,פריטים הוסרו ללא שינוי בכמות או ערך. DocType: Delivery Note,Delivery To,משלוח ל -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,שולחן תכונה הוא חובה +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,שולחן תכונה הוא חובה DocType: Production Planning Tool,Get Sales Orders,קבל הזמנות ומכירות apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} אינו יכול להיות שלילי apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,דיסקונט @@ -861,6 +870,7 @@ apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +30,End Date can not be l DocType: Sales Person,Select company name first.,שם חברה בחר ראשון. apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +145,Dr,"ד""ר" apps/erpnext/erpnext/config/buying.py +23,Quotations received from Suppliers.,ציטוטים המתקבלים מספקים. +apps/erpnext/erpnext/controllers/selling_controller.py +21,To {0} | {1} {2},כדי {0} | {1} {2} DocType: Time Log Batch,updated via Time Logs,מעודכן באמצעות יומני זמן apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +40,Average Age,גיל ממוצע DocType: Opportunity,Your sales person who will contact the customer in future,איש המכירות שלך שייצור קשר עם הלקוח בעתיד @@ -879,7 +889,7 @@ DocType: SMS Center,Total Characters,"סה""כ תווים" apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},אנא בחר BOM בתחום BOM לפריט {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,פרט C-טופס חשבונית DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,תשלום פיוס חשבונית -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,% תרומה +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,% תרומה DocType: Item,website page link,קישור לדף באתר DocType: Company,Company registration numbers for your reference. Tax numbers etc.,מספרי רישום חברה לעיונך. מספרי מס וכו ' DocType: Sales Partner,Distributor,מפיץ @@ -921,10 +931,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,אוני 'מישגן המרת DocType: Stock Settings,Default Item Group,קבוצת ברירת מחדל של הפריט apps/erpnext/erpnext/config/buying.py +13,Supplier database.,מסד נתוני ספק. DocType: Account,Balance Sheet,מאזן -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',עלות מרכז לפריט עם קוד פריט ' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',עלות מרכז לפריט עם קוד פריט ' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,איש המכירות שלך יקבל תזכורת על מועד זה ליצור קשר עם הלקוח apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","חשבונות נוספים יכולים להתבצע תחת קבוצות, אבל ערכים יכולים להתבצע נגד לא-קבוצות" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,מס וניכויי שכר אחרים. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,מס וניכויי שכר אחרים. DocType: Lead,Lead,עופרת DocType: Email Digest,Payables,זכאי DocType: Account,Warehouse,מחסן @@ -941,10 +951,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,פרטי תשלום DocType: Global Defaults,Current Fiscal Year,שנת כספים נוכחית DocType: Global Defaults,Disable Rounded Total,"להשבית מעוגל סה""כ" DocType: Lead,Call,שיחה -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'הערכים' לא יכולים להיות ריקים +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'הערכים' לא יכולים להיות ריקים apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},שורה כפולה {0} עם אותו {1} ,Trial Balance,מאזן בוחן -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,הגדרת עובדים +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,הגדרת עובדים apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","רשת """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,אנא בחר תחילה קידומת apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,מחקר @@ -953,7 +963,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,זיהוי משתמש apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,צפה לדג'ר apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,המוקדם -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","קבוצת פריט קיימת עם אותו שם, בבקשה לשנות את שם הפריט או לשנות את שם קבוצת הפריט" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","קבוצת פריט קיימת עם אותו שם, בבקשה לשנות את שם הפריט או לשנות את שם קבוצת הפריט" DocType: Production Order,Manufacture against Sales Order,ייצור נגד להזמין מכירות apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,שאר העולם apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,פריט {0} לא יכול להיות אצווה @@ -978,7 +988,7 @@ DocType: Purchase Receipt,Rejected Warehouse,מחסן שנדחו DocType: GL Entry,Against Voucher,נגד שובר DocType: Item,Default Buying Cost Center,מרכז עלות רכישת ברירת מחדל apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","כדי לקבל את הטוב ביותר של ERPNext, אנו ממליצים שתיקחו קצת זמן ולצפות בקטעי וידאו עזרה אלה." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,פריט {0} חייב להיות פריט מכירות +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,פריט {0} חייב להיות פריט מכירות apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,ל DocType: Item,Lead Time in days,עופרת זמן בימים ,Accounts Payable Summary,חשבונות לתשלום סיכום @@ -1004,7 +1014,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,חקלאות apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,המוצרים או השירותים שלך DocType: Mode of Payment,Mode of Payment,מצב של תשלום -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,תמונה: אתר אינטרנט צריכה להיות קובץ ציבורי או כתובת אתר אינטרנט +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,תמונה: אתר אינטרנט צריכה להיות קובץ ציבורי או כתובת אתר אינטרנט apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,מדובר בקבוצת פריט שורש ולא ניתן לערוך. DocType: Journal Entry Account,Purchase Order,הזמנת רכש DocType: Warehouse,Warehouse Contact Info,מחסן פרטים ליצירת קשר @@ -1015,7 +1025,7 @@ DocType: Serial No,Serial No Details,Serial No פרטים DocType: Purchase Invoice Item,Item Tax Rate,שיעור מס פריט apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","עבור {0}, רק חשבונות האשראי יכולים להיות מקושרים נגד כניסת חיוב נוספת" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,משלוח הערה {0} לא תוגש -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,פריט {0} חייב להיות פריט-נדבק Sub +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,פריט {0} חייב להיות פריט-נדבק Sub apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,ציוד הון apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","כלל תמחור נבחר ראשון המבוססת על 'החל ב'שדה, אשר יכול להיות פריט, קבוצת פריט או מותג." DocType: Hub Settings,Seller Website,אתר מוכר @@ -1024,7 +1034,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,מטרה DocType: Sales Invoice Item,Edit Description,עריכת תיאור apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,תאריך אספקה צפוי הוא פחותה ממועד המתוכנן התחל. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,לספקים +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,לספקים DocType: Account,Setting Account Type helps in selecting this Account in transactions.,הגדרת סוג החשבון מסייעת בבחירת חשבון זה בעסקות. DocType: Purchase Invoice,Grand Total (Company Currency),סך כולל (חברת מטבע) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,"יוצא סה""כ" @@ -1076,7 +1086,6 @@ DocType: Authorization Rule,Average Discount,דיסקונט הממוצע DocType: Address,Utilities,Utilities DocType: Purchase Invoice Item,Accounting,חשבונאות DocType: Features Setup,Features Setup,הגדרת תכונות -DocType: Item,Is Service Item,האם פריט השירות apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,תקופת יישום לא יכולה להיות תקופה הקצאת חופשה מחוץ DocType: Activity Cost,Projects,פרויקטים apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,אנא בחר שנת כספים @@ -1096,7 +1105,7 @@ DocType: Item,Maintain Stock,לשמור על המלאי apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,ערכי מניות כבר יצרו להפקה להזמין apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,שינוי נטו בנכסים קבועים DocType: Leave Control Panel,Leave blank if considered for all designations,שאר ריק אם תיחשב לכל הכינויים -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,תשלום מסוג 'בפועל' בשורת {0} אינו יכול להיות כלולים במחיר הפריט +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,תשלום מסוג 'בפועל' בשורת {0} אינו יכול להיות כלולים במחיר הפריט apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},מקס: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,מDatetime DocType: Email Digest,For Company,לחברה @@ -1105,8 +1114,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,שם כתובת למשלוח apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,תרשים של חשבונות DocType: Material Request,Terms and Conditions Content,תוכן תנאים והגבלות -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,לא יכול להיות גדול מ 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,פריט {0} הוא לא פריט מניות +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,לא יכול להיות גדול מ 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,פריט {0} הוא לא פריט מניות DocType: Maintenance Visit,Unscheduled,לא מתוכנן DocType: Employee,Owned,בבעלות DocType: Salary Slip Deduction,Depends on Leave Without Pay,תלוי בחופשה ללא תשלום @@ -1127,6 +1136,7 @@ Used for Taxes and Charges",שולחן פירוט מס לכת מהפריט שנ apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,עובד לא יכול לדווח לעצמו. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","אם החשבון הוא קפוא, ערכים מותרים למשתמשים מוגבלים." DocType: Email Digest,Bank Balance,עובר ושב +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},חשבונאות כניסה עבור {0}: {1} יכול להתבצע רק במטבע: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,אין מבנה שכר פעיל נמצא עבור עובד {0} והחודש DocType: Job Opening,"Job profile, qualifications required etc.","פרופיל תפקיד, כישורים נדרשים וכו '" DocType: Journal Entry Account,Account Balance,יתרת חשבון @@ -1136,13 +1146,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +296,We buy this Item,אנחנו DocType: Address,Billing,חיוב DocType: Purchase Invoice,Total Taxes and Charges (Company Currency),"סה""כ מסים וחיובים (מטבע חברה)" DocType: Shipping Rule,Shipping Account,חשבון משלוח +apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +43,Scheduled to send to {0} recipients,מתוכנן לשלוח {0} מקבלים DocType: Quality Inspection,Readings,קריאות DocType: Stock Entry,Total Additional Costs,עלויות נוספות סה"כ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,הרכבות תת DocType: Shipping Rule Condition,To Value,לערך DocType: Supplier,Stock Manager,מניית מנהל apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},מחסן המקור הוא חובה עבור שורת {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Slip אריזה +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Slip אריזה apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,השכרת משרד apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,הגדרות שער SMS ההתקנה apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,יבוא נכשל! @@ -1186,7 +1197,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,פרט BOM לא DocType: Purchase Invoice,Additional Discount Amount (Company Currency),סכום הנחה נוסף (מטבע חברה) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},שגיאה: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,צור חשבון חדש מתרשים של חשבונות. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,תחזוקה בקר +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,תחזוקה בקר apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,לקוחות> קבוצת לקוחות> טריטוריה DocType: Sales Invoice Item,Available Batch Qty at Warehouse,אצווה זמין כמות במחסן DocType: Time Log Batch Detail,Time Log Batch Detail,פרט אצווה הזמן התחבר @@ -1195,7 +1206,7 @@ DocType: Leave Block List,Block Holidays on important days.,חגים בלוק ב ,Accounts Receivable Summary,חשבונות חייבים סיכום apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,אנא הגדר שדה זיהוי משתמש בשיא לעובדים להגדיר תפקיד העובד DocType: UOM,UOM Name,שם של אוני 'מישגן -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,סכום תרומה +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,סכום תרומה DocType: Sales Invoice,Shipping Address,כתובת למשלוח DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,כלי זה עוזר לך לעדכן או לתקן את הכמות והערכת שווי של המניה במערכת. הוא משמש בדרך כלל כדי לסנכרן את ערכי המערכת ומה בעצם קיים במחסנים שלך. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,במילים יהיו גלוי לאחר שתשמרו את תעודת המשלוח. @@ -1234,7 +1245,8 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,כדי לעקוב אחר פריטים באמצעות ברקוד. תוכל להיכנס לפריטים בתעודת משלוח וחשבונית מכירות על ידי סריקת הברקוד של פריט. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,שלח שוב דוא"ל תשלום DocType: Dependent Task,Dependent Task,משימה תלויה -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},גורם המרה ליחידת ברירת מחדל של מדד חייב להיות 1 בשורה {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},גורם המרה ליחידת ברירת מחדל של מדד חייב להיות 1 בשורה {0} +apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Leave מסוג {0} אינו יכול להיות ארוך מ- {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,נסה לתכנן פעולות לימי X מראש. DocType: HR Settings,Stop Birthday Reminders,Stop יום הולדת תזכורות DocType: SMS Center,Receiver List,מקלט רשימה @@ -1243,7 +1255,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} צפה apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,שינוי נטו במזומנים DocType: Salary Structure Deduction,Salary Structure Deduction,ניכוי שכר מבנה -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,יחידת מידת {0} כבר נכנסה יותר מפעם אחת בהמרת פקטור טבלה +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,יחידת מידת {0} כבר נכנסה יותר מפעם אחת בהמרת פקטור טבלה apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},בקשת תשלום כבר קיימת {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,עלות פריטים הונפק apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},כמות לא חייבת להיות יותר מ {0} @@ -1272,7 +1284,7 @@ DocType: BOM Item,BOM Item,פריט BOM DocType: Appraisal,For Employee,לעובדים apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,שורת {0}: מראש נגד ספק יש לחייב DocType: Company,Default Values,ערכי ברירת מחדל -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,שורת {0}: סכום לתשלום לא יכול להיות שלילי +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,שורת {0}: סכום לתשלום לא יכול להיות שלילי DocType: Expense Claim,Total Amount Reimbursed,הסכום כולל החזר apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},נגד ספק חשבונית {0} יום {1} DocType: Customer,Default Price List,מחיר מחירון ברירת מחדל @@ -1300,8 +1312,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,ה DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","החלף BOM מסוים בכל עצי המוצר האחרים שבם נעשה בו שימוש. הוא יחליף את קישור BOM הישן, לעדכן עלות ולהתחדש שולחן ""פריט פיצוץ BOM"" לפי BOM החדש" DocType: Shopping Cart Settings,Enable Shopping Cart,אפשר סל קניות DocType: Employee,Permanent Address,כתובת קבועה -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,פריט {0} חייב להיות פריט שירות. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",מקדמה ששולם כנגד {0} {1} לא יכול להיות גדול \ מ גרנד סה"כ {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,אנא בחר קוד פריט DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),להפחית ניכוי לחופשה ללא תשלום (LWP) @@ -1357,12 +1368,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,ראשי apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Variant DocType: Naming Series,Set prefix for numbering series on your transactions,קידומת להגדיר למספור סדרה על העסקות שלך +DocType: Employee Attendance Tool,Employees HTML,עובד HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,לא ניתן לבטל הזמנה הפסיקה. מגופה כדי לבטל. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,BOM ברירת המחדל ({0}) חייב להיות פעיל לפריט זה או התבנית שלה +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,BOM ברירת המחדל ({0}) חייב להיות פעיל לפריט זה או התבנית שלה DocType: Employee,Leave Encashed?,השאר Encashed? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,הזדמנות מ השדה היא חובה DocType: Item,Variants,גרסאות -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,הפוך הזמנת רכש +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,הפוך הזמנת רכש DocType: SMS Center,Send To,שלח אל apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},אין איזון חופשה מספיק לחופשת סוג {0} DocType: Payment Reconciliation Payment,Allocated amount,סכום שהוקצה @@ -1454,13 +1466,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Delivery Note Item,Against Sales Order,נגד להזמין מכירות ,Serial No Status,סטטוס מספר סידורי apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +448,Item table can not be blank,שולחן פריט לא יכול להיות ריק +apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +138,"Row {0}: To set {1} periodicity, difference between from and to date \ + must be greater than or equal to {2}","שורת {0}: כדי להגדיר {1} מחזורי, הבדל בין מ ו תאריך \ חייב להיות גדול או שווה ל {2}" DocType: Pricing Rule,Selling,מכירה DocType: Employee,Salary Information,מידע משכורת DocType: Sales Person,Name and Employee ID,שם והעובדים ID apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,תאריך יעד לא יכול להיות לפני פרסום תאריך DocType: Website Item Group,Website Item Group,קבוצת פריט באתר apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,חובות ומסים -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,נא להזין את תאריך הפניה +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,נא להזין את תאריך הפניה apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Gateway תשלום החשבון אינו מוגדר apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},לא יכולים להיות מסוננים {0} ערכי תשלום על ידי {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,שולחן לפריט שיוצג באתר אינטרנט @@ -1511,7 +1525,7 @@ DocType: Shipping Rule Condition,Shipping Amount,סכום משלוח ,Pending Amount,סכום תלוי ועומד DocType: Purchase Invoice Item,Conversion Factor,המרת פקטור DocType: Purchase Order,Delivered,נמסר -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),"התקנת שרת הנכנס לid הדוא""ל של מקומות עבודה. (למשל jobs@example.com)" +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),"התקנת שרת הנכנס לid הדוא""ל של מקומות עבודה. (למשל jobs@example.com)" DocType: Purchase Receipt,Vehicle Number,מספר רכב DocType: Purchase Invoice,The date on which recurring invoice will be stop,התאריך שבו חשבונית חוזרת תהיה לעצור apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,עלים כולל שהוקצו {0} לא יכולים להיות פחות מעלים שכבר אושרו {1} לתקופה @@ -1528,7 +1542,7 @@ DocType: HR Settings,HR Settings,הגדרות HR apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,תביעת חשבון ממתינה לאישור. רק המאשר ההוצאות יכול לעדכן את הסטטוס. DocType: Purchase Invoice,Additional Discount Amount,סכום הנחה נוסף DocType: Leave Block List Allow,Leave Block List Allow,השאר בלוק רשימה אפשר -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abbr לא יכול להיות ריק או חלל +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abbr לא יכול להיות ריק או חלל apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,קבוצה לקבוצה ללא apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,ספורט apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,"סה""כ בפועל" @@ -1568,7 +1582,7 @@ DocType: Employee,Date of Birth,תאריך לידה apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,פריט {0} הוחזר כבר DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** שנת כספים ** מייצגת שנת כספים. כל הרישומים החשבונאיים ועסקות גדולות אחרות מתבצעים מעקב נגד שנת כספים ** **. DocType: Opportunity,Customer / Lead Address,לקוחות / כתובת עופרת -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},אזהרה: תעודת SSL לא חוקית בקובץ מצורף {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},אזהרה: תעודת SSL לא חוקית בקובץ מצורף {0} DocType: Production Order Operation,Actual Operation Time,בפועל מבצע זמן DocType: Authorization Rule,Applicable To (User),כדי ישים (משתמש) DocType: Purchase Taxes and Charges,Deduct,לנכות @@ -1585,7 +1599,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,תעודת משלוח פצל לחבילות. apps/erpnext/erpnext/hooks.py +69,Shipments,משלוחים DocType: Purchase Order Item,To be delivered to customer,שיימסר ללקוח -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,סטטוס זמן יומן יש להגיש. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,סטטוס זמן יומן יש להגיש. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,מספר סידורי {0} אינו שייך לכל מחסן apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,# שורה DocType: Purchase Invoice,In Words (Company Currency),במילים (חברת מטבע) @@ -1602,7 +1616,7 @@ DocType: Leave Application,Total Leave Days,"ימי חופשה סה""כ" DocType: Email Digest,Note: Email will not be sent to disabled users,הערה: דואר אלקטרוני לא יישלח למשתמשים בעלי מוגבלויות apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,בחר חברה ... DocType: Leave Control Panel,Leave blank if considered for all departments,שאר ריק אם תיחשב לכל המחלקות -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","סוגי התעסוקה (קבוע, חוזה, וכו 'מתמחה)." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","סוגי התעסוקה (קבוע, חוזה, וכו 'מתמחה)." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} הוא חובה עבור פריט {1} DocType: Currency Exchange,From Currency,ממטבע apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","אנא בחר סכום שהוקצה, סוג החשבונית וחשבונית מספר בatleast שורה אחת" @@ -1621,7 +1635,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,בתהליך DocType: Authorization Rule,Itemwise Discount,Itemwise דיסקונט DocType: Purchase Order Item,Reference Document Type,התייחסות סוג המסמך -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} נגד להזמין מכירות {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} נגד להזמין מכירות {1} DocType: Account,Fixed Asset,רכוש קבוע apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,מלאי בהמשכים DocType: Activity Type,Default Billing Rate,דרג חיוב ברירת מחדל @@ -1631,7 +1645,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,להזמין מכירות לתשלום DocType: Expense Claim Detail,Expense Claim Detail,פרטי תביעת חשבון apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,זמן יומנים שנוצרו: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,אנא בחר חשבון נכון +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,אנא בחר חשבון נכון DocType: Item,Weight UOM,המשקל של אוני 'מישגן DocType: Employee,Blood Group,קבוצת דם DocType: Purchase Invoice Item,Page Break,מעבר עמוד @@ -1666,7 +1680,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},רקורסיה BOM: {0} אינה יכולה להיות הורה או ילד של {2} DocType: Production Order Operation,Completed Qty,כמות שהושלמה apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","עבור {0}, רק חשבונות החיוב יכולים להיות מקושרים נגד כניסת אשראי אחרת" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,מחיר המחירון {0} אינו זמין +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,מחיר המחירון {0} אינו זמין DocType: Manufacturing Settings,Allow Overtime,לאפשר שעות נוספות apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} מספרים סידוריים הנדרשים לפריט {1}. שסיפקת {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,דרג הערכה נוכחי @@ -1717,7 +1731,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},אי apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,מקרה מס 'לא יכול להיות 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,אם יש לך שותפים לצוות מכירות ומכר (שותפי ערוץ) הם יכולים להיות מתויגים ולשמור על תרומתם בפעילות המכירות DocType: Item,Show a slideshow at the top of the page,הצג מצגת בחלק העליון של הדף -DocType: Item,"Allow in Sales Order of type ""Service""",אפשר בהזמנת מכירות של "שירות" סוג apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,חנויות DocType: Time Log,Projects Manager,מנהל פרויקטים DocType: Serial No,Delivery Time,זמן אספקה @@ -1732,6 +1745,7 @@ DocType: Rename Tool,Rename Tool,שינוי שם כלי apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,עלות עדכון DocType: Item Reorder,Item Reorder,פריט סידור מחדש apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,העברת חומר +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},פריט {0} חייב להיות פריט מכירות {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","ציין את הפעולות, עלויות הפעלה ולתת מבצע ייחודי לא לפעולות שלך." DocType: Purchase Invoice,Price List Currency,מטבע מחירון DocType: Naming Series,User must always select,משתמש חייב תמיד לבחור @@ -1752,7 +1766,7 @@ DocType: Appraisal,Employee,עובד apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,דוא"ל יבוא מ apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,הזמן כמשתמש DocType: Features Setup,After Sale Installations,לאחר התקנות מכירה -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} מחויב באופן מלא +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} מחויב באופן מלא DocType: Workstation Working Hour,End Time,שעת סיום apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,תנאי חוזה סטנדרטי למכירות או רכש. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,קבוצה על ידי שובר @@ -1778,7 +1792,7 @@ DocType: Upload Attendance,Attendance To Date,נוכחות לתאריך apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),"התקנת שרת הנכנס לid הדוא""ל של מכירות. (למשל sales@example.com)" DocType: Warranty Claim,Raised By,הועלה על ידי DocType: Payment Gateway Account,Payment Account,חשבון תשלומים -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,נא לציין את חברה כדי להמשיך +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,נא לציין את חברה כדי להמשיך apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,שינוי נטו בחשבונות חייבים apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Off המפצה DocType: Quality Inspection Reading,Accepted,קיבלתי @@ -1790,14 +1804,14 @@ DocType: Shipping Rule,Shipping Rule Label,תווית כלל משלוח apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,חומרי גלם לא יכולים להיות ריקים. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","לא ניתן לעדכן מניות, חשבונית מכילה פריט ירידת משלוח." DocType: Newsletter,Test,מבחן -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","כמו שיש עסקות מלאי קיימות עבור פריט זה, \ אתה לא יכול לשנות את הערכים של 'יש מספר סידורי', 'יש אצווה לא', 'האם פריט במלאי "ו-" שיטת הערכה "" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,מהיר יומן apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,אתה לא יכול לשנות את השיעור אם BOM ציינו agianst כל פריט DocType: Employee,Previous Work Experience,ניסיון בעבודה קודם DocType: Stock Entry,For Quantity,לכמות apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},נא להזין מתוכננת כמות לפריט {0} בשורת {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} לא יוגש +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} לא יוגש apps/erpnext/erpnext/config/stock.py +18,Requests for items.,בקשות לפריטים. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,הזמנת ייצור נפרדת תיווצר לכל פריט טוב מוגמר. DocType: Purchase Invoice,Terms and Conditions1,תנאים וConditions1 @@ -1822,6 +1836,7 @@ DocType: Notification Control,Expense Claim Approved Message,הודעת תביע DocType: Email Digest,How frequently?,באיזו תדירות? DocType: Purchase Receipt,Get Current Stock,קבל המניה נוכחית apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,עץ של הצעת החוק של חומרים +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,מארק הווה apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},תאריך התחלת תחזוקה לא יכול להיות לפני מועד אספקה למספר סידורי {0} DocType: Production Order,Actual End Date,תאריך סיום בפועל DocType: Authorization Rule,Applicable To (Role),כדי ישים (תפקיד) @@ -1836,7 +1851,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,תאריך סיום חוזה חייב להיות גדול מ תאריך ההצטרפות DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,/ סוחר / סוכן / שותפים / משווק עמלת מפיץ הצד שלישי שמוכר את המוצרים עבור חברות בועדה. DocType: Customer Group,Has Child Node,יש ילד צומת -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} נגד הזמנת רכש {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} נגד הזמנת רכש {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","הזן הפרמטרים url סטטי כאן (לדוגמא. שולח = ERPNext, שם משתמש = ERPNext, סיסמא = 1234 וכו ')" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} לא בכל שנת כספים פעילה. לפרטים נוספים לבדוק {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,זה אתר דוגמא שנוצר אוטומטית מERPNext @@ -1864,7 +1879,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Add or Deduct: Whether you want to add or deduct the tax.","תבנית מס סטנדרטית שיכול להיות מיושמת על כל עסקות הרכישה. תבנית זו יכולה להכיל רשימה של ראשי מס וגם ראשי חשבון אחרים כמו ""משלוח"", ""ביטוח"", ""טיפול ב"" וכו '#### הערה שיעור המס שאתה מגדיר כאן יהיה שיעור המס האחיד לכל פריטים ** * *. אם יש פריטים ** ** שיש לי שיעורים שונים, הם חייבים להיות הוסיפו במס הפריט ** ** שולחן ב** ** הפריט השני. #### תיאור של עמודות סוג חישוב 1.: - זה יכול להיות בסך הכל ** ** נטו (כלומר הסכום של סכום בסיסי). - ** בסך הכל / סכום השורה הקודמת ** (למסים או חיובים מצטברים). אם תבחר באפשרות זו, המס יחול כאחוז מהשורה הקודמת (בטבלת המס) הסכום כולל או. - ** ** בפועל (כאמור). 2. ראש חשבון: פנקס החשבון שתחתיו מס זה יהיה להזמין מרכז עלות 3.: אם המס / תשלום הוא הכנסה (כמו משלוח) או הוצאה שיש להזמין נגד מרכז עלות. 4. תיאור: תיאור של המס (שיודפס בחשבוניות / ציטוטים). 5. שיעור: שיעור מס. 6. סכום: סכום מס. 7. סך הכל: סך הכל מצטבר לנקודה זו. 8. הזן Row: אם המבוסס על ""שורה הקודמת סה""כ"" אתה יכול לבחור את מספר השורה שיילקח כבסיס לחישוב זה (ברירת מחדל היא השורה הקודמת). 9. קח מס או תשלום עבור: בחלק זה אתה יכול לציין אם המס / תשלום הוא רק עבור הערכת שווי (לא חלק מסך הכל) או רק לכולל (אינו מוסיף ערך לפריט) או לשניהם. 10. להוסיף או לנכות: בין אם ברצונך להוסיף או לנכות את המס." DocType: Purchase Receipt Item,Recd Quantity,כמות Recd apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},לא יכול לייצר יותר פריט {0} מאשר כמות להזמין מכירות {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,מניית כניסת {0} לא הוגשה +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,מניית כניסת {0} לא הוגשה DocType: Payment Reconciliation,Bank / Cash Account,חשבון בנק / מזומנים DocType: Tax Rule,Billing City,עיר חיוב DocType: Global Defaults,Hide Currency Symbol,הסתר סמל מטבע @@ -1890,7 +1905,7 @@ DocType: Salary Structure,Total Earning,"צבירה סה""כ" DocType: Purchase Receipt,Time at which materials were received,זמן שבו חומרים שהתקבלו apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,הכתובות שלי DocType: Stock Ledger Entry,Outgoing Rate,דרג יוצא -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,אדון סניף ארגון. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,אדון סניף ארגון. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,או DocType: Sales Order,Billing Status,סטטוס חיוב apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,הוצאות שירות @@ -1928,7 +1943,7 @@ DocType: Bin,Reserved Quantity,כמות שמורות DocType: Landed Cost Voucher,Purchase Receipt Items,פריטים קבלת רכישה apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,טפסי התאמה אישית DocType: Account,Income Account,חשבון הכנסות -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,משלוח +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,משלוח DocType: Stock Reconciliation Item,Current Qty,כמות נוכחית DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section","ראה ""שיעור חומרים הבוסס על"" בסעיף תמחיר" DocType: Appraisal Goal,Key Responsibility Area,פינת אחריות מפתח @@ -1940,8 +1955,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,# DocType: Notification Control,Purchase Order Message,הזמנת רכש Message DocType: Tax Rule,Shipping Country,מדינה משלוח DocType: Upload Attendance,Upload HTML,ההעלאה HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","מראש סה""כ ({0}) נגד להזמין {1} לא יכול להיות גדול \ מ Grand סה""כ ({2})" DocType: Employee,Relieving Date,תאריך להקלה apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","כלל תמחור נעשה כדי לדרוס מחיר מחירון / להגדיר אחוז הנחה, המבוסס על כמה קריטריונים." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,מחסן ניתן לשנות רק באמצעות צילומים כניסה / תעודת משלוח / קבלת רכישה @@ -1951,8 +1964,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,מס apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","אם שלטון תמחור שנבחר הוא עשה עבור 'מחיר', זה יחליף את מחיר מחירון. מחיר כלל תמחור הוא המחיר הסופי, ולכן אין עוד הנחה צריכה להיות מיושמת. מכאן, בעסקות כמו מכירה להזמין, הזמנת רכש וכו ', זה יהיה הביא בשדה' דרג ', ולא בשדה' מחיר מחירון שערי '." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,מסלול מוביל לפי סוג התעשייה. DocType: Item Supplier,Item Supplier,ספק פריט -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,נא להזין את קוד פריט כדי לקבל אצווה לא -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},אנא בחר ערך עבור {0} quotation_to {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,נא להזין את קוד פריט כדי לקבל אצווה לא +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},אנא בחר ערך עבור {0} quotation_to {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,כל הכתובות. DocType: Company,Stock Settings,הגדרות מניות apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","המיזוג אפשרי רק אם המאפיינים הבאים הם זהים בשני רשומות. האם קבוצה, סוג רוט, חברה" @@ -1975,7 +1988,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,מספר המחאה DocType: Payment Tool Detail,Payment Tool Detail,פרט כלי תשלום ,Sales Browser,דפדפן מכירות DocType: Journal Entry,Total Credit,"סה""כ אשראי" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},אזהרה: נוסף {0} # {1} קיימת נגד כניסת מניית {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},אזהרה: נוסף {0} # {1} קיימת נגד כניסת מניית {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,מקומי apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),הלוואות ומקדמות (נכסים) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,חייבים @@ -1989,13 +2002,14 @@ apps/erpnext/erpnext/config/accounts.py +68,Close Balance Sheet and book Profit DocType: Currency Exchange,Specify Exchange Rate to convert one currency into another,ציין שער חליפין להמיר מטבע אחד לעוד apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +142,Quotation {0} is cancelled,ציטוט {0} יבוטל apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +26,Total Outstanding Amount,סכום חוב סך הכל +apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +29,Employee {0} was on leave on {1}. Cannot mark attendance.,עובד {0} היה בחופשה על {1}. אין אפשרות לסמן נוכחות. DocType: Sales Partner,Targets,יעדים DocType: Price List,Price List Master,מחיר מחירון Master DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,"יכולות להיות מתויגות כל עסקות המכירה מול אנשי מכירות ** ** מרובים, כך שאתה יכול להגדיר ולעקוב אחר מטרות." ,S.O. No.,SO מס ' DocType: Production Order Operation,Make Time Log,הפוך זמן התחבר -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,אנא הגדר כמות הזמנה חוזרת -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},אנא ליצור לקוחות מהעופרת {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,אנא הגדר כמות הזמנה חוזרת +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},אנא ליצור לקוחות מהעופרת {0} DocType: Price List,Applicable for Countries,ישים עבור מדינות apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,מחשבים apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,מדובר בקבוצת לקוחות שורש ולא ניתן לערוך. @@ -2031,7 +2045,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),חיו DocType: Payment Reconciliation Invoice,Outstanding Amount,כמות יוצאת דופן DocType: Project Task,Working,עבודה DocType: Stock Ledger Entry,Stock Queue (FIFO),המניה Queue (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,אנא בחר זמן יומנים. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,אנא בחר זמן יומנים. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} אינו שייך לחברת {1} DocType: Account,Round Off,להשלים ,Requested Qty,כמות המבוקשת @@ -2069,7 +2083,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,קבל ערכים רלוונטיים apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,כניסה לחשבונאות במלאי DocType: Sales Invoice,Sales Team1,Team1 מכירות -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,פריט {0} אינו קיים +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,פריט {0} אינו קיים DocType: Sales Invoice,Customer Address,כתובת הלקוח DocType: Payment Request,Recipient and Message,נמען ומסר DocType: Purchase Invoice,Apply Additional Discount On,החל נוסף דיסקונט ב @@ -2088,7 +2102,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,דוא"ל השתקה apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","מזון, משקאות וטבק" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL או BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},יכול רק לבצע את התשלום כנגד סרק {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},יכול רק לבצע את התשלום כנגד סרק {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,שיעור עמלה לא יכול להיות גדול מ -100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,רמת מלאי מינימאלית DocType: Stock Entry,Subcontract,בקבלנות משנה @@ -2106,10 +2120,12 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,תוכנה apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,צבע DocType: Maintenance Visit,Scheduled,מתוכנן apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle",אנא בחר פריט שבו "האם פריט במלאי" הוא "לא" ו- "האם פריט מכירות" הוא "כן" ואין Bundle מוצרים אחר +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),מראש סה"כ ({0}) נגד להזמין {1} לא יכול להיות גדול יותר מהסך כולל ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,בחר בחתך חודשי להפיץ בצורה לא אחידה על פני מטרות חודשים. DocType: Purchase Invoice Item,Valuation Rate,שערי הערכת שווי -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,מטבע מחירון לא נבחר +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,מטבע מחירון לא נבחר apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,"פריט שורת {0}: קבלת רכישת {1} אינו קיימת בטבלה לעיל ""רכישת הקבלות""" +apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},עובד {0} כבר הגיש בקשה {1} בין {2} ו {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,תאריך התחלת פרויקט apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +8,Until,עד DocType: Rename Tool,Rename Log,שינוי שם התחבר @@ -2119,6 +2135,7 @@ DocType: Quality Inspection,Inspection Type,סוג הפיקוח apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},אנא בחר {0} DocType: C-Form,C-Form No,C-טופס לא DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,נוכחות לא מסומנת apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,חוקר apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,אנא שמור עלון לפני השליחה apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,שם או דוא"ל הוא חובה @@ -2144,7 +2161,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,איש DocType: Payment Gateway,Gateway,כְּנִיסָה apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,ספק> סוג ספק apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,נא להזין את הקלת מועד. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,AMT +apps/erpnext/erpnext/controllers/trends.py +138,Amt,AMT apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,השאר רק יישומים עם מעמד 'מאושר' ניתן להגיש apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,כותרת כתובת היא חובה. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,"הזן את השם של מסע פרסום, אם המקור של החקירה הוא קמפיין" @@ -2158,10 +2175,12 @@ DocType: Address,Preferred Shipping Address,כתובת למשלוח מועדף DocType: Purchase Receipt Item,Accepted Warehouse,מחסן מקובל DocType: Bank Reconciliation Detail,Posting Date,תאריך פרסום DocType: Item,Valuation Method,שיטת הערכת שווי +apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},לא ניתן למצוא שער חליפין עבור {0} {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,יום חצי מארק DocType: Sales Invoice,Sales Team,צוות מכירות apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,כניסה כפולה DocType: Serial No,Under Warranty,במסגרת אחריות -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[שגיאה] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[שגיאה] DocType: Sales Order,In Words will be visible once you save the Sales Order.,במילים יהיו גלוי לאחר שתשמרו את הזמנת המכירות. ,Employee Birthday,עובד יום הולדת apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,הון סיכון @@ -2184,6 +2203,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,מרכז עלות בעסקות קיימות לא ניתן להמיר לקבוצה DocType: Account,Depreciation,פחת apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),ספק (ים) +DocType: Employee Attendance Tool,Employee Attendance Tool,כלי נוכחות עובדים DocType: Supplier,Credit Limit,מגבלת אשראי apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,בחר סוג העסקה DocType: GL Entry,Voucher No,שובר לא @@ -2210,7 +2230,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,חשבון שורש לא ניתן למחוק ,Is Primary Address,האם כתובת ראשית DocType: Production Order,Work-in-Progress Warehouse,עבודה ב-התקדמות מחסן -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},# התייחסות {0} יום {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},# התייחסות {0} יום {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,ניהול כתובות DocType: Pricing Rule,Item Code,קוד פריט DocType: Production Planning Tool,Create Production Orders,צור הזמנות ייצור @@ -2237,7 +2257,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,בנק פיוס apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,קבל עדכונים apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,בקשת חומר {0} בוטלה או נעצרה apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,הוסף כמה תקליטי מדגם -apps/erpnext/erpnext/config/hr.py +210,Leave Management,השאר ניהול +apps/erpnext/erpnext/config/hr.py +225,Leave Management,השאר ניהול apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,קבוצה על ידי חשבון DocType: Sales Order,Fully Delivered,נמסר באופן מלא DocType: Lead,Lower Income,הכנסה נמוכה @@ -2252,6 +2272,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"""מתאריך"" חייב להיות לאחר 'עד תאריך'" ,Stock Projected Qty,המניה צפויה כמות apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},לקוח {0} אינו שייכים לפרויקט {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,HTML נוכחות ניכרת DocType: Sales Order,Customer's Purchase Order,הלקוח הזמנת הרכש DocType: Warranty Claim,From Company,מחברה apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,ערך או כמות @@ -2275,6 +2296,7 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Appraisal,Appraisal,הערכה apps/erpnext/erpnext/hr/doctype/leave_block_list/leave_block_list.py +22,Date is repeated,התאריך חוזר על עצמו apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +27,Authorized Signatory,מורשה חתימה +apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +164,Leave approver must be one of {0},השאר מאשר חייב להיות האחד {0} DocType: Hub Settings,Seller Email,"דוא""ל מוכר" DocType: Project,Total Purchase Cost (via Purchase Invoice),עלות רכישה כוללת (באמצעות רכישת חשבונית) DocType: Workstation Working Hour,Start Time,זמן התחלה @@ -2315,6 +2337,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,העברה בנקאית apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,אנא בחר חשבון בנק DocType: Newsletter,Create and Send Newsletters,ידיעונים ליצור ולשלוח +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,סמן הכל DocType: Sales Order,Recurring Order,להזמין חוזר DocType: Company,Default Income Account,חשבון הכנסות ברירת מחדל apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,קבוצת לקוחות / לקוחות @@ -2346,6 +2369,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,חזור נגד רכי DocType: Item,Warranty Period (in days),תקופת אחריות (בימים) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,מזומנים נטו שנבעו מפעולות apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,"למשל מע""מ" +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,מארק עובד נוכחות בצובר apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,פריט 4 DocType: Journal Entry Account,Journal Entry Account,חשבון כניסת Journal DocType: Shopping Cart Settings,Quotation Series,סדרת ציטוט @@ -2485,15 +2509,16 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +185,Add Users,הוסף משתמ DocType: Pricing Rule,Item Group,קבוצת פריט DocType: Task,Actual Start Date (via Time Logs),תאריך התחלה בפועל (באמצעות זמן יומנים) DocType: Stock Reconciliation Item,Before reconciliation,לפני הפיוס +apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},כדי {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),מסים והיטלים נוסף (חברת מטבע) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,שורת מס פריט {0} חייבת להיות חשבון של מס סוג או הכנסה או הוצאה או לחיוב +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,שורת מס פריט {0} חייבת להיות חשבון של מס סוג או הכנסה או הוצאה או לחיוב DocType: Sales Order,Partly Billed,בחלק שחויב DocType: Item,Default BOM,BOM ברירת המחדל apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,אנא שם חברה הקלד לאשר apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,"סה""כ מצטיין Amt" DocType: Time Log Batch,Total Hours,"סה""כ שעות" DocType: Journal Entry,Printing Settings,הגדרות הדפסה -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},חיוב כולל חייב להיות שווה לסך אשראי. ההבדל הוא {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},חיוב כולל חייב להיות שווה לסך אשראי. ההבדל הוא {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,רכב apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,מתעודת משלוח DocType: Time Log,From Time,מזמן @@ -2539,7 +2564,7 @@ DocType: Purchase Invoice Item,Image View,צפה בתמונה DocType: Issue,Opening Time,מועד פתיחה apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,ומכדי התאריכים מבוקשים ל apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,ניירות ערך ובורסות סחורות -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',ברירת מחדל של יחידת מדידה ולריאנט '{0}' חייבת להיות זהה בתבנית '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',ברירת מחדל של יחידת מדידה ולריאנט '{0}' חייבת להיות זהה בתבנית '{1}' DocType: Shipping Rule,Calculate Based On,חישוב המבוסס על DocType: Delivery Note Item,From Warehouse,ממחסן DocType: Purchase Taxes and Charges,Valuation and Total,"הערכת שווי וסה""כ" @@ -2561,7 +2586,7 @@ DocType: Leave Application,Follow via Email,"עקוב באמצעות דוא""ל" DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,סכום מס לאחר סכום הנחה apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,חשבון ילד קיים עבור חשבון זה. אתה לא יכול למחוק את החשבון הזה. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,כך או כמות היעד או סכום היעד היא חובה -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},אין ברירת מחדל BOM קיימת עבור פריט {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},אין ברירת מחדל BOM קיימת עבור פריט {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,אנא בחר תחילה תאריך פרסום apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,פתיחת תאריך צריכה להיות לפני סגירת תאריך DocType: Leave Control Panel,Carry Forward,לְהַעֲבִיר הָלְאָה @@ -2638,7 +2663,7 @@ DocType: Leave Type,Is Encash,האם encash DocType: Purchase Invoice,Mobile No,נייד לא DocType: Payment Tool,Make Journal Entry,הפוך יומן DocType: Leave Allocation,New Leaves Allocated,עלים חדשים שהוקצו -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,נתוני פרויקט-חכם אינם זמינים להצעת מחיר +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,נתוני פרויקט-חכם אינם זמינים להצעת מחיר DocType: Project,Expected End Date,תאריך סיום צפוי DocType: Appraisal Template,Appraisal Template Title,הערכת תבנית כותרת apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,מסחרי @@ -2686,6 +2711,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,ש apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,אנא ציין DocType: Offer Letter,Awaiting Response,ממתין לתגובה apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,מעל +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,הזמן התחבר כבר מחויב DocType: Salary Slip,Earning & Deduction,השתכרות וניכוי apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,חשבון {0} אינו יכול להיות קבוצה apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,אופציונאלי. הגדרה זו תשמש לסינון בעסקות שונות. @@ -2755,14 +2781,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,בהצלחה נמחק כל העסקות הקשורות לחברה זו! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,כבתאריך apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,מבחן -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,מחסן ברירת מחדל הוא חובה עבור פריט המניה. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,מחסן ברירת מחדל הוא חובה עבור פריט המניה. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},תשלום השכר עבור החודש {0} ושנה {1} DocType: Stock Settings,Auto insert Price List rate if missing,הכנס אוטומטי שיעור מחירון אם חסר apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,"סכום ששולם סה""כ" ,Transferred Qty,כמות שהועברה apps/erpnext/erpnext/config/learn.py +11,Navigating,ניווט apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,תכנון -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,הפוך אצווה הזמן התחבר +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,הפוך אצווה הזמן התחבר apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,הפיק DocType: Project,Total Billing Amount (via Time Logs),סכום חיוב כולל (דרך זמן יומנים) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,אנחנו מוכרים פריט זה @@ -2770,7 +2796,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,כמות צריכה להיות גדולה מ 0 DocType: Journal Entry,Cash Entry,כניסה במזומן DocType: Sales Partner,Contact Desc,לתקשר יורד -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","סוג של עלים כמו מזדמן, חולה וכו '" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","סוג של עלים כמו מזדמן, חולה וכו '" DocType: Email Digest,Send regular summary reports via Email.,"שלח דוחות סיכום קבועים באמצעות דוא""ל." DocType: Brand,Item Manager,מנהל פריט DocType: Cost Center,Add rows to set annual budgets on Accounts.,להוסיף שורות להגדיר תקציבים שנתי על חשבונות. @@ -2785,7 +2811,7 @@ DocType: GL Entry,Party Type,סוג המפלגה apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,חומר גלם לא יכול להיות זהה לפריט עיקרי DocType: Item Attribute Value,Abbreviation,קיצור apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,לא authroized מאז {0} עולה על גבולות -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,אדון תבנית שכר. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,אדון תבנית שכר. DocType: Leave Type,Max Days Leave Allowed,מקס ימי חופשת מחמד apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,כלל מס שנקבע לעגלת קניות DocType: Payment Tool,Set Matching Amounts,סכומי התאמת הגדר @@ -2798,7 +2824,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,ציט DocType: Stock Settings,Role Allowed to edit frozen stock,תפקיד מחמד לערוך המניה קפוא ,Territory Target Variance Item Group-Wise,פריט יעד שונות טריטורית קבוצה-Wise apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,בכל קבוצות הלקוחות -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} הוא חובה. אולי שיא המרה לא נוצר עבור {1} ל {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} הוא חובה. אולי שיא המרה לא נוצר עבור {1} ל {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,תבנית מס היא חובה. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,חשבון {0}: הורה חשבון {1} לא קיימת DocType: Purchase Invoice Item,Price List Rate (Company Currency),מחיר מחירון שיעור (חברת מטבע) @@ -2818,8 +2844,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,פריט Detail המס ,Item-wise Price List Rate,שערי רשימת פריט המחיר חכם apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,הצעת מחיר של ספק DocType: Quotation,In Words will be visible once you save the Quotation.,במילים יהיו גלוי לאחר שתשמרו את הצעת המחיר. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} הוא הפסיק -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},ברקוד {0} כבר השתמש בפריט {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} הוא הפסיק +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},ברקוד {0} כבר השתמש בפריט {1} DocType: Lead,Add to calendar on this date,הוסף ללוח שנה בתאריך זה apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,כללים להוספת עלויות משלוח. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,אירועים קרובים @@ -2845,8 +2871,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,מ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Atleast מחסן אחד הוא חובה DocType: Serial No,Out of Warranty,מתוך אחריות DocType: BOM Replace Tool,Replace,החלף -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} נגד מכירות חשבונית {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,נא להזין את ברירת מחדל של יחידת מדידה +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} נגד מכירות חשבונית {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,נא להזין את ברירת מחדל של יחידת מדידה DocType: Purchase Invoice Item,Project Name,שם פרויקט DocType: Supplier,Mention if non-standard receivable account,להזכיר אם חשבון חייבים שאינם סטנדרטי DocType: Journal Entry Account,If Income or Expense,אם הכנסה או הוצאה @@ -2871,7 +2897,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,שנת כספים: {0} אינו קיים DocType: Currency Exchange,To Currency,למטבע DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,לאפשר למשתמשים הבאים לאשר בקשות לצאת לימי גוש. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,סוגים של תביעת הוצאות. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,סוגים של תביעת הוצאות. DocType: Item,Taxes,מסים apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,שילם ולא נמסר DocType: Project,Default Cost Center,מרכז עלות ברירת מחדל @@ -2901,7 +2927,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},# השורה {0}: סידורי לא {1} אינו תואם עם {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,חופשה מזדמנת DocType: Batch,Batch ID,זיהוי אצווה -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},הערה: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},הערה: {0} ,Delivery Note Trends,מגמות תעודת משלוח apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,סיכום זה של השבוע apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} חייב להיות פריט שנרכש או-חוזה Sub בשורת {1} @@ -2941,6 +2967,7 @@ DocType: Project Task,Pending Review,בהמתנה לבדיקה apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,לחץ כאן כדי לשלם DocType: Task,Total Expense Claim (via Expense Claim),תביעה סה"כ הוצאות (באמצעות תביעת הוצאות) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,זהות לקוח +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,מארק בהעדר apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,לזמן חייב להיות גדול מ מהזמן DocType: Journal Entry Account,Exchange Rate,שער חליפין apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,להזמין מכירות {0} לא יוגש @@ -2987,7 +3014,7 @@ DocType: Item Group,Default Expense Account,חשבון הוצאות ברירת DocType: Employee,Notice (days),הודעה (ימים) DocType: Tax Rule,Sales Tax Template,תבנית מס מכירות DocType: Employee,Encashment Date,תאריך encashment -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","נגד שובר סוג חייב להיות אחד מהזמנת הרכש, רכש חשבונית או יומן" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","נגד שובר סוג חייב להיות אחד מהזמנת הרכש, רכש חשבונית או יומן" DocType: Account,Stock Adjustment,התאמת המניה apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},עלות פעילות ברירת המחדל קיימת לסוג פעילות - {0} DocType: Production Order,Planned Operating Cost,עלות הפעלה מתוכננת @@ -3041,6 +3068,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,לכתוב את הכניסה DocType: BOM,Rate Of Materials Based On,שיעור חומרים הבוסס על apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Analtyics תמיכה +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,בטל הכל apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},חברה חסרה במחסני {0} DocType: POS Profile,Terms and Conditions,תנאים והגבלות apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},לתאריך צריך להיות בתוך שנת הכספים. בהנחה לתאריך = {0} @@ -3062,7 +3090,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","כדי להגדיר שנת כספים זו כברירת מחדל, לחץ על 'קבע כברירת מחדל'" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),"התקנת שרת הנכנס לid הדוא""ל של תמיכה. (למשל support@example.com)" apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,מחסור כמות -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,גרסת פריט {0} קיימת עימן תכונות +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,גרסת פריט {0} קיימת עימן תכונות DocType: Salary Slip,Salary Slip,שכר Slip apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,'עד תאריך' נדרש DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","צור תלושי אריזה עבור חבילות שתימסר. נהג להודיע מספר חבילה, תוכן אריזה והמשקל שלה." @@ -3110,7 +3138,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,צפה DocType: Item Attribute Value,Attribute Value,תכונה ערך apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","id דוא""ל חייב להיות ייחודי, כבר קיים עבור {0}" ,Itemwise Recommended Reorder Level,Itemwise מומלץ להזמנה חוזרת רמה -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,אנא בחר {0} ראשון +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,אנא בחר {0} ראשון DocType: Features Setup,To get Item Group in details table,כדי לקבל קבוצת פריט בטבלת פרטים apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,אצווה {0} של פריט {1} פג. DocType: Sales Invoice,Commission,הוועדה @@ -3154,7 +3182,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,קבל שוברים מצטיינים DocType: Warranty Claim,Resolved By,נפתר על ידי DocType: Appraisal,Start Date,תאריך ההתחלה -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,להקצות עלים לתקופה. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,להקצות עלים לתקופה. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,המחאות ופיקדונות פינו באופן שגוי apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,לחץ כאן כדי לאמת apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,חשבון {0}: לא ניתן להקצות את עצמו כחשבון אב @@ -3174,7 +3202,7 @@ DocType: Employee,Educational Qualification,הכשרה חינוכית DocType: Workstation,Operating Costs,עלויות תפעול DocType: Employee Leave Approver,Employee Leave Approver,עובד חופשה מאשר apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} נוספו בהצלחה לרשימת הדיוור שלנו. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},שורת {0}: כניסת סידור מחדש כבר קיימת למחסן זה {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},שורת {0}: כניסת סידור מחדש כבר קיימת למחסן זה {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","לא יכול להכריז על שאבד כ, כי הצעת מחיר כבר עשתה." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,רכישת Master מנהל apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,ייצור להזמין {0} יש להגיש @@ -3198,7 +3226,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,מכירות חשבונית {0} כבר הוגשה apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,תאריך סיום DocType: Purchase Invoice Item,Amount (Company Currency),הסכום (חברת מטבע) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,יחידת ארגון הורים (מחלקה). +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,יחידת ארגון הורים (מחלקה). apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,נא להזין nos תקף הנייד DocType: Budget Detail,Budget Detail,פרטי תקציב apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,נא להזין את ההודעה לפני השליחה @@ -3214,13 +3242,13 @@ DocType: Purchase Receipt Item,Received and Accepted,קיבלתי ואשר ,Serial No Service Contract Expiry,שירות סידורי חוזה תפוגה DocType: Item,Unit of Measure Conversion,יחידה של המרת מדד apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,העובד אינו ניתן לשינוי -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,אתה לא יכול אשראי וכרטיסי חיובו חשבון באותו הזמן +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,אתה לא יכול אשראי וכרטיסי חיובו חשבון באותו הזמן DocType: Naming Series,Help HTML,העזרה HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},"weightage סה""כ הוקצה צריך להיות 100%. זה {0}" apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},הפרשה ליתר {0} חצה לפריט {1} DocType: Address,Name of person or organization that this address belongs to.,שמו של אדם או ארגון שכתובת זו שייכת ל. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,הספקים שלך -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,לא ניתן להגדיר כאבודים כלהזמין מכירות נעשה. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,לא ניתן להגדיר כאבודים כלהזמין מכירות נעשה. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,נוסף מבנה שכר {0} הוא פעיל לעובד {1}. בבקשה לעשות את מעמדה 'לא פעיל' כדי להמשיך. DocType: Purchase Invoice,Contact,צור קשר עם apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,התקבל מ @@ -3229,11 +3257,11 @@ DocType: Lead,Converted,המרה DocType: Item,Has Serial No,יש מספר סידורי DocType: Employee,Date of Issue,מועד ההנפקה apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},# השורה {0}: ספק הוגדר לפריט {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,לא ניתן למצוא תמונה באתר האינטרנט {0} המצורף לפריט {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,לא ניתן למצוא תמונה באתר האינטרנט {0} המצורף לפריט {1} DocType: Issue,Content Type,סוג תוכן apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,מחשב DocType: Item,List this Item in multiple groups on the website.,רשימת פריט זה במספר קבוצות באתר. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,אנא בדוק את אפשרות מטבע רב כדי לאפשר חשבונות עם מטבע אחר +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,אנא בדוק את אפשרות מטבע רב כדי לאפשר חשבונות עם מטבע אחר apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,פריט: {0} אינו קיים במערכת apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,אתה לא רשאי לקבוע ערך קפוא DocType: Payment Reconciliation,Get Unreconciled Entries,קבל ערכים לא מותאמים @@ -3243,14 +3271,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,מה זה ע DocType: Delivery Note,To Warehouse,למחסן apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},חשבון {0} כבר נכנס יותר מפעם אחת בשנת הכספים {1} ,Average Commission Rate,העמלה ממוצעת שערי -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,"""יש מספר סידורי 'לא יכול להיות' כן 'ללא מוחזק במלאי פריט" +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,"""יש מספר סידורי 'לא יכול להיות' כן 'ללא מוחזק במלאי פריט" apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,נוכחות לא יכולה להיות מסומנת עבור תאריכים עתידיים DocType: Pricing Rule,Pricing Rule Help,עזרה כלל תמחור DocType: Purchase Taxes and Charges,Account Head,חשבון ראש apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,עדכון עלויות נוספות לחישוב עלות נחתה של פריטים apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,חשמל DocType: Stock Entry,Total Value Difference (Out - In),הבדל ערך כולל (Out - ב) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,שורת {0}: שער החליפין הוא חובה +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,שורת {0}: שער החליפין הוא חובה apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},זיהוי משתמש לא נקבע לעובדים {0} DocType: Stock Entry,Default Source Warehouse,מחסן מקור ברירת מחדל DocType: Item,Customer Code,קוד לקוח @@ -3268,15 +3296,15 @@ DocType: Notification Control,Sales Invoice Message,מסר חשבונית מכי apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,סגירת חשבון {0} חייבת להיות אחריות / הון עצמי סוג DocType: Authorization Rule,Based On,המבוסס על DocType: Sales Order Item,Ordered Qty,כמות הורה -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,פריט {0} הוא נכים +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,פריט {0} הוא נכים DocType: Stock Settings,Stock Frozen Upto,המניה קפואה Upto apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},תקופה ומתקופה לתאריכי חובה עבור חוזר {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,פעילות פרויקט / משימה. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,צור תלושי שכר +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,צור תלושי שכר apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","קנייה יש לבדוק, אם לישים שנבחרה הוא {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,דיסקונט חייב להיות פחות מ -100 DocType: Purchase Invoice,Write Off Amount (Company Currency),לכתוב את הסכום (חברת מטבע) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,# השורה {0}: אנא הגדר כמות הזמנה חוזרת +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,# השורה {0}: אנא הגדר כמות הזמנה חוזרת DocType: Landed Cost Voucher,Landed Cost Voucher,שובר עלות נחת apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},אנא הגדר {0} DocType: Purchase Invoice,Repeat on Day of Month,חזור על פעולה ביום בחודש @@ -3328,7 +3356,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,עבודה המוגדרת כברירת מחדל במחסן ההתקדמות apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,הגדרות ברירת מחדל עבור עסקות חשבונאיות. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,תאריך צפוי לא יכול להיות לפני תאריך בקשת חומר -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,פריט {0} חייב להיות פריט מכירות +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,פריט {0} חייב להיות פריט מכירות DocType: Naming Series,Update Series Number,עדכון סדרת מספר DocType: Account,Equity,הון עצמי DocType: Sales Order,Printing Details,הדפסת פרטים @@ -3380,7 +3408,7 @@ DocType: Task,Review Date,תאריך סקירה DocType: Purchase Invoice,Advance Payments,תשלומים מראש DocType: Purchase Taxes and Charges,On Net Total,בסך הכל נטו apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,מחסן יעד בשורת {0} חייב להיות זהה להזמנת ייצור -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,אין רשות להשתמש בכלי תשלום +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,אין רשות להשתמש בכלי תשלום apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,"""כתובות דוא""ל הודעה 'לא צוינו עבור חוזר% s" apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,מטבע לא ניתן לשנות לאחר ביצוע ערכים באמצעות כמה מטבע אחר DocType: Company,Round Off Account,לעגל את החשבון @@ -3403,7 +3431,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,כמות של פריט המתקבלת לאחר ייצור / אריזה מחדש מכמויות מסוימות של חומרי גלם DocType: Payment Reconciliation,Receivable / Payable Account,חשבון לקבל / לשלם DocType: Delivery Note Item,Against Sales Order Item,נגד פריט להזמין מכירות -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},ציין מאפיין ערך עבור תכונת {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},ציין מאפיין ערך עבור תכונת {0} DocType: Item,Default Warehouse,מחסן ברירת מחדל DocType: Task,Actual End Date (via Time Logs),תאריך סיום בפועל (באמצעות זמן יומנים) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},תקציב לא ניתן להקצות נגד קבוצת חשבון {0} @@ -3428,10 +3456,10 @@ DocType: Lead,Blog Subscriber,Subscriber בלוג apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,יצירת כללים להגבלת עסקות המבוססות על ערכים. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","אם מסומן, אין סך הכל. של ימי עבודה יכלול חגים, וזה יקטין את הערך של יום בממוצע שכר" DocType: Purchase Invoice,Total Advance,"Advance סה""כ" -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,עיבוד שכר +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,עיבוד שכר DocType: Opportunity Item,Basic Rate,שיעור בסיסי DocType: GL Entry,Credit Amount,סכום אשראי -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,קבע כאבוד +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,קבע כאבוד apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,הערה קבלת תשלום DocType: Supplier,Credit Days Based On,ימי אשראי לפי DocType: Tax Rule,Tax Rule,כלל מס @@ -3461,7 +3489,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,כמות מקובלת apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} לא קיים apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,הצעות חוק שהועלו ללקוחות. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,פרויקט זיהוי -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},שורה לא {0}: הסכום אינו יכול להיות גדול מהסכום ממתין נגד תביעת {1} הוצאות. הסכום בהמתנת {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},שורה לא {0}: הסכום אינו יכול להיות גדול מהסכום ממתין נגד תביעת {1} הוצאות. הסכום בהמתנת {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} מנויים הוסיפו DocType: Maintenance Schedule,Schedule,לוח זמנים DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","להגדיר תקציב עבור מרכז עלות זו. כדי להגדיר פעולת תקציב, ראה "חברת רשימה"" @@ -3483,6 +3511,7 @@ DocType: Address,Office,משרד apps/erpnext/erpnext/config/accounts.py +13,Accounting journal entries.,כתב עת חשבונאות ערכים. DocType: Delivery Note Item,Available Qty at From Warehouse,כמות זמינה ממחסן apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +226,Please select Employee Record first.,אנא בחר עובד רשומה ראשון. +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +191,Row {0}: Party / Account does not match with {1} / {2} in {3} {4},שורה {0}: מסיבה / חשבון אינו תואם עם {1} / {2} {3} {4} apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +35,To create a Tax Account,כדי ליצור חשבון מס apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +240,Please enter Expense Account,נא להזין את חשבון הוצאות DocType: Account,Stock,המניה @@ -3521,19 +3550,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,פרופיל קופה DocType: Payment Gateway Account,Payment URL Message,מסר URL תשלום apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","עונתיות להגדרת תקציבים, יעדים וכו '" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,השורה {0}: סכום תשלום לא יכול להיות גדולה מסכום חוב +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,השורה {0}: סכום תשלום לא יכול להיות גדולה מסכום חוב apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,סה"כ שלא שולם -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,זמן יומן הוא לא לחיוב -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","פריט {0} הוא תבנית, אנא בחר באחת מגרסותיה" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,זמן יומן הוא לא לחיוב +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","פריט {0} הוא תבנית, אנא בחר באחת מגרסותיה" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,רוכש apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,שכר נטו לא יכול להיות שלילי -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,נא להזין את השוברים נגד ידני +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,נא להזין את השוברים נגד ידני DocType: SMS Settings,Static Parameters,פרמטרים סטטיים DocType: Purchase Order,Advance Paid,מראש בתשלום DocType: Item,Item Tax,מס פריט apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,חומר לספקים apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,בלו חשבונית DocType: Expense Claim,Employees Email Id,"דוא""ל עובדי זיהוי" +DocType: Employee Attendance Tool,Marked Attendance,נוכחות בולטת apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,התחייבויות שוטפות apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,שלח SMS המוני לאנשי הקשר שלך DocType: Purchase Taxes and Charges,Consider Tax or Charge for,שקול מס או תשלום עבור @@ -3556,7 +3586,7 @@ DocType: Item Attribute,Numeric Values,ערכים מספריים apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,צרף לוגו DocType: Customer,Commission Rate,הוועדה שערי apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,הפוך Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,יישומי חופשת בלוק על ידי מחלקה. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,יישומי חופשת בלוק על ידי מחלקה. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,עגלה ריקה DocType: Production Order,Actual Operating Cost,עלות הפעלה בפועל apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,לא ניתן לערוך את השורש. @@ -3575,7 +3605,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,ליצור באופן אוטומטי בקשת חומר אם כמות נופלת מתחת לרמה זו ,Item-wise Purchase Register,הרשם רכישת פריט-חכם DocType: Batch,Expiry Date,תַאֲרִיך תְפוּגָה -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","כדי להגדיר רמת הזמנה חוזרת, פריט חייב להיות פריט רכישה או פריט ייצור" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","כדי להגדיר רמת הזמנה חוזרת, פריט חייב להיות פריט רכישה או פריט ייצור" ,Supplier Addresses and Contacts,כתובות ספק ומגעים apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,אנא בחר תחילה קטגוריה apps/erpnext/erpnext/config/projects.py +18,Project master.,אדון פרויקט. diff --git a/erpnext/translations/hi.csv b/erpnext/translations/hi.csv index 2231dfebd7..5ce332f3fc 100644 --- a/erpnext/translations/hi.csv +++ b/erpnext/translations/hi.csv @@ -164,14 +164,14 @@ DocType: Journal Entry Account,Credit in Company Currency,कंपनी मु DocType: Delivery Note,Installation Status,स्थापना स्थिति apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},स्वीकृत + अस्वीकृत मात्रा मद के लिए प्राप्त मात्रा के बराबर होना चाहिए {0} DocType: Item,Supply Raw Materials for Purchase,आपूर्ति कच्चे माल की खरीद के लिए -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,आइटम {0} एक क्रय मद होना चाहिए +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,आइटम {0} एक क्रय मद होना चाहिए DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records",", टेम्पलेट डाउनलोड उपयुक्त डेटा को भरने और संशोधित फ़ाइल देते हैं। चयनित अवधि में सभी तिथियों और कर्मचारी संयोजन मौजूदा उपस्थिति रिकॉर्ड के साथ, टेम्पलेट में आ जाएगा" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,आइटम {0} सक्रिय नहीं है या जीवन के अंत तक पहुँच गया है DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,बिक्री चालान प्रस्तुत होने के बाद अद्यतन किया जाएगा. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","पंक्ति में कर शामिल करने के लिए {0} आइटम रेट में , पंक्तियों में करों {1} भी शामिल किया जाना चाहिए" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,मानव संसाधन मॉड्यूल के लिए सेटिंग्स +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","पंक्ति में कर शामिल करने के लिए {0} आइटम रेट में , पंक्तियों में करों {1} भी शामिल किया जाना चाहिए" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,मानव संसाधन मॉड्यूल के लिए सेटिंग्स DocType: SMS Center,SMS Center,एसएमएस केंद्र DocType: BOM Replace Tool,New BOM,नई बीओएम apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,बैच बिलिंग के लिए टाइम लॉग करता है। @@ -199,7 +199,7 @@ DocType: Offer Letter,Select Terms and Conditions,का चयन नियम DocType: Production Planning Tool,Sales Orders,बिक्री के आदेश DocType: Purchase Taxes and Charges,Valuation,मूल्याकंन ,Purchase Order Trends,आदेश रुझान खरीद -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,वर्ष के लिए पत्तियों आवंटित. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,वर्ष के लिए पत्तियों आवंटित. DocType: Earning Type,Earning Type,प्रकार कमाई DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,अक्षम क्षमता योजना और समय ट्रैकिंग DocType: Bank Reconciliation,Bank Account,बैंक खाता @@ -237,7 +237,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,आइटम वेबसाइट विशिष्टता DocType: Payment Tool,Reference No,संदर्भ संक्या apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,अवरुद्ध छोड़ दो -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},आइटम {0} पर जीवन के अपने अंत तक पहुँच गया है {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},आइटम {0} पर जीवन के अपने अंत तक पहुँच गया है {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,वार्षिक DocType: Stock Reconciliation Item,Stock Reconciliation Item,शेयर सुलह आइटम DocType: Stock Entry,Sales Invoice No,बिक्री चालान नहीं @@ -249,7 +249,7 @@ DocType: Item,Minimum Order Qty,न्यूनतम आदेश मात् DocType: Pricing Rule,Supplier Type,प्रदायक प्रकार DocType: Item,Publish in Hub,हब में प्रकाशित ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,आइटम {0} को रद्द कर दिया गया है +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,आइटम {0} को रद्द कर दिया गया है apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,सामग्री अनुरोध DocType: Bank Reconciliation,Update Clearance Date,अद्यतन क्लीयरेंस तिथि DocType: Item,Purchase Details,खरीद विवरण @@ -261,11 +261,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,अस्वीकृत मा DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","डिलिवरी नोट, कोटेशन, बिक्री चालान, विक्रय आदेश में उपलब्ध फील्ड" DocType: SMS Settings,SMS Sender Name,एसएमएस प्रेषक का नाम DocType: Contact,Is Primary Contact,प्राथमिक संपर्क +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,समय लॉग बिलिंग के लिए Batched कर दिया गया है DocType: Notification Control,Notification Control,अधिसूचना नियंत्रण DocType: Lead,Suggestions,सुझाव DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,इस क्षेत्र पर आइटम ग्रुप - वाईस बजट निर्धारित करें. तुम भी वितरण की स्थापना द्वारा मौसमी शामिल कर सकते हैं. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},गोदाम के लिए माता पिता के खाते समूह दर्ज करें {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},के खिलाफ भुगतान {0} {1} बकाया राशि से अधिक नहीं हो सकता {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},के खिलाफ भुगतान {0} {1} बकाया राशि से अधिक नहीं हो सकता {2} DocType: Supplier,Address HTML,HTML पता करने के लिए DocType: Lead,Mobile No.,मोबाइल नंबर DocType: Maintenance Schedule,Generate Schedule,कार्यक्रम तय करें उत्पन्न @@ -282,7 +283,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,हब के साथ सिंक किया गया apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,गलत पासवर्ड DocType: Item,Variant Of,के variant -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,आइटम {0} सेवा आइटम होना चाहिए apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',की तुलना में 'मात्रा निर्माण करने के लिए' पूरी की गई मात्रा अधिक नहीं हो सकता DocType: Period Closing Voucher,Closing Account Head,बंद लेखाशीर्ष DocType: Employee,External Work History,बाहरी काम इतिहास @@ -294,10 +294,10 @@ DocType: Newsletter,Newsletter,न्यूज़लैटर DocType: Stock Settings,Notify by Email on creation of automatic Material Request,स्वचालित सामग्री अनुरोध के निर्माण पर ईमेल द्वारा सूचित करें DocType: Journal Entry,Multi Currency,बहु मुद्रा DocType: Payment Reconciliation Invoice,Invoice Type,चालान का प्रकार -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,बिलटी +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,बिलटी apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,करों की स्थापना apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,आप इसे खींचा बाद भुगतान एंट्री संशोधित किया गया है। इसे फिर से खींच कर दीजिये। -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} मद टैक्स में दो बार दर्ज +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} मद टैक्स में दो बार दर्ज apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,इस सप्ताह और लंबित गतिविधियों के लिए सारांश DocType: Workstation,Rent Cost,बाइक किराए मूल्य apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,माह और वर्ष का चयन करें @@ -308,7 +308,7 @@ DocType: Shipping Rule,Valid for Countries,देशों के लिए म DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","मुद्रा , रूपांतरण दर , आयात कुल , आयात महायोग आदि जैसे सभी आयात संबंधित क्षेत्रों खरीद रसीद , प्रदायक कोटेशन , खरीद चालान , खरीद आदेश आदि में उपलब्ध हैं" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"इस मद के लिए एक खाका है और लेनदेन में इस्तेमाल नहीं किया जा सकता है। 'कोई प्रतिलिपि' सेट कर दिया जाता है, जब तक आइटम विशेषताओं वेरिएंट में खत्म नकल की जाएगी" apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,माना कुल ऑर्डर -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","कर्मचारी पदनाम (जैसे सीईओ , निदेशक आदि ) ." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","कर्मचारी पदनाम (जैसे सीईओ , निदेशक आदि ) ." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,क्षेत्र मूल्य 'माह के दिवस पर दोहराएँ ' दर्ज करें DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,जिस पर दर ग्राहक की मुद्रा ग्राहक आधार मुद्रा में परिवर्तित किया जाता है DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","बीओएम , डिलिवरी नोट , खरीद चालान , उत्पादन का आदेश , खरीद आदेश , खरीद रसीद , बिक्री चालान , बिक्री आदेश , स्टॉक एंट्री , timesheet में उपलब्ध" @@ -357,7 +357,7 @@ DocType: Workstation,Consumable Cost,उपभोज्य लागत apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) भूमिका होनी चाहिए 'लीव अनुमोदनकर्ता' DocType: Purchase Receipt,Vehicle Date,वाहन की तारीख apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,चिकित्सा -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,खोने के लिए कारण +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,खोने के लिए कारण apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},कार्य केंद्र छुट्टी सूची के अनुसार निम्नलिखित तारीखों पर बंद हो गया है: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,सुनहरे अवसर DocType: Employee,Single,एक @@ -385,14 +385,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,चैनल पार्टनर DocType: Account,Old Parent,पुरानी माता - पिता DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,परिचयात्मक पाठ है कि कि ईमेल के एक भाग के रूप में चला जाता है अनुकूलित. प्रत्येक लेनदेन एक अलग परिचयात्मक पाठ है. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),प्रतीकों शामिल न करें (उदा। $) DocType: Sales Taxes and Charges Template,Sales Master Manager,बिक्री मास्टर प्रबंधक apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,सभी विनिर्माण प्रक्रियाओं के लिए वैश्विक सेटिंग्स। DocType: Accounts Settings,Accounts Frozen Upto,लेखा तक जमे हुए DocType: SMS Log,Sent On,पर भेजा -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,गुण {0} गुण तालिका में कई बार चुना +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,गुण {0} गुण तालिका में कई बार चुना DocType: HR Settings,Employee record is created using selected field. ,कर्मचारी रिकॉर्ड चयनित क्षेत्र का उपयोग कर बनाया जाता है. DocType: Sales Order,Not Applicable,लागू नहीं -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,अवकाश मास्टर . +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,अवकाश मास्टर . DocType: Material Request Item,Required Date,आवश्यक तिथि DocType: Delivery Note,Billing Address,बिलिंग पता apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,मद कोड दर्ज करें. @@ -428,7 +429,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,"सामग्री अनुरोध उठाया जाएगा , जिसके लिए वेयरहाउस दर्ज करें" DocType: Production Order,Additional Operating Cost,अतिरिक्त ऑपरेटिंग कॉस्ट apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,प्रसाधन सामग्री -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","मर्ज करने के लिए , निम्नलिखित गुण दोनों मदों के लिए ही होना चाहिए" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","मर्ज करने के लिए , निम्नलिखित गुण दोनों मदों के लिए ही होना चाहिए" DocType: Shipping Rule,Net Weight,निवल भार DocType: Employee,Emergency Phone,आपातकालीन फोन ,Serial No Warranty Expiry,धारावाहिक नहीं वारंटी समाप्ति @@ -486,17 +487,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,बिलिंग और डिलिवरी स्थिति apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,ग्राहकों को दोहराने DocType: Leave Control Panel,Allocate,आवंटित -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,बिक्री लौटें +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,बिक्री लौटें DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,विक्रय आदेश का चयन करें जिसमें से आप उत्पादन के आदेश बनाना चाहते. DocType: Item,Delivered by Supplier (Drop Ship),प्रदायक द्वारा वितरित (ड्रॉप जहाज) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,वेतन घटकों. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,वेतन घटकों. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,संभावित ग्राहकों के लिए धन्यवाद. DocType: Authorization Rule,Customer or Item,ग्राहक या आइटम apps/erpnext/erpnext/config/crm.py +17,Customer database.,ग्राहक डेटाबेस. DocType: Quotation,Quotation To,करने के लिए कोटेशन DocType: Lead,Middle Income,मध्य आय apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),उद्घाटन (सीआर ) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,आप पहले से ही एक और UoM के साथ कुछ लेन-देन (एस) बना दिया है क्योंकि मद के लिए माप की मूलभूत इकाई {0} सीधे नहीं बदला जा सकता। आप एक अलग डिफ़ॉल्ट UoM का उपयोग करने के लिए एक नया आइटम बनाने की आवश्यकता होगी। +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,आप पहले से ही एक और UoM के साथ कुछ लेन-देन (एस) बना दिया है क्योंकि मद के लिए माप की मूलभूत इकाई {0} सीधे नहीं बदला जा सकता। आप एक अलग डिफ़ॉल्ट UoM का उपयोग करने के लिए एक नया आइटम बनाने की आवश्यकता होगी। apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,आवंटित राशि ऋणात्मक नहीं हो सकता DocType: Purchase Order Item,Billed Amt,बिल भेजा राशि DocType: Warehouse,A logical Warehouse against which stock entries are made.,शेयर प्रविष्टियों बना रहे हैं जिसके खिलाफ एक तार्किक वेयरहाउस। @@ -515,14 +516,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,बिक्री कर और DocType: Employee,Organization Profile,संगठन प्रोफाइल apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,सेटअप > क्रमांकन श्रृंखला के माध्यम से उपस्थिति के लिए धन्यवाद सेटअप नंबरिंग श्रृंखला DocType: Employee,Reason for Resignation,इस्तीफे का कारण -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,प्रदर्शन मूल्यांकन के लिए खाका . +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,प्रदर्शन मूल्यांकन के लिए खाका . DocType: Payment Reconciliation,Invoice/Journal Entry Details,चालान / पत्रिका प्रवेश विवरण apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} ' {1}' नहीं वित्त वर्ष में {2} DocType: Buying Settings,Settings for Buying Module,मॉड्यूल खरीद के लिए सेटिंग apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,पहली खरीद रसीद दर्ज करें DocType: Buying Settings,Supplier Naming By,द्वारा नामकरण प्रदायक DocType: Activity Type,Default Costing Rate,डिफ़ॉल्ट लागत दर -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,रखरखाव अनुसूची +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,रखरखाव अनुसूची apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","तो मूल्य निर्धारण नियमों ग्राहकों के आधार पर बाहर छान रहे हैं, ग्राहक समूह, क्षेत्र, प्रदायक, प्रदायक प्रकार, अभियान, बिक्री साथी आदि" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,सूची में शुद्ध परिवर्तन DocType: Employee,Passport Number,पासपोर्ट नंबर @@ -561,7 +562,7 @@ DocType: Purchase Invoice,Quarterly,त्रैमासिक DocType: Selling Settings,Delivery Note Required,डिलिवरी नोट आवश्यक DocType: Sales Order Item,Basic Rate (Company Currency),बेसिक रेट (कंपनी मुद्रा) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush आधारित कच्चे माल पर -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,आइटम विवरण दर्ज करें +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,आइटम विवरण दर्ज करें DocType: Purchase Receipt,Other Details,अन्य विवरण DocType: Account,Accounts,लेखा apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,विपणन @@ -574,7 +575,7 @@ DocType: Employee,Provide email id registered in company,कंपनी मे DocType: Hub Settings,Seller City,विक्रेता सिटी DocType: Email Digest,Next email will be sent on:,अगले ईमेल पर भेजा जाएगा: DocType: Offer Letter Term,Offer Letter Term,पत्र टर्म प्रस्ताव -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,आइटम वेरिएंट है। +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,आइटम वेरिएंट है। apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,आइटम {0} नहीं मिला DocType: Bin,Stock Value,शेयर मूल्य apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,पेड़ के प्रकार @@ -582,7 +583,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,मात्रा रूप DocType: Serial No,Warranty Expiry Date,वारंटी समाप्ति तिथि DocType: Material Request Item,Quantity and Warehouse,मात्रा और वेयरहाउस DocType: Sales Invoice,Commission Rate (%),आयोग दर (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","वाउचर के खिलाफ टाइप बिक्री आदेश में से एक, बिक्री चालान या जर्नल प्रविष्टि होना चाहिए" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","वाउचर के खिलाफ टाइप बिक्री आदेश में से एक, बिक्री चालान या जर्नल प्रविष्टि होना चाहिए" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,एयरोस्पेस DocType: Journal Entry,Credit Card Entry,क्रेडिट कार्ड एंट्री apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,कार्य विषय @@ -669,10 +670,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,दायित्व apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,स्वीकृत राशि पंक्ति में दावा राशि से अधिक नहीं हो सकता है {0}। DocType: Company,Default Cost of Goods Sold Account,माल बेच खाते की डिफ़ॉल्ट लागत -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,मूल्य सूची चयनित नहीं +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,मूल्य सूची चयनित नहीं DocType: Employee,Family Background,पारिवारिक पृष्ठभूमि DocType: Process Payroll,Send Email,ईमेल भेजें -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},चेतावनी: अमान्य अनुलग्नक {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},चेतावनी: अमान्य अनुलग्नक {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,अनुमति नहीं है DocType: Company,Default Bank Account,डिफ़ॉल्ट बैंक खाता apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","पार्टी के आधार पर फिल्टर करने के लिए, का चयन पार्टी पहले प्रकार" @@ -700,7 +701,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,ग DocType: Features Setup,"To enable ""Point of Sale"" features","बिक्री के प्वाइंट" सुविधाओं को सक्षम करने के लिए DocType: Bin,Moving Average Rate,मूविंग औसत दर DocType: Production Planning Tool,Select Items,आइटम का चयन करें -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} विधेयक के खिलाफ {1} दिनांक {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} विधेयक के खिलाफ {1} दिनांक {2} DocType: Maintenance Visit,Completion Status,समापन स्थिति DocType: Sales Invoice Item,Target Warehouse,लक्ष्य वेअरहाउस DocType: Item,Allow over delivery or receipt upto this percent,इस प्रतिशत तक प्रसव या रसीद से अधिक की अनुमति दें @@ -760,7 +761,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,म apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},ऑपरेशन के लिए अगले {0} दिनों में टाइम स्लॉट पाने में असमर्थ {1} DocType: Production Order,Plan material for sub-assemblies,उप असेंबलियों के लिए योजना सामग्री apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,बीओएम {0} सक्रिय होना चाहिए -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,पहला दस्तावेज़ प्रकार का चयन करें +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,पहला दस्तावेज़ प्रकार का चयन करें apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,गाड़ी पर जाना apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,इस रखरखाव भेंट रद्द करने से पहले सामग्री का दौरा {0} रद्द DocType: Salary Slip,Leave Encashment Amount,नकदीकरण राशि छोड़ दो @@ -778,7 +779,7 @@ DocType: Purchase Receipt,Range,रेंज DocType: Supplier,Default Payable Accounts,डिफ़ॉल्ट लेखा देय apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,कर्मचारी {0} सक्रिय नहीं है या मौजूद नहीं है DocType: Features Setup,Item Barcode,आइटम बारकोड -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,आइटम वेरिएंट {0} अद्यतन +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,आइटम वेरिएंट {0} अद्यतन DocType: Quality Inspection Reading,Reading 6,6 पढ़ना DocType: Purchase Invoice Advance,Purchase Invoice Advance,चालान अग्रिम खरीद DocType: Address,Shop,दुकान @@ -801,7 +802,7 @@ DocType: Salary Slip,Total in words,शब्दों में कुल DocType: Material Request Item,Lead Time Date,लीड दिनांक और समय apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,अनिवार्य है। हो सकता है कि मुद्रा विनिमय रिकार्ड नहीं बनाई गई है apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Row # {0}: आइटम के लिए धारावाहिक नहीं निर्दिष्ट करें {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","'उत्पाद बंडल' आइटम, गोदाम, सीरियल कोई और बैच के लिए नहीं 'पैकिंग सूची' मेज से विचार किया जाएगा। गोदाम और बैच कोई 'किसी भी उत्पाद बंडल' आइटम के लिए सभी मदों की पैकिंग के लिए ही कर रहे हैं, तो उन मूल्यों को मुख्य मद तालिका में दर्ज किया जा सकता है, मूल्यों की मेज 'पैकिंग सूची' में कॉपी किया जाएगा।" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","'उत्पाद बंडल' आइटम, गोदाम, सीरियल कोई और बैच के लिए नहीं 'पैकिंग सूची' मेज से विचार किया जाएगा। गोदाम और बैच कोई 'किसी भी उत्पाद बंडल' आइटम के लिए सभी मदों की पैकिंग के लिए ही कर रहे हैं, तो उन मूल्यों को मुख्य मद तालिका में दर्ज किया जा सकता है, मूल्यों की मेज 'पैकिंग सूची' में कॉपी किया जाएगा।" apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,ग्राहकों के लिए लदान. DocType: Purchase Invoice Item,Purchase Order Item,खरीद आदेश आइटम apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,अप्रत्यक्ष आय @@ -822,6 +823,7 @@ DocType: Process Payroll,Select Payroll Year and Month,पेरोल वर् apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",उपयुक्त समूह (आम तौर पर फंड के लिए आवेदन> वर्तमान एसेट्स> बैंक खातों में जाओ और प्रकार की) चाइल्ड जोड़ने पर क्लिक करके (एक नया खाता बनाने के "बैंक" DocType: Workstation,Electricity Cost,बिजली की लागत DocType: HR Settings,Don't send Employee Birthday Reminders,कर्मचारी जन्मदिन अनुस्मारक न भेजें +,Employee Holiday Attendance,कर्मचारी छुट्टी उपस्थिति DocType: Opportunity,Walk In,में चलो apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,स्टॉक प्रविष्टियां DocType: Item,Inspection Criteria,निरीक्षण मानदंड @@ -844,7 +846,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options, DocType: Journal Entry Account,Expense Claim,व्यय दावा apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},के लिए मात्रा {0} DocType: Leave Application,Leave Application,छुट्टी की अर्ज़ी -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,आबंटन उपकरण छोड़ दो +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,आबंटन उपकरण छोड़ दो DocType: Leave Block List,Leave Block List Dates,ब्लॉक सूची तिथियां छोड़ो DocType: Company,If Monthly Budget Exceeded (for expense account),"मासिक बजट (व्यय खाते के लिए) से अधिक है, तो" DocType: Workstation,Net Hour Rate,नेट घंटे की दर @@ -854,7 +856,7 @@ DocType: Packing Slip Item,Packing Slip Item,पैकिंग स्लिप DocType: POS Profile,Cash/Bank Account,नकद / बैंक खाता apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,मात्रा या मूल्य में कोई परिवर्तन से हटाया आइटम नहीं है। DocType: Delivery Note,Delivery To,करने के लिए डिलिवरी -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,गुण तालिका अनिवार्य है +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,गुण तालिका अनिवार्य है DocType: Production Planning Tool,Get Sales Orders,विक्रय आदेश apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} ऋणात्मक नहीं हो सकता apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,छूट @@ -918,7 +920,7 @@ DocType: SMS Center,Total Characters,कुल वर्ण apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},आइटम के लिए बीओएम क्षेत्र में बीओएम चयन करें {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,सी - फार्म के चालान विस्तार DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,भुगतान सुलह चालान -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,अंशदान% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,अंशदान% DocType: Item,website page link,वेबसाइट के पेज लिंक DocType: Company,Company registration numbers for your reference. Tax numbers etc.,कंपनी अपने संदर्भ के लिए पंजीकरण संख्या. टैक्स आदि संख्या DocType: Sales Partner,Distributor,वितरक @@ -960,10 +962,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM रूपांतरण DocType: Stock Settings,Default Item Group,डिफ़ॉल्ट आइटम समूह apps/erpnext/erpnext/config/buying.py +13,Supplier database.,प्रदायक डेटाबेस. DocType: Account,Balance Sheet,बैलेंस शीट -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ','आइटम कोड के साथ आइटम के लिए केंद्र का खर्च +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ','आइटम कोड के साथ आइटम के लिए केंद्र का खर्च DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,अपनी बिक्री व्यक्ति इस तिथि पर एक चेतावनी प्राप्त करने के लिए ग्राहकों से संपर्क करेंगे apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","इसके अलावा खातों समूह के तहत बनाया जा सकता है, लेकिन प्रविष्टियों गैर समूहों के खिलाफ बनाया जा सकता है" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,टैक्स और अन्य वेतन कटौती. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,टैक्स और अन्य वेतन कटौती. DocType: Lead,Lead,नेतृत्व DocType: Email Digest,Payables,देय DocType: Account,Warehouse,गोदाम @@ -980,10 +982,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Unreconciled भु DocType: Global Defaults,Current Fiscal Year,चालू वित्त वर्ष DocType: Global Defaults,Disable Rounded Total,गोल कुल अक्षम DocType: Lead,Call,कॉल -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,' प्रविष्टियां ' खाली नहीं हो सकती +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,' प्रविष्टियां ' खाली नहीं हो सकती apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},डुप्लिकेट पंक्ति {0} के साथ एक ही {1} ,Trial Balance,शेष - परीक्षण -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,कर्मचारी की स्थापना +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,कर्मचारी की स्थापना apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","ग्रिड """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,पहले उपसर्ग का चयन करें apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,अनुसंधान @@ -992,7 +994,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,प्रयोक्ता आईडी apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,देखें खाता बही apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,शीघ्रातिशीघ्र -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","एक आइटम समूह में एक ही नाम के साथ मौजूद है , वस्तु का नाम बदलने के लिए या आइटम समूह का नाम बदलने के लिए कृपया" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","एक आइटम समूह में एक ही नाम के साथ मौजूद है , वस्तु का नाम बदलने के लिए या आइटम समूह का नाम बदलने के लिए कृपया" DocType: Production Order,Manufacture against Sales Order,बिक्री आदेश के खिलाफ निर्माण apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,शेष विश्व apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,आइटम {0} बैच नहीं हो सकता @@ -1017,7 +1019,7 @@ DocType: Purchase Receipt,Rejected Warehouse,अस्वीकृत वेअ DocType: GL Entry,Against Voucher,वाउचर के खिलाफ DocType: Item,Default Buying Cost Center,डिफ़ॉल्ट ख़रीदना लागत केंद्र apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","ERPNext के बाहर का सबसे अच्छा पाने के लिए, हम आपको कुछ समय लगेगा और इन की मदद से वीडियो देखने के लिए सलाह देते हैं।" -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,आइटम {0} बिक्री आइटम होना चाहिए +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,आइटम {0} बिक्री आइटम होना चाहिए apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,को DocType: Item,Lead Time in days,दिनों में लीड समय ,Accounts Payable Summary,लेखा देय सारांश @@ -1043,7 +1045,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,कृषि apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,अपने उत्पादों या सेवाओं DocType: Mode of Payment,Mode of Payment,भुगतान की रीति -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,वेबसाइट छवि एक सार्वजनिक फ़ाइल या वेबसाइट URL होना चाहिए +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,वेबसाइट छवि एक सार्वजनिक फ़ाइल या वेबसाइट URL होना चाहिए apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,यह एक रूट आइटम समूह है और संपादित नहीं किया जा सकता है . DocType: Journal Entry Account,Purchase Order,आदेश खरीद DocType: Warehouse,Warehouse Contact Info,वेयरहाउस संपर्क जानकारी @@ -1054,7 +1056,7 @@ DocType: Serial No,Serial No Details,धारावाहिक नहीं DocType: Purchase Invoice Item,Item Tax Rate,आइटम कर की दर apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","{0}, केवल ऋण खातों अन्य डेबिट प्रविष्टि के खिलाफ जोड़ा जा सकता है के लिए" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,डिलिवरी नोट {0} प्रस्तुत नहीं किया गया है -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,आइटम {0} एक उप अनुबंधित आइटम होना चाहिए +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,आइटम {0} एक उप अनुबंधित आइटम होना चाहिए apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,राजधानी उपकरणों apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","मूल्य निर्धारण नियम पहला आइटम, आइटम समूह या ब्रांड हो सकता है, जो क्षेत्र 'पर लागू होते हैं' के आधार पर चुना जाता है." DocType: Hub Settings,Seller Website,विक्रेता वेबसाइट @@ -1063,7 +1065,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,लक्ष्य DocType: Sales Invoice Item,Edit Description,संपादित करें] वर्णन apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,उम्मीद की डिलीवरी की तिथि नियोजित प्रारंभ तिथि की तुलना में कम है। -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,सप्लायर के लिए +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,सप्लायर के लिए DocType: Account,Setting Account Type helps in selecting this Account in transactions.,की स्थापना खाता प्रकार के लेनदेन में इस खाते का चयन करने में मदद करता है. DocType: Purchase Invoice,Grand Total (Company Currency),महायोग (कंपनी मुद्रा) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,कुल निवर्तमान @@ -1115,7 +1117,6 @@ DocType: Authorization Rule,Average Discount,औसत छूट DocType: Address,Utilities,उपयोगिताएँ DocType: Purchase Invoice Item,Accounting,लेखांकन DocType: Features Setup,Features Setup,सुविधाएँ सेटअप -DocType: Item,Is Service Item,सेवा आइटम apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,आवेदन की अवधि के बाहर छुट्टी के आवंटन की अवधि नहीं किया जा सकता DocType: Activity Cost,Projects,परियोजनाओं apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,वित्तीय वर्ष का चयन करें @@ -1136,7 +1137,7 @@ DocType: Item,Maintain Stock,स्टॉक बनाए रखें apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,पहले से ही उत्पादन आदेश के लिए बनाया स्टॉक प्रविष्टियां apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,निश्चित परिसंपत्ति में शुद्ध परिवर्तन DocType: Leave Control Panel,Leave blank if considered for all designations,रिक्त छोड़ अगर सभी पदनाम के लिए विचार -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,प्रकार पंक्ति {0} में 'वास्तविक ' का प्रभार आइटम रेट में शामिल नहीं किया जा सकता +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,प्रकार पंक्ति {0} में 'वास्तविक ' का प्रभार आइटम रेट में शामिल नहीं किया जा सकता apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},मैक्स: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Datetime से DocType: Email Digest,For Company,कंपनी के लिए @@ -1145,8 +1146,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,शिपिंग पता नाम apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,खातों का चार्ट DocType: Material Request,Terms and Conditions Content,नियम और शर्तें सामग्री -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,100 से अधिक नहीं हो सकता -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,आइटम {0} भंडार वस्तु नहीं है +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,100 से अधिक नहीं हो सकता +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,आइटम {0} भंडार वस्तु नहीं है DocType: Maintenance Visit,Unscheduled,अनिर्धारित DocType: Employee,Owned,स्वामित्व DocType: Salary Slip Deduction,Depends on Leave Without Pay,बिना वेतन छुट्टी पर निर्भर करता है @@ -1168,7 +1169,7 @@ Used for Taxes and Charges","एक स्ट्रिंग के रूप apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,कर्मचारी खुद को रिपोर्ट नहीं कर सकते हैं। DocType: Account,"If the account is frozen, entries are allowed to restricted users.","खाता जमे हुए है , तो प्रविष्टियों प्रतिबंधित उपयोगकर्ताओं की अनुमति है." DocType: Email Digest,Bank Balance,बैंक में जमा राशि -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},{1} केवल मुद्रा में बनाया जा सकता है: {0} के लिए लेखा प्रविष्टि {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},{1} केवल मुद्रा में बनाया जा सकता है: {0} के लिए लेखा प्रविष्टि {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,कर्मचारी {0} और महीने के लिए कोई सक्रिय वेतन ढांचे DocType: Job Opening,"Job profile, qualifications required etc.","आवश्यक काम प्रोफ़ाइल , योग्यता आदि" DocType: Journal Entry Account,Account Balance,खाते की शेष राशि @@ -1185,7 +1186,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,उप अस DocType: Shipping Rule Condition,To Value,मूल्य के लिए DocType: Supplier,Stock Manager,शेयर प्रबंधक apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},स्रोत गोदाम पंक्ति के लिए अनिवार्य है {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,पर्ची पैकिंग +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,पर्ची पैकिंग apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,कार्यालय का किराया apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,सेटअप एसएमएस के प्रवेश द्वार सेटिंग्स apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,आयात विफल! @@ -1229,7 +1230,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,बीओएम विस् DocType: Purchase Invoice,Additional Discount Amount (Company Currency),अतिरिक्त छूट राशि (कंपनी मुद्रा) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},त्रुटि: {0} > {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,खातों का चार्ट से नया खाता बनाने के लिए धन्यवाद. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,रखरखाव भेंट +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,रखरखाव भेंट apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,ग्राहक> ग्राहक समूह> टेरिटरी DocType: Sales Invoice Item,Available Batch Qty at Warehouse,गोदाम में उपलब्ध बैच मात्रा DocType: Time Log Batch Detail,Time Log Batch Detail,समय प्रवेश बैच विस्तार @@ -1238,7 +1239,7 @@ DocType: Leave Block List,Block Holidays on important days.,महत्वप ,Accounts Receivable Summary,लेखा प्राप्य सारांश apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,कर्मचारी भूमिका निर्धारित करने के लिए एक कर्मचारी रिकॉर्ड में यूजर आईडी क्षेत्र सेट करें DocType: UOM,UOM Name,UOM नाम -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,योगदान राशि +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,योगदान राशि DocType: Sales Invoice,Shipping Address,शिपिंग पता DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,यह उपकरण आपको अपडेट करने या सिस्टम में स्टॉक की मात्रा और मूल्य निर्धारण को ठीक करने में मदद करता है। यह आम तौर पर प्रणाली मूल्यों और क्या वास्तव में अपने गोदामों में मौजूद सिंक्रनाइज़ करने के लिए प्रयोग किया जाता है। DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,शब्दों में दिखाई हो सकता है एक बार आप डिलिवरी नोट बचाने के लिए होगा. @@ -1279,7 +1280,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,बारकोड का उपयोग करके आइटम्स ट्रैक. आप आइटम के बारकोड स्कैनिंग द्वारा डिलिवरी नोट और बिक्री चालान में आइटम दर्ज करने में सक्षम हो जाएगा. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,भुगतान ईमेल पुन: भेजें DocType: Dependent Task,Dependent Task,आश्रित टास्क -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},उपाय की मूलभूत इकाई के लिए रूपांतरण कारक पंक्ति में 1 होना चाहिए {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},उपाय की मूलभूत इकाई के लिए रूपांतरण कारक पंक्ति में 1 होना चाहिए {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},प्रकार की छुट्टी {0} से बड़ा नहीं हो सकता है {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,अग्रिम में एक्स दिनों के लिए आपरेशन की योजना बना प्रयास करें। DocType: HR Settings,Stop Birthday Reminders,बंद करो जन्मदिन अनुस्मारक @@ -1289,7 +1290,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} देखें apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,नकद में शुद्ध परिवर्तन DocType: Salary Structure Deduction,Salary Structure Deduction,वेतन संरचना कटौती -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,मापने की इकाई {0} अधिक रूपांतरण कारक तालिका में एक बार से अधिक दर्ज किया गया है +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,मापने की इकाई {0} अधिक रूपांतरण कारक तालिका में एक बार से अधिक दर्ज किया गया है apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},भुगतान का अनुरोध पहले से मौजूद है {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,जारी मदों की लागत apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},मात्रा से अधिक नहीं होना चाहिए {0} @@ -1318,7 +1319,7 @@ DocType: BOM Item,BOM Item,बीओएम आइटम DocType: Appraisal,For Employee,कर्मचारी के लिए apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,पंक्ति {0}: प्रदायक के खिलाफ अग्रिम डेबिट किया जाना चाहिए DocType: Company,Default Values,डिफ़ॉल्ट मान -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,पंक्ति {0}: भुगतान राशि नकारात्मक नहीं हो सकता +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,पंक्ति {0}: भुगतान राशि नकारात्मक नहीं हो सकता DocType: Expense Claim,Total Amount Reimbursed,कुल राशि की प्रतिपूर्ति apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},प्रदायक के खिलाफ चालान {0} दिनांक {1} DocType: Customer,Default Price List,डिफ़ॉल्ट मूल्य सूची @@ -1346,8 +1347,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,स DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","यह प्रयोग किया जाता है, जहां सभी अन्य BOMs में एक विशेष बीओएम बदलें। यह पुराने बीओएम लिंक की जगह लागत को अद्यतन और नए बीओएम के अनुसार ""बीओएम धमाका आइटम"" तालिका पुनर्जन्म होगा" DocType: Shopping Cart Settings,Enable Shopping Cart,शॉपिंग कार्ट सक्षम करें DocType: Employee,Permanent Address,स्थायी पता -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,आइटम {0} एक सेवा आइटम होना चाहिए . -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",महायोग से \ {0} {1} अधिक से अधिक नहीं हो सकता है के खिलाफ अग्रिम भुगतान कर दिया {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,आइटम कोड का चयन करें DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),बिना वेतन छुट्टी के लिए कटौती में कमी (LWP) @@ -1403,12 +1403,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,मुख्य apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,प्रकार DocType: Naming Series,Set prefix for numbering series on your transactions,अपने लेनदेन पर श्रृंखला नंबरिंग के लिए उपसर्ग सेट +DocType: Employee Attendance Tool,Employees HTML,कर्मचारियों एचटीएमएल apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,रूका आदेश को रद्द नहीं किया जा सकता . रद्द करने के लिए आगे बढ़ाना . -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,डिफ़ॉल्ट बीओएम ({0}) इस मद या अपने टेम्पलेट के लिए सक्रिय होना चाहिए +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,डिफ़ॉल्ट बीओएम ({0}) इस मद या अपने टेम्पलेट के लिए सक्रिय होना चाहिए DocType: Employee,Leave Encashed?,भुनाया छोड़ दो? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,क्षेत्र से मौके अनिवार्य है DocType: Item,Variants,वेरिएंट -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,बनाओ खरीद आदेश +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,बनाओ खरीद आदेश DocType: SMS Center,Send To,इन्हें भेजें apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},छोड़ दो प्रकार के लिए पर्याप्त छुट्टी संतुलन नहीं है {0} DocType: Payment Reconciliation Payment,Allocated amount,आवंटित राशि @@ -1509,7 +1510,7 @@ DocType: Sales Person,Name and Employee ID,नाम और कर्मचा apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,नियत तिथि तिथि पोस्टिंग से पहले नहीं किया जा सकता DocType: Website Item Group,Website Item Group,वेबसाइट आइटम समूह apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,शुल्कों और करों -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,संदर्भ तिथि दर्ज करें +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,संदर्भ तिथि दर्ज करें apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,पेमेंट गेटवे खाते कॉन्फ़िगर नहीं है apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} भुगतान प्रविष्टियों द्वारा फिल्टर नहीं किया जा सकता है {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,वेब साइट में दिखाया जाएगा कि आइटम के लिए टेबल @@ -1530,7 +1531,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,संकल्प विवरण DocType: Quality Inspection Reading,Acceptance Criteria,स्वीकृति मापदंड DocType: Item Attribute,Attribute Name,उत्तरदायी ठहराने के लिए नाम -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},आइटम {0} में बिक्री या सेवा आइटम होना चाहिए {1} DocType: Item Group,Show In Website,वेबसाइट में दिखाएँ apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,समूह DocType: Task,Expected Time (in hours),(घंटे में) संभावित समय @@ -1562,7 +1562,7 @@ DocType: Shipping Rule Condition,Shipping Amount,नौवहन राशि ,Pending Amount,लंबित राशि DocType: Purchase Invoice Item,Conversion Factor,परिवर्तनकारक तत्व DocType: Purchase Order,Delivered,दिया गया -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),जॉब ईमेल आईडी के लिए सेटअप आवक सर्वर . (जैसे jobs@example.com ) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),जॉब ईमेल आईडी के लिए सेटअप आवक सर्वर . (जैसे jobs@example.com ) DocType: Purchase Receipt,Vehicle Number,वाहन संख्या DocType: Purchase Invoice,The date on which recurring invoice will be stop,"तारीख, जिस पर आवर्ती चालान रोकने के लिए किया जाएगा" apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,कुल आवंटित पत्ते {0} कम नहीं हो सकता अवधि के लिए पहले से ही मंजूरी दे दी पत्ते {1} से @@ -1579,7 +1579,7 @@ DocType: HR Settings,HR Settings,मानव संसाधन सेटिं apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,खर्च का दावा अनुमोदन के लिए लंबित है . केवल खर्च अनुमोदक स्थिति अपडेट कर सकते हैं . DocType: Purchase Invoice,Additional Discount Amount,अतिरिक्त छूट राशि DocType: Leave Block List Allow,Leave Block List Allow,छोड़ दो ब्लॉक सूची की अनुमति दें -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abbr खाली या स्थान नहीं हो सकता +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abbr खाली या स्थान नहीं हो सकता apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,गैर-समूह के लिए समूह apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,खेल apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,वास्तविक कुल @@ -1603,7 +1603,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},UOM रूपांतरण कारक पंक्ति में आवश्यक है {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},क्लीयरेंस तारीख पंक्ति में चेक की तारीख से पहले नहीं किया जा सकता {0} DocType: Salary Slip,Deduction,कटौती -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},मद कीमत के लिए जोड़ा {0} मूल्य सूची में {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},मद कीमत के लिए जोड़ा {0} मूल्य सूची में {1} DocType: Address Template,Address Template,पता खाका apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,इस व्यक्ति की बिक्री के कर्मचारी आईडी दर्ज करें DocType: Territory,Classification of Customers by region,क्षेत्र द्वारा ग्राहकों का वर्गीकरण @@ -1620,7 +1620,7 @@ DocType: Employee,Date of Birth,जन्म तिथि apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,आइटम {0} पहले से ही लौटा दिया गया है DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** वित्त वर्ष ** एक वित्तीय वर्ष का प्रतिनिधित्व करता है। सभी लेखा प्रविष्टियों और अन्य प्रमुख लेनदेन ** ** वित्त वर्ष के खिलाफ ट्रैक किए गए हैं। DocType: Opportunity,Customer / Lead Address,ग्राहक / लीड पता -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},चेतावनी: कुर्की पर अवैध एसएसएल प्रमाणपत्र {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},चेतावनी: कुर्की पर अवैध एसएसएल प्रमाणपत्र {0} DocType: Production Order Operation,Actual Operation Time,वास्तविक ऑपरेशन टाइम DocType: Authorization Rule,Applicable To (User),के लिए लागू (उपयोगकर्ता) DocType: Purchase Taxes and Charges,Deduct,घटाना @@ -1637,7 +1637,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,संकुल में डिलिवरी नोट भाजित. apps/erpnext/erpnext/hooks.py +69,Shipments,लदान DocType: Purchase Order Item,To be delivered to customer,ग्राहक के लिए दिया जाना -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,समय लॉग स्थिति प्रस्तुत किया जाना चाहिए. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,समय लॉग स्थिति प्रस्तुत किया जाना चाहिए. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,सीरियल नहीं {0} किसी भी गोदाम से संबंधित नहीं है apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,पंक्ति # DocType: Purchase Invoice,In Words (Company Currency),शब्दों में (कंपनी मुद्रा) @@ -1654,7 +1654,7 @@ DocType: Leave Application,Total Leave Days,कुल छोड़ दो दि DocType: Email Digest,Note: Email will not be sent to disabled users,नोट: ईमेल अक्षम उपयोगकर्ताओं के लिए नहीं भेजा जाएगा apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,कंपनी का चयन करें ... DocType: Leave Control Panel,Leave blank if considered for all departments,रिक्त छोड़ अगर सभी विभागों के लिए विचार -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","रोजगार ( स्थायी , अनुबंध , प्रशिक्षु आदि ) के प्रकार." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","रोजगार ( स्थायी , अनुबंध , प्रशिक्षु आदि ) के प्रकार." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} मद के लिए अनिवार्य है {1} DocType: Currency Exchange,From Currency,मुद्रा से apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","कम से कम एक पंक्ति में आवंटित राशि, प्रकार का चालान और चालान नंबर का चयन करें" @@ -1673,7 +1673,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,इस प्रक्रिया में DocType: Authorization Rule,Itemwise Discount,Itemwise डिस्काउंट DocType: Purchase Order Item,Reference Document Type,संदर्भ दस्तावेज़ प्रकार -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} बिक्री आदेश के खिलाफ {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} बिक्री आदेश के खिलाफ {1} DocType: Account,Fixed Asset,स्थायी परिसम्पत्ति apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,श्रृंखलाबद्ध इन्वेंटरी DocType: Activity Type,Default Billing Rate,डिफ़ॉल्ट बिलिंग दर @@ -1683,7 +1683,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,भुगतान करने के लिए बिक्री आदेश DocType: Expense Claim Detail,Expense Claim Detail,व्यय दावा विवरण apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,टाइम लॉग्स बनाया: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,सही खाते का चयन करें +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,सही खाते का चयन करें DocType: Item,Weight UOM,वजन UOM DocType: Employee,Blood Group,रक्त वर्ग DocType: Purchase Invoice Item,Page Break,पृष्ठातर @@ -1718,7 +1718,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},बीओएम रिकर्शन : {0} माता पिता या के बच्चे नहीं हो सकता {2} DocType: Production Order Operation,Completed Qty,पूरी की मात्रा apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","{0}, केवल डेबिट खातों एक और क्रेडिट प्रविष्टि के खिलाफ जोड़ा जा सकता है के लिए" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,मूल्य सूची {0} अक्षम है +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,मूल्य सूची {0} अक्षम है DocType: Manufacturing Settings,Allow Overtime,ओवरटाइम की अनुमति दें apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} मद के लिए आवश्यक सीरियल नंबर {1}। आपके द्वारा दी गई {2}। DocType: Stock Reconciliation Item,Current Valuation Rate,वर्तमान मूल्यांकन दर @@ -1769,7 +1769,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},ब apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,मुकदमा संख्या 0 नहीं हो सकता DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,यदि आप बिक्री टीम और बिक्री (चैनल पार्टनर्स) पार्टनर्स वे चिह्नित किया जा सकता है और बिक्री गतिविधि में बनाए रखने के लिए उनके योगदान DocType: Item,Show a slideshow at the top of the page,पृष्ठ के शीर्ष पर एक स्लाइड शो दिखाएँ -DocType: Item,"Allow in Sales Order of type ""Service""",प्रकार "सेवा" की बिक्री आदेश में अनुमति दें apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,भंडार DocType: Time Log,Projects Manager,परियोजनाओं के प्रबंधक DocType: Serial No,Delivery Time,सुपुर्दगी समय @@ -1784,6 +1783,7 @@ DocType: Rename Tool,Rename Tool,उपकरण का नाम बदले apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,अद्यतन लागत DocType: Item Reorder,Item Reorder,आइटम पुनः क्रमित करें apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,हस्तांतरण सामग्री +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},मद {0} में एक बिक्री मद में होना चाहिए {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","संचालन, परिचालन लागत निर्दिष्ट और अपने संचालन के लिए एक अनूठा आपरेशन नहीं दे ." DocType: Purchase Invoice,Price List Currency,मूल्य सूची मुद्रा DocType: Naming Series,User must always select,उपयोगकर्ता हमेशा का चयन करना होगा @@ -1804,7 +1804,7 @@ DocType: Appraisal,Employee,कर्मचारी apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,से आयात ईमेल apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,उपयोगकर्ता के रूप में आमंत्रित DocType: Features Setup,After Sale Installations,बिक्री के प्रतिष्ठान के बाद -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} पूरी तरह से बिल भेजा है +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} पूरी तरह से बिल भेजा है DocType: Workstation Working Hour,End Time,अंतिम समय apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,बिक्री या खरीद के लिए मानक अनुबंध शर्तों . apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,वाउचर द्वारा समूह @@ -1830,7 +1830,7 @@ DocType: Upload Attendance,Attendance To Date,तिथि उपस्थित apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),बिक्री ईमेल आईडी के लिए सेटअप आवक सर्वर . (जैसे sales@example.com ) DocType: Warranty Claim,Raised By,द्वारा उठाए गए DocType: Payment Gateway Account,Payment Account,भुगतान खाता -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,कंपनी आगे बढ़ने के लिए निर्दिष्ट करें +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,कंपनी आगे बढ़ने के लिए निर्दिष्ट करें apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,लेखा प्राप्य में शुद्ध परिवर्तन apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,प्रतिपूरक बंद DocType: Quality Inspection Reading,Accepted,स्वीकार किया @@ -1842,14 +1842,14 @@ DocType: Shipping Rule,Shipping Rule Label,नौवहन नियम ले apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,कच्चे माल खाली नहीं किया जा सकता। apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","शेयर अद्यतन नहीं कर सका, चालान ड्रॉप शिपिंग आइटम शामिल हैं।" DocType: Newsletter,Test,परीक्षण -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","मौजूदा स्टॉक लेनदेन आप के मूल्यों को बदल नहीं सकते \ इस मद के लिए वहाँ के रूप में 'सीरियल नहीं है', 'बैच है,' नहीं 'शेयर मद है' और 'मूल्यांकन पद्धति'" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,त्वरित जर्नल प्रविष्टि apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,बीओएम किसी भी आइटम agianst उल्लेख अगर आप दर में परिवर्तन नहीं कर सकते DocType: Employee,Previous Work Experience,पिछले कार्य अनुभव DocType: Stock Entry,For Quantity,मात्रा के लिए apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},आइटम के लिए योजना बनाई मात्रा दर्ज करें {0} पंक्ति में {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} प्रस्तुत नहीं किया गया है +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} प्रस्तुत नहीं किया गया है apps/erpnext/erpnext/config/stock.py +18,Requests for items.,आइटम के लिए अनुरोध. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,अलग उत्पादन का आदेश प्रत्येक समाप्त अच्छा आइटम के लिए बनाया जाएगा. DocType: Purchase Invoice,Terms and Conditions1,नियम और Conditions1 @@ -1874,6 +1874,7 @@ DocType: Notification Control,Expense Claim Approved Message,व्यय दा DocType: Email Digest,How frequently?,कितनी बार? DocType: Purchase Receipt,Get Current Stock,मौजूदा स्टॉक apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,सामग्री के बिल का पेड़ +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,मार्क का तोहफा apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},रखरखाव शुरू करने की तारीख धारावाहिक नहीं के लिए डिलीवरी की तारीख से पहले नहीं किया जा सकता {0} DocType: Production Order,Actual End Date,वास्तविक समाप्ति तिथि DocType: Authorization Rule,Applicable To (Role),के लिए लागू (रोल) @@ -1888,7 +1889,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,अनुबंध समाप्ति तिथि शामिल होने की तिथि से अधिक होना चाहिए DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,एक आयोग के लिए कंपनियों के उत्पादों को बेचता है एक तीसरे पक्ष जो वितरक / डीलर / कमीशन एजेंट / सहबद्ध / पुनर्विक्रेता। DocType: Customer Group,Has Child Node,बाल नोड है -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} खरीद आदेश के खिलाफ {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} खरीद आदेश के खिलाफ {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","स्थैतिक यूआरएल यहाँ मानकों (Eg. प्रेषक = ERPNext, username = ERPNext, पासवर्ड = 1234 आदि) दर्ज करें" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} नहीं किसी भी सक्रिय वित्त वर्ष में। अधिक विवरण की जाँच के लिए {2}। apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,इस ERPNext से ऑटो उत्पन्न एक उदाहरण वेबसाइट है @@ -1936,7 +1937,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10। जोड़ें या घटा देते हैं: आप जोड़ सकते हैं या कर कटौती करना चाहते हैं।" DocType: Purchase Receipt Item,Recd Quantity,रिसी डी मात्रा apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},अधिक आइटम उत्पादन नहीं कर सकते {0} से बिक्री आदेश मात्रा {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,स्टॉक एंट्री {0} प्रस्तुत नहीं किया गया है +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,स्टॉक एंट्री {0} प्रस्तुत नहीं किया गया है DocType: Payment Reconciliation,Bank / Cash Account,बैंक / रोकड़ लेखा DocType: Tax Rule,Billing City,बिलिंग शहर DocType: Global Defaults,Hide Currency Symbol,मुद्रा प्रतीक छुपाएँ @@ -1962,7 +1963,7 @@ DocType: Salary Structure,Total Earning,कुल अर्जन DocType: Purchase Receipt,Time at which materials were received,जो समय पर सामग्री प्राप्त हुए थे apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,मेरे पते DocType: Stock Ledger Entry,Outgoing Rate,आउटगोइंग दर -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,संगठन शाखा मास्टर . +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,संगठन शाखा मास्टर . apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,या DocType: Sales Order,Billing Status,बिलिंग स्थिति apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,उपयोगिता व्यय @@ -2000,7 +2001,7 @@ DocType: Bin,Reserved Quantity,आरक्षित मात्रा DocType: Landed Cost Voucher,Purchase Receipt Items,रसीद वस्तुओं की खरीद apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,अनुकूलित प्रपत्र DocType: Account,Income Account,आय खाता -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,वितरण +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,वितरण DocType: Stock Reconciliation Item,Current Qty,वर्तमान मात्रा DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",धारा लागत में "सामग्री के आधार पर दर" देखें DocType: Appraisal Goal,Key Responsibility Area,कुंजी जिम्मेदारी क्षेत्र @@ -2012,9 +2013,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,व DocType: Notification Control,Purchase Order Message,खरीद आदेश संदेश DocType: Tax Rule,Shipping Country,शिपिंग देश DocType: Upload Attendance,Upload HTML,HTML अपलोड -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","कुल अग्रिम ({0}) आदेश के खिलाफ {1} \ - अधिक से अधिक नहीं हो सकता महायोग से ({2})" DocType: Employee,Relieving Date,तिथि राहत apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","मूल्य निर्धारण नियम कुछ मानदंडों के आधार पर, मूल्य सूची / छूट प्रतिशत परिभाषित अधिलेखित करने के लिए किया जाता है." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,वेयरहाउस केवल स्टॉक एंट्री / डिलिवरी नोट / खरीद रसीद के माध्यम से बदला जा सकता है @@ -2024,8 +2022,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,आ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","चयनित मूल्य निर्धारण नियम 'मूल्य' के लिए किया जाता है, यह मूल्य सूची लिख देगा। मूल्य निर्धारण नियम कीमत अंतिम कीमत है, ताकि आगे कोई छूट लागू किया जाना चाहिए। इसलिए, आदि बिक्री आदेश, खरीद आदेश तरह के लेनदेन में, बल्कि यह 'मूल्य सूची दर' क्षेत्र की तुलना में, 'दर' क्षेत्र में दिलवाया किया जाएगा।" apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,ट्रैक उद्योग प्रकार के द्वारा होता है . DocType: Item Supplier,Item Supplier,आइटम प्रदायक -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,कोई बैच पाने के मद कोड दर्ज करें -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},के लिए एक मूल्य का चयन करें {0} quotation_to {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,कोई बैच पाने के मद कोड दर्ज करें +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},के लिए एक मूल्य का चयन करें {0} quotation_to {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,सभी पते. DocType: Company,Stock Settings,स्टॉक सेटिंग्स apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","निम्नलिखित गुण दोनों रिकॉर्ड में वही कर रहे हैं अगर विलय ही संभव है। समूह, रूट प्रकार, कंपनी है" @@ -2048,7 +2046,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,चेक संख्या DocType: Payment Tool Detail,Payment Tool Detail,भुगतान टूल विस्तार ,Sales Browser,बिक्री ब्राउज़र DocType: Journal Entry,Total Credit,कुल क्रेडिट -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},चेतावनी: एक और {0} # {1} शेयर प्रविष्टि के खिलाफ मौजूद है {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},चेतावनी: एक और {0} # {1} शेयर प्रविष्टि के खिलाफ मौजूद है {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,स्थानीय apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),ऋण और अग्रिम ( संपत्ति) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,देनदार @@ -2068,8 +2066,8 @@ DocType: Price List,Price List Master,मूल्य सूची मास् DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,आप सेट और लक्ष्यों की निगरानी कर सकते हैं ताकि सभी बिक्री लेनदेन कई ** बिक्री व्यक्तियों ** खिलाफ टैग किया जा सकता है। ,S.O. No.,बिक्री आदेश संख्या DocType: Production Order Operation,Make Time Log,समय लॉग बनाओ -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,पुनःक्रमित मात्रा सेट करें -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},लीड से ग्राहक बनाने कृपया {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,पुनःक्रमित मात्रा सेट करें +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},लीड से ग्राहक बनाने कृपया {0} DocType: Price List,Applicable for Countries,देशों के लिए लागू apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,कंप्यूटर्स apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,यह एक रूट ग्राहक समूह है और संपादित नहीं किया जा सकता है . @@ -2117,7 +2115,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),बि DocType: Payment Reconciliation Invoice,Outstanding Amount,बकाया राशि DocType: Project Task,Working,कार्य DocType: Stock Ledger Entry,Stock Queue (FIFO),स्टॉक कतार (फीफो) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,समय लॉग्स का चयन करें. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,समय लॉग्स का चयन करें. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} कंपनी से संबंधित नहीं है {1} DocType: Account,Round Off,पूर्णांक करना ,Requested Qty,निवेदित मात्रा @@ -2155,7 +2153,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,प्रासंगिक प्रविष्टियां प्राप्त करें apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,शेयर के लिए लेखा प्रविष्टि DocType: Sales Invoice,Sales Team1,Team1 बिक्री -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,आइटम {0} मौजूद नहीं है +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,आइटम {0} मौजूद नहीं है DocType: Sales Invoice,Customer Address,ग्राहक पता DocType: Payment Request,Recipient and Message,प्राप्तकर्ता और संदेश DocType: Purchase Invoice,Apply Additional Discount On,अतिरिक्त छूट पर लागू होते हैं @@ -2174,7 +2172,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,म्यूट ईमेल apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","खाद्य , पेय और तंबाकू" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,पी एल या बी एस -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},केवल विरुद्ध भुगतान कर सकते हैं unbilled {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},केवल विरुद्ध भुगतान कर सकते हैं unbilled {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,आयोग दर 100 से अधिक नहीं हो सकता apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,न्यूनतम सूची स्तर DocType: Stock Entry,Subcontract,उपपट्टा @@ -2192,9 +2190,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,सॉफ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,रंगीन DocType: Maintenance Visit,Scheduled,अनुसूचित apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","नहीं" और "बिक्री मद है" "स्टॉक मद है" कहाँ है "हाँ" है आइटम का चयन करें और कोई अन्य उत्पाद बंडल नहीं है कृपया +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),कुल अग्रिम ({0}) आदेश के खिलाफ {1} महायोग से बड़ा नहीं हो सकता है ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,असमान महीने भर में लक्ष्य को वितरित करने के लिए मासिक वितरण चुनें। DocType: Purchase Invoice Item,Valuation Rate,मूल्यांकन दर -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,मूल्य सूची मुद्रा का चयन नहीं +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,मूल्य सूची मुद्रा का चयन नहीं apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,आइटम पंक्ति {0}: {1} के ऊपर 'खरीद प्राप्तियां' तालिका में मौजूद नहीं है खरीद रसीद apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},कर्मचारी {0} पहले से ही दोनों के बीच {1} के लिए आवेदन किया है {2} और {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,परियोजना प्रारंभ दिनांक @@ -2206,6 +2205,7 @@ DocType: Quality Inspection,Inspection Type,निरीक्षण के प apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},कृपया चुनें {0} DocType: C-Form,C-Form No,कोई सी - फार्म DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,अगोचर उपस्थिति apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,अनुसंधानकर्ता apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,भेजने से पहले न्यूज़लेटर बचा लो apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,नाम या ईमेल अनिवार्य है @@ -2231,7 +2231,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,पु DocType: Payment Gateway,Gateway,द्वार apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,प्रदायक> प्रदायक प्रकार apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,तारीख से राहत दर्ज करें. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,राशि +apps/erpnext/erpnext/controllers/trends.py +138,Amt,राशि apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,केवल प्रस्तुत किया जा सकता है 'स्वीकृत' स्थिति के साथ आवेदन छोड़ दो apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,पता शीर्षक अनिवार्य है . DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,अभियान का नाम दर्ज़ अगर जांच के स्रोत अभियान @@ -2246,10 +2246,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,स्वीकार कि DocType: Bank Reconciliation Detail,Posting Date,तिथि पोस्टिंग DocType: Item,Valuation Method,मूल्यन विधि apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},{0} के लिए विनिमय दर मिल करने में असमर्थ {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,मार्क आधे दिन DocType: Sales Invoice,Sales Team,बिक्री टीम apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,प्रवेश डुप्लिकेट DocType: Serial No,Under Warranty,वारंटी के अंतर्गत -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[त्रुटि] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[त्रुटि] DocType: Sales Order,In Words will be visible once you save the Sales Order.,शब्दों में दिखाई हो सकता है एक बार तुम बिक्री आदेश को बचाने के लिए होगा. ,Employee Birthday,कर्मचारी जन्मदिन apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,वेंचर कैपिटल @@ -2272,6 +2273,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,मौजूदा लेनदेन के साथ लागत केंद्र समूह परिवर्तित नहीं किया जा सकता है DocType: Account,Depreciation,ह्रास apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),प्रदायक (ओं) +DocType: Employee Attendance Tool,Employee Attendance Tool,कर्मचारी उपस्थिति उपकरण DocType: Supplier,Credit Limit,साख सीमा apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,लेन-देन प्रकार का चयन करें DocType: GL Entry,Voucher No,कोई वाउचर @@ -2298,7 +2300,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,रुट खाता हटाया नहीं जा सकता ,Is Primary Address,प्राथमिक पता है DocType: Production Order,Work-in-Progress Warehouse,कार्य में प्रगति गोदाम -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},संदर्भ # {0} दिनांक {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},संदर्भ # {0} दिनांक {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,पतों का प्रबंधन DocType: Pricing Rule,Item Code,आइटम कोड DocType: Production Planning Tool,Create Production Orders,उत्पादन के आदेश बनाएँ @@ -2325,7 +2327,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,बैंक समाधान apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,अपडेट प्राप्त करे apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,सामग्री अनुरोध {0} को रद्द कर दिया है या बंद कर दिया गया है apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,कुछ नमूना रिकॉर्ड को जोड़ें -apps/erpnext/erpnext/config/hr.py +210,Leave Management,प्रबंधन छोड़ दो +apps/erpnext/erpnext/config/hr.py +225,Leave Management,प्रबंधन छोड़ दो apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,खाता द्वारा समूह DocType: Sales Order,Fully Delivered,पूरी तरह से वितरित DocType: Lead,Lower Income,कम आय @@ -2340,6 +2342,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','तिथि तक' 'तिथि से' के बाद होनी चाहिए ,Stock Projected Qty,शेयर मात्रा अनुमानित apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},ग्राहक {0} परियोजना से संबंधित नहीं है {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,उल्लेखनीय उपस्थिति एचटीएमएल DocType: Sales Order,Customer's Purchase Order,ग्राहक के क्रय आदेश DocType: Warranty Claim,From Company,कंपनी से apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,मूल्य या मात्रा @@ -2404,6 +2407,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,वायर ट्रांसफर apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,बैंक खाते का चयन करें DocType: Newsletter,Create and Send Newsletters,बनाने और भेजने समाचार +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,सभी की जांच करो DocType: Sales Order,Recurring Order,आवर्ती आदेश DocType: Company,Default Income Account,डिफ़ॉल्ट आय खाता apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,ग्राहक समूह / ग्राहक @@ -2435,6 +2439,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,के खिलाफ DocType: Item,Warranty Period (in days),वारंटी अवधि (दिनों में) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,संचालन से नेट नकद apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,उदाहरणार्थ +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,थोक में मार्क कर्मचारी उपस्थिति apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,आइटम 4 DocType: Journal Entry Account,Journal Entry Account,जर्नल प्रविष्टि खाता DocType: Shopping Cart Settings,Quotation Series,कोटेशन सीरीज @@ -2580,14 +2585,14 @@ DocType: Task,Actual Start Date (via Time Logs),वास्तविक प् DocType: Stock Reconciliation Item,Before reconciliation,सुलह से पहले apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},{0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),करों और शुल्कों जोड़ा (कंपनी मुद्रा) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,आइटम कर पंक्ति {0} प्रकार टैक्स या आय या खर्च या प्रभार्य का खाता होना चाहिए +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,आइटम कर पंक्ति {0} प्रकार टैक्स या आय या खर्च या प्रभार्य का खाता होना चाहिए DocType: Sales Order,Partly Billed,आंशिक रूप से बिल DocType: Item,Default BOM,Default बीओएम apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,फिर से लिखें कंपनी के नाम की पुष्टि के लिए कृपया apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,कुल बकाया राशि DocType: Time Log Batch,Total Hours,कुल घंटे DocType: Journal Entry,Printing Settings,मुद्रण सेटिंग्स -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},कुल डेबिट कुल क्रेडिट के बराबर होना चाहिए . +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},कुल डेबिट कुल क्रेडिट के बराबर होना चाहिए . apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,मोटर वाहन apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,डिलिवरी नोट से DocType: Time Log,From Time,समय से @@ -2634,7 +2639,7 @@ DocType: Purchase Invoice Item,Image View,छवि देखें DocType: Issue,Opening Time,समय खुलने की apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,दिनांक से और apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,प्रतिभूति एवं कमोडिटी एक्सचेंजों -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',संस्करण के लिए उपाय की मूलभूत इकाई '{0}' खाका के रूप में ही होना चाहिए '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',संस्करण के लिए उपाय की मूलभूत इकाई '{0}' खाका के रूप में ही होना चाहिए '{1}' DocType: Shipping Rule,Calculate Based On,के आधार पर गणना करें DocType: Delivery Note Item,From Warehouse,गोदाम से DocType: Purchase Taxes and Charges,Valuation and Total,मूल्यांकन और कुल @@ -2656,7 +2661,7 @@ DocType: Leave Application,Follow via Email,ईमेल के माध्य DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,सबसे कम राशि के बाद टैक्स राशि apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,चाइल्ड खाता इस खाते के लिए मौजूद है. आप इस खाते को नष्ट नहीं कर सकते . apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,लक्ष्य मात्रा या लक्ष्य राशि या तो अनिवार्य है -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},कोई डिफ़ॉल्ट बीओएम मौजूद मद के लिए {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},कोई डिफ़ॉल्ट बीओएम मौजूद मद के लिए {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,पहली पोस्टिंग तिथि का चयन करें apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,दिनांक खोलने की तिथि बंद करने से पहले किया जाना चाहिए DocType: Leave Control Panel,Carry Forward,आगे ले जाना @@ -2734,7 +2739,7 @@ DocType: Leave Type,Is Encash,तुड़ाना है DocType: Purchase Invoice,Mobile No,नहीं मोबाइल DocType: Payment Tool,Make Journal Entry,जर्नल प्रविष्टि बनाने DocType: Leave Allocation,New Leaves Allocated,नई आवंटित पत्तियां -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,परियोजना के लिहाज से डेटा उद्धरण के लिए उपलब्ध नहीं है +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,परियोजना के लिहाज से डेटा उद्धरण के लिए उपलब्ध नहीं है DocType: Project,Expected End Date,उम्मीद समाप्ति तिथि DocType: Appraisal Template,Appraisal Template Title,मूल्यांकन टेम्पलेट शीर्षक apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,वाणिज्यिक @@ -2782,6 +2787,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No., apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,कृपया बताएं एक DocType: Offer Letter,Awaiting Response,प्रतिक्रिया की प्रतीक्षा apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,ऊपर +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,समय लॉग बिल भेजा गया है DocType: Salary Slip,Earning & Deduction,अर्जन कटौती apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,खाते {0} एक समूह नहीं हो सकता apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,वैकल्पिक . यह सेटिंग विभिन्न लेनदेन में फिल्टर करने के लिए इस्तेमाल किया जाएगा . @@ -2852,14 +2858,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,सफलतापूर्वक इस कंपनी से संबंधित सभी लेन-देन को नष्ट कर दिया! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,आज की तारीख में apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,परिवीक्षा -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,डिफ़ॉल्ट गोदाम स्टॉक मद के लिए अनिवार्य है . +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,डिफ़ॉल्ट गोदाम स्टॉक मद के लिए अनिवार्य है . apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},महीने के वेतन का भुगतान {0} और वर्ष {1} DocType: Stock Settings,Auto insert Price List rate if missing,ऑटो डालने मूल्य सूची दर लापता यदि apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,कुल भुगतान की गई राशि ,Transferred Qty,मात्रा तबादला apps/erpnext/erpnext/config/learn.py +11,Navigating,नेविगेट apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,आयोजन -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,समय लॉग बैच बनाना +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,समय लॉग बैच बनाना apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,जारी किया गया DocType: Project,Total Billing Amount (via Time Logs),कुल बिलिंग राशि (टाइम लॉग्स के माध्यम से) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,हम इस आइटम बेचने @@ -2867,7 +2873,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,मात्रा 0 से अधिक होना चाहिए DocType: Journal Entry,Cash Entry,कैश एंट्री DocType: Sales Partner,Contact Desc,संपर्क जानकारी -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","आकस्मिक, बीमार आदि की तरह पत्तियों के प्रकार" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","आकस्मिक, बीमार आदि की तरह पत्तियों के प्रकार" DocType: Email Digest,Send regular summary reports via Email.,ईमेल के माध्यम से नियमित रूप से सारांश रिपोर्ट भेजें। DocType: Brand,Item Manager,आइटम प्रबंधक DocType: Cost Center,Add rows to set annual budgets on Accounts.,पंक्तियाँ जोड़ें लेखा पर वार्षिक बजट निर्धारित. @@ -2882,7 +2888,7 @@ DocType: GL Entry,Party Type,पार्टी के प्रकार apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,कच्चे माल के मुख्य मद के रूप में ही नहीं हो सकता DocType: Item Attribute Value,Abbreviation,संक्षिप्त apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,{0} सीमा से अधिक के बाद से Authroized नहीं -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,वेतन टेम्पलेट मास्टर . +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,वेतन टेम्पलेट मास्टर . DocType: Leave Type,Max Days Leave Allowed,अधिकतम दिन छोड़ने की अनुमति दी apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,शॉपिंग कार्ट के लिए सेट कर नियम DocType: Payment Tool,Set Matching Amounts,सेट मिलान राशियाँ @@ -2895,7 +2901,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,सु DocType: Stock Settings,Role Allowed to edit frozen stock,जमे हुए शेयर संपादित करने के लिए रख सकते है भूमिका ,Territory Target Variance Item Group-Wise,क्षेत्र को लक्षित विचरण मद समूहवार apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,सभी ग्राहक समूहों -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} अनिवार्य है. हो सकता है कि विनिमय दर रिकॉर्ड {2} को {1} के लिए नहीं बनाई गई है. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} अनिवार्य है. हो सकता है कि विनिमय दर रिकॉर्ड {2} को {1} के लिए नहीं बनाई गई है. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,टैक्स खाका अनिवार्य है। apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,खाते {0}: माता पिता के खाते {1} मौजूद नहीं है DocType: Purchase Invoice Item,Price List Rate (Company Currency),मूल्य सूची दर (कंपनी मुद्रा) @@ -2915,8 +2921,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,मद वार कर ,Item-wise Price List Rate,मद वार मूल्य सूची दर apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,प्रदायक कोटेशन DocType: Quotation,In Words will be visible once you save the Quotation.,शब्दों में दिखाई हो सकता है एक बार आप उद्धरण बचाने के लिए होगा. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} बंद कर दिया है -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},बारकोड {0} पहले से ही मद में इस्तेमाल {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} बंद कर दिया है +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},बारकोड {0} पहले से ही मद में इस्तेमाल {1} DocType: Lead,Add to calendar on this date,इस तिथि पर कैलेंडर में जोड़ें apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,शिपिंग लागत को जोड़ने के लिए नियम. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,आगामी कार्यक्रम @@ -2943,8 +2949,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling, apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,कम से कम एक गोदाम अनिवार्य है DocType: Serial No,Out of Warranty,वारंटी के बाहर DocType: BOM Replace Tool,Replace,बदलें -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} बिक्री चालान के खिलाफ {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,उपाय की मूलभूत इकाई दर्ज करें +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} बिक्री चालान के खिलाफ {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,उपाय की मूलभूत इकाई दर्ज करें DocType: Purchase Invoice Item,Project Name,इस परियोजना का नाम DocType: Supplier,Mention if non-standard receivable account,"मेंशन अमानक प्राप्य खाते है, तो" DocType: Journal Entry Account,If Income or Expense,यदि आय या व्यय @@ -2969,7 +2975,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,वित्तीय वर्ष: {0} करता नहीं मौजूद है DocType: Currency Exchange,To Currency,मुद्रा के लिए DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,निम्नलिखित उपयोगकर्ता ब्लॉक दिनों के लिए छोड़ एप्लीकेशन को स्वीकृत करने की अनुमति दें. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,व्यय दावा के प्रकार. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,व्यय दावा के प्रकार. DocType: Item,Taxes,कर apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,भुगतान किया है और वितरित नहीं DocType: Project,Default Cost Center,डिफ़ॉल्ट लागत केंद्र @@ -2999,7 +3005,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},पंक्ति # {0}: सीरियल नहीं {1} के साथ मेल नहीं खाता {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,आकस्मिक छुट्टी DocType: Batch,Batch ID,बैच आईडी -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},नोट : {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},नोट : {0} ,Delivery Note Trends,डिलिवरी नोट रुझान apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,इस सप्ताह की सारांश apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} पंक्ति में एक खरीदे या उप अनुबंधित आइटम होना चाहिए {1} @@ -3039,6 +3045,7 @@ DocType: Project Task,Pending Review,समीक्षा के लिए ल apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,भुगतान करने के लिए यहां क्लिक करें DocType: Task,Total Expense Claim (via Expense Claim),(व्यय दावा) के माध्यम से कुल खर्च का दावा apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,ग्राहक आईडी +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,मार्क अनुपस्थित apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,समय समय से की तुलना में अधिक से अधिक होना चाहिए DocType: Journal Entry Account,Exchange Rate,विनिमय दर apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,बिक्री आदेश {0} प्रस्तुत नहीं किया गया है @@ -3086,7 +3093,7 @@ DocType: Item Group,Default Expense Account,डिफ़ॉल्ट व्य DocType: Employee,Notice (days),सूचना (दिन) DocType: Tax Rule,Sales Tax Template,सेल्स टैक्स खाका DocType: Employee,Encashment Date,नकदीकरण तिथि -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","वाउचर के खिलाफ प्रकार की खरीद के आदेश की एक, खरीद चालान या जर्नल प्रविष्टि होना चाहिए" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","वाउचर के खिलाफ प्रकार की खरीद के आदेश की एक, खरीद चालान या जर्नल प्रविष्टि होना चाहिए" DocType: Account,Stock Adjustment,शेयर समायोजन apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},डिफ़ॉल्ट गतिविधि लागत गतिविधि प्रकार के लिए मौजूद है - {0} DocType: Production Order,Planned Operating Cost,नियोजित परिचालन लागत @@ -3140,6 +3147,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,एंट्री बंद लिखने DocType: BOM,Rate Of Materials Based On,सामग्री के आधार पर दर apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,समर्थन Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,सब को अचयनित करें apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},कंपनी के गोदामों में याद आ रही है {0} DocType: POS Profile,Terms and Conditions,नियम और शर्तें apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},तिथि वित्तीय वर्ष के भीतर होना चाहिए. तिथि करने के लिए मान लिया जाये = {0} @@ -3161,7 +3169,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","डिफ़ॉल्ट रूप में इस वित्तीय वर्ष में सेट करने के लिए , 'मूलभूत रूप में सेट करें ' पर क्लिक करें" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),समर्थन ईमेल आईडी के लिए सेटअप आवक सर्वर . (जैसे support@example.com ) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,कमी मात्रा -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,मद संस्करण {0} एक ही गुण के साथ मौजूद है +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,मद संस्करण {0} एक ही गुण के साथ मौजूद है DocType: Salary Slip,Salary Slip,वेतनपर्ची apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,तिथि करने के लिए आवश्यक है DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","संकुल वितरित किए जाने के लिए निकल जाता है पैकिंग उत्पन्न करता है। पैकेज संख्या, पैकेज सामग्री और अपने वजन को सूचित किया।" @@ -3209,7 +3217,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,दे DocType: Item Attribute Value,Attribute Value,मान बताइए apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","ईमेल आईडी अद्वितीय होना चाहिए , पहले से ही मौजूद है {0}" ,Itemwise Recommended Reorder Level,Itemwise पुनःक्रमित स्तर की सिफारिश की -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,पहला {0} का चयन करें +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,पहला {0} का चयन करें DocType: Features Setup,To get Item Group in details table,विवरण तालिका में आइटम समूह apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,आइटम के बैच {0} {1} समाप्त हो गया है। DocType: Sales Invoice,Commission,आयोग @@ -3264,7 +3272,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,बकाया वाउचर जाओ DocType: Warranty Claim,Resolved By,द्वारा हल किया DocType: Appraisal,Start Date,प्रारंभ दिनांक -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,एक अवधि के लिए पत्तियों का आवंटन . +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,एक अवधि के लिए पत्तियों का आवंटन . apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,चेक्स और जमाओं को गलत तरीके से मंजूरी दे दी है apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,सत्यापित करने के लिए यहां क्लिक करें apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,खाते {0}: तुम माता पिता के खाते के रूप में खुद को आवंटन नहीं कर सकते @@ -3284,7 +3292,7 @@ DocType: Employee,Educational Qualification,शैक्षिक योग् DocType: Workstation,Operating Costs,परिचालन लागत DocType: Employee Leave Approver,Employee Leave Approver,कर्मचारी छुट्टी अनुमोदक apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} सफलतापूर्वक हमारे न्यूज़लेटर की सूची में जोड़ा गया है। -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},पंक्ति {0}: एक पुनःक्रमित प्रविष्टि पहले से ही इस गोदाम के लिए मौजूद है {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},पंक्ति {0}: एक पुनःक्रमित प्रविष्टि पहले से ही इस गोदाम के लिए मौजूद है {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","खो के रूप में उद्धरण बना दिया गया है , क्योंकि घोषणा नहीं कर सकते हैं ." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,क्रय मास्टर प्रबंधक apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,उत्पादन का आदेश {0} प्रस्तुत किया जाना चाहिए @@ -3308,7 +3316,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,बिक्री चालान {0} पहले से ही प्रस्तुत किया गया है apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,पूरा करने की तिथि DocType: Purchase Invoice Item,Amount (Company Currency),राशि (कंपनी मुद्रा) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,संगठन इकाई ( विभाग ) मास्टर . +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,संगठन इकाई ( विभाग ) मास्टर . apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,वैध मोबाइल नंबर दर्ज करें DocType: Budget Detail,Budget Detail,बजट विस्तार apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,भेजने से पहले संदेश प्रविष्ट करें @@ -3324,13 +3332,13 @@ DocType: Purchase Receipt Item,Received and Accepted,प्राप्त औ ,Serial No Service Contract Expiry,धारावाहिक नहीं सेवा अनुबंध समाप्ति DocType: Item,Unit of Measure Conversion,उपाय रूपांतरण की इकाई apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,कर्मचारी बदला नहीं जा सकता -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,आप क्रेडिट और एक ही समय में एक ही खाते से डेबिट नहीं कर सकते +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,आप क्रेडिट और एक ही समय में एक ही खाते से डेबिट नहीं कर सकते DocType: Naming Series,Help HTML,HTML मदद apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},कुल आवंटित वेटेज 100 % होना चाहिए . यह है {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},भत्ता खत्म-{0} मद के लिए पार कर लिए {1} DocType: Address,Name of person or organization that this address belongs to.,कि इस पते पर संबधित व्यक्ति या संगठन का नाम. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,अपने आपूर्तिकर्ताओं -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,बिक्री आदेश किया जाता है के रूप में खो के रूप में सेट नहीं कर सकता . +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,बिक्री आदेश किया जाता है के रूप में खो के रूप में सेट नहीं कर सकता . apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,एक और वेतन ढांचे {0} कर्मचारी के लिए सक्रिय है {1}। अपनी स्थिति को 'निष्क्रिय' आगे बढ़ने के लिए करें। DocType: Purchase Invoice,Contact,संपर्क apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,से प्राप्त @@ -3340,11 +3348,11 @@ DocType: Item,Has Serial No,नहीं सीरियल गया है DocType: Employee,Date of Issue,जारी करने की तारीख apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: {0} के लिए {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},पंक्ति # {0}: आइटम के लिए सेट प्रदायक {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,मद {1} से जुड़ी वेबसाइट छवि {0} पाया नहीं जा सकता +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,मद {1} से जुड़ी वेबसाइट छवि {0} पाया नहीं जा सकता DocType: Issue,Content Type,सामग्री प्रकार apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,कंप्यूटर DocType: Item,List this Item in multiple groups on the website.,कई समूहों में वेबसाइट पर इस मद की सूची. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,अन्य मुद्रा के साथ खातों अनुमति देने के लिए बहु मुद्रा विकल्प की जाँच करें +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,अन्य मुद्रा के साथ खातों अनुमति देने के लिए बहु मुद्रा विकल्प की जाँच करें apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,आइटम: {0} सिस्टम में मौजूद नहीं है apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,आप स्थिर मूल्य निर्धारित करने के लिए अधिकृत नहीं हैं DocType: Payment Reconciliation,Get Unreconciled Entries,Unreconciled प्रविष्टियां प्राप्त करें @@ -3354,14 +3362,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,यह क DocType: Delivery Note,To Warehouse,गोदाम के लिए apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},खाते {0} अधिक वित्तीय वर्ष के लिए एक बार से अधिक दर्ज किया गया है {1} ,Average Commission Rate,औसत कमीशन दर -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,गैर स्टॉक आइटम के लिए क्रमांक 'हाँ' नहीं हो सकता +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,गैर स्टॉक आइटम के लिए क्रमांक 'हाँ' नहीं हो सकता apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,उपस्थिति भविष्य तारीखों के लिए चिह्नित नहीं किया जा सकता DocType: Pricing Rule,Pricing Rule Help,मूल्य निर्धारण नियम मदद DocType: Purchase Taxes and Charges,Account Head,लेखाशीर्ष apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,मदों की उतरा लागत की गणना करने के लिए अतिरिक्त लागत अद्यतन apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,विद्युत DocType: Stock Entry,Total Value Difference (Out - In),कुल मूल्य का अंतर (आउट - में) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,पंक्ति {0}: विनिमय दर अनिवार्य है +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,पंक्ति {0}: विनिमय दर अनिवार्य है apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},यूजर आईडी कर्मचारी के लिए सेट नहीं {0} DocType: Stock Entry,Default Source Warehouse,डिफ़ॉल्ट स्रोत वेअरहाउस DocType: Item,Customer Code,ग्राहक कोड @@ -3380,15 +3388,15 @@ DocType: Notification Control,Sales Invoice Message,बिक्री चाल apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,खाते {0} समापन प्रकार दायित्व / इक्विटी का होना चाहिए DocType: Authorization Rule,Based On,के आधार पर DocType: Sales Order Item,Ordered Qty,मात्रा का आदेश दिया -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,मद {0} अक्षम हो जाता है +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,मद {0} अक्षम हो जाता है DocType: Stock Settings,Stock Frozen Upto,स्टॉक तक जमे हुए apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},से और अवधि आवर्ती के लिए अनिवार्य तिथियाँ तक की अवधि के {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,परियोजना / कार्य कार्य. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,वेतन स्लिप्स उत्पन्न +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,वेतन स्लिप्स उत्पन्न apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","लागू करने के लिए के रूप में चुना जाता है तो खरीदना, जाँच की जानी चाहिए {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,सबसे कम से कम 100 होना चाहिए DocType: Purchase Invoice,Write Off Amount (Company Currency),राशि से लिखें (कंपनी मुद्रा) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,पंक्ति # {0}: पुनःक्रमित मात्रा सेट करें +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,पंक्ति # {0}: पुनःक्रमित मात्रा सेट करें DocType: Landed Cost Voucher,Landed Cost Voucher,उतरा लागत वाउचर apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},सेट करें {0} DocType: Purchase Invoice,Repeat on Day of Month,महीने का दिन पर दोहराएँ @@ -3441,7 +3449,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,प्रगति गोदाम में डिफ़ॉल्ट वर्क apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,लेखांकन लेनदेन के लिए डिफ़ॉल्ट सेटिंग्स . apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,उम्मीद की तारीख सामग्री अनुरोध तिथि से पहले नहीं हो सकता -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,आइटम {0} एक बिक्री आइटम होना चाहिए +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,आइटम {0} एक बिक्री आइटम होना चाहिए DocType: Naming Series,Update Series Number,अद्यतन सीरीज नंबर DocType: Account,Equity,इक्विटी DocType: Sales Order,Printing Details,मुद्रण विवरण @@ -3493,7 +3501,7 @@ DocType: Task,Review Date,तिथि की समीक्षा DocType: Purchase Invoice,Advance Payments,अग्रिम भुगतान DocType: Purchase Taxes and Charges,On Net Total,नेट कुल apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,पंक्ति में लक्ष्य गोदाम {0} के रूप में ही किया जाना चाहिए उत्पादन का आदेश -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,कोई अनुमति नहीं भुगतान उपकरण का उपयोग करने के लिए +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,कोई अनुमति नहीं भुगतान उपकरण का उपयोग करने के लिए apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,% की आवर्ती के लिए निर्दिष्ट नहीं 'सूचना ईमेल पते' apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,मुद्रा कुछ अन्य मुद्रा का उपयोग प्रविष्टियों करने के बाद बदला नहीं जा सकता DocType: Company,Round Off Account,खाता बंद दौर @@ -3516,7 +3524,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,वस्तु की मात्रा विनिर्माण / कच्चे माल की दी गई मात्रा से repacking के बाद प्राप्त DocType: Payment Reconciliation,Receivable / Payable Account,प्राप्य / देय खाता DocType: Delivery Note Item,Against Sales Order Item,बिक्री आदेश आइटम के खिलाफ -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},विशेषता के लिए विशेषता मान निर्दिष्ट करें {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},विशेषता के लिए विशेषता मान निर्दिष्ट करें {0} DocType: Item,Default Warehouse,डिफ़ॉल्ट गोदाम DocType: Task,Actual End Date (via Time Logs),वास्तविक अंत की तारीख (टाइम लॉग्स के माध्यम से) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},बजट समूह खाते के खिलाफ नहीं सौंपा जा सकता {0} @@ -3541,10 +3549,10 @@ DocType: Lead,Blog Subscriber,ब्लॉग सब्सक्राइबर apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,मूल्यों पर आधारित लेनदेन को प्रतिबंधित करने के नियम बनाएँ . DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","जाँच की, तो कुल नहीं. कार्य दिवस की छुट्टियों में शामिल होगा, और यह प्रति दिन वेतन का मूल्य कम हो जाएगा" DocType: Purchase Invoice,Total Advance,कुल अग्रिम -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,प्रसंस्करण पेरोल +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,प्रसंस्करण पेरोल DocType: Opportunity Item,Basic Rate,मूल दर DocType: GL Entry,Credit Amount,राशि क्रेडिट करें -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,खोया के रूप में सेट करें +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,खोया के रूप में सेट करें apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,भुगतान रसीद नोट DocType: Supplier,Credit Days Based On,क्रेडिट दिनों पर आधारित DocType: Tax Rule,Tax Rule,टैक्स नियम @@ -3574,7 +3582,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,स्वीकार किए apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} करता नहीं मौजूद है apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,बिलों ग्राहकों के लिए उठाया. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,परियोजना ईद -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},पंक्ति कोई {0}: राशि व्यय दावा {1} के खिलाफ राशि लंबित से अधिक नहीं हो सकता है। लंबित राशि है {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},पंक्ति कोई {0}: राशि व्यय दावा {1} के खिलाफ राशि लंबित से अधिक नहीं हो सकता है। लंबित राशि है {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} ग्राहक जोड़े DocType: Maintenance Schedule,Schedule,अनुसूची DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","इस लागत केंद्र के लिए बजट को परिभाषित करें। बजट कार्रवाई निर्धारित करने के लिए, देखने के लिए "कंपनी सूची"" @@ -3635,19 +3643,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,पीओएस प्रोफ़ाइल DocType: Payment Gateway Account,Payment URL Message,भुगतान यूआरएल संदेश apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","सेटिंग बजट, लक्ष्य आदि के लिए मौसम" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,पंक्ति {0}: भुगतान की गई राशि बकाया राशि से अधिक नहीं हो सकता है +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,पंक्ति {0}: भुगतान की गई राशि बकाया राशि से अधिक नहीं हो सकता है apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,अवैतनिक कुल -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,समय लॉग बिल नहीं है -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","{0} आइटम एक टेम्पलेट है, इसके वेरिएंट में से एक का चयन करें" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,समय लॉग बिल नहीं है +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","{0} आइटम एक टेम्पलेट है, इसके वेरिएंट में से एक का चयन करें" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,खरीदार apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,शुद्ध भुगतान नकारात्मक नहीं हो सकता -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,मैन्युअल रूप खिलाफ वाउचर दर्ज करें +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,मैन्युअल रूप खिलाफ वाउचर दर्ज करें DocType: SMS Settings,Static Parameters,स्टेटिक पैरामीटर DocType: Purchase Order,Advance Paid,अग्रिम भुगतान DocType: Item,Item Tax,आइटम टैक्स apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,प्रदायक के लिए सामग्री apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,आबकारी चालान DocType: Expense Claim,Employees Email Id,ईमेल आईडी कर्मचारी +DocType: Employee Attendance Tool,Marked Attendance,उल्लेखनीय उपस्थिति apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,वर्तमान देयताएं apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,अपने संपर्कों के लिए बड़े पैमाने पर एसएमएस भेजें DocType: Purchase Taxes and Charges,Consider Tax or Charge for,टैक्स या प्रभार के लिए पर विचार @@ -3670,7 +3679,7 @@ DocType: Item Attribute,Numeric Values,संख्यात्मक मान apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,लोगो अटैच DocType: Customer,Commission Rate,आयोग दर apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,संस्करण बनाओ -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,विभाग द्वारा आवेदन छोड़ मै. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,विभाग द्वारा आवेदन छोड़ मै. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,कार्ट खाली है DocType: Production Order,Actual Operating Cost,वास्तविक ऑपरेटिंग कॉस्ट apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,रूट संपादित नहीं किया जा सकता है . @@ -3689,7 +3698,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,मात्रा इस स्तर से नीचे गिरता है तो स्वतः सामग्री अनुरोध बनाने ,Item-wise Purchase Register,आइटम के लिहाज से खरीद पंजीकृत करें DocType: Batch,Expiry Date,समाप्ति दिनांक -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","पुनःक्रमित स्तर सेट करने के लिए, आइटम एक क्रय मद या विनिर्माण आइटम होना चाहिए" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","पुनःक्रमित स्तर सेट करने के लिए, आइटम एक क्रय मद या विनिर्माण आइटम होना चाहिए" ,Supplier Addresses and Contacts,प्रदायक पते और संपर्क apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,प्रथम श्रेणी का चयन करें apps/erpnext/erpnext/config/projects.py +18,Project master.,मास्टर परियोजना. diff --git a/erpnext/translations/hr.csv b/erpnext/translations/hr.csv index b8bb5eff4f..3be56682d4 100644 --- a/erpnext/translations/hr.csv +++ b/erpnext/translations/hr.csv @@ -164,14 +164,14 @@ DocType: Journal Entry Account,Credit in Company Currency,Kredit u trgovačkim d DocType: Delivery Note,Installation Status,Status instalacije apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Količina prihvaćeno + odbijeno mora biti jednaka zaprimljenoj količini proizvoda {0} DocType: Item,Supply Raw Materials for Purchase,Nabava sirovine za kupnju -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Stavka {0} mora bitikupnja artikla +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Stavka {0} mora bitikupnja artikla DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Preuzmite predložak, ispunite odgovarajuće podatke i priložiti izmijenjene datoteke. Sve datume i zaposlenika kombinacija u odabranom razdoblju doći će u predlošku s postojećim pohađanje evidencije" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,Proizvod {0} nije aktivan ili nije došao do kraja roka valjanosti DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Hoće li se obnavljaju nakon prodaje fakture je Prijavljen. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","To uključuje porez u redu {0} u stopu točke , porezi u redovima {1} također moraju biti uključeni" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Postavke za HR modula +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","To uključuje porez u redu {0} u stopu točke , porezi u redovima {1} također moraju biti uključeni" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Postavke za HR modula DocType: SMS Center,SMS Center,SMS centar DocType: BOM Replace Tool,New BOM,Novi BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Batch Vrijeme Trupci za naplatu. @@ -199,7 +199,7 @@ DocType: Offer Letter,Select Terms and Conditions,Odaberite Uvjeti DocType: Production Planning Tool,Sales Orders,Narudžbe kupca DocType: Purchase Taxes and Charges,Valuation,Procjena ,Purchase Order Trends,Trendovi narudžbenica kupnje -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Dodjela lišće za godinu dana. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Dodjela lišće za godinu dana. DocType: Earning Type,Earning Type,Zarada Vid DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Onemogući planiranje kapaciteta i vremena za praćenje DocType: Bank Reconciliation,Bank Account,Žiro račun @@ -237,7 +237,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Specifikacija web stranice proizvoda DocType: Payment Tool,Reference No,Referentni broj apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Neodobreno odsustvo -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Proizvod {0} je dosegao svoj rok trajanja na {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Proizvod {0} je dosegao svoj rok trajanja na {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,godišnji DocType: Stock Reconciliation Item,Stock Reconciliation Item,Stock pomirenje točka DocType: Stock Entry,Sales Invoice No,Prodajni račun br @@ -249,7 +249,7 @@ DocType: Item,Minimum Order Qty,Minimalna količina narudžbe DocType: Pricing Rule,Supplier Type,Dobavljač Tip DocType: Item,Publish in Hub,Objavi na Hub ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Proizvod {0} je otkazan +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Proizvod {0} je otkazan apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Zahtjev za robom DocType: Bank Reconciliation,Update Clearance Date,Ažurirajte provjeri datum DocType: Item,Purchase Details,Kupnja Detalji @@ -261,11 +261,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Odbijen Količina DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Polje dostupan u otpremnicu, ponudu, prodaje fakture, prodaja reda" DocType: SMS Settings,SMS Sender Name,SMS Sender Ime DocType: Contact,Is Primary Contact,Je primarni kontakt +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Time se Prijava je skupljena za fakturiranje DocType: Notification Control,Notification Control,Obavijest kontrole DocType: Lead,Suggestions,Prijedlozi DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Postavite proračun za grupu proizvoda na ovom području. Također možete uključiti sezonalnost postavljanjem distribucije. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},Unesite nadređenu skupinu računa za skladište {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Plaćanje protiv {0} {1} ne može biti veća od preostali iznos {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Plaćanje protiv {0} {1} ne može biti veća od preostali iznos {2} DocType: Supplier,Address HTML,Adressa u HTML-u DocType: Lead,Mobile No.,Mobitel br. DocType: Maintenance Schedule,Generate Schedule,Generiranje Raspored @@ -282,7 +283,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Sinkronizirati s Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Pogrešna Lozinka DocType: Item,Variant Of,Varijanta -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Stavka {0} mora biti usluga Stavka apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',Završen Qty ne može biti veći od 'Kol proizvoditi' DocType: Period Closing Voucher,Closing Account Head,Zatvaranje računa šefa DocType: Employee,External Work History,Vanjski Povijest Posao @@ -294,10 +294,10 @@ DocType: Newsletter,Newsletter,Bilten DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Obavijest putem maila prilikom stvaranja automatskog Zahtjeva za robom DocType: Journal Entry,Multi Currency,Više valuta DocType: Payment Reconciliation Invoice,Invoice Type,Tip fakture -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Otpremnica +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Otpremnica apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Postavljanje Porezi apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,Ulazak Plaćanje je izmijenjen nakon što ga je izvukao. Ponovno izvucite ga. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} dva puta ušao u točki poreza +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} dva puta ušao u točki poreza apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Sažetak za ovaj tjedan i tijeku aktivnosti DocType: Workstation,Rent Cost,Rent cost apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Molimo odaberite mjesec i godinu @@ -308,7 +308,7 @@ DocType: Shipping Rule,Valid for Countries,Vrijedi za zemlje DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Sva ulazna srodna polja poput valute, stopa konverzije, ukupni uvoz, sveukupni uvoz su dostupni u računu kupnje, ponudi dobavljača, prilikom kupnje proizvoda, narudžbenice i sl." apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"Ova točka je predložak i ne može se koristiti u prometu. Atributi artikl će biti kopirana u varijanti osim 'Ne Copy ""je postavljena" apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Ukupno Naručite Smatra -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Oznaka zaposlenika ( npr. CEO , direktor i sl. ) ." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Oznaka zaposlenika ( npr. CEO , direktor i sl. ) ." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,Unesite ' ponovite na dan u mjesecu ' na terenu vrijednosti DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,Stopa po kojoj Kupac valuta se pretvaraju u kupca osnovne valute DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Dostupno u sastavnicama, otpremnicama, računu kupnje, nalogu za proizvodnju, narudžbi kupnje, primci, prodajnom računu, narudžbi kupca, ulaznog naloga i kontrolnoj kartici" @@ -357,7 +357,7 @@ DocType: Workstation,Consumable Cost,potrošni cost apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',"{0} ({1}) mora imati ulogu ""Odobritelj odsustva '" DocType: Purchase Receipt,Vehicle Date,Datum vozila apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Liječnički -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Razlog gubitka +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Razlog gubitka apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Radna stanica je zatvorena na sljedeće datume po Holiday Popis: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Mogućnosti DocType: Employee,Single,Singl @@ -385,14 +385,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Channel Partner DocType: Account,Old Parent,Stari Roditelj DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,Prilagodite uvodni tekst koji ide kao dio tog e-maila. Svaka transakcija ima zaseban uvodni tekst. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Ne uključuje simbole (npr. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Prodaja Master Manager apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Globalne postavke za sve proizvodne procese. DocType: Accounts Settings,Accounts Frozen Upto,Računi Frozen Upto DocType: SMS Log,Sent On,Poslan Na -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Osobina {0} izabrani više puta u Svojstva tablice +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Osobina {0} izabrani više puta u Svojstva tablice DocType: HR Settings,Employee record is created using selected field. ,Zaposlenika rekord je stvorio pomoću odabranog polja. DocType: Sales Order,Not Applicable,Nije primjenjivo -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Majstor za odmor . +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Majstor za odmor . DocType: Material Request Item,Required Date,Potrebna Datum DocType: Delivery Note,Billing Address,Adresa za naplatu apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,Unesite kod artikal . @@ -428,7 +429,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,Unesite skladište za koje Materijal Zahtjev će biti podignuta DocType: Production Order,Additional Operating Cost,Dodatni trošak apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,kozmetika -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Spojiti , ova svojstva moraju biti isti za obje stavke" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Spojiti , ova svojstva moraju biti isti za obje stavke" DocType: Shipping Rule,Net Weight,Neto težina DocType: Employee,Emergency Phone,Telefon hitne službe ,Serial No Warranty Expiry,Istek jamstva serijskog broja @@ -484,17 +485,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Naplate i isporuke status apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Ponoviti kupaca DocType: Leave Control Panel,Allocate,Dodijeliti -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Povrat robe +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Povrat robe DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Odaberite narudžbe iz kojih želite stvoriti radne naloge. DocType: Item,Delivered by Supplier (Drop Ship),Dostavlja Dobavljač (Drop Ship) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Komponente plaće +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Komponente plaće apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Baza potencijalnih kupaca. DocType: Authorization Rule,Customer or Item,Kupac ili predmeta apps/erpnext/erpnext/config/crm.py +17,Customer database.,Baza kupaca. DocType: Quotation,Quotation To,Ponuda za DocType: Lead,Middle Income,Srednji Prihodi apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Otvaranje ( Cr ) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Zadana mjerna jedinica za točke {0} se ne može mijenjati izravno, jer ste već napravili neke transakcije (e) s drugim UOM. Morat ćete stvoriti novu stavku za korištenje drugačiji Default UOM." +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Zadana mjerna jedinica za točke {0} se ne može mijenjati izravno, jer ste već napravili neke transakcije (e) s drugim UOM. Morat ćete stvoriti novu stavku za korištenje drugačiji Default UOM." apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Dodijeljeni iznos ne može biti negativan DocType: Purchase Order Item,Billed Amt,Naplaćeno Amt DocType: Warehouse,A logical Warehouse against which stock entries are made.,Logično Skladište protiv kojih su dionice unosi se. @@ -513,14 +514,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Prodaja Porezi i naknade DocType: Employee,Organization Profile,Profil organizacije apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,Molimo postava numeriranje serija za sudjelovanje putem Podešavanje> numeriranja serije DocType: Employee,Reason for Resignation,Razlog za ostavku -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Predložak za ocjene rada . +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Predložak za ocjene rada . DocType: Payment Reconciliation,Invoice/Journal Entry Details,Račun / Temeljnica Detalji apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' nije u fiskalnoj godini {2} DocType: Buying Settings,Settings for Buying Module,Postavke za kupnju modula apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,Unesite prvo primku DocType: Buying Settings,Supplier Naming By,Dobavljač nazivanje DocType: Activity Type,Default Costing Rate,Zadana Obračun troškova stopa -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Raspored održavanja +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Raspored održavanja apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Cjenovna pravila filtriraju se na temelju kupca, grupe kupaca, regije, dobavljača, proizvođača, kampanje, prodajnog partnera i sl." apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Neto promjena u inventar DocType: Employee,Passport Number,Broj putovnice @@ -559,7 +560,7 @@ DocType: Purchase Invoice,Quarterly,Tromjesečni DocType: Selling Settings,Delivery Note Required,Potrebna je otpremnica DocType: Sales Order Item,Basic Rate (Company Currency),Osnovna stopa (valuta tvrtke) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Jedinice za pranje sirovine na temelju -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,Unesite Detalji +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,Unesite Detalji DocType: Purchase Receipt,Other Details,Ostali detalji DocType: Account,Accounts,Računi apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Marketing @@ -572,7 +573,7 @@ DocType: Employee,Provide email id registered in company,Osigurati e id registri DocType: Hub Settings,Seller City,Prodavač Grad DocType: Email Digest,Next email will be sent on:,Sljedeći email će biti poslan na: DocType: Offer Letter Term,Offer Letter Term,Ponuda pismo Pojam -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Stavka ima varijante. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Stavka ima varijante. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Stavka {0} nije pronađena DocType: Bin,Stock Value,Stock vrijednost apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Tree Type @@ -580,7 +581,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Količina potrošena po jedini DocType: Serial No,Warranty Expiry Date,Datum isteka jamstva DocType: Material Request Item,Quantity and Warehouse,Količina i skladišta DocType: Sales Invoice,Commission Rate (%),Komisija stopa (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Protiv bon Tip mora biti jedan od prodajni nalog, prodaja Račun ili Temeljnica" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Protiv bon Tip mora biti jedan od prodajni nalog, prodaja Račun ili Temeljnica" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Zračno-kosmički prostor DocType: Journal Entry,Credit Card Entry,Credit Card Stupanje apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Zadatak Tema @@ -667,10 +668,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Odgovornost apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Kažnjeni Iznos ne može biti veći od Zahtjeva Iznos u nizu {0}. DocType: Company,Default Cost of Goods Sold Account,Zadana vrijednost prodane robe računa -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Popis Cijena ne bira +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Popis Cijena ne bira DocType: Employee,Family Background,Obitelj Pozadina DocType: Process Payroll,Send Email,Pošaljite e-poštu -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Upozorenje: Invalid Prilog {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Upozorenje: Invalid Prilog {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Nemate dopuštenje DocType: Company,Default Bank Account,Zadani bankovni račun apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Za filtriranje se temelji na stranke, odaberite stranka Upišite prvi" @@ -698,7 +699,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Upiti DocType: Features Setup,"To enable ""Point of Sale"" features",Da biste omogućili "prodajno mjesto" značajke DocType: Bin,Moving Average Rate,Stopa prosječne ponderirane cijene DocType: Production Planning Tool,Select Items,Odaberite proizvode -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} u odnosu na račun {1} s datumom {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} u odnosu na račun {1} s datumom {2} DocType: Maintenance Visit,Completion Status,Završetak Status DocType: Sales Invoice Item,Target Warehouse,Ciljana galerija DocType: Item,Allow over delivery or receipt upto this percent,Dopustite preko isporuka ili primitak upto ovim posto @@ -758,7 +759,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Majs apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Nije moguće pronaći termin u narednih {0} dana za rad {1} DocType: Production Order,Plan material for sub-assemblies,Plan materijal za pod-sklopova apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} mora biti aktivna -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,Molimo odaberite vrstu dokumenta prvi +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Molimo odaberite vrstu dokumenta prvi apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Idi košarica apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Odustani Posjeta materijala {0} prije otkazivanja ovog održavanja pohod DocType: Salary Slip,Leave Encashment Amount,Iznos naplaćenog odsustva @@ -776,7 +777,7 @@ DocType: Purchase Receipt,Range,Domet DocType: Supplier,Default Payable Accounts,Zadane naplativo račune apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Zaposlenik {0} nije aktivan ili ne postoji DocType: Features Setup,Item Barcode,Barkod proizvoda -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Stavka Varijante {0} ažurirani +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Stavka Varijante {0} ažurirani DocType: Quality Inspection Reading,Reading 6,Čitanje 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Kupnja fakture Predujam DocType: Address,Shop,Dućan @@ -799,7 +800,7 @@ DocType: Salary Slip,Total in words,Ukupno je u riječima DocType: Material Request Item,Lead Time Date,Potencijalni kupac - datum apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,je obavezno. Možda Mjenjačnica zapis nije stvoren za apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Row # {0}: Navedite rednim brojem predmeta za {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Za 'proizvod Bundle' predmeta, skladište, rednim i hrpa Ne smatrat će se iz "Popis pakiranja 'stol. Ako Skladište i serije ne su isti za sve pakiranje predmeta za bilo 'proizvod Bundle' točke, te vrijednosti može se unijeti u glavnoj točki stol, vrijednosti će se kopirati u 'pakiranje popis' stol." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Za 'proizvod Bundle' predmeta, skladište, rednim i hrpa Ne smatrat će se iz "Popis pakiranja 'stol. Ako Skladište i serije ne su isti za sve pakiranje predmeta za bilo 'proizvod Bundle' točke, te vrijednosti može se unijeti u glavnoj točki stol, vrijednosti će se kopirati u 'pakiranje popis' stol." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Isporuke kupcima. DocType: Purchase Invoice Item,Purchase Order Item,Narudžbenica predmet apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Neizravni dohodak @@ -820,6 +821,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Odaberite Platne godina i apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Idi na odgovarajućoj skupini (obično Application fondova> kratkotrajne imovine> bankovne račune i stvoriti novi račun (klikom na Dodaj dijete) tipa "Banka" DocType: Workstation,Electricity Cost,Troškovi struje DocType: HR Settings,Don't send Employee Birthday Reminders,Ne šaljite podsjetnik za rođendan zaposlenika +,Employee Holiday Attendance,Zaposlenik odmor posjećenost DocType: Opportunity,Walk In,Šetnja u apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Stock tekstova DocType: Item,Inspection Criteria,Inspekcijski Kriteriji @@ -842,7 +844,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,B DocType: Journal Entry Account,Expense Claim,Rashodi polaganja apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Količina za {0} DocType: Leave Application,Leave Application,Zahtjev za odsustvom -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Alat za raspodjelu odsustva +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Alat za raspodjelu odsustva DocType: Leave Block List,Leave Block List Dates,Datumi popisa neodobrenih odsustava DocType: Company,If Monthly Budget Exceeded (for expense account),Ako Mjesečni proračun Prebačen (za reprezentaciju) DocType: Workstation,Net Hour Rate,Neto sat cijena @@ -852,7 +854,7 @@ DocType: Packing Slip Item,Packing Slip Item,Odreskom predmet DocType: POS Profile,Cash/Bank Account,Novac / bankovni račun apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Uklonjene stvari bez promjena u količini ili vrijednosti. DocType: Delivery Note,Delivery To,Dostava za -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Osobina stol je obavezno +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Osobina stol je obavezno DocType: Production Planning Tool,Get Sales Orders,Kreiraj narudžbe apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} ne može biti negativna apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Popust @@ -916,7 +918,7 @@ DocType: SMS Center,Total Characters,Ukupno Likovi apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},Odaberite BOM u BOM polje za točku {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-obrazac detalj računa DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Pomirenje Plaćanje fakture -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Doprinos% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Doprinos% DocType: Item,website page link,Poveznica web stranice DocType: Company,Company registration numbers for your reference. Tax numbers etc.,Tvrtka registracijski brojevi za svoju referencu. Porezni brojevi itd. DocType: Sales Partner,Distributor,Distributer @@ -958,10 +960,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM konverzijski faktor DocType: Stock Settings,Default Item Group,Zadana grupa proizvoda apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Dobavljač baza podataka. DocType: Account,Balance Sheet,Završni račun -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Troška za stavku s šifra ' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Troška za stavku s šifra ' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,Prodavač će dobiti podsjetnik na taj datum kako bi pravovremeno kontaktirao kupca apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Daljnje računi mogu biti u skupinama, ali unose se može podnijeti protiv nesrpskog Groups" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Porez i drugih isplata plaća. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Porez i drugih isplata plaća. DocType: Lead,Lead,Potencijalni kupac DocType: Email Digest,Payables,Plativ DocType: Account,Warehouse,Skladište @@ -978,10 +980,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Nesaglašen Detalji DocType: Global Defaults,Current Fiscal Year,Tekuće fiskalne godine DocType: Global Defaults,Disable Rounded Total,Ugasiti zaokruženi iznos DocType: Lead,Call,Poziv -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'Ulazi' ne može biti prazno +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'Ulazi' ne može biti prazno apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Dupli red {0} sa istim {1} ,Trial Balance,Pretresno bilanca -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Postavljanje zaposlenika +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Postavljanje zaposlenika apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","Grid """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,Odaberite prefiks prvi apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,istraživanje @@ -990,7 +992,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,Korisnički ID apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Pogledaj Ledger apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Najstarije -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Stavka Grupa postoji s istim imenom , molimo promijenite ime stavku ili preimenovati stavku grupe" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Stavka Grupa postoji s istim imenom , molimo promijenite ime stavku ili preimenovati stavku grupe" DocType: Production Order,Manufacture against Sales Order,Proizvodnja protiv prodaje Reda apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Ostatak svijeta apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,Stavka {0} ne može imati Hrpa @@ -1015,7 +1017,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Odbijen galerija DocType: GL Entry,Against Voucher,Protiv Voucheru DocType: Item,Default Buying Cost Center,Zadani trošak kupnje apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Da biste dobili najbolje iz ERPNext, preporučamo da odvojite malo vremena i gledati te pomoći videa." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Stavka {0} mora biti Prodaja artikla +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Stavka {0} mora biti Prodaja artikla apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,za DocType: Item,Lead Time in days,Olovo Vrijeme u danima ,Accounts Payable Summary,Obveze Sažetak @@ -1041,7 +1043,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Poljoprivreda apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Vaši proizvodi ili usluge DocType: Mode of Payment,Mode of Payment,Način plaćanja -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Web slika bi trebala biti javna datoteke ili URL web stranice +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Web slika bi trebala biti javna datoteke ili URL web stranice apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,To jekorijen stavka grupa i ne može se mijenjati . DocType: Journal Entry Account,Purchase Order,Narudžbenica DocType: Warehouse,Warehouse Contact Info,Kontakt informacije skladišta @@ -1052,7 +1054,7 @@ DocType: Serial No,Serial No Details,Serijski nema podataka DocType: Purchase Invoice Item,Item Tax Rate,Porezna stopa proizvoda apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","Za {0}, samo kreditne računi se mogu povezati protiv drugog ulaska debitnom" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Otpremnica {0} nije potvrđena -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Stavka {0} mora bitisklopljen ugovor artikla +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Stavka {0} mora bitisklopljen ugovor artikla apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Kapitalni oprema apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Cijene Pravilo prvo se bira na temelju 'Nanesite na' terenu, koji može biti točka, točka Grupa ili Brand." DocType: Hub Settings,Seller Website,Web Prodavač @@ -1061,7 +1063,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Cilj DocType: Sales Invoice Item,Edit Description,Uredi Opis apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Očekivani isporuke Datum manji od planiranog početka Datum. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,za Supplier +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,za Supplier DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Postavljanje Vrsta računa pomaže u odabiru ovaj račun u prometu. DocType: Purchase Invoice,Grand Total (Company Currency),Sveukupno (valuta tvrtke) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Ukupno odlazni @@ -1113,7 +1115,6 @@ DocType: Authorization Rule,Average Discount,Prosječni popust DocType: Address,Utilities,Komunalne usluge DocType: Purchase Invoice Item,Accounting,Knjigovodstvo DocType: Features Setup,Features Setup,Značajke postavki -DocType: Item,Is Service Item,Je usluga apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Razdoblje prijava ne može biti izvan dopusta raspodjele DocType: Activity Cost,Projects,Projekti apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,Odaberite Fiskalna godina @@ -1134,7 +1135,7 @@ DocType: Item,Maintain Stock,Upravljanje zalihama apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Stock Prijave su već stvorene za proizvodnju reda apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Neto promjena u dugotrajne imovine DocType: Leave Control Panel,Leave blank if considered for all designations,Ostavite prazno ako se odnosi na sve oznake -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Punjenje tipa ' Stvarni ' u redu {0} ne mogu biti uključeni u točki Rate +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Punjenje tipa ' Stvarni ' u redu {0} ne mogu biti uključeni u točki Rate apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Maksimalno: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Od datetime DocType: Email Digest,For Company,Za tvrtke @@ -1143,8 +1144,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Dostava Adresa Ime apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Kontnog DocType: Material Request,Terms and Conditions Content,Uvjeti sadržaj -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,ne može biti veće od 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Proizvod {0} nije skladišni proizvod +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,ne može biti veće od 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Proizvod {0} nije skladišni proizvod DocType: Maintenance Visit,Unscheduled,Neplanski DocType: Employee,Owned,U vlasništvu DocType: Salary Slip Deduction,Depends on Leave Without Pay,Ovisi o ostaviti bez platiti @@ -1166,7 +1167,7 @@ Used for Taxes and Charges","Porezna detalj Tablica preuzeta iz točke majstora apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Zaposlenik se ne može prijaviti na sebe. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Ako je račun zamrznut , unosi dopušteno ograničene korisnike ." DocType: Email Digest,Bank Balance,Bankovni saldo -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Računovodstvo Ulaz za {0}: {1} može biti samo u valuti: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Računovodstvo Ulaz za {0}: {1} može biti samo u valuti: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Ne aktivna Struktura plaća pronađenih zaposlenika {0} i mjesec DocType: Job Opening,"Job profile, qualifications required etc.","Profil posla, tražene kvalifikacije i sl." DocType: Journal Entry Account,Account Balance,Bilanca računa @@ -1183,7 +1184,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,pod skupštin DocType: Shipping Rule Condition,To Value,Za vrijednost DocType: Supplier,Stock Manager,Stock Manager apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Izvor skladište je obvezno za redom {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Odreskom +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Odreskom apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Najam ureda apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Postavke SMS pristupnika apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Uvoz nije uspio ! @@ -1227,7 +1228,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM detalji - broj DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Dodatni popust Iznos (valuta Društvo) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Pogreška : {0} > {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,Molimo stvoriti novi račun iz kontnog plana . -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Održavanje Posjetite +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Održavanje Posjetite apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Kupac> Grupa kupaca> Regija DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Dostupno Batch Količina na skladištu DocType: Time Log Batch Detail,Time Log Batch Detail,Vrijeme Log Batch Detalj @@ -1236,7 +1237,7 @@ DocType: Leave Block List,Block Holidays on important days.,Blok Odmor na važni ,Accounts Receivable Summary,Potraživanja Sažetak apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,Molimo postavite korisnički ID polje u zapisu zaposlenika za postavljanje uloga zaposlenika DocType: UOM,UOM Name,UOM Ime -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Doprinos iznos +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Doprinos iznos DocType: Sales Invoice,Shipping Address,Dostava Adresa DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,Ovaj alat pomaže vam da ažurirate ili popraviti količinu i vrijednost zaliha u sustavu. To se obično koristi za sinkronizaciju vrijednosti sustava i što se zapravo postoji u svojim skladištima. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,Riječima će biti vidljivo nakon što spremite otpremnicu. @@ -1277,7 +1278,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Za praćenje stavki pomoću barkod. Vi ćete biti u mogućnosti da unesete stavke u otpremnici i prodaje Računa skeniranjem barkod stavke. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Ponovno slanje plaćanja Email DocType: Dependent Task,Dependent Task,Ovisno zadatak -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Faktor pretvorbe za zadani jedinica mjere mora biti jedan u nizu {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Faktor pretvorbe za zadani jedinica mjere mora biti jedan u nizu {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Odsustvo tipa {0} ne može biti duže od {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Pokušajte planirati poslovanje za X dana unaprijed. DocType: HR Settings,Stop Birthday Reminders,Zaustavi Rođendan Podsjetnici @@ -1287,7 +1288,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Pogledaj apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Neto promjena u gotovini DocType: Salary Structure Deduction,Salary Structure Deduction,Plaća Struktura Odbitak -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Jedinica mjere {0} je ušao više od jednom u konverzije Factor tablici +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Jedinica mjere {0} je ušao više od jednom u konverzije Factor tablici apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Zahtjev za plaćanje već postoji {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Trošak izdanih stavki apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Količina ne smije biti veća od {0} @@ -1316,7 +1317,7 @@ DocType: BOM Item,BOM Item,BOM proizvod DocType: Appraisal,For Employee,Za zaposlenom apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Red {0}: Advance protiv Dobavljač mora teretiti DocType: Company,Default Values,Zadane vrijednosti -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Red {0}: Iznos uplate ne može biti negativna +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Red {0}: Iznos uplate ne može biti negativna DocType: Expense Claim,Total Amount Reimbursed,Ukupno Iznos nadoknađeni apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Protiv dobavljača Račun {0} datira {1} DocType: Customer,Default Price List,Zadani cjenik @@ -1344,8 +1345,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Jam DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Zamijenite određenu BOM u svim ostalim sastavnicama gdje se koriste. Ona će zamijeniti staru BOM vezu, ažurirati cijene i regenerirati ""BOM Eksplozija stavku"" stol kao i po novom sastavnice" DocType: Shopping Cart Settings,Enable Shopping Cart,Omogućite Košarica DocType: Employee,Permanent Address,Stalna adresa -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Stavka {0} mora bitiusluga artikla . -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Unaprijed plaćeni od {0} {1} ne može biti veća \ nego SVEUKUPNO {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Odaberite Šifra DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Smanjite odbitak za ostaviti bez plaća (lwp) @@ -1401,12 +1401,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Glavni apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Varijanta DocType: Naming Series,Set prefix for numbering series on your transactions,Postavite prefiks za numeriranje niza na svoje transakcije +DocType: Employee Attendance Tool,Employees HTML,Zaposlenici HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Zaustavljen nalog ne može prekinuti. Otpušiti otkazati . -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Zadana BOM ({0}) mora biti aktivan za tu stavku ili njegov predložak +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Zadana BOM ({0}) mora biti aktivan za tu stavku ili njegov predložak DocType: Employee,Leave Encashed?,Odsustvo naplaćeno? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Prilika Od polje je obavezno DocType: Item,Variants,Varijante -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Napravi narudžbu kupnje +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Napravi narudžbu kupnje DocType: SMS Center,Send To,Pošalji apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Nema dovoljno ravnotežu dopust za dozvolu tipa {0} DocType: Payment Reconciliation Payment,Allocated amount,Dodijeljeni iznos @@ -1507,7 +1508,7 @@ DocType: Sales Person,Name and Employee ID,Ime i ID zaposlenika apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,Datum dospijeća ne može biti prije datuma objavljivanja DocType: Website Item Group,Website Item Group,Grupa proizvoda web stranice apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Carine i porezi -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,Unesite Referentni datum +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,Unesite Referentni datum apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Payment Gateway račun nije konfiguriran apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} unosa plaćanja ne može se filtrirati po {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,Tablica za proizvode koji će biti prikazani na web stranici @@ -1528,7 +1529,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Rezolucija o Brodu DocType: Quality Inspection Reading,Acceptance Criteria,Kriterij prihvaćanja DocType: Item Attribute,Attribute Name,Ime atributa -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Stavka {0} mora biti Prodaja ili usluga artikla u {1} DocType: Item Group,Show In Website,Pokaži na web stranici apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Grupa DocType: Task,Expected Time (in hours),Očekivani vrijeme (u satima) @@ -1560,7 +1560,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Dostava Iznos ,Pending Amount,Iznos na čekanju DocType: Purchase Invoice Item,Conversion Factor,Konverzijski faktor DocType: Purchase Order,Delivered,Isporučeno -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Postavke dolaznog servera za e-mail (npr. jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Postavke dolaznog servera za e-mail (npr. jobs@example.com) DocType: Purchase Receipt,Vehicle Number,Broj vozila DocType: Purchase Invoice,The date on which recurring invoice will be stop,Datum na koji se ponavlja faktura će se zaustaviti apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Ukupno dodijeljeni lišće {0} ne može biti manja od već odobrenih lišća {1} za razdoblje @@ -1577,7 +1577,7 @@ DocType: HR Settings,HR Settings,HR postavke apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Rashodi Tužba se čeka odobrenje . SamoRashodi Odobritelj može ažurirati status . DocType: Purchase Invoice,Additional Discount Amount,Dodatni popust Iznos DocType: Leave Block List Allow,Leave Block List Allow,Odobrenje popisa neodobrenih odsustava -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abbr ne može biti prazno ili prostora +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abbr ne može biti prazno ili prostora apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Grupa ne-Group apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,sportovi apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Ukupno Stvarni @@ -1601,7 +1601,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},Faktor UOM pretvorbe je potrebno u redu {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Datum rasprodaja ne može biti prije datuma check u redu {0} DocType: Salary Slip,Deduction,Odbitak -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Stavka Cijena dodani za {0} u Cjeniku {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Stavka Cijena dodani za {0} u Cjeniku {1} DocType: Address Template,Address Template,Predložak adrese apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,Unesite ID zaposlenika ove prodaje osobi DocType: Territory,Classification of Customers by region,Klasifikacija korisnika po regiji @@ -1618,7 +1618,7 @@ DocType: Employee,Date of Birth,Datum rođenja apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Proizvod {0} je već vraćen DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,**Fiskalna godina** predstavlja poslovnu godinu. Svi računovodstvene stavke i druge glavne transakcije su praćene od **Fiskalne godine**. DocType: Opportunity,Customer / Lead Address,Kupac / Olovo Adresa -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Upozorenje: Invalid SSL potvrda o vezanosti {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Upozorenje: Invalid SSL potvrda o vezanosti {0} DocType: Production Order Operation,Actual Operation Time,Stvarni Operacija vrijeme DocType: Authorization Rule,Applicable To (User),Odnosi se na (Upute) DocType: Purchase Taxes and Charges,Deduct,Odbiti @@ -1635,7 +1635,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Split otpremnici u paketima. apps/erpnext/erpnext/hooks.py +69,Shipments,Pošiljke DocType: Purchase Order Item,To be delivered to customer,Da biste se dostaviti kupcu -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Vrijeme Log Status moraju biti dostavljeni. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Vrijeme Log Status moraju biti dostavljeni. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,Serijski broj {0} ne pripada bilo Skladište apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Red # DocType: Purchase Invoice,In Words (Company Currency),Riječima (valuta tvrtke) @@ -1652,7 +1652,7 @@ DocType: Leave Application,Total Leave Days,Ukupno Ostavite Dani DocType: Email Digest,Note: Email will not be sent to disabled users,Napomena: E-mail neće biti poslan nepostojećim korisnicima apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Odaberite tvrtku ... DocType: Leave Control Panel,Leave blank if considered for all departments,Ostavite prazno ako se odnosi na sve odjele -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Vrste zapošljavanja ( trajni ugovor , pripravnik i sl. ) ." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Vrste zapošljavanja ( trajni ugovor , pripravnik i sl. ) ." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} je obavezno za točku {1} DocType: Currency Exchange,From Currency,Od novca apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Odaberite Dodijeljeni iznos, Vrsta računa i broj računa u atleast jednom redu" @@ -1671,7 +1671,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,U procesu DocType: Authorization Rule,Itemwise Discount,Itemwise popust DocType: Purchase Order Item,Reference Document Type,Referentna Tip dokumenta -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} protiv prodajni nalog {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} protiv prodajni nalog {1} DocType: Account,Fixed Asset,Dugotrajna imovina apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Serijaliziranom Inventar DocType: Activity Type,Default Billing Rate,Zadana naplate stopa @@ -1681,7 +1681,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Prodajnog naloga za plaćanje DocType: Expense Claim Detail,Expense Claim Detail,Rashodi Zahtjev Detalj apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Vrijeme Evidencije stvorio: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,Molimo odaberite ispravnu račun +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,Molimo odaberite ispravnu račun DocType: Item,Weight UOM,Težina UOM DocType: Employee,Blood Group,Krvna grupa DocType: Purchase Invoice Item,Page Break,Prijelom stranice @@ -1716,7 +1716,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM rekurzija : {0} ne može biti roditelj ili dijete od {2} DocType: Production Order Operation,Completed Qty,Završen Kol apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","Za {0}, samo debitne računi se mogu povezati protiv druge kreditne stupanja" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Cjenik {0} je onemogućen +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Cjenik {0} je onemogućen DocType: Manufacturing Settings,Allow Overtime,Dopusti Prekovremeni apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} serijski brojevi potrebni za Artikl {1}. Ti su dali {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Trenutno Vrednovanje Ocijenite @@ -1767,7 +1767,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Nema apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Slučaj broj ne može biti 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,Ako imate prodajnog tima i prodaja partnerima (partneri) mogu biti označene i održavati svoj doprinos u prodajne aktivnosti DocType: Item,Show a slideshow at the top of the page,Prikaži slideshow na vrhu stranice -DocType: Item,"Allow in Sales Order of type ""Service""",Dopusti u prodajni nalog tipa "usluge" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,prodavaonice DocType: Time Log,Projects Manager,Projekti Manager DocType: Serial No,Delivery Time,Vrijeme isporuke @@ -1782,6 +1781,7 @@ DocType: Rename Tool,Rename Tool,Preimenovanje apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Update cost DocType: Item Reorder,Item Reorder,Ponovna narudžba proizvoda apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Prijenos materijala +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Stavka {0} mora biti Prodaja predmeta u {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Navedite operacija, operativni troškovi i dati jedinstven radom najkasnije do svojih operacija ." DocType: Purchase Invoice,Price List Currency,Cjenik valuta DocType: Naming Series,User must always select,Korisničko uvijek mora odabrati @@ -1802,7 +1802,7 @@ DocType: Appraisal,Employee,Zaposlenik apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Uvoz e od apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Pozovi kao korisnik DocType: Features Setup,After Sale Installations,Nakon prodaje postrojenja -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} je naplaćen u cijelosti +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} je naplaćen u cijelosti DocType: Workstation Working Hour,End Time,Kraj vremena apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Standardni uvjeti ugovora za prodaju ili kupnju. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Grupa po jamcu @@ -1828,7 +1828,7 @@ DocType: Upload Attendance,Attendance To Date,Gledanost do danas apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Postavke dolaznog servera za prodajni e-mail (npr. sales@example.com) DocType: Warranty Claim,Raised By,Povišena Do DocType: Payment Gateway Account,Payment Account,Račun za plaćanje -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,Navedite Tvrtka postupiti +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,Navedite Tvrtka postupiti apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Neto promjena u potraživanja apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,kompenzacijski Off DocType: Quality Inspection Reading,Accepted,Prihvaćeno @@ -1840,14 +1840,14 @@ DocType: Shipping Rule,Shipping Rule Label,Dostava Pravilo Label apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Sirovine ne može biti prazno. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Ne može se ažurirati zaliha, fakture sadrži drop shipping stavke." DocType: Newsletter,Test,Test -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Kao što već postoje dionice transakcija za tu stavku, \ ne možete mijenjati vrijednosti 'Je rednim', 'Je batch Ne', 'Je kataloški Stavka "i" Vrednovanje metoda'" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Brzo Temeljnica apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,Ne možete promijeniti cijenu ako je sastavnica spomenuta u bilo kojem proizvodu DocType: Employee,Previous Work Experience,Radnog iskustva DocType: Stock Entry,For Quantity,Za Količina apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},Unesite Planirano Qty za točku {0} na redu {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} nije podnesen +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} nije podnesen apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Zahtjevi za stavke. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Poseban proizvodnja kako će biti izrađen za svakog gotovog dobrom stavke. DocType: Purchase Invoice,Terms and Conditions1,Odredbe i Conditions1 @@ -1872,6 +1872,7 @@ DocType: Notification Control,Expense Claim Approved Message,Rashodi Zahtjev Odo DocType: Email Digest,How frequently?,Kako često? DocType: Purchase Receipt,Get Current Stock,Kreiraj trenutne zalihe apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Drvo Bill materijala +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Mark Sadašnje apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Početni datum održavanja ne može biti stariji od datuma isporuke s rednim brojem {0} DocType: Production Order,Actual End Date,Stvarni datum završetka DocType: Authorization Rule,Applicable To (Role),Odnosi se na (uloga) @@ -1886,7 +1887,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Ugovor Datum završetka mora biti veći od dana ulaska u DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,Treća strana distributer / trgovac / trgovački zastupnik / affiliate / prodavača koji prodaje tvrtki koje proizvode za proviziju. DocType: Customer Group,Has Child Node,Je li čvor dijete -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} u odnosu na narudžbu {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} u odnosu na narudžbu {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Unesite statičke parametre URL ovdje (npr. pošiljatelj = ERPNext, username = ERPNext, lozinkom = 1234 itd.)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} nije bilo aktivne fiskalne godine. Za provjeru više detalja {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Ovo je primjer web stranica automatski generira iz ERPNext @@ -1934,7 +1935,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Dodavanje ili oduzimamo: Bilo da želite dodati ili oduzeti porez." DocType: Purchase Receipt Item,Recd Quantity,RecD Količina apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Ne može proizvesti više predmeta {0} od prodajnog naloga količina {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Međuskladišnica {0} nije potvrđena +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Međuskladišnica {0} nije potvrđena DocType: Payment Reconciliation,Bank / Cash Account,Banka / Cash račun DocType: Tax Rule,Billing City,Naplata Grad DocType: Global Defaults,Hide Currency Symbol,Sakrij simbol valute @@ -1960,7 +1961,7 @@ DocType: Salary Structure,Total Earning,Ukupna zarada DocType: Purchase Receipt,Time at which materials were received,Vrijeme u kojem su materijali primili apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Moje Adrese DocType: Stock Ledger Entry,Outgoing Rate,Odlazni Ocijenite -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Organizacija grana majstor . +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Organizacija grana majstor . apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,ili DocType: Sales Order,Billing Status,Status naplate apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,komunalna Troškovi @@ -1998,7 +1999,7 @@ DocType: Bin,Reserved Quantity,Rezervirano Količina DocType: Landed Cost Voucher,Purchase Receipt Items,Primka proizvoda apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Prilagodba Obrasci DocType: Account,Income Account,Račun prihoda -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Isporuka +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Isporuka DocType: Stock Reconciliation Item,Current Qty,Trenutno Kom DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",Pogledajte "stopa materijali na temelju troškova" u odjeljak DocType: Appraisal Goal,Key Responsibility Area,Zona ključnih odgovornosti @@ -2010,9 +2011,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,bon DocType: Notification Control,Purchase Order Message,Poruka narudžbenice DocType: Tax Rule,Shipping Country,Dostava Država DocType: Upload Attendance,Upload HTML,Prenesi HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","Ukupno unaprijed ({0}) protiv Red {1} ne može biti veća \ - od SVEUKUPNO ({2})" DocType: Employee,Relieving Date,Rasterećenje Datum apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Cijene Pravilo je napravljen prebrisati Cjenik / definirati postotak popusta, na temelju nekih kriterija." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Skladište se može mijenjati samo preko Međuskladišnica / Otpremnica / Primka @@ -2022,8 +2020,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Porez apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Ako odabrani Cijene Pravilo je napravljen za 'Cijena', to će prebrisati Cjenik. Cijene Pravilo cijena je konačna cijena, pa dalje popust treba primijeniti. Dakle, u prometu kao što su prodajni nalog, narudžbenica itd, to će biti preuzeta u 'Rate' polju, a ne 'Cjenik stopom' polju." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Praćenje potencijalnih kupaca prema vrsti industrije. DocType: Item Supplier,Item Supplier,Dobavljač proizvoda -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,Unesite kod Predmeta da se hrpa nema -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},Molimo odabir vrijednosti za {0} quotation_to {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,Unesite kod Predmeta da se hrpa nema +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},Molimo odabir vrijednosti za {0} quotation_to {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Sve adrese. DocType: Company,Stock Settings,Postavke skladišta apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Spajanje je moguće samo ako sljedeća svojstva su isti u obje evidencije. Je Grupa, korijen Vrsta, Društvo" @@ -2046,7 +2044,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Ček Broj DocType: Payment Tool Detail,Payment Tool Detail,Alat Plaćanje Detail ,Sales Browser,prodaja preglednik DocType: Journal Entry,Total Credit,Ukupna kreditna -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Upozorenje: Još {0} # {1} postoji protiv ulaska dionicama {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Upozorenje: Još {0} # {1} postoji protiv ulaska dionicama {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Lokalno apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Zajmovi i predujmovi (aktiva) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Dužnici @@ -2066,8 +2064,8 @@ DocType: Price List,Price List Master,Cjenik Master DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,"Sve prodajnih transakcija može biti označene protiv više osoba ** prodaje **, tako da možete postaviti i pratiti ciljeve." ,S.O. No.,N.K.br. DocType: Production Order Operation,Make Time Log,Napravi vrijeme prijave -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Molimo postavite naručivanja količinu -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},Molimo stvoriti kupac iz Olovo {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Molimo postavite naručivanja količinu +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},Molimo stvoriti kupac iz Olovo {0} DocType: Price List,Applicable for Countries,Primjenjivo za zemlje apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Računala apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,Ovo je glavna grupa kupaca i ne može se mijenjati. @@ -2115,7 +2113,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Naplat DocType: Payment Reconciliation Invoice,Outstanding Amount,Izvanredna Iznos DocType: Project Task,Working,Radni DocType: Stock Ledger Entry,Stock Queue (FIFO),Kataloški red (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Odaberite vrijeme Evidencije. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Odaberite vrijeme Evidencije. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} ne pripada Društvu {1} DocType: Account,Round Off,Zaokružiti ,Requested Qty,Traženi Kol @@ -2153,7 +2151,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Kreiraj relevantne ulaze apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Knjiženje na skladištu DocType: Sales Invoice,Sales Team1,Prodaja Team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Proizvod {0} ne postoji +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Proizvod {0} ne postoji DocType: Sales Invoice,Customer Address,Kupac Adresa DocType: Payment Request,Recipient and Message,Primatelj i poruka DocType: Purchase Invoice,Apply Additional Discount On,Nanesite dodatni popust na @@ -2172,7 +2170,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Mute e apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Hrana , piće i duhan" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL ili BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Može napraviti samo plaćanje protiv Nenaplaćena {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Može napraviti samo plaćanje protiv Nenaplaćena {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Proviziju ne može biti veća od 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Minimalna zaliha Razina DocType: Stock Entry,Subcontract,Podugovor @@ -2190,9 +2188,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,softver apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Boja DocType: Maintenance Visit,Scheduled,Planiran apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Molimo odaberite stavku u kojoj "Je kataloški Stavka" je "Ne" i "Je Prodaja Stavka" "Da", a ne postoji drugi bala proizvoda" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Ukupno unaprijed ({0}) protiv Red {1} ne može biti veći od sveukupnog ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Odaberite mjesečna distribucija na nejednako distribuirati ciljeve diljem mjeseci. DocType: Purchase Invoice Item,Valuation Rate,Stopa vrednovanja -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Cjenik valuta ne bira +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Cjenik valuta ne bira apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,Stavka Red {0}: Kupnja Potvrda {1} ne postoji u gornjoj tablici 'kupiti primitaka' apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Zaposlenik {0} već podnijela zahtjev za {1} od {2} i {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Datum početka projekta @@ -2204,6 +2203,7 @@ DocType: Quality Inspection,Inspection Type,Inspekcija Tip apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},Odaberite {0} DocType: C-Form,C-Form No,C-obrazac br DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,Neoznačeno posjećenost apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,istraživač apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,Molimo spremite Newsletter prije slanja apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Ime ili e-mail je obavezno @@ -2229,7 +2229,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Potvrđ DocType: Payment Gateway,Gateway,Prolaz apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Dobavljač> proizvođač tip apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Unesite olakšavanja datum . -apps/erpnext/erpnext/controllers/trends.py +137,Amt,AMT +apps/erpnext/erpnext/controllers/trends.py +138,Amt,AMT apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,"Samo zahtjev za odsustvom sa statusom ""Odobreno"" se može potvrditi" apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Naziv adrese je obavezan. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,"Unesite naziv kampanje, ako je izvor upit je kampanja" @@ -2244,10 +2244,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Prihvaćeno skladište DocType: Bank Reconciliation Detail,Posting Date,Datum objave DocType: Item,Valuation Method,Metoda vrednovanja apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Nije moguće pronaći tečaj za {0} do {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Mark Poludnevni DocType: Sales Invoice,Sales Team,Prodajni tim apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Dupli unos DocType: Serial No,Under Warranty,Pod jamstvo -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Greška] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Greška] DocType: Sales Order,In Words will be visible once you save the Sales Order.,U riječi će biti vidljiv nakon što spremite prodajnog naloga. ,Employee Birthday,Rođendan zaposlenika apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,venture Capital @@ -2270,6 +2271,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,Troška s postojećim transakcija ne može se prevesti u skupini DocType: Account,Depreciation,Amortizacija apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Dobavljač (s) +DocType: Employee Attendance Tool,Employee Attendance Tool,Sudjelovanje zaposlenika alat DocType: Supplier,Credit Limit,Kreditni limit apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Odaberite tip transakcije DocType: GL Entry,Voucher No,Bon Ne @@ -2296,7 +2298,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Korijen račun ne može biti izbrisan ,Is Primary Address,Je Osnovna adresa DocType: Production Order,Work-in-Progress Warehouse,Rad u tijeku Warehouse -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Reference # {0} od {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Reference # {0} od {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Upravljanje adrese DocType: Pricing Rule,Item Code,Šifra proizvoda DocType: Production Planning Tool,Create Production Orders,Napravi proizvodni nalog @@ -2323,7 +2325,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Banka pomirenje apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Nabavite ažuriranja apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Zahtjev za robom {0} je otkazan ili zaustavljen apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Dodaj nekoliko uzorak zapisa -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Ostavite upravljanje +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Ostavite upravljanje apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Grupa po računu DocType: Sales Order,Fully Delivered,Potpuno Isporučeno DocType: Lead,Lower Income,Niža primanja @@ -2338,6 +2340,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','Od datuma' mora biti poslije 'Do datuma' ,Stock Projected Qty,Stanje skladišta apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Korisnik {0} ne pripada projicirati {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Označena Gledatelja HTML DocType: Sales Order,Customer's Purchase Order,Kupca narudžbenice DocType: Warranty Claim,From Company,Iz Društva apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,"Vrijednost, ili Kol" @@ -2402,6 +2405,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Wire Transfer apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,Odaberite bankovni račun DocType: Newsletter,Create and Send Newsletters,Kreiraj i pošalji bilten +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Provjeri sve DocType: Sales Order,Recurring Order,Ponavljajući narudžbe DocType: Company,Default Income Account,Zadani račun prihoda apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Grupa kupaca / Kupac @@ -2433,6 +2437,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Povratak protiv faktur DocType: Item,Warranty Period (in days),Jamstveni period (u danima) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Neto novčani tijek iz operacije apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,na primjer PDV +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Gledatelji Mark zaposlenika u rasutom stanju apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Stavka 4 DocType: Journal Entry Account,Journal Entry Account,Temeljnica račun DocType: Shopping Cart Settings,Quotation Series,Ponuda serija @@ -2578,14 +2583,14 @@ DocType: Task,Actual Start Date (via Time Logs),Stvarni datum početka (putem Vr DocType: Stock Reconciliation Item,Before reconciliation,Prije pomirenja apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Za {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Porezi i naknade uvrštenja (Društvo valuta) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Stavka Porezna Row {0} mora imati račun tipa poreza ili prihoda i rashoda ili naplativ +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Stavka Porezna Row {0} mora imati račun tipa poreza ili prihoda i rashoda ili naplativ DocType: Sales Order,Partly Billed,Djelomično naplaćeno DocType: Item,Default BOM,Zadani BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,Ponovno upišite naziv tvrtke za potvrdu apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Ukupni Amt DocType: Time Log Batch,Total Hours,Ukupno vrijeme DocType: Journal Entry,Printing Settings,Ispis Postavke -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Ukupno zaduženje mora biti jednak ukupnom kreditnom . +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Ukupno zaduženje mora biti jednak ukupnom kreditnom . apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Automobilska industrija apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Od otpremnici DocType: Time Log,From Time,S vremena @@ -2632,7 +2637,7 @@ DocType: Purchase Invoice Item,Image View,Prikaz slike DocType: Issue,Opening Time,Radno vrijeme apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,Od i Do datuma zahtijevanih apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Vrijednosni papiri i robne razmjene -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Zadana mjerna jedinica za Variant '{0}' mora biti isti kao u predložak '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Zadana mjerna jedinica za Variant '{0}' mora biti isti kao u predložak '{1}' DocType: Shipping Rule,Calculate Based On,Izračun temeljen na DocType: Delivery Note Item,From Warehouse,Iz skladišta DocType: Purchase Taxes and Charges,Valuation and Total,Vrednovanje i Total @@ -2654,7 +2659,7 @@ DocType: Leave Application,Follow via Email,Slijedite putem e-maila DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Iznos poreza Nakon iznosa popusta apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Dijete računa postoji za taj račun . Ne možete izbrisati ovaj račun . apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Ili meta Količina ili ciljani iznos je obvezna -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},Zadani BOM ne postoji za proizvod {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},Zadani BOM ne postoji za proizvod {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,Molimo odaberite datum knjiženja prvo apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Otvaranje Datum bi trebao biti prije datuma zatvaranja DocType: Leave Control Panel,Carry Forward,Prenijeti @@ -2732,7 +2737,7 @@ DocType: Leave Type,Is Encash,Je li unovčiti DocType: Purchase Invoice,Mobile No,Mobitel br DocType: Payment Tool,Make Journal Entry,Provjerite Temeljnica DocType: Leave Allocation,New Leaves Allocated,Novi Leaves Dodijeljeni -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Projekt - mudar podaci nisu dostupni za ponudu +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Projekt - mudar podaci nisu dostupni za ponudu DocType: Project,Expected End Date,Očekivani Datum završetka DocType: Appraisal Template,Appraisal Template Title,Procjena Predložak Naslov apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,trgovački @@ -2780,6 +2785,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,In apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Navedite DocType: Offer Letter,Awaiting Response,Očekujem odgovor apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Iznad +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Vrijeme Prijavite se Naplaćeno DocType: Salary Slip,Earning & Deduction,Zarada & Odbitak apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Račun {0} ne može biti grupa apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Izborni . Ova postavka će se koristiti za filtriranje u raznim transakcijama . @@ -2850,14 +2856,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Uspješno izbrisati sve transakcije vezane uz ovu tvrtku! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Kao i na datum apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Probni rad -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Glavno skladište je obvezno za skladišni proizvod. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Glavno skladište je obvezno za skladišni proizvod. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Isplata plaće za mjesec {0} i godina {1} DocType: Stock Settings,Auto insert Price List rate if missing,Auto umetak Cjenik stopa ako nedostaje apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Ukupno uplaćeni iznos ,Transferred Qty,prebačen Kol apps/erpnext/erpnext/config/learn.py +11,Navigating,Kretanje apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,planiranje -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Napravi grupno vrijeme prijave +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Napravi grupno vrijeme prijave apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Izdano DocType: Project,Total Billing Amount (via Time Logs),Ukupno naplate Iznos (preko Vrijeme Trupci) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Prodajemo ovaj proizvod @@ -2865,7 +2871,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Količina bi trebala biti veća od 0 DocType: Journal Entry,Cash Entry,Novac Stupanje DocType: Sales Partner,Contact Desc,Kontakt ukratko -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Tip lišća poput casual, bolovanja i sl." +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Tip lišća poput casual, bolovanja i sl." DocType: Email Digest,Send regular summary reports via Email.,Pošalji redovite sažetak izvješća putem e-maila. DocType: Brand,Item Manager,Stavka Manager DocType: Cost Center,Add rows to set annual budgets on Accounts.,Dodaj redak za izračun godišnjeg proračuna. @@ -2880,7 +2886,7 @@ DocType: GL Entry,Party Type,Tip stranke apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Sirovina ne mogu biti isti kao glavni predmet DocType: Item Attribute Value,Abbreviation,Skraćenica apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Niste ovlašteni od {0} prijeđenog limita -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Plaća predložak majstor . +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Plaća predložak majstor . DocType: Leave Type,Max Days Leave Allowed,Max Dani Ostavite dopuštenih apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Postavite Porezni Pravilo za košaricu DocType: Payment Tool,Set Matching Amounts,Postavite Odgovarajući Iznosi @@ -2893,7 +2899,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Ponude DocType: Stock Settings,Role Allowed to edit frozen stock,Uloga dopuštenih urediti smrznute zalihe ,Territory Target Variance Item Group-Wise,Pregled prometa po teritoriji i grupi proizvoda apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Sve grupe kupaca -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} je obavezno. Možda Mjenjačnica zapis nije stvoren za {1} na {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} je obavezno. Možda Mjenjačnica zapis nije stvoren za {1} na {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Porez Predložak je obavezno. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Račun {0}: nadređeni račun {1} ne postoji DocType: Purchase Invoice Item,Price List Rate (Company Currency),Cjenik stopa (Društvo valuta) @@ -2913,8 +2919,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Stavka Wise Porezna Det ,Item-wise Price List Rate,Item-wise cjenik apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Dobavljač Ponuda DocType: Quotation,In Words will be visible once you save the Quotation.,U riječi će biti vidljiv nakon što spremite ponudu. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} je zaustavljen -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Barkod {0} se već koristi u proizvodu {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} je zaustavljen +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Barkod {0} se već koristi u proizvodu {1} DocType: Lead,Add to calendar on this date,Dodaj u kalendar na ovaj datum apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Pravila za dodavanje troškova prijevoza. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Nadolazeći događaji @@ -2941,8 +2947,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,St apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Atleast jednom skladištu je obavezno DocType: Serial No,Out of Warranty,Od jamstvo DocType: BOM Replace Tool,Replace,Zamijeniti -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} u odnosu na prodajnom računu {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Unesite zadanu jedinicu mjere +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} u odnosu na prodajnom računu {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Unesite zadanu jedinicu mjere DocType: Purchase Invoice Item,Project Name,Naziv projekta DocType: Supplier,Mention if non-standard receivable account,Spomenuti ako nestandardni potraživanja račun DocType: Journal Entry Account,If Income or Expense,Ako prihoda i rashoda @@ -2967,7 +2973,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Fiskalna godina: {0} ne postoji DocType: Currency Exchange,To Currency,Valutno DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Dopusti sljedeći korisnici odobriti ostavite aplikacije za blok dana. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Vrste Rashodi zahtjevu. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Vrste Rashodi zahtjevu. DocType: Item,Taxes,Porezi apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Plaćeni i nije isporučena DocType: Project,Default Cost Center,Zadana troškovnih centara @@ -2997,7 +3003,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Red # {0}: Serijski br {1} ne odgovara {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Casual dopust DocType: Batch,Batch ID,ID serije -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Napomena: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Napomena: {0} ,Delivery Note Trends,Trend otpremnica apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Ovaj tjedan Sažetak apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} mora bitikupljen ili pod-ugovori stavka u nizu {1} @@ -3037,6 +3043,7 @@ DocType: Project Task,Pending Review,U tijeku pregled apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Kliknite ovdje da plati DocType: Task,Total Expense Claim (via Expense Claim),Ukupni rashodi Zatraži (preko Rashodi Zahtjeva) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Korisnički ID +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Mark Odsutni apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Za vrijeme mora biti veći od od vremena DocType: Journal Entry Account,Exchange Rate,Tečaj apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Prodajnog naloga {0} nije podnesen @@ -3084,7 +3091,7 @@ DocType: Item Group,Default Expense Account,Zadani račun rashoda DocType: Employee,Notice (days),Obavijest (dani) DocType: Tax Rule,Sales Tax Template,Porez Predložak DocType: Employee,Encashment Date,Encashment Datum -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Protiv bon Tip mora biti jedan od narudžbenice, fakturi ili Temeljnica" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Protiv bon Tip mora biti jedan od narudžbenice, fakturi ili Temeljnica" DocType: Account,Stock Adjustment,Stock Podešavanje apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Zadana aktivnost Troškovi postoji Vrsta djelatnosti - {0} DocType: Production Order,Planned Operating Cost,Planirani operativni trošak @@ -3138,6 +3145,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Otpis unos DocType: BOM,Rate Of Materials Based On,Stopa materijali na temelju apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Analitike podrške +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Poništite sve apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Tvrtka je nestalo u skladištima {0} DocType: POS Profile,Terms and Conditions,Odredbe i uvjeti apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},Za datum mora biti unutar fiskalne godine. Pod pretpostavkom da bi datum = {0} @@ -3159,7 +3167,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Za postavljanje ove fiskalne godine kao zadano , kliknite na "" Set as Default '" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Postavke dolaznog servera za e-mail podrške (npr. support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Nedostatak Kom -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Inačica Stavka {0} postoji s istim atributima +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Inačica Stavka {0} postoji s istim atributima DocType: Salary Slip,Salary Slip,Plaća proklizavanja apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,'Do datuma ' je potrebno DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Izradi pakiranje gaćice za pakete biti isporučena. Koristi se za obavijesti paket broj, sadržaj paketa i njegovu težinu." @@ -3207,7 +3215,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Pogleda DocType: Item Attribute Value,Attribute Value,Vrijednost atributa apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","Email ID mora biti jedinstven , već postoji za {0}" ,Itemwise Recommended Reorder Level,Itemwise - preporučena razina ponovne narudžbe -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,Odaberite {0} Prvi +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,Odaberite {0} Prvi DocType: Features Setup,To get Item Group in details table,Da biste dobili predmeta Group u tablici pojedinosti apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Hrpa {0} od {1} Stavka je istekla. DocType: Sales Invoice,Commission,provizija @@ -3262,7 +3270,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Dobiti izvrsne Vaučeri DocType: Warranty Claim,Resolved By,Riješen Do DocType: Appraisal,Start Date,Datum početka -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Dodijeliti lišće za razdoblje . +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Dodijeliti lišće za razdoblje . apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Čekovi i depozita pogrešno izbrisani apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Kliknite ovdje da biste potvrdili apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Račun {0}: Ne možeš ga dodijeliti kao nadređeni račun @@ -3282,7 +3290,7 @@ DocType: Employee,Educational Qualification,Obrazovne kvalifikacije DocType: Workstation,Operating Costs,Operativni troškovi DocType: Employee Leave Approver,Employee Leave Approver,Zaposlenik dopust Odobritelj apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} je uspješno dodana na popis Newsletter. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Red {0}: Ulazak redoslijeda već postoji za to skladište {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Red {0}: Ulazak redoslijeda već postoji za to skladište {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Ne može se proglasiti izgubljenim, jer je ponuda napravljena." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Kupnja Master Manager apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Proizvodnja Red {0} mora biti podnesen @@ -3306,7 +3314,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Prodajni računi {0} su već potvrđeni apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Završetak Datum DocType: Purchase Invoice Item,Amount (Company Currency),Iznos (valuta tvrtke) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Organizacija jedinica ( odjela ) majstor . +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Organizacija jedinica ( odjela ) majstor . apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Unesite valjane mobilne br DocType: Budget Detail,Budget Detail,Detalji proračuna apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,Unesite poruku prije slanja @@ -3322,13 +3330,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Primljeni i prihvaćeni ,Serial No Service Contract Expiry,Istek ugovora za serijski broj usluge DocType: Item,Unit of Measure Conversion,Mjerna jedinica pretvorbe apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Zaposlenik ne može se mijenjati -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Ne možete istovremeno kreditirati i debitirati isti račun +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Ne možete istovremeno kreditirati i debitirati isti račun DocType: Naming Series,Help HTML,HTML pomoć apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Ukupno bi trebalo biti dodijeljena weightage 100 % . To je {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Dodatak za prekomjerno {0} prešao za točku {1} DocType: Address,Name of person or organization that this address belongs to.,Ime osobe ili organizacije kojoj ova adresa pripada. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Vaši dobavljači -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,Ne mogu se postaviti kao izgubljen kao prodajnog naloga je napravio . +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,Ne mogu se postaviti kao izgubljen kao prodajnog naloga je napravio . apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,Još Struktura plaća {0} je aktivna djelatnika {1}. Molimo provjerite njegov status 'Neaktivan' za nastavak. DocType: Purchase Invoice,Contact,Kontakt apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Primljeno od @@ -3338,11 +3346,11 @@ DocType: Item,Has Serial No,Ima serijski br DocType: Employee,Date of Issue,Datum izdavanja apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: Od {0} od {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Red # {0}: Postavite dobavljač za stavke {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Web stranica slike {0} prilogu točki {1} Ne mogu naći +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Web stranica slike {0} prilogu točki {1} Ne mogu naći DocType: Issue,Content Type,Vrsta sadržaja apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,računalo DocType: Item,List this Item in multiple groups on the website.,Prikaži ovu stavku u više grupa na web stranici. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,Molimo provjerite više valuta mogućnost dopustiti račune s druge valute +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,Molimo provjerite više valuta mogućnost dopustiti račune s druge valute apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Stavka: {0} ne postoji u sustavu apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Niste ovlašteni za postavljanje zamrznute vrijednosti DocType: Payment Reconciliation,Get Unreconciled Entries,Kreiraj neusklađene ulaze @@ -3352,14 +3360,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Što učinit DocType: Delivery Note,To Warehouse,Za skladište apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Račun {0} je unešen više od jednom za fiskalnu godinu {1} ,Average Commission Rate,Prosječna provizija -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'Ima serijski broj' ne može biti 'Da' za neskladišne proizvode +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'Ima serijski broj' ne može biti 'Da' za neskladišne proizvode apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Gledatelji ne može biti označena za budući datum DocType: Pricing Rule,Pricing Rule Help,Pravila cijena - pomoć DocType: Purchase Taxes and Charges,Account Head,Zaglavlje računa apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Ažuriranje dodatne troškove za izračun sletio trošak stavke apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Električna DocType: Stock Entry,Total Value Difference (Out - In),Ukupna vrijednost razlika (Out - In) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Red {0}: tečaj je obavezno +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Red {0}: tečaj je obavezno apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},Korisnik ID nije postavljen za zaposlenika {0} DocType: Stock Entry,Default Source Warehouse,Zadano izvorno skladište DocType: Item,Customer Code,Kupac Šifra @@ -3378,15 +3386,15 @@ DocType: Notification Control,Sales Invoice Message,Poruka prodajnog računa apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Zatvaranje računa {0} mora biti tipa odgovornosti / Equity DocType: Authorization Rule,Based On,Na temelju DocType: Sales Order Item,Ordered Qty,Naručena kol -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Stavka {0} je onemogućen +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Stavka {0} je onemogućen DocType: Stock Settings,Stock Frozen Upto,Kataloški Frozen Upto apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Razdoblje od razdoblja do datuma obvezna za ponavljajućih {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Projekt aktivnost / zadatak. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Generiranje plaće gaćice +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Generiranje plaće gaćice apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Kupnja treba biti provjerena, ako je primjenjivo za odabrano kao {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Popust mora biti manji od 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Otpis iznos (Društvo valuta) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Red # {0}: Molimo postavite naručivanja količinu +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Red # {0}: Molimo postavite naručivanja količinu DocType: Landed Cost Voucher,Landed Cost Voucher,Nalog zavisnog troška apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},Molimo postavite {0} DocType: Purchase Invoice,Repeat on Day of Month,Ponovite na dan u mjesecu @@ -3439,7 +3447,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Zadana rad u tijeku Skladište apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Zadane postavke za računovodstvene poslove. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Očekivani datum ne može biti prije Materijal Zahtjev Datum -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Stavka {0} mora bitiProdaja artikla +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Stavka {0} mora bitiProdaja artikla DocType: Naming Series,Update Series Number,Update serije Broj DocType: Account,Equity,pravičnost DocType: Sales Order,Printing Details,Ispis Detalji @@ -3491,7 +3499,7 @@ DocType: Task,Review Date,Recenzija Datum DocType: Purchase Invoice,Advance Payments,Avansima DocType: Purchase Taxes and Charges,On Net Total,VPC apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Target skladište u redu {0} mora biti ista kao Production Order -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Nemate dopuštenje za korištenje platnih alata +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Nemate dopuštenje za korištenje platnih alata apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,'Obavijest E-mail adrese' nije navedena za ponavljajuće %s apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Valuta se ne može mijenjati nakon što unose pomoću neke druge valute DocType: Company,Round Off Account,Zaokružiti račun @@ -3514,7 +3522,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Količina proizvoda dobivena nakon proizvodnje / pakiranja od navedene količine sirovina DocType: Payment Reconciliation,Receivable / Payable Account,Potraživanja / Plaća račun DocType: Delivery Note Item,Against Sales Order Item,Protiv prodaje reda točkom -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},Navedite značajke vrijednost za atribut {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},Navedite značajke vrijednost za atribut {0} DocType: Item,Default Warehouse,Glavno skladište DocType: Task,Actual End Date (via Time Logs),Stvarni datum završetka (preko Vrijeme Trupci) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Proračun se ne može dodijeliti protiv grupe nalog {0} @@ -3539,10 +3547,10 @@ DocType: Lead,Blog Subscriber,Blog pretplatnik apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Napravi pravila za ograničavanje prometa na temelju vrijednosti. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Ako je označeno, Ukupan broj. radnih dana će uključiti odmor, a to će smanjiti vrijednost plaća po danu" DocType: Purchase Invoice,Total Advance,Ukupno predujma -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Obračun plaća +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Obračun plaća DocType: Opportunity Item,Basic Rate,Osnovna stopa DocType: GL Entry,Credit Amount,Kreditni iznos -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Postavi kao Lost +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Postavi kao Lost apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Plaćanje Potvrda Napomena DocType: Supplier,Credit Days Based On,Kreditne dana na temelju DocType: Tax Rule,Tax Rule,Porezni Pravilo @@ -3572,7 +3580,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Prihvaćena količina apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} Ne radi postoji apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Mjenice podignuta na kupce. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Id projekta -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Redak Ne {0}: Iznos ne može biti veća od visine u tijeku protiv Rashodi Zahtjeva {1}. U tijeku Iznos je {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Redak Ne {0}: Iznos ne može biti veća od visine u tijeku protiv Rashodi Zahtjeva {1}. U tijeku Iznos je {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,Dodao {0} pretplatnika DocType: Maintenance Schedule,Schedule,Raspored DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Odredite proračun za ovu troška. Za postavljanje proračuna akcije, pogledajte "Lista poduzeća"" @@ -3633,19 +3641,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS profil DocType: Payment Gateway Account,Payment URL Message,Plaćanje URL poruka apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Sezonska za postavljanje proračuna, ciljevi itd" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Red {0}: Plaćanje Iznos ne može biti veći od preostali iznos +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Red {0}: Plaćanje Iznos ne može biti veći od preostali iznos apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Ukupno Neplaćeni -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Vrijeme Log nije naplatnih -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Stavka {0} je predložak, odaberite jednu od njegovih varijanti" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Vrijeme Log nije naplatnih +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Stavka {0} je predložak, odaberite jednu od njegovih varijanti" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Kupac apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Neto plaća ne može biti negativna -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Unesite protiv vaučera ručno +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Unesite protiv vaučera ručno DocType: SMS Settings,Static Parameters,Statički parametri DocType: Purchase Order,Advance Paid,Unaprijed plaćeni DocType: Item,Item Tax,Porez proizvoda apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Materijal za dobavljača apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Trošarine Račun DocType: Expense Claim,Employees Email Id,Zaposlenici Email ID +DocType: Employee Attendance Tool,Marked Attendance,Označena posjećenost apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Kratkoročne obveze apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Pošalji grupne SMS poruke svojim kontaktima DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Razmislite poreza ili pristojbi za @@ -3668,7 +3677,7 @@ DocType: Item Attribute,Numeric Values,Brojčane vrijednosti apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Pričvrstite Logo DocType: Customer,Commission Rate,Komisija Stopa apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Napravite varijanta -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Blok ostaviti aplikacija odjelu. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Blok ostaviti aplikacija odjelu. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Košarica je prazna DocType: Production Order,Actual Operating Cost,Stvarni operativni trošak apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Korijen ne može se mijenjati . @@ -3687,7 +3696,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,Automatsko stvaranje materijala zahtjev ako količina padne ispod te razine ,Item-wise Purchase Register,Stavka-mudar Kupnja Registracija DocType: Batch,Expiry Date,Datum isteka -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item",Za postavljanje razine naručivanja točka mora biti Kupnja predmeta ili proizvodnja predmeta +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item",Za postavljanje razine naručivanja točka mora biti Kupnja predmeta ili proizvodnja predmeta ,Supplier Addresses and Contacts,Supplier Adrese i kontakti apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,Molimo odaberite kategoriju prvi apps/erpnext/erpnext/config/projects.py +18,Project master.,Projekt majstor. diff --git a/erpnext/translations/hu.csv b/erpnext/translations/hu.csv index b3b16e6c6e..ff166a19c4 100644 --- a/erpnext/translations/hu.csv +++ b/erpnext/translations/hu.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,Credit Company Valuta DocType: Delivery Note,Installation Status,Telepítés állapota apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Elfogadott + Elutasított Mennyiség meg kell egyeznie a beérkezett mennyiséget tétel {0} DocType: Item,Supply Raw Materials for Purchase,Supply nyersanyag beszerzése -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Elem {0} kell a vásárlást tétel +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Elem {0} kell a vásárlást tétel DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Töltse le a sablont, töltse megfelelő adatokat és csatolja a módosított fájlt. Minden időpontot és a munkavállalói kombináció a kiválasztott időszakban jön a sablon, a meglévő jelenléti ívek" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,"Elem {0} nem aktív, vagy az elhasználódott elérte" DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Után felülvizsgálják Sales számla benyújtásának. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Hogy tartalmazzák az adót a sorban {0} tétel mértéke, az adók sorokban {1} is fel kell venni" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Beállításait HR modul +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Hogy tartalmazzák az adót a sorban {0} tétel mértéke, az adók sorokban {1} is fel kell venni" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Beállításait HR modul DocType: SMS Center,SMS Center,SMS Központ DocType: BOM Replace Tool,New BOM,Új anyagjegyzék apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Batch Time Naplók számlázás. @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,Válassza ki Feltételek DocType: Production Planning Tool,Sales Orders,Vevőmegrendelés DocType: Purchase Taxes and Charges,Valuation,Értékelés ,Purchase Order Trends,Megrendelés Trends -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Osztja levelek évre. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Osztja levelek évre. DocType: Earning Type,Earning Type,Kereset típusa DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Disable kapacitás-tervezés és Time Tracking DocType: Bank Reconciliation,Bank Account,Bankszámla @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Az anyag weboldala DocType: Payment Tool,Reference No,Hivatkozási szám apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Hagyja Blokkolt -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Elem {0} elérte az élettartama végét {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Elem {0} elérte az élettartama végét {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Éves DocType: Stock Reconciliation Item,Stock Reconciliation Item,Stock Megbékélés Elem DocType: Stock Entry,Sales Invoice No,Értékesítési számlák No @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,Minimális rendelési menny DocType: Pricing Rule,Supplier Type,Beszállító típusa DocType: Item,Publish in Hub,Közzéteszi Hub ,Terretory,Terület -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,{0} elem törölve +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,{0} elem törölve apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Anyagigénylés DocType: Bank Reconciliation,Update Clearance Date,Frissítés Végső dátum DocType: Item,Purchase Details,Vásárlási adatok @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Elutasított mennyiség DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Helytelenül elérhető szállítólevél, árajánlat, Értékesítési számlák, Értékesítési rendelés" DocType: SMS Settings,SMS Sender Name,SMS küldő neve DocType: Contact,Is Primary Contact,Az elsődleges Kapcsolat +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Idő Napló már kötegelt a számlázással DocType: Notification Control,Notification Control,Notification vezérlés DocType: Lead,Suggestions,Javaslatok DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Set tétel Group-bölcs költségvetés azon a területen. Akkor is a szezonalitás beállításával Distribution. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},"Kérjük, adja szülő fiókcsoportot raktári {0}" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},"Fizetési ellen {0} {1} nem lehet nagyobb, mint kint levő összeg {2}" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},"Fizetési ellen {0} {1} nem lehet nagyobb, mint kint levő összeg {2}" DocType: Supplier,Address HTML,HTML Cím DocType: Lead,Mobile No.,Mobiltelefon DocType: Maintenance Schedule,Generate Schedule,Ütemezés generálása @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Szinkronizálta Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Hibás Jelszó DocType: Item,Variant Of,Változata -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Elem {0} kell lennie Service Elem apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',"Befejezett Menny nem lehet nagyobb, mint ""Menny a Manufacture""" DocType: Period Closing Voucher,Closing Account Head,Záró fiók vezetője DocType: Employee,External Work History,Külső munka története @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,Hírlevél DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Értesítés e-mailben a létrehozása automatikus Material kérése DocType: Journal Entry,Multi Currency,Több pénznem DocType: Payment Reconciliation Invoice,Invoice Type,Számla típusa -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Szállítólevél +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Szállítólevél apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Beállítása Adók apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,"Fizetési Entry módosításra került, miután húzta. Kérjük, húzza meg újra." -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} belépett kétszer tétel adó +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} belépett kétszer tétel adó apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Összefoglaló erre a hétre és a folyamatban lévő tevékenységek DocType: Workstation,Rent Cost,Bérleti díj apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,"Kérjük, válasszon hónapot és évet" @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,Érvényes Országok DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Minden behozatali kapcsolódó területeken, mint valuta átváltási arányok, import teljes, import végösszeg stb állnak rendelkezésre a vásárláskor kapott nyugtát, Szállító Idézet, vásárlást igazoló számlát, megrendelés, stb" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"Ez a tétel az a sablon, és nem lehet használni a tranzakciók. Elem attribútumok fognak kerülnek át a változatok, kivéve, ha ""No Copy"" van beállítva" apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Teljes Megrendelés Tekinthető -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Munkavállalói kijelölése (pl vezérigazgató, igazgató stb)." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Munkavállalói kijelölése (pl vezérigazgató, igazgató stb)." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,"Kérjük, írja be a ""Repeat a hónap napja"" mező értéke" DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,"Arány, amely Customer Valuta átalakul ügyfél alap deviza" DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Elérhető a BOM, szállítólevél, beszerzési számla, gyártási utasítás, megrendelés, vásárlási nyugta, Értékesítési számlák, Vevői rendelés, Stock Entry, Időnyilvántartó" @@ -355,7 +355,7 @@ DocType: Workstation,Consumable Cost,Fogyó költség apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',"{0} ({1}) kell szerepet ""Leave Jóváhagyó""" DocType: Purchase Receipt,Vehicle Date,Jármű dátuma apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Orvosi -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Veszteség indoka +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Veszteség indoka apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Munkaállomás zárva a következő időpontokban per Nyaralás listája: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Lehetőségek DocType: Employee,Single,Egyedülálló @@ -383,14 +383,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Értékesítési partner DocType: Account,Old Parent,Régi szülő DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,"Megszokott a bevezető szöveget, amely megy, mint egy része az e-mail. Minden egyes tranzakció külön bevezető szöveget." +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Nem tartalmaznak szimbólumok (pl. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Sales mester menedzser apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Globális beállítások minden egyes gyártási folyamat. DocType: Accounts Settings,Accounts Frozen Upto,A számlák be vannak fagyasztva eddig DocType: SMS Log,Sent On,Elküldve -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Képesség {0} kiválasztott többször attribútumok táblázat +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Képesség {0} kiválasztott többször attribútumok táblázat DocType: HR Settings,Employee record is created using selected field. ,Munkavállalói rekord jön létre a kiválasztott mező. DocType: Sales Order,Not Applicable,Nem értelmezhető -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Nyaralás mester. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Nyaralás mester. DocType: Material Request Item,Required Date,Szükséges dátuma DocType: Delivery Note,Billing Address,Számlázási cím apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,"Kérjük, adja tételkód." @@ -426,7 +427,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,"Kérjük, adja Warehouse, amelyek anyaga kérés jelenik meg" DocType: Production Order,Additional Operating Cost,További üzemeltetési költség apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Kozmetikum -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Egyesíteni, a következő tulajdonságokkal kell, hogy egyezzen mindkét tételek" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Egyesíteni, a következő tulajdonságokkal kell, hogy egyezzen mindkét tételek" DocType: Shipping Rule,Net Weight,Nettó súly DocType: Employee,Emergency Phone,Sürgősségi telefon ,Serial No Warranty Expiry,Sorozatszám garanciaidő lejárta @@ -481,17 +482,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Számlázási és Delivery Status apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Törzsvásárlóid DocType: Leave Control Panel,Allocate,Osztja -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Eladás visszaküldése +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Eladás visszaküldése DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Válassza ki Vevőmegrendelés ahonnan szeretne létrehozni gyártási megrendeléseket. DocType: Item,Delivered by Supplier (Drop Ship),Megérkezés a Szállító (Drop Ship) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Fizetés alkatrészeket. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Fizetés alkatrészeket. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Adatbázist a potenciális vásárlók. DocType: Authorization Rule,Customer or Item,Ügyfél vagy jogcím apps/erpnext/erpnext/config/crm.py +17,Customer database.,Vevői adatbázis. DocType: Quotation,Quotation To,Árajánlat az ő részére DocType: Lead,Middle Income,Közepes jövedelmű apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Opening (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Alapértelmezett mértékegysége pont {0} nem lehet megváltoztatni közvetlenül, mert már tett néhány tranzakció (k) másik UOM. Szükséged lesz egy új tétel, hogy egy másik Alapértelmezett UOM." +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Alapértelmezett mértékegysége pont {0} nem lehet megváltoztatni közvetlenül, mert már tett néhány tranzakció (k) másik UOM. Szükséged lesz egy új tétel, hogy egy másik Alapértelmezett UOM." apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Elkülönített összeg nem lehet negatív DocType: Purchase Order Item,Billed Amt,Számlázott össz. DocType: Warehouse,A logical Warehouse against which stock entries are made.,A logikai Warehouse amely ellen állomány bejegyzések történnek. @@ -510,14 +511,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Értékesítési adók és költs DocType: Employee,Organization Profile,Szervezet profilja apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,"Kérjük, beállítási számozás sorozat Jelenléti a Setup> számozás Series" DocType: Employee,Reason for Resignation,Felmondás indoka -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Sablon a teljesítménymérés. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Sablon a teljesítménymérés. DocType: Payment Reconciliation,Invoice/Journal Entry Details,Számla / Naplókönyvelés Részletek apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},"{0} ""{1}"" nem pénzügyi évben {2}" DocType: Buying Settings,Settings for Buying Module,Beállítások a vásárlás Module apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,"Kérjük, adja vásárlási nyugta első" DocType: Buying Settings,Supplier Naming By,Elnevezése a szállítóval DocType: Activity Type,Default Costing Rate,Alapértelmezett Költség Rate -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Karbantartási ütemterv +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Karbantartási ütemterv apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Aztán árképzési szabályok szűrik ki alapul vevő, Customer Group, Territory, Szállító, Szállító Type, kampány, értékesítési partner stb" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Nettó készletváltozás DocType: Employee,Passport Number,Útlevél száma @@ -556,7 +557,7 @@ DocType: Purchase Invoice,Quarterly,Negyedévenként DocType: Selling Settings,Delivery Note Required,Szállítólevél szükséges DocType: Sales Order Item,Basic Rate (Company Currency),Basic Rate (Társaság Currency) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Visszatartó nyersanyagok alapuló -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,"Kérjük, adja Gift" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,"Kérjük, adja Gift" DocType: Purchase Receipt,Other Details,Egyéb részletek DocType: Account,Accounts,Könyvelés apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Marketing @@ -569,7 +570,7 @@ DocType: Employee,Provide email id registered in company,Adjon email id bejegyze DocType: Hub Settings,Seller City,Eladó város DocType: Email Digest,Next email will be sent on:,A következő emailt küldjük: DocType: Offer Letter Term,Offer Letter Term,Ajánlat Letter Term -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Tételnek változatok. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Tételnek változatok. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Elem {0} nem található DocType: Bin,Stock Value,Készlet értéke apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Fa Típus @@ -577,7 +578,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Mennyiség Consumed Per Unit DocType: Serial No,Warranty Expiry Date,Garancia lejárati dátuma DocType: Material Request Item,Quantity and Warehouse,Mennyiség és raktár DocType: Sales Invoice,Commission Rate (%),Jutalék mértéke (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Ellen utalvány típus közül kell Sales Order, eladást igazoló számla vagy Naplókönyvelés" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Ellen utalvány típus közül kell Sales Order, eladást igazoló számla vagy Naplókönyvelés" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Légtér DocType: Journal Entry,Credit Card Entry,Hitelkártya Entry apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Feladat Téma @@ -645,10 +646,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Felelősség apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,"Szentesített összege nem lehet nagyobb, mint igény összegéből sorában {0}." DocType: Company,Default Cost of Goods Sold Account,Alapértelmezett önköltség fiók -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Árlista nincs kiválasztva +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Árlista nincs kiválasztva DocType: Employee,Family Background,Családi háttér DocType: Process Payroll,Send Email,E-mail küldése -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Figyelmeztetés: Érvénytelen Attachment {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Figyelmeztetés: Érvénytelen Attachment {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Nincs jogosultság DocType: Company,Default Bank Account,Alapértelmezett bankszámlaszám apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Kiszűrni alapuló párt, válasszuk a párt Írja első" @@ -676,7 +677,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Támo DocType: Features Setup,"To enable ""Point of Sale"" features","Annak érdekében, hogy "Point of Sale" funkciók" DocType: Bin,Moving Average Rate,Mozgóátlag DocType: Production Planning Tool,Select Items,Válassza ki az elemeket -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} ellen Bill {1} kelt {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} ellen Bill {1} kelt {2} DocType: Maintenance Visit,Completion Status,Készültségi állapot DocType: Sales Invoice Item,Target Warehouse,Cél raktár DocType: Item,Allow over delivery or receipt upto this percent,Hagyjuk fölött szállítás vagy nyugtát Akár ezt a százalékos @@ -736,7 +737,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Devi apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Nem található a Time Slot a következő {0} nap Operation {1} DocType: Production Order,Plan material for sub-assemblies,Terv anyagot részegységekre apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} aktívnak kell lennie -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,"Kérjük, válassza ki a dokumentum típusát első" +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,"Kérjük, válassza ki a dokumentum típusát első" apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Goto Kosár apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Mégsem Material Látogatás {0} törlése előtt ezt a karbantartási látogatás DocType: Salary Slip,Leave Encashment Amount,Hagyja beváltása Összeg @@ -754,7 +755,7 @@ DocType: Purchase Receipt,Range,Tartomány DocType: Supplier,Default Payable Accounts,Alapértelmezett fizetendő számlák apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,"Employee {0} nem aktív, vagy nem létezik" DocType: Features Setup,Item Barcode,Elem vonalkódja -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Elem változatok {0} frissített +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Elem változatok {0} frissített DocType: Quality Inspection Reading,Reading 6,Olvasás 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Vásárlást igazoló számlát Advance DocType: Address,Shop,Bolt @@ -777,7 +778,7 @@ DocType: Salary Slip,Total in words,Összesen szavakban DocType: Material Request Item,Lead Time Date,Átfutási idő dátuma apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,kötelező. Talán Pénzváltó rekord nem teremtett apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Row # {0}: Kérem adjon meg Serial No jogcím {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Mert "Termék Bundle" tételek, raktár, Serial No és Batch Nem fogják tekinteni a "Csomagolási lista" táblázatban. Ha Warehouse és a Batch Nem vagyunk azonosak az összes csomagoljon bármely "Product Bundle" elemet, ezek az értékek bekerülnek a fő tétel asztal, értékek lesznek másolva "Csomagolási lista" táblázatban." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Mert "Termék Bundle" tételek, raktár, Serial No és Batch Nem fogják tekinteni a "Csomagolási lista" táblázatban. Ha Warehouse és a Batch Nem vagyunk azonosak az összes csomagoljon bármely "Product Bundle" elemet, ezek az értékek bekerülnek a fő tétel asztal, értékek lesznek másolva "Csomagolási lista" táblázatban." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Kiszállítás a vevő felé. DocType: Purchase Invoice Item,Purchase Order Item,Megrendelés Termék apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Közvetett jövedelem @@ -798,6 +799,7 @@ DocType: Process Payroll,Select Payroll Year and Month,"Válassza bérszámfejt apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Tovább a megfelelő csoportba (általában pénzeszközök felhasználása> forgóeszközök> bankszámlák és új fiók létrehozása (kattintva Add Child) típusú "Bank" DocType: Workstation,Electricity Cost,Villamosenergia-költség DocType: HR Settings,Don't send Employee Birthday Reminders,Ne küldjön dolgozói születésnapi emlékeztetőt +,Employee Holiday Attendance,Alkalmazott Nyaralás Nézőszám DocType: Opportunity,Walk In,Utcáról apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Stock bejegyzések DocType: Item,Inspection Criteria,Vizsgálati szempontok @@ -820,7 +822,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,S DocType: Journal Entry Account,Expense Claim,Béremelési igény apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Mennyiség: {0} DocType: Leave Application,Leave Application,Szabadságok -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Szabadság Lefoglaló Eszköz +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Szabadság Lefoglaló Eszköz DocType: Leave Block List,Leave Block List Dates,Hagyja Block List dátuma DocType: Company,If Monthly Budget Exceeded (for expense account),Ha havi költségkeret túllépése (a költség számla) DocType: Workstation,Net Hour Rate,Net órás sebesség @@ -830,7 +832,7 @@ DocType: Packing Slip Item,Packing Slip Item,Csomagjegy tétel DocType: POS Profile,Cash/Bank Account,Cash / Bank Account apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Az eltávolított elemek változása nélkül mennyiséget vagy értéket. DocType: Delivery Note,Delivery To,Szállítás az -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Attribútum tábla kötelező +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Attribútum tábla kötelező DocType: Production Planning Tool,Get Sales Orders,Get Vevőmegrendelés apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} nem lehet negatív apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Kedvezmény @@ -894,7 +896,7 @@ DocType: SMS Center,Total Characters,Összesen karakterek apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},"Kérjük, válasszon BOM BOM területen jogcím {0}" DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-Form Számla részlete DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Fizetési Megbékélés Számla -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Hozzájárulás% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Hozzájárulás% DocType: Item,website page link,website oldal link DocType: Company,Company registration numbers for your reference. Tax numbers etc.,A cég regisztrált adatai. Pl.: adószám; stb. DocType: Sales Partner,Distributor,Nagykereskedő @@ -936,10 +938,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM konverziós tényező DocType: Stock Settings,Default Item Group,Alapértelmezett árucsoport apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Beszállítói adatbázis. DocType: Account,Balance Sheet,Mérleg -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',"Költség Center For elem Elem Code """ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',"Költség Center For elem Elem Code """ DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,"Az értékesítési személy kap egy emlékeztető Ezen a napon a kapcsolatot az ügyféllel," apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","További számlák tehető alatt csoportjai, de bejegyzéseket lehet tenni ellene nem Csoportok" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Adó és egyéb levonások fizetést. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Adó és egyéb levonások fizetést. DocType: Lead,Lead,Célpont DocType: Email Digest,Payables,Kötelezettségek DocType: Account,Warehouse,Raktár @@ -956,10 +958,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Nem egyeztetett fiz DocType: Global Defaults,Current Fiscal Year,Jelenlegi pénzügyi év DocType: Global Defaults,Disable Rounded Total,Kerekített összesen elrejtése DocType: Lead,Call,Hívás -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,"""Bejegyzések"" nem lehet üres" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,"""Bejegyzések"" nem lehet üres" apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},A {0} duplikált sor azonos ezzel: {1} ,Trial Balance,Trial Balance -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Beállítása Alkalmazottak +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Beállítása Alkalmazottak apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","Grid """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,"Kérjük, válasszon prefix első" apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Kutatás @@ -968,7 +970,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,Felhasználó ID apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Kilátás Ledger apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Legkorábbi -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Egy tétel Group létezik azonos nevű, kérjük, változtassa meg az elem nevét, vagy nevezze át a tétel-csoportban" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Egy tétel Group létezik azonos nevű, kérjük, változtassa meg az elem nevét, vagy nevezze át a tétel-csoportban" DocType: Production Order,Manufacture against Sales Order,Gyártás ellen Vevői apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,A világ többi része apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,A tétel {0} nem lehet Batch @@ -993,7 +995,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Elutasított raktár DocType: GL Entry,Against Voucher,Ellen utalvány DocType: Item,Default Buying Cost Center,Alapértelmezett Vásárlási Cost Center apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Ahhoz, hogy a legjobbat hozza ki ERPNext, azt ajánljuk, hogy időbe telik, és nézni ezeket a videókat segítséget." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Elem {0} kell Sales Elem +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Elem {0} kell Sales Elem apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,nak nek DocType: Item,Lead Time in days,Átfutási idő nap ,Accounts Payable Summary,A szállítói kötelezettségek összefoglalása @@ -1019,7 +1021,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Mezőgazdaság apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,A termékek vagy szolgáltatások DocType: Mode of Payment,Mode of Payment,Fizetési mód -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Weboldal kép legyen nyilvános fájl vagy weboldal URL +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Weboldal kép legyen nyilvános fájl vagy weboldal URL apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,"Ez egy gyökér tétel-csoportban, és nem lehet szerkeszteni." DocType: Journal Entry Account,Purchase Order,Megrendelés DocType: Warehouse,Warehouse Contact Info,Raktári kapcsolattartó @@ -1030,7 +1032,7 @@ DocType: Serial No,Serial No Details,Sorozatszám adatai DocType: Purchase Invoice Item,Item Tax Rate,Az anyag adójának mértéke apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","{0}, csak jóváírásokat lehet kapcsolni a másik ellen terheléssel" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Szállítólevélen {0} nem nyújtják be -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Elem {0} kell egy Alvállalkozásban Elem +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Elem {0} kell egy Alvállalkozásban Elem apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Capital Felszereltség apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Árképzési szabály először alapján kiválasztott ""Apply"" mezőben, ami lehet pont, pont-csoport vagy a márka." DocType: Hub Settings,Seller Website,Eladó Website @@ -1039,7 +1041,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Cél DocType: Sales Invoice Item,Edit Description,Leírás szerkesztése apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,"Várható szállítási határidő kisebb, mint a tervezett kezdési dátum." -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,A Szállító +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,A Szállító DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Beállítás Account Type segít kiválasztani ezt a számlát a tranzakció. DocType: Purchase Invoice,Grand Total (Company Currency),Mindösszesen (Társaság Currency) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Összes kimenő @@ -1091,7 +1093,6 @@ DocType: Authorization Rule,Average Discount,Átlagos kedvezmény DocType: Address,Utilities,Segédletek DocType: Purchase Invoice Item,Accounting,Könyvelés DocType: Features Setup,Features Setup,Funkciók beállítása -DocType: Item,Is Service Item,A szolgáltatás Elem apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Jelentkezési határidő nem lehet kívülről szabadság kiosztási időszak DocType: Activity Cost,Projects,Projektek apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,"Kérjük, válasszon pénzügyi év" @@ -1112,7 +1113,7 @@ DocType: Item,Maintain Stock,Fenntartani Stock apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Stock bejegyzés már létrehozott termelési rendelés apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Nettó változás állóeszköz- DocType: Leave Control Panel,Leave blank if considered for all designations,"Hagyja üresen, ha figyelembe valamennyi megjelölés" -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,"Charge típusú ""közvetlen"" sorában {0} nem lehet jogcím tartalmazza Rate" +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,"Charge típusú ""közvetlen"" sorában {0} nem lehet jogcím tartalmazza Rate" apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Re Datetime DocType: Email Digest,For Company,A Társaságnak @@ -1121,8 +1122,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Szállítási cím Név apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Számlatükör DocType: Material Request,Terms and Conditions Content,Általános szerződési feltételek tartalma -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,"nem lehet nagyobb, mint 100" -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Elem {0} nem Stock tétel +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,"nem lehet nagyobb, mint 100" +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Elem {0} nem Stock tétel DocType: Maintenance Visit,Unscheduled,Nem tervezett DocType: Employee,Owned,Tulaj DocType: Salary Slip Deduction,Depends on Leave Without Pay,"Attól függ, fizetés nélküli szabadságon" @@ -1143,7 +1144,7 @@ Used for Taxes and Charges","Adó részletesen táblázatban letöltésre a tét apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Munkavállaló nem jelent magának. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Ha a számla zárolásra került, a bejegyzések szabad korlátozni a felhasználók." DocType: Email Digest,Bank Balance,Bank mérleg -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Számviteli könyvelése {0}: {1} csak akkor lehet elvégezni a pénznem: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Számviteli könyvelése {0}: {1} csak akkor lehet elvégezni a pénznem: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Nem aktív bérszerkeztet talált munkavállalói {0} és a hónap DocType: Job Opening,"Job profile, qualifications required etc.","Munkakör, szükséges képesítések stb" DocType: Journal Entry Account,Account Balance,Számla egyenleg @@ -1160,7 +1161,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Részegysége DocType: Shipping Rule Condition,To Value,Hogy Érték DocType: Supplier,Stock Manager,Stock menedzser apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Forrás raktárban kötelező sorban {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Csomagjegy +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Csomagjegy apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Office Rent apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Beállítás SMS gateway beállítások apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Az importálás nem sikerült! @@ -1204,7 +1205,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,Anyagjegyzék részlet szám DocType: Purchase Invoice,Additional Discount Amount (Company Currency),További kedvezmény összege (Társaság Currency) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Hiba: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,"Kérjük, hozzon létre új fiókot a számlatükör." -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Karbantartási látogatás +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Karbantartási látogatás apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Vásárló > Vásárlói csoport > Terület DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Elérhető Batch Mennyiség a Warehouse DocType: Time Log Batch Detail,Time Log Batch Detail,Időnapló gyűjtő adatai @@ -1213,7 +1214,7 @@ DocType: Leave Block List,Block Holidays on important days.,Blokk Holidays fonto ,Accounts Receivable Summary,VEVÔKÖVETELÉSEK Összefoglaló apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,"Kérjük, állítsa User ID mező alkalmazotti rekordot beállítani Employee szerepe" DocType: UOM,UOM Name,Mértékegység neve -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,A támogatás mértéke +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,A támogatás mértéke DocType: Sales Invoice,Shipping Address,Szállítási cím DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,Ez az eszköz segít frissíteni vagy kijavítani a mennyiséget és értékelési raktáron a rendszerben. Ez tipikusan szinkronizálja a rendszer értékei és mi valóban létezik a raktárakban. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,"A szavak lesz látható, ha menteni a szállítólevélen." @@ -1254,7 +1255,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,"Hogy nyomon elemeket használja vonalkód. Ön képes lesz arra, hogy belépjen elemek szállítólevél és Értékesítési számlák beolvasásával vonalkód pont." apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Küldje el újra Fizetési E-mail DocType: Dependent Task,Dependent Task,Függő Task -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Konverziós tényező alapértelmezett mértékegység legyen 1 sorban {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Konverziós tényező alapértelmezett mértékegység legyen 1 sorban {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},"Szabadság típusú {0} nem lehet hosszabb, mint {1}" DocType: Manufacturing Settings,Try planning operations for X days in advance.,Próbálja Tervezési tevékenység X nappal előre. DocType: HR Settings,Stop Birthday Reminders,Megállás Születésnapi emlékeztetők @@ -1264,7 +1265,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} megtekintése apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Nettó Cash DocType: Salary Structure Deduction,Salary Structure Deduction,Bérszerkeztet levonása -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Mértékegység {0} adta meg többször a konverziós tényező táblázat +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Mértékegység {0} adta meg többször a konverziós tényező táblázat apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Kifizetési kérelmet már létezik: {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Költsége Kiadott elemek apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},"Mennyiség nem lehet több, mint {0}" @@ -1293,7 +1294,7 @@ DocType: BOM Item,BOM Item,Anyagjegyzék tétel DocType: Appraisal,For Employee,Dolgozónak apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Sor {0}: Advance ellen Szállító kell megterhelni DocType: Company,Default Values,Alapértelmezett értékek -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Row {0}: Fizetés összege nem lehet negatív +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Row {0}: Fizetés összege nem lehet negatív DocType: Expense Claim,Total Amount Reimbursed,Megtérített teljes összeg apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Ellen Szállító Számla {0} dátuma {1} DocType: Customer,Default Price List,Alapértelmezett árjegyzék @@ -1321,8 +1322,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Gar DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Cserélje egy adott BOM minden más Darabjegyzékeket, ahol alkalmazzák. Ez váltja fel a régi BOM link, frissítse költség és regenerálja ""BOM Robbanás tétel"" tábla, mint egy új BOM" DocType: Shopping Cart Settings,Enable Shopping Cart,Bevásárló kosár engedélyezése DocType: Employee,Permanent Address,Állandó lakcím -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Elem {0} kell lennie a szolgáltatás elemet. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}","A kifizetett előleg ellen {0} {1} nem lehet nagyobb, \ mint Mindösszesen {2}" apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,"Kérjük, jelölje ki az elemet kódot" DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Csökkentse levonás fizetés nélküli szabadságon (LWP) @@ -1378,12 +1378,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Legfontosabb apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Variáns DocType: Naming Series,Set prefix for numbering series on your transactions,Előtagja a számozás sorozat a tranzakciók +DocType: Employee Attendance Tool,Employees HTML,Alkalmazottak HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Megállt érdekében nem lehet törölni. Kidugaszol törölni. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,"Alapértelmezett BOM ({0}) aktívnak kell lennie ehhez a termékhez, vagy a sablon" +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,"Alapértelmezett BOM ({0}) aktívnak kell lennie ehhez a termékhez, vagy a sablon" DocType: Employee,Leave Encashed?,Hagyja beváltásának módjáról? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Lehetőség A mező kitöltése kötelező DocType: Item,Variants,Változatok -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Beszerzési rendelés készítése +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Beszerzési rendelés készítése DocType: SMS Center,Send To,Címzett apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Nincs elég szabadság mérlege Leave Type {0} DocType: Payment Reconciliation Payment,Allocated amount,Lekötött összeg @@ -1483,7 +1484,7 @@ DocType: Sales Person,Name and Employee ID,Neve és dolgozói azonosító apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,A határidő nem lehet a rögzítés dátuma előtti DocType: Website Item Group,Website Item Group,Weboldal Termék Csoport apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Vámok és adók -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,"Kérjük, adja Hivatkozási dátum" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,"Kérjük, adja Hivatkozási dátum" apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Fizetési Gateway fiók nincs beállítva apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} fizetési bejegyzéseket nem lehet szűrni {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,"Táblázat a tétel, amely megjelenik a Web Site" @@ -1504,7 +1505,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Megoldás részletei DocType: Quality Inspection Reading,Acceptance Criteria,Elfogadási határ DocType: Item Attribute,Attribute Name,Jellemző neve -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Elem {0} kell lennie értékesítési vagy szolgáltatási tétel a {1} DocType: Item Group,Show In Website,Weboldalon megjelenjen apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Csoport DocType: Task,Expected Time (in hours),Várható idő (óra) @@ -1536,7 +1536,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Szállítandó mennyiség ,Pending Amount,Függőben lévő összeg DocType: Purchase Invoice Item,Conversion Factor,Konverziós tényező DocType: Purchase Order,Delivered,Kiszállítva -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Beállítás bejövő kiszolgáló munkahelyek email id. (Pl jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Beállítás bejövő kiszolgáló munkahelyek email id. (Pl jobs@example.com) DocType: Purchase Receipt,Vehicle Number,Jármű száma DocType: Purchase Invoice,The date on which recurring invoice will be stop,"Az időpont, amikor az ismétlődő számlát fognak megállítani" apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,"Összes elkülönített levelek {0} nem lehet kevesebb, mint a már jóváhagyott levelek {1} időszakra" @@ -1553,7 +1553,7 @@ DocType: HR Settings,HR Settings,Munkaügyi beállítások apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Költségén Követelés jóváhagyására vár. Csak a költség Jóváhagyó frissítheti állapotát. DocType: Purchase Invoice,Additional Discount Amount,További kedvezmény összege DocType: Leave Block List Allow,Leave Block List Allow,Hagyja Block List engedélyezése -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Rövidített nem lehet üres vagy hely +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Rövidített nem lehet üres vagy hely apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Csoport Csoporton kívüli apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Sport apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Összesen Aktuális @@ -1577,7 +1577,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},UOM átváltási arányra is szükség sorában {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Távolság dátum nem lehet a bejelentkezés előtt időpont sorában {0} DocType: Salary Slip,Deduction,Levonás -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Elem Ár hozzáadott {0} árjegyzéke {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Elem Ár hozzáadott {0} árjegyzéke {1} DocType: Address Template,Address Template,Címlista sablon apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,"Kérjük, adja Alkalmazott Id e üzletkötő" DocType: Territory,Classification of Customers by region,Fogyasztói csoportosítás régiónként @@ -1594,7 +1594,7 @@ DocType: Employee,Date of Birth,Születési idő apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Elem {0} már visszatért DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,"** Pénzügyi év ** az adott pénzügyi évben. Minden könyvelési tétel, és más jelentős tranzakciókat nyomon elleni ** pénzügyi év **." DocType: Opportunity,Customer / Lead Address,Vevő / Célpont címe -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Figyelmeztetés: Érvénytelen SSL tanúsítvány mellékletet {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Figyelmeztetés: Érvénytelen SSL tanúsítvány mellékletet {0} DocType: Production Order Operation,Actual Operation Time,Aktuális üzemidő DocType: Authorization Rule,Applicable To (User),Alkalmazandó (Felhasználó) DocType: Purchase Taxes and Charges,Deduct,Levonási @@ -1611,7 +1611,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Osztott szállítólevél csomagokat. apps/erpnext/erpnext/hooks.py +69,Shipments,Szállítások DocType: Purchase Order Item,To be delivered to customer,Be kell nyújtani az ügyfél -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Idő Log Status kell benyújtani. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Idő Log Status kell benyújtani. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,Soros {0} nem tartozik semmilyen Warehouse apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Sor # DocType: Purchase Invoice,In Words (Company Currency),Szavakkal (a cég valutanemében) @@ -1628,7 +1628,7 @@ DocType: Leave Application,Total Leave Days,Teljes szabadság napjait DocType: Email Digest,Note: Email will not be sent to disabled users,Megjegyzés: E-mail nem lesz elküldve a fogyatékkal élő felhasználók számára apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Válassza ki Company ... DocType: Leave Control Panel,Leave blank if considered for all departments,"Hagyja üresen, ha venni valamennyi szervezeti egység" -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Típusú foglalkoztatás (munkaidős, szerződéses, gyakornok stb)." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Típusú foglalkoztatás (munkaidős, szerződéses, gyakornok stb)." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} kötelező tétel {1} DocType: Currency Exchange,From Currency,Deviza- apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Kérjük, válasszon odaítélt összeg, Számla típusa és számlaszámra adni legalább egy sorban" @@ -1647,7 +1647,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,In Process DocType: Authorization Rule,Itemwise Discount,Itemwise Kedvezmény DocType: Purchase Order Item,Reference Document Type,Referencia Dokumentum típus -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} ellen Vevői {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} ellen Vevői {1} DocType: Account,Fixed Asset,Az állóeszköz- apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Serialized Inventory DocType: Activity Type,Default Billing Rate,Alapértelmezett díjszabás @@ -1657,7 +1657,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Vevői rendelés Fizetési DocType: Expense Claim Detail,Expense Claim Detail,Béremelés részlete apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Time Naplók létre: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,"Kérjük, válassza ki a megfelelő fiókot" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,"Kérjük, válassza ki a megfelelő fiókot" DocType: Item,Weight UOM,Súly mértékegysége DocType: Employee,Blood Group,Vércsoport DocType: Purchase Invoice Item,Page Break,Oldaltörés @@ -1692,7 +1692,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM rekurzív: {0} nem lehet a szülő vagy a gyermek {2} DocType: Production Order Operation,Completed Qty,Befejezett Mennyiség apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","{0}, csak betéti számlák köthető másik ellen jóváírás" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Árlista {0} van tiltva +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Árlista {0} van tiltva DocType: Manufacturing Settings,Allow Overtime,Hagyjuk Túlóra apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} sorozatszám szükséges jogcím {1}. Megadta {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Aktuális Értékelés Rate @@ -1743,7 +1743,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Egye apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Case Nem. Nem lehet 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,"Ha értékesítési csapat és eladó Partners (Channel Partners) akkor kell jelölni, és megtartják hozzájárulást az értékesítési tevékenység" DocType: Item,Show a slideshow at the top of the page,Mutass egy slideshow a lap tetején -DocType: Item,"Allow in Sales Order of type ""Service""",Hagyjuk a vevői rendelés típusú "Service" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Üzletek DocType: Time Log,Projects Manager,Projekt menedzser DocType: Serial No,Delivery Time,Szállítási idő @@ -1758,6 +1757,7 @@ DocType: Rename Tool,Rename Tool,Átnevezési eszköz apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Költségek újraszámolása DocType: Item Reorder,Item Reorder,Anyag újrarendelés apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Transfer anyag +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Elem {0} kell egy értékesítési pont a {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Adja meg a működését, a működési költségek, és hogy egy egyedi Operation nem a műveleteket." DocType: Purchase Invoice,Price List Currency,Árlista pénzneme DocType: Naming Series,User must always select,Felhasználó mindig válassza @@ -1778,7 +1778,7 @@ DocType: Appraisal,Employee,Munkavállaló apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Import-mail-tól apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Meghívás Felhasználó DocType: Features Setup,After Sale Installations,Miután Eladó létesítmények -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} teljesen számlázott +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} teljesen számlázott DocType: Workstation Working Hour,End Time,End Time apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Az általános szerződési feltételek az értékesítési vagy megvásárolható. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Utalvány által csoportosítva @@ -1804,7 +1804,7 @@ DocType: Upload Attendance,Attendance To Date,Részvétel a dátum apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Beállítás bejövő kiszolgáló értékesítési email id. (Pl sales@example.com) DocType: Warranty Claim,Raised By,Felvetette DocType: Payment Gateway Account,Payment Account,Fizetési számla -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,"Kérjük, adja Társaság a folytatáshoz" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,"Kérjük, adja Társaság a folytatáshoz" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Nettó változás Vevők apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Kompenzációs Off DocType: Quality Inspection Reading,Accepted,Elfogadva @@ -1816,14 +1816,14 @@ DocType: Shipping Rule,Shipping Rule Label,Szállítási lehetőség címkéi apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Nyersanyagok nem lehet üres. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Nem sikerült frissíteni a készletek, számla tartalmaz csepp szállítási elemet." DocType: Newsletter,Test,Teszt -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Mivel már meglévő részvény tranzakciók ezt az elemet, \ nem tudja megváltoztatni az értékeket "Has Serial No", "a kötegelt Nem", "Úgy Stock pont" és "értékelési módszer"" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Gyors Naplókönyvelés apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,"Nem tudod megváltoztatni mértéke, ha BOM említett Against olyan tétel" DocType: Employee,Previous Work Experience,Korábbi szakmai tapasztalat DocType: Stock Entry,For Quantity,Mert Mennyiség apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},"Kérjük, adja Tervezett Mennyiség jogcím {0} sorban {1}" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} nem nyújtják be +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} nem nyújtják be apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Kérelmek tételek. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Külön termelési érdekében jön létre minden kész a jó elemet. DocType: Purchase Invoice,Terms and Conditions1,Általános szerződési feltételek1 @@ -1848,6 +1848,7 @@ DocType: Notification Control,Expense Claim Approved Message,Jóváhagyott igén DocType: Email Digest,How frequently?,Milyen gyakran? DocType: Purchase Receipt,Get Current Stock,Aktuális raktárkészlet átmásolása apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Tree of Bill of Materials +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Mark Present apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Karbantartás kezdési időpontja nem lehet korábbi szállítási határidő a Serial No {0} DocType: Production Order,Actual End Date,Tényleges befejezési dátum DocType: Authorization Rule,Applicable To (Role),Alkalmazandó (Role) @@ -1862,7 +1863,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,"Szerződés befejezés dátuma nem lehet nagyobb, mint Csatlakozás dátuma" DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,"A harmadik fél forgalmazó / kereskedő / bizományos / társult / viszonteladó, aki eladja a vállalatok termékek a jutalék." DocType: Customer Group,Has Child Node,Lesz gyerek bejegyzése? -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} ellen Megrendelés {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} ellen Megrendelés {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Írja be a statikus url paramétereket itt (Pl. A feladó = ERPNext, username = ERPNext, password = 1234 stb)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} sem aktív pénzügyi évben. További részletekért ellenőrizze {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Ez egy példa honlapján automatikusan generált a ERPNext @@ -1890,7 +1891,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Add or Deduct: Whether you want to add or deduct the tax.","Normál adó sablont, hogy lehet alkalmazni, hogy minden vásárlási tranzakciókat. Ez a sablon tartalmazhat listáját adó fejek és egyéb ráfordítások fejek, mint a ""Shipping"", ""biztosítás"", ""kezelés"" stb #### Megjegyzés Az adó mértéke határozná meg itt lesz az adó normál kulcsának minden ** elemek * *. Ha vannak ** ** elemek, amelyek különböző mértékben, akkor hozzá kell adni a ** Elem Tax ** asztalra a ** Elem ** mester. #### Leírása oszlopok 1. Számítási típus: - Ez lehet a ** Teljes nettó ** (vagyis az összege alapösszeg). - ** Az előző sor Total / Összeg ** (kumulatív adók vagy díjak). Ha ezt a lehetőséget választja, az adó fogják alkalmazni százalékában az előző sor (az adótábla) mennyisége vagy teljes. - ** A tényleges ** (mint említettük). 2. Account Head: A fiók főkönyvi, amelyek szerint ez az adó könyvelik 3. Cost Center: Ha az adó / díj olyan jövedelem (például a szállítás), vagy költségkímélő kell foglalni ellen Cost Center. 4. Leírás: Leírás az adó (amely lehet nyomtatott számlák / idézetek). 5. Rate: adókulcs. 6. Összeg: Adó összege. 7. Teljes: Összesített összesen ebben a kérdésben. 8. Adja Row: Ha alapuló ""Előző Row Total"" kiválaszthatja a sor számát veszik, mint a bázis ezt a számítást (alapértelmezett az előző sor). 9. fontolják meg az adózási vagy illeték: Ebben a részben megadhatja, ha az adó / díj abban az értékelésben (nem része összesen), vagy kizárólag a teljes (nem hozzáadott értéket az elem), vagy mindkettő. 10. Adjon vagy le lehet vonni: Akár akarjuk adni vagy le lehet vonni az adóból." DocType: Purchase Receipt Item,Recd Quantity,RecD Mennyiség apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},"Nem lehet még több tétel {0}, mint Sales Rendelési mennyiség {1}" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,"Stock Entry {0} nem nyújtják be," +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,"Stock Entry {0} nem nyújtják be," DocType: Payment Reconciliation,Bank / Cash Account,Bank / Cash Account DocType: Tax Rule,Billing City,Számlázási város DocType: Global Defaults,Hide Currency Symbol,Pénznem szimbólumának elrejtése @@ -1916,7 +1917,7 @@ DocType: Salary Structure,Total Earning,Összesen Earning DocType: Purchase Receipt,Time at which materials were received,Időpontja anyagok érkezett apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Saját címek DocType: Stock Ledger Entry,Outgoing Rate,Kimenő Rate -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Szervezet ága mester. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Szervezet ága mester. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,vagy DocType: Sales Order,Billing Status,Számlázási állapot apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Közműben @@ -1954,7 +1955,7 @@ DocType: Bin,Reserved Quantity,Mennyiség fenntartva DocType: Landed Cost Voucher,Purchase Receipt Items,Vásárlási nyugta elemek apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Testreszabása Forms DocType: Account,Income Account,Jövedelem számla -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Szállítás +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Szállítás DocType: Stock Reconciliation Item,Current Qty,Jelenlegi Mennyiség DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",Lásd az 'Anyagköltség számítás módja' a Költség részben DocType: Appraisal Goal,Key Responsibility Area,Felelősségi terület @@ -1966,8 +1967,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,Uta DocType: Notification Control,Purchase Order Message,Megrendelés Message DocType: Tax Rule,Shipping Country,Szállítási Ország DocType: Upload Attendance,Upload HTML,HTML feltöltése -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","Előleg teljes ({0}) ellen Order {1} nem lehet nagyobb, \ mint a Grand Total ({2})" DocType: Employee,Relieving Date,Tehermentesítő dátuma apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Árképzési szabály készül felülírni árjegyzéke / határozza kedvezmény százalékos, néhány olyan feltétel alapján." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Warehouse csak akkor lehet megváltoztatni keresztül Stock Entry / szállítólevél / vásárlási nyugta @@ -1977,8 +1976,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Jöve apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Ha a kiválasztott árképzési szabály készül az ""Ár"", az felülírja árlista. Árképzési szabály ár a végleges ár, így további kedvezményt kellene alkalmazni. Ezért a tranzakciók, mint a vevői rendelés, megrendelés, stb, akkor kerül letöltésre a ""Rate"" mezőbe, ahelyett, hogy ""árjegyzéke Rate"" mezőben." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,A pálya vezet az ipar típusa. DocType: Item Supplier,Item Supplier,Anyagbeszállító -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,"Kérjük, adja tételkód hogy batch nincs" -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},"Kérjük, válasszon értéket {0} quotation_to {1}" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,"Kérjük, adja tételkód hogy batch nincs" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},"Kérjük, válasszon értéket {0} quotation_to {1}" apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Minden címek. DocType: Company,Stock Settings,Készlet beállítások apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Összevonása csak akkor lehetséges, ha a következő tulajdonságok azonosak mindkét bejegyzések. Van Group, Root típusa, Company" @@ -2001,7 +2000,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Csekk száma DocType: Payment Tool Detail,Payment Tool Detail,Fizetési eszköz Detail ,Sales Browser,Értékesítési Browser DocType: Journal Entry,Total Credit,Követelés összesen -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Figyelmeztetés: Egy másik {0} # {1} létezik elleni készletnövekedést {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Figyelmeztetés: Egy másik {0} # {1} létezik elleni készletnövekedést {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Helyi apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),A hitelek és előlegek (Eszközök) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Adósok @@ -2021,8 +2020,8 @@ DocType: Price List,Price List Master,Árlista mester DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,"Minden értékesítési tranzakciók lehet címkézett ellen több ** értékesítők ** így, és kövesse nyomon célokat." ,S.O. No.,SO No. DocType: Production Order Operation,Make Time Log,Legyen ideje Bejelentkezés -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,"Kérjük, állítsa újrarendezésből mennyiség" -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},"Kérjük, hozzon létre Ügyfél a Lead {0}" +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,"Kérjük, állítsa újrarendezésből mennyiség" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},"Kérjük, hozzon létre Ügyfél a Lead {0}" DocType: Price List,Applicable for Countries,Alkalmazható Országok apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Számítógépek apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,"Ez egy gyökér vevőkör, és nem lehet szerkeszteni." @@ -2058,7 +2057,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Száml DocType: Payment Reconciliation Invoice,Outstanding Amount,Fennálló összeg DocType: Project Task,Working,Folyamatban DocType: Stock Ledger Entry,Stock Queue (FIFO),Stock Queue (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,"Kérjük, válasszon Time Naplók." +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,"Kérjük, válasszon Time Naplók." apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} nem tartozik a társasághoz {1} DocType: Account,Round Off,Befejez ,Requested Qty,Kért Mennyiség @@ -2096,7 +2095,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Get vonatkozó bejegyzései apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Számviteli könyvelése Stock DocType: Sales Invoice,Sales Team1,Értékesítő csapat1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Elem {0} nem létezik +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Elem {0} nem létezik DocType: Sales Invoice,Customer Address,Vevő címe DocType: Payment Request,Recipient and Message,A címzett és a Message DocType: Purchase Invoice,Apply Additional Discount On,Alkalmazza További kedvezmény @@ -2115,7 +2114,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Mute-mail apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Élelmiszerek, italok és dohány" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL vagy BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Egyszerre csak fizetés ellenében nem számlázott {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Egyszerre csak fizetés ellenében nem számlázott {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,"Jutalék mértéke nem lehet nagyobb, mint a 100" apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Minimum készletszint DocType: Stock Entry,Subcontract,Alvállalkozói @@ -2133,9 +2132,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Szoftver apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Szín DocType: Maintenance Visit,Scheduled,Ütemezett apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Kérjük, válasszon pont, ahol "Is Stock tétel" "Nem" és "Van Sales Termék" "Igen", és nincs más termék Bundle" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),"Összesen előre ({0}) ellen rendelés {1} nem lehet nagyobb, mint a végösszeg ({2})" DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Válassza ki havi megoszlása egyenlőtlen osztja célok hónapok között. DocType: Purchase Invoice Item,Valuation Rate,Becsült érték -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Árlista Ki nem választott +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Árlista Ki nem választott apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,"Elem Row {0}: vásárlási nyugta {1} nem létezik a fent 'Vásárlás bevételek ""tábla" apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Employee {0} már jelentkezett {1} között {2} és {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Projekt kezdési dátuma @@ -2147,6 +2147,7 @@ DocType: Quality Inspection,Inspection Type,Vizsgálat típusa apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},"Kérjük, válassza ki a {0}" DocType: C-Form,C-Form No,C-Form No DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,Jelöletlen Nézőszám apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Kutató apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,"Kérjük, őrizze meg a hírlevél küldés előtt" apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Név vagy e-mail kötelező @@ -2172,7 +2173,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Megerő DocType: Payment Gateway,Gateway,Gateway apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Szállító> Szállító Type apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,"Kérjük, adja enyhíti a dátumot." -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,"Csak Hagyd alkalmazások állapotát ""Elfogadott"" lehet benyújtani" apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Address Cím kötelező. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,"Adja meg nevét kampányt, ha a forrása a vizsgálódás kampány" @@ -2187,10 +2188,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Elfogadott raktár DocType: Bank Reconciliation Detail,Posting Date,Rögzítés dátuma DocType: Item,Valuation Method,Készletérték számítása apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Nem található árfolyam {0} {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Mark Félnapos DocType: Sales Invoice,Sales Team,Értékesítő csapat apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Ismétlődő bejegyzés DocType: Serial No,Under Warranty,Garanciaidőn belül -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Hiba] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Hiba] DocType: Sales Order,In Words will be visible once you save the Sales Order.,"A szavak lesz látható, ha menteni a Vevői rendelés." ,Employee Birthday,Munkavállaló születésnapja apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Venture Capital @@ -2213,6 +2215,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,"Költség Center meglévő tranzakciók nem lehet átalakítani, hogy csoportban" DocType: Account,Depreciation,Értékcsökkenés apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Szállító (k) +DocType: Employee Attendance Tool,Employee Attendance Tool,Munkavállalói részvétel eszköz DocType: Supplier,Credit Limit,Credit Limit apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Tranzakció kiválasztása DocType: GL Entry,Voucher No,Bizonylatszám @@ -2239,7 +2242,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Root fiók nem törölhető ,Is Primary Address,Van Elsődleges cím DocType: Production Order,Work-in-Progress Warehouse,Work in progress Warehouse -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Referencia # {0} dátuma {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Referencia # {0} dátuma {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Kezelje címek DocType: Pricing Rule,Item Code,Tételkód DocType: Production Planning Tool,Create Production Orders,Gyártásrendelés létrehozása @@ -2266,7 +2269,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Bank Megbékélés apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Get frissítések apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,"A(z) {0} anyagigénylés törölve, vagy leállítva" apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Adjunk hozzá néhány mintát bejegyzések -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Hagyja Management +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Hagyja Management apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Számla által csoportosítva DocType: Sales Order,Fully Delivered,Teljesen szállítva DocType: Lead,Lower Income,Alacsonyabb jövedelmű @@ -2281,6 +2284,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"a ""Dátumtól"" a ""Dátumig"" után kell állnia" ,Stock Projected Qty,Stock kivetített Mennyiség apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Vásárlói {0} nem tartozik a projekt {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Jelzett Nézőszám HTML DocType: Sales Order,Customer's Purchase Order,Ügyfél Megrendelés DocType: Warranty Claim,From Company,Cégtől apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Érték vagy menny @@ -2345,6 +2349,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Banki átutalás apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,"Kérjük, válasszon Bank Account" DocType: Newsletter,Create and Send Newsletters,Létrehozása és küldése hírlevelek +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Ellenőrizni mind DocType: Sales Order,Recurring Order,Ismétlődő rendelés DocType: Company,Default Income Account,Alapértelmezett bejövő számla apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Vásárlói csoport / Ügyfélszolgálat @@ -2376,6 +2381,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Return Against vásár DocType: Item,Warranty Period (in days),Garancia hossza (napokban) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Származó nettó cash-műveletek apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,pl. ÁFA +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Mark munkavállalói részvétel ömlesztett apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,4. pont DocType: Journal Entry Account,Journal Entry Account,Könyvelési tétel számlaszáma DocType: Shopping Cart Settings,Quotation Series,Idézet Series @@ -2520,14 +2526,14 @@ DocType: Task,Actual Start Date (via Time Logs),Tényleges kezdési dátum (via DocType: Stock Reconciliation Item,Before reconciliation,Mielőtt megbékélés apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},{0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Adók és költségek hozzáadása (a cég pénznemében) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Elem Tax Row {0} kell figyelembe típusú adót vagy bevételként vagy ráfordításként vagy fizetős +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Elem Tax Row {0} kell figyelembe típusú adót vagy bevételként vagy ráfordításként vagy fizetős DocType: Sales Order,Partly Billed,Részben számlázott DocType: Item,Default BOM,Alapértelmezett BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,"Kérjük ismíteld cég nevét, hogy erősítse" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Teljes fennálló Amt DocType: Time Log Batch,Total Hours,Össz óraszám DocType: Journal Entry,Printing Settings,Nyomtatási beállítások -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},"Összesen Betéti kell egyeznie az összes Credit. A különbség az, {0}" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},"Összesen Betéti kell egyeznie az összes Credit. A különbség az, {0}" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Automotive apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Áthozás fuvarlevélből DocType: Time Log,From Time,Időtől @@ -2573,7 +2579,7 @@ DocType: Purchase Invoice Item,Image View,Kép megtekintése DocType: Issue,Opening Time,Kezdési idő apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,Ettől és időpontok megadása apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Securities & árutőzsdén -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Alapértelmezett mértékegysége Variant '{0}' meg kell egyeznie a sablon "{1}" +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Alapértelmezett mértékegysége Variant '{0}' meg kell egyeznie a sablon "{1}" DocType: Shipping Rule,Calculate Based On,A számítás ezen alapul DocType: Delivery Note Item,From Warehouse,Raktárról DocType: Purchase Taxes and Charges,Valuation and Total,Értékelési és Total @@ -2595,7 +2601,7 @@ DocType: Leave Application,Follow via Email,Kövesse e-mailben DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Adó összege után kedvezmény összege apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Gyermek fiók létezik erre a számlára. Nem törölheti ezt a fiókot. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Vagy target Menny vagy előirányzott összeg kötelező -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},Nincs alapértelmezett BOM létezik tétel {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},Nincs alapértelmezett BOM létezik tétel {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,"Kérjük, válasszon Könyvelési dátum első" apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,"Nyitva Dátum kell, mielőtt zárónapja" DocType: Leave Control Panel,Carry Forward,Átvihető a szabadság @@ -2672,7 +2678,7 @@ DocType: Leave Type,Is Encash,A behajt DocType: Purchase Invoice,Mobile No,Mobiltelefon DocType: Payment Tool,Make Journal Entry,Tedd Naplókönyvelés DocType: Leave Allocation,New Leaves Allocated,Új szabadság lefoglalás -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Project-bölcs adatok nem állnak rendelkezésre árajánlat +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Project-bölcs adatok nem állnak rendelkezésre árajánlat DocType: Project,Expected End Date,Várható befejezés dátuma DocType: Appraisal Template,Appraisal Template Title,Teljesítmény értékelő sablon címe apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Kereskedelmi @@ -2720,6 +2726,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,Te apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Kérem adjon meg egy DocType: Offer Letter,Awaiting Response,Várom a választ apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Fent +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Idő Napló már kiszámlázott DocType: Salary Slip,Earning & Deduction,Kereset és levonás apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Account {0} nem lehet Group apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,"Opcionális. Ez a beállítás kell használni, a különböző tranzakciókat." @@ -2790,14 +2797,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Sikeresen törölve valamennyi ügylet a vállalattal kapcsolatos! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Mivel a dátum apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Próbaidő -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Alapértelmezett Warehouse kötelező Stock tétel. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Alapértelmezett Warehouse kötelező Stock tétel. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Kifizetését fizetése a hónap {0} és az év {1} DocType: Stock Settings,Auto insert Price List rate if missing,"Auto insert árjegyzéke mértéke, ha hiányzik" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Teljes befizetett összeg ,Transferred Qty,Át Mennyiség apps/erpnext/erpnext/config/learn.py +11,Navigating,Navigálás apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Tervezés -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Legyen ideje Bejelentkezés Batch +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Legyen ideje Bejelentkezés Batch apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Kiadott DocType: Project,Total Billing Amount (via Time Logs),Összesen Számlázási összeg (via Idő Napló) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Az általunk forgalmazott ezt a tárgyat @@ -2805,7 +2812,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,"Mennyiség nagyobbnak kell lennie, mint 0" DocType: Journal Entry,Cash Entry,Készpénz Entry DocType: Sales Partner,Contact Desc,Kapcsolattartó leírása -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Típusú levelek, mint alkalmi, beteg stb" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Típusú levelek, mint alkalmi, beteg stb" DocType: Email Digest,Send regular summary reports via Email.,Küldd el a rendszeres összefoglaló jelentések e-mailben. DocType: Brand,Item Manager,Elem menedzser DocType: Cost Center,Add rows to set annual budgets on Accounts.,Add sorok beállítani éves költségvetésekben számlák. @@ -2820,7 +2827,7 @@ DocType: GL Entry,Party Type,Párt Type apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,"Alapanyag nem lehet ugyanaz, mint a fő elem" DocType: Item Attribute Value,Abbreviation,Rövidítés apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Nem authroized hiszen {0} meghaladja határértékek -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Fizetés sablon mester. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Fizetés sablon mester. DocType: Leave Type,Max Days Leave Allowed,Max nap szabadságra hozhatja apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Állítsa adózási szabály az bevásárlókosár DocType: Payment Tool,Set Matching Amounts,Állítsa Matching összegek @@ -2833,7 +2840,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Idézet DocType: Stock Settings,Role Allowed to edit frozen stock,Zárolt készlet szerkesztésének engedélyezése ennek a beosztásnak ,Territory Target Variance Item Group-Wise,Terület Cél Variance tétel Group-Wise apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Minden vásárlói csoport -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} kötelező. Talán Pénzváltó rekord nem teremtett {1} {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} kötelező. Talán Pénzváltó rekord nem teremtett {1} {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Adó Sablon kötelező. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Account {0}: Parent véve {1} nem létezik DocType: Purchase Invoice Item,Price List Rate (Company Currency),Árlista Rate (Társaság Currency) @@ -2853,8 +2860,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Elem Wise Tax részlete ,Item-wise Price List Rate,Elem-bölcs árjegyzéke Rate apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Beszállítói ajánlat DocType: Quotation,In Words will be visible once you save the Quotation.,"A szavak lesz látható, ha menteni a stringet." -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} megállt -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},A vonalkód {0} már használt a {1} Tételnél +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} megállt +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},A vonalkód {0} már használt a {1} Tételnél DocType: Lead,Add to calendar on this date,Hozzáadás a naptárhoz ezen a napon apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Szabályok hozzátéve szállítási költségeket. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Közelgő események @@ -2880,8 +2887,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,No apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Adni legalább egy raktárban kötelező DocType: Serial No,Out of Warranty,Garanciaidőn túl DocType: BOM Replace Tool,Replace,Csere -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} ellen Értékesítési számlák {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,"Kérjük, adja alapértelmezett mértékegység" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} ellen Értékesítési számlák {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,"Kérjük, adja alapértelmezett mértékegység" DocType: Purchase Invoice Item,Project Name,Projekt neve DocType: Supplier,Mention if non-standard receivable account,"Beszélve, ha nem szabványos követelések számla" DocType: Journal Entry Account,If Income or Expense,Ha bevételként vagy ráfordításként @@ -2906,7 +2913,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Pénzügyi év: {0} nem létezik DocType: Currency Exchange,To Currency,A devizaárfolyam- DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,"Hagyja, hogy a következő felhasználók jóváhagyása Leave alkalmazások blokk nap." -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Típusú kiadások állítást. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Típusú kiadások állítást. DocType: Item,Taxes,Adók apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Fizetett és nem nyilvánított DocType: Project,Default Cost Center,Alapértelmezett költségközpont @@ -2936,7 +2943,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Sor # {0}: Sorszám {1} nem egyezik a {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Alkalmi szabadság DocType: Batch,Batch ID,Köteg ID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Megjegyzés: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Megjegyzés: {0} ,Delivery Note Trends,Szállítólevélen Trends apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Ezen a héten összefoglalója apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} kell egy megvásárolt vagy alvállalkozásba tétel sorában {1} @@ -2976,6 +2983,7 @@ DocType: Project Task,Pending Review,Ellenőrzésre vár apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,"Kattintson ide, hogy fordítson" DocType: Task,Total Expense Claim (via Expense Claim),Teljes Költség Követelés (via költségelszámolás benyújtás) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Az ügyfél Id +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Mark Hiányzik apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,"Az Idő nagyobbnak kell lennie, mint a Time" DocType: Journal Entry Account,Exchange Rate,Átváltási arány apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Vevői {0} nem nyújtják be @@ -3023,7 +3031,7 @@ DocType: Item Group,Default Expense Account,Alapértelmezett áfás számlát DocType: Employee,Notice (days),Figyelmeztetés (nap) DocType: Tax Rule,Sales Tax Template,Forgalmi adó Template DocType: Employee,Encashment Date,Beváltás dátuma -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Ellen utalvány típus közül kell Megrendelés, vásárlást igazoló számla vagy Naplókönyvelés" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Ellen utalvány típus közül kell Megrendelés, vásárlást igazoló számla vagy Naplókönyvelés" DocType: Account,Stock Adjustment,Stock Adjustment apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Alapértelmezett Tevékenység Költség létezik tevékenység típusa - {0} DocType: Production Order,Planned Operating Cost,Tervezett üzemeltetési költség @@ -3077,6 +3085,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Írja Off Entry DocType: BOM,Rate Of Materials Based On,Anyagköltség számítás módja apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Támogatási analitika +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Törölje az összes apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Cég hiányát raktárakban {0} DocType: POS Profile,Terms and Conditions,Általános Szerződési Feltételek apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},El kellene belüli pénzügyi évben. Feltételezve To Date = {0} @@ -3098,7 +3107,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Beállítani a költségvetési évben alapértelmezettként, kattintson a ""Beállítás alapértelmezettként""" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Beállítás bejövő kiszolgáló támogatási email id. (Pl support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Hiány Mennyiség -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Elem változat {0} létezik azonos tulajdonságokkal +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Elem változat {0} létezik azonos tulajdonságokkal DocType: Salary Slip,Salary Slip,Bérlap apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,"""Időpontig"" szükséges" DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Létrehoz csomagolás kombiné a csomagokat szállítani. Használt értesíteni csomag számát, a doboz tartalma, és a súlya." @@ -3146,7 +3155,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Kilát DocType: Item Attribute Value,Attribute Value,Jellemző értéke apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","Email id-nek egyedinek kell lennie, ez már létezik: {0}" ,Itemwise Recommended Reorder Level,Itemwise Ajánlott Reorder Level -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,"Kérjük, válassza ki a {0} első" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,"Kérjük, válassza ki a {0} első" DocType: Features Setup,To get Item Group in details table,"Ahhoz, hogy pont csoport adatait tartalmazó táblázatban" apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Batch {0} pont {1} lejárt. DocType: Sales Invoice,Commission,Jutalék @@ -3190,7 +3199,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Kiemelkedő utalványok DocType: Warranty Claim,Resolved By,Megoldotta DocType: Appraisal,Start Date,Kezdés dátuma -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Osztja levelek időszakra. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Osztja levelek időszakra. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,A csekkeket és betétek helytelenül elszámolt apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,"Kattintson ide, hogy ellenőrizze" apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Account {0}: Nem rendelhet magának szülői fiók @@ -3210,7 +3219,7 @@ DocType: Employee,Educational Qualification,Iskolai végzettség DocType: Workstation,Operating Costs,A működési költségek DocType: Employee Leave Approver,Employee Leave Approver,Munkavállalói Leave Jóváhagyó apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} sikeresen hozzáadva a hírlevél listán. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Row {0}: Egy Reorder bejegyzés már létezik erre a raktárban {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Row {0}: Egy Reorder bejegyzés már létezik erre a raktárban {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Nem jelenthetjük, mint elveszett, mert Idézet történt." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Vásárlási mester menedzser apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Gyártási rendelés {0} kell benyújtani @@ -3234,7 +3243,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Értékesítési számlák {0} már benyújtott apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Teljesítési dátum DocType: Purchase Invoice Item,Amount (Company Currency),Összeg (Társaság Currency) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Szervezeti egység (osztály) mestere. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Szervezeti egység (osztály) mestere. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Adjon meg egy érvényes mobil nos DocType: Budget Detail,Budget Detail,Költségkeret részlete apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,"Kérjük, adja üzenet elküldése előtt" @@ -3250,13 +3259,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Beérkezett és befogadott ,Serial No Service Contract Expiry,Sorozatszám karbantartási szerződés lejárati ideje DocType: Item,Unit of Measure Conversion,Mértékegység átváltás apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Nem változtatható meg a munkavállaló -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Egy bejegyzésben nem lehet egyszerre tartozás és követelés is. +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Egy bejegyzésben nem lehet egyszerre tartozás és követelés is. DocType: Naming Series,Help HTML,Súgó HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Összesen weightage kijelölt kell 100%. Ez {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Engedmény a túl- {0} keresztbe jogcím {1} DocType: Address,Name of person or organization that this address belongs to.,"Teljes név vagy szervezet, amely ezt a címet tartozik." apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Ön Szállítók -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,Nem lehet beállítani elveszett Sales elrendelése esetén. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,Nem lehet beállítani elveszett Sales elrendelése esetén. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,"Egy másik bérszerkeztet {0} aktív munkavállalói {1}. Kérjük, hogy az állapota ""inaktív"" a folytatáshoz." DocType: Purchase Invoice,Contact,Kapcsolat apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Feladó @@ -3266,11 +3275,11 @@ DocType: Item,Has Serial No,Lesz sorozatszáma? DocType: Employee,Date of Issue,Probléma dátuma apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: A {0} az {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Sor # {0}: Állítsa Szállító jogcím {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Weboldal kép {0} csatolt tétel {1} nem található +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Weboldal kép {0} csatolt tétel {1} nem található DocType: Issue,Content Type,Tartalom típusa apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Számítógép DocType: Item,List this Item in multiple groups on the website.,Sorolja ezt a tárgyat több csoportban a honlapon. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,"Kérjük, ellenőrizze Több pénznem opciót, hogy számláikat más pénznemben" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,"Kérjük, ellenőrizze Több pénznem opciót, hogy számláikat más pénznemben" apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Cikk: {0} nem létezik a rendszerben apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Ön nem jogosult a beállított értéket Frozen DocType: Payment Reconciliation,Get Unreconciled Entries,Get Nem egyeztetett bejegyzés @@ -3280,14 +3289,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Mit csinál? DocType: Delivery Note,To Warehouse,Raktárba apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Account {0} adta meg többször költségvetési évben {1} ,Average Commission Rate,Átlagos jutalék mértéke -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,"""Van sorozatszáma"" nem lehet ""igen"" a nem-készletezett tételnél" +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,"""Van sorozatszáma"" nem lehet ""igen"" a nem-készletezett tételnél" apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Jelenlétit nem lehet megjelölni a jövőbeli időpontokban DocType: Pricing Rule,Pricing Rule Help,Árképzési szabály Súgó DocType: Purchase Taxes and Charges,Account Head,Számla fejléc apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Frissítse többletköltségek kiszámítására landolt bekerülési apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Elektromos DocType: Stock Entry,Total Value Difference (Out - In),Összesen értékkülönbözet (Out - A) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Sor {0}: árfolyam kötelező +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Sor {0}: árfolyam kötelező apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},Felhasználói azonosító nem állította be az Employee {0} DocType: Stock Entry,Default Source Warehouse,Alapértelmezett raktár DocType: Item,Customer Code,Vevő kódja @@ -3306,15 +3315,15 @@ DocType: Notification Control,Sales Invoice Message,Értékesítési számlák M apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Záró számla {0} típusú legyen kötelezettség / saját tőke DocType: Authorization Rule,Based On,Alapuló DocType: Sales Order Item,Ordered Qty,Rendelt menny. -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Elem {0} van tiltva +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Elem {0} van tiltva DocType: Stock Settings,Stock Frozen Upto,Készlet zárolása eddig apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},"Közötti időszakra, és időszakról kilenc óra kötelező visszatérő {0}" apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Projekt feladatok és tevékenységek. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Bérlap generálása +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Bérlap generálása apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Vásárlási ellenőrizni kell, amennyiben alkalmazható a kiválasztott {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,"A kedvezménynek kisebbnek kell lennie, mint 100" DocType: Purchase Invoice,Write Off Amount (Company Currency),Írj egy egyszeri összeget (Társaság Currency) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,"Sor # {0}: Kérjük, állítsa újrarendezésből mennyiség" +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,"Sor # {0}: Kérjük, állítsa újrarendezésből mennyiség" DocType: Landed Cost Voucher,Landed Cost Voucher,Beszerzési költség utalvány apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},"Kérjük, állítsa {0}" DocType: Purchase Invoice,Repeat on Day of Month,Ismételje meg a hónap napja @@ -3366,7 +3375,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Alapértelmezett a Folyamatban Warehouse apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Alapértelmezett beállításokat számviteli tranzakciók. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Várható időpontja nem lehet korábbi Material igénylés dátuma -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Elem {0} kell lennie Sales tétel +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Elem {0} kell lennie Sales tétel DocType: Naming Series,Update Series Number,Sorszám frissítése DocType: Account,Equity,Méltányosság DocType: Sales Order,Printing Details,Nyomtatási Részletek @@ -3418,7 +3427,7 @@ DocType: Task,Review Date,Vélemény dátuma DocType: Purchase Invoice,Advance Payments,Előzetes kifizetések DocType: Purchase Taxes and Charges,On Net Total,Nettó összeshez apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Cél raktár sorban {0} meg kell egyeznie a gyártási utasítás -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Nincs joga felhasználni fizetési eszköz +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Nincs joga felhasználni fizetési eszköz apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,"""Értesítési e-mail címek"" nem meghatározott ismétlődő% s" apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,"Valuta nem lehet változtatni, miután bejegyzések segítségével más pénznemben" DocType: Company,Round Off Account,Fejezze ki Account @@ -3441,7 +3450,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,"Mennyiség pont után kapott gyártási / visszacsomagolásánál a megadott alapanyagok mennyiségét," DocType: Payment Reconciliation,Receivable / Payable Account,Követelések / Account DocType: Delivery Note Item,Against Sales Order Item,Ellen Vevői Elem -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},"Kérjük, adja Jellemző értéke az attribútum {0}" +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},"Kérjük, adja Jellemző értéke az attribútum {0}" DocType: Item,Default Warehouse,Alapértelmezett raktár DocType: Task,Actual End Date (via Time Logs),Tényleges End Date (via Idő Napló) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Költségvetést nem lehet rendelni ellen Group Account {0} @@ -3466,10 +3475,10 @@ DocType: Lead,Blog Subscriber,Blog Előfizető apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Készítse szabályok korlátozzák ügyletek alapján értékek. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Ha be van jelölve, a Total sem. munkanapok tartalmazza ünnepek, és ez csökkenti az értékét Fizetés Per Day" DocType: Purchase Invoice,Total Advance,Összesen Advance -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Feldolgozás bérszámfejtés +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Feldolgozás bérszámfejtés DocType: Opportunity Item,Basic Rate,Basic Rate DocType: GL Entry,Credit Amount,A hitel összege -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Beállítás Elveszett +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Beállítás Elveszett apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Fizetési átvétele Megjegyzés DocType: Supplier,Credit Days Based On,"Hitel napokon, attól függően" DocType: Tax Rule,Tax Rule,Adójogszabály- @@ -3499,7 +3508,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Elfogadott mennyiség apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} nem létezik apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Bills emelte az ügyfelek számára. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Projekt azonosító -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},"Row {0}: Az összeg nem lehet nagyobb, mint lévő összeget ad költségelszámolás benyújtás {1}. Függő Összeg: {2}" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},"Row {0}: Az összeg nem lehet nagyobb, mint lévő összeget ad költségelszámolás benyújtás {1}. Függő Összeg: {2}" apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} előfizetők hozzá DocType: Maintenance Schedule,Schedule,Ütemezés DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Adjuk költségvetés erre a költséghely. Beállításához költségvetésű akció, lásd a "Társaság List"" @@ -3560,19 +3569,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS Profile DocType: Payment Gateway Account,Payment URL Message,Fizetési URL Üzenet apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Szezonalitás a költségvetések tervezésekor, célok stb" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,"Row {0}: kifizetés összege nem lehet nagyobb, mint fennálló összeg" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,"Row {0}: kifizetés összege nem lehet nagyobb, mint fennálló összeg" apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Összesen Kifizetetlen -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Időnapló nem számlázható -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Elem {0} egy olyan sablon, kérjük, válasszon variánsai" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Időnapló nem számlázható +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Elem {0} egy olyan sablon, kérjük, válasszon variánsai" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Vásárló apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Nettó fizetés nem lehet negatív -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,"Kérjük, adja meg Against utalványok kézzel" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,"Kérjük, adja meg Against utalványok kézzel" DocType: SMS Settings,Static Parameters,Statikus paraméterek DocType: Purchase Order,Advance Paid,A kifizetett előleg DocType: Item,Item Tax,Az anyag adójának típusa apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Anyaga a Szállító apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Jövedéki számla DocType: Expense Claim,Employees Email Id,Dolgozó emailcíme +DocType: Employee Attendance Tool,Marked Attendance,jelzett Nézőszám apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,A rövid lejáratú kötelezettségek apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Küldd tömeges SMS-ben a kapcsolatot DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Fontolja adó vagy illeték @@ -3595,7 +3605,7 @@ DocType: Item Attribute,Numeric Values,Numerikus értékek apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Logo csatolása DocType: Customer,Commission Rate,Jutalék mértéke apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Győződjön Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Blokk szabadság alkalmazások osztály. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Blokk szabadság alkalmazások osztály. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,A kosár üres DocType: Production Order,Actual Operating Cost,Tényleges működési költség apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Root nem lehet szerkeszteni. @@ -3614,7 +3624,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,Automatikusan létrehozza Anyag kérése esetén mennyiséget megadott szint alá esik ,Item-wise Purchase Register,Elem-bölcs vásárlása Regisztráció DocType: Batch,Expiry Date,Lejárat dátuma -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item",Beállításához újrarendezésből szinten elemet kell a vásárlást pont vagy a gyártási tétel +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item",Beállításához újrarendezésből szinten elemet kell a vásárlást pont vagy a gyártási tétel ,Supplier Addresses and Contacts,Szállító Címek és Kapcsolatok apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,"Kérjük, válasszon Kategória első" apps/erpnext/erpnext/config/projects.py +18,Project master.,Projektek. diff --git a/erpnext/translations/id.csv b/erpnext/translations/id.csv index bc2b31f39e..73818e103b 100644 --- a/erpnext/translations/id.csv +++ b/erpnext/translations/id.csv @@ -164,14 +164,14 @@ DocType: Journal Entry Account,Credit in Company Currency,Kredit di Perusahaan M DocType: Delivery Note,Installation Status,Status Instalasi apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Jumlah Diterima + Ditolak harus sama dengan jumlah yang diterima untuk Item {0} DocType: Item,Supply Raw Materials for Purchase,Bahan pasokan baku untuk Pembelian -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Item {0} harus Pembelian Barang +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Item {0} harus Pembelian Barang DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Unduh Template, isi data yang sesuai dan melampirkan gambar yang sudah dimodifikasi. Semua tanggal dan karyawan kombinasi dalam jangka waktu yang dipilih akan datang dalam template, dengan catatan kehadiran yang ada" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,Item {0} tidak aktif atau akhir hidup telah tercapai DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Akan diperbarui setelah Faktur Penjualan yang Dikirim. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Untuk mencakup pajak berturut-turut {0} di tingkat Barang, pajak dalam baris {1} juga harus disertakan" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Pengaturan untuk modul HR +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Untuk mencakup pajak berturut-turut {0} di tingkat Barang, pajak dalam baris {1} juga harus disertakan" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Pengaturan untuk modul HR DocType: SMS Center,SMS Center,SMS Center DocType: BOM Replace Tool,New BOM,New BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Batch Waktu Log untuk Penagihan. @@ -199,7 +199,7 @@ DocType: Offer Letter,Select Terms and Conditions,Pilih Syarat dan Ketentuan DocType: Production Planning Tool,Sales Orders,Penjualan Pesanan DocType: Purchase Taxes and Charges,Valuation,Valuation ,Purchase Order Trends,Pesanan Pembelian Trends -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Alokasi cuti untuk tahunan. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Alokasi cuti untuk tahunan. DocType: Earning Type,Earning Type,Produktif Type DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Nonaktifkan Perencanaan Kapasitas dan Waktu Pelacakan DocType: Bank Reconciliation,Bank Account,Bank Account/Rekening Bank @@ -237,7 +237,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Item Situs Spesifikasi DocType: Payment Tool,Reference No,Referensi Tidak apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Tinggalkan Diblokir -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Item {0} telah mencapai akhir hidupnya pada {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Item {0} telah mencapai akhir hidupnya pada {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Tahunan DocType: Stock Reconciliation Item,Stock Reconciliation Item,Bursa Rekonsiliasi Barang DocType: Stock Entry,Sales Invoice No,Penjualan Faktur ada @@ -249,7 +249,7 @@ DocType: Item,Minimum Order Qty,Minimum Order Qty DocType: Pricing Rule,Supplier Type,Pemasok Type DocType: Item,Publish in Hub,Publikasikan di Hub ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Item {0} dibatalkan +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Item {0} dibatalkan apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Permintaan Material DocType: Bank Reconciliation,Update Clearance Date,Perbarui Izin Tanggal DocType: Item,Purchase Details,Rincian pembelian @@ -261,11 +261,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Ditolak Kuantitas DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Bidang yang tersedia di Delivery Note, Quotation, Faktur Penjualan, Sales Order" DocType: SMS Settings,SMS Sender Name,Pengirim SMS Nama DocType: Contact,Is Primary Contact,Apakah Kontak Utama +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Waktu Log telah Batched untuk Penagihan DocType: Notification Control,Notification Control,Pemberitahuan Kontrol DocType: Lead,Suggestions,Saran DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Menetapkan anggaran Group-bijaksana Barang di Wilayah ini. Anda juga bisa memasukkan musiman dengan menetapkan Distribusi. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},Cukup masukkan rekening kelompok orang tua untuk gudang {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Pembayaran terhadap {0} {1} tidak dapat lebih besar dari Posisi Jumlah {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Pembayaran terhadap {0} {1} tidak dapat lebih besar dari Posisi Jumlah {2} DocType: Supplier,Address HTML,Alamat HTML DocType: Lead,Mobile No.,Ponsel Nomor DocType: Maintenance Schedule,Generate Schedule,Menghasilkan Jadwal @@ -282,7 +283,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Disinkronkan Dengan Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Kata Sandi Salah DocType: Item,Variant Of,Varian Of -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Item {0} harus Layanan Barang apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',Selesai Qty tidak dapat lebih besar dari 'Jumlah untuk Industri' DocType: Period Closing Voucher,Closing Account Head,Menutup Akun Kepala DocType: Employee,External Work History,Eksternal Sejarah Kerja @@ -294,10 +294,10 @@ DocType: Newsletter,Newsletter,Laporan berkala DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Memberitahu melalui Email pada penciptaan Permintaan Bahan otomatis DocType: Journal Entry,Multi Currency,Multi Currency DocType: Payment Reconciliation Invoice,Invoice Type,Invoice Type -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Pengiriman Note +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Pengiriman Note apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Menyiapkan Pajak apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,Masuk pembayaran telah dimodifikasi setelah Anda menariknya. Silakan menariknya lagi. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} dimasukan dua kali dalam Pajak Barang +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} dimasukan dua kali dalam Pajak Barang apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Ringkasan untuk minggu ini dan kegiatan yang tertunda DocType: Workstation,Rent Cost,Sewa Biaya apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Silakan pilih bulan dan tahun @@ -308,7 +308,7 @@ DocType: Shipping Rule,Valid for Countries,Berlaku untuk Negara DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Semua data yang diimpor seperti mata uang, nilai tukar, total, grand total dll terdapat di Penerimaan Barang Dari Pembelian, Penawaran Dari Supplier, Faktur Pembelian, Purchase Order dll." apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,Barang ini adalah Template dan tidak dapat digunakan dalam transaksi. Item atribut akan disalin ke dalam varian kecuali 'Tidak ada Copy' diatur apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Total Orde Dianggap -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Penunjukan Karyawan (misalnya CEO, Direktur dll)." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Penunjukan Karyawan (misalnya CEO, Direktur dll)." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,Masukkan 'Ulangi pada Hari Bulan' nilai bidang DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,Tingkat di mana Pelanggan Mata Uang dikonversi ke mata uang dasar pelanggan DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Tersedia dalam BOM, Pengiriman Catatan, Purchase Invoice, Pesanan Produksi, Purchase Order, Penerimaan Pembelian, Faktur Penjualan, Sales Order, Stock Masuk, Timesheet" @@ -357,7 +357,7 @@ DocType: Workstation,Consumable Cost,Biaya Consumable apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) harus memiliki akses sebagai 'Pemberi Izin Cuti' DocType: Purchase Receipt,Vehicle Date,Kendaraan Tanggal apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Medis -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Alasan untuk kehilangan +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Alasan untuk kehilangan apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Workstation ditutup pada tanggal berikut sesuai Liburan Daftar: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Peluang DocType: Employee,Single,Tunggal @@ -385,14 +385,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Mitra Channel DocType: Account,Old Parent,Induk tua DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,Sesuaikan teks pengantar yang berlangsung sebagai bagian dari email itu. Setiap transaksi memiliki teks pengantar yang terpisah. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Tidak termasuk simbol (ex. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Penjualan Guru Manajer apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Pengaturan global untuk semua proses manufaktur. DocType: Accounts Settings,Accounts Frozen Upto,Akun dibekukan sampai dengan DocType: SMS Log,Sent On,Dikirim Pada -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Atribut {0} karena beberapa kali dalam Atribut Tabel +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Atribut {0} karena beberapa kali dalam Atribut Tabel DocType: HR Settings,Employee record is created using selected field. , DocType: Sales Order,Not Applicable,Tidak Berlaku -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Master Holiday. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Master Holiday. DocType: Material Request Item,Required Date,Diperlukan Tanggal DocType: Delivery Note,Billing Address,Alamat Penagihan apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,Masukkan Item Code. @@ -428,7 +429,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,Masukkan Gudang yang Material Permintaan akan dibangkitkan DocType: Production Order,Additional Operating Cost,Biaya Operasi Tambahan apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Kosmetik -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Untuk bergabung, sifat berikut harus sama untuk kedua item" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Untuk bergabung, sifat berikut harus sama untuk kedua item" DocType: Shipping Rule,Net Weight,Berat Bersih DocType: Employee,Emergency Phone,Darurat Telepon ,Serial No Warranty Expiry,Serial No Garansi kadaluarsa @@ -486,17 +487,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Penagihan dan Pengiriman Status apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Ulangi Pelanggan DocType: Leave Control Panel,Allocate,Alokasi -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Penjualan Kembali +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Penjualan Kembali DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Pilih Penjualan Pesanan dari mana Anda ingin membuat Pesanan Produksi. DocType: Item,Delivered by Supplier (Drop Ship),Disampaikan oleh Pemasok (Drop Kapal) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Komponen gaji. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Komponen gaji. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Database pelanggan potensial. DocType: Authorization Rule,Customer or Item,Pelanggan atau Barang apps/erpnext/erpnext/config/crm.py +17,Customer database.,Database pelanggan. DocType: Quotation,Quotation To,Quotation Untuk DocType: Lead,Middle Income,Penghasilan Tengah apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Pembukaan (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Standar Satuan Ukur untuk Item {0} tidak dapat diubah secara langsung karena Anda telah membuat beberapa transaksi (s) dengan UOM lain. Anda akan perlu untuk membuat item baru menggunakan default UOM berbeda. +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Standar Satuan Ukur untuk Item {0} tidak dapat diubah secara langsung karena Anda telah membuat beberapa transaksi (s) dengan UOM lain. Anda akan perlu untuk membuat item baru menggunakan default UOM berbeda. apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Jumlah yang dialokasikan tidak dijinkan negatif DocType: Purchase Order Item,Billed Amt,Jumlah tagihan DocType: Warehouse,A logical Warehouse against which stock entries are made.,Sebuah Gudang logis terhadap entri stok yang dibuat. @@ -515,14 +516,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Pajak Penjualan dan Biaya DocType: Employee,Organization Profile,Profil Organisasi apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,Silahkan pengaturan seri penomoran untuk Kehadiran melalui Pengaturan> Penomoran Series DocType: Employee,Reason for Resignation,Alasan pengunduran diri -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Template untuk penilaian kinerja. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Template untuk penilaian kinerja. DocType: Payment Reconciliation,Invoice/Journal Entry Details,Faktur / Jurnal entri Detail apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' tidak dalam Tahun Anggaran {2} DocType: Buying Settings,Settings for Buying Module,Pengaturan untuk Membeli Modul apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,Cukup masukkan Pembelian Penerimaan pertama DocType: Buying Settings,Supplier Naming By,Pemasok Penamaan Dengan DocType: Activity Type,Default Costing Rate,Standar Biaya Tingkat -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Jadwal pemeliharaan +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Jadwal pemeliharaan apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Kemudian Pricing Aturan disaring berdasarkan Pelanggan, Kelompok Pelanggan, Wilayah, Supplier, Supplier Type, Kampanye, Penjualan Mitra dll" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Perubahan bersih dalam Persediaan DocType: Employee,Passport Number,Nomor Paspor @@ -561,7 +562,7 @@ DocType: Purchase Invoice,Quarterly,Triwulanan DocType: Selling Settings,Delivery Note Required,Pengiriman Note Diperlukan DocType: Sales Order Item,Basic Rate (Company Currency),Harga Dasar (Dalam Mata Uang Lokal) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush Bahan Baku Berbasis Pada -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,Masukkan detil item +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,Masukkan detil item DocType: Purchase Receipt,Other Details,Detail lainnya DocType: Account,Accounts,Akun / Rekening apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Pemasaran @@ -574,7 +575,7 @@ DocType: Employee,Provide email id registered in company,Menyediakan email id ya DocType: Hub Settings,Seller City,Penjual Kota DocType: Email Digest,Next email will be sent on:,Email berikutnya akan dikirim pada: DocType: Offer Letter Term,Offer Letter Term,Menawarkan Surat Term -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Item memiliki varian. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Item memiliki varian. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Item {0} tidak ditemukan DocType: Bin,Stock Value,Nilai saham apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Jenis Pohon @@ -582,7 +583,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Qty Dikonsumsi Per Unit DocType: Serial No,Warranty Expiry Date,Garansi Tanggal Berakhir DocType: Material Request Item,Quantity and Warehouse,Kuantitas dan Gudang DocType: Sales Invoice,Commission Rate (%),Komisi Rate (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Terhadap Tipe Voucher harus merupakan salah satu dari Sales Order, Faktur Penjualan atau Entri Jurnal" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Terhadap Tipe Voucher harus merupakan salah satu dari Sales Order, Faktur Penjualan atau Entri Jurnal" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Aerospace DocType: Journal Entry,Credit Card Entry,Kartu kredit Masuk apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Tugas Subjek @@ -669,10 +670,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Kewajiban apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Sanksi Jumlah tidak dapat lebih besar dari Klaim Jumlah dalam Row {0}. DocType: Company,Default Cost of Goods Sold Account,Standar Biaya Rekening Pokok Penjualan -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Daftar Harga tidak dipilih +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Daftar Harga tidak dipilih DocType: Employee,Family Background,Latar Belakang Keluarga DocType: Process Payroll,Send Email,Kirim Email -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Peringatan: tidak valid Lampiran {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Peringatan: tidak valid Lampiran {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Tidak ada Izin DocType: Company,Default Bank Account,Standar Rekening Bank apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Untuk menyaring berdasarkan Party, pilih Partai Ketik pertama" @@ -700,7 +701,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Permi DocType: Features Setup,"To enable ""Point of Sale"" features",Untuk mengaktifkan "Point of Sale" fitur DocType: Bin,Moving Average Rate,Moving Average Tingkat DocType: Production Planning Tool,Select Items,Pilih Produk -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} terhadap Bill {1} tanggal {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} terhadap Bill {1} tanggal {2} DocType: Maintenance Visit,Completion Status,Status Penyelesaian DocType: Sales Invoice Item,Target Warehouse,Target Gudang DocType: Item,Allow over delivery or receipt upto this percent,Biarkan selama pengiriman atau penerimaan upto persen ini @@ -760,7 +761,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Meng apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Tidak dapat menemukan waktu Slot di {0} hari berikutnya untuk Operasi {1} DocType: Production Order,Plan material for sub-assemblies,Bahan rencana sub-rakitan apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} harus aktif -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,Silakan pilih jenis dokumen pertama +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Silakan pilih jenis dokumen pertama apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Goto Cart apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Batal Kunjungan Material {0} sebelum membatalkan ini Maintenance Visit DocType: Salary Slip,Leave Encashment Amount,Tinggalkan Pencairan Jumlah @@ -778,7 +779,7 @@ DocType: Purchase Receipt,Range,Jarak DocType: Supplier,Default Payable Accounts,Standar Account Payable apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Karyawan {0} tidak aktif atau tidak ada DocType: Features Setup,Item Barcode,Item Barcode -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Item Varian {0} diperbarui +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Item Varian {0} diperbarui DocType: Quality Inspection Reading,Reading 6,Membaca 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Pembelian Faktur Muka DocType: Address,Shop,Toko @@ -801,7 +802,7 @@ DocType: Salary Slip,Total in words,Jumlah kata DocType: Material Request Item,Lead Time Date,Timbal Waktu Tanggal apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,Wajib diisi. Mungkin Kurs Mata Uang tidak dibuat untuk apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Row # {0}: Silakan tentukan Serial ada untuk Item {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Untuk 'Produk Bundle' item, Gudang, Serial No dan Batch ada akan dianggap dari 'Packing List' meja. Jika Gudang dan Batch ada yang sama untuk semua item kemasan untuk setiap item 'Produk Bundle', nilai-nilai dapat dimasukkan dalam tabel Barang utama, nilai akan disalin ke 'Packing List' meja." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Untuk 'Produk Bundle' item, Gudang, Serial No dan Batch ada akan dianggap dari 'Packing List' meja. Jika Gudang dan Batch ada yang sama untuk semua item kemasan untuk setiap item 'Produk Bundle', nilai-nilai dapat dimasukkan dalam tabel Barang utama, nilai akan disalin ke 'Packing List' meja." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Pengiriman ke pelanggan. DocType: Purchase Invoice Item,Purchase Order Item,Purchase Order Barang apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Penghasilan tidak langsung @@ -822,6 +823,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Pilih Payroll Tahun dan B apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Pergi ke kelompok yang sesuai (biasanya Penerapan Dana> Aset Lancar> Account Bank dan membuat Akun baru (dengan mengklik Tambahkan Anak) tipe "Bank" DocType: Workstation,Electricity Cost,Biaya Listrik DocType: HR Settings,Don't send Employee Birthday Reminders,Jangan mengirim Karyawan Ulang Tahun Pengingat +,Employee Holiday Attendance,Karyawan Liburan Kehadiran DocType: Opportunity,Walk In,Walk In apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Entri saham DocType: Item,Inspection Criteria,Kriteria Pemeriksaan @@ -844,7 +846,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,P DocType: Journal Entry Account,Expense Claim,Beban Klaim apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Jumlah untuk {0} DocType: Leave Application,Leave Application,Tinggalkan Aplikasi -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Tinggalkan Alokasi Alat +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Tinggalkan Alokasi Alat DocType: Leave Block List,Leave Block List Dates,Tinggalkan Block List Tanggal DocType: Company,If Monthly Budget Exceeded (for expense account),Jika Anggaran Bulanan Melebihi (untuk akun beban) DocType: Workstation,Net Hour Rate,Tingkat Jam Bersih @@ -854,7 +856,7 @@ DocType: Packing Slip Item,Packing Slip Item,Packing Slip Barang DocType: POS Profile,Cash/Bank Account,Rekening Kas / Bank apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Item dihapus dengan tidak ada perubahan dalam jumlah atau nilai. DocType: Delivery Note,Delivery To,Pengiriman Untuk -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Tabel atribut wajib +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Tabel atribut wajib DocType: Production Planning Tool,Get Sales Orders,Dapatkan Pesanan Penjualan apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} tidak dapat negatif apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Diskon @@ -918,7 +920,7 @@ DocType: SMS Center,Total Characters,Jumlah Karakter apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},Silakan pilih BOM BOM di lapangan untuk Item {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-Form Faktur Detil DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Rekonsiliasi Pembayaran Faktur -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Kontribusi% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Kontribusi% DocType: Item,website page link,tautan halaman situs web DocType: Company,Company registration numbers for your reference. Tax numbers etc.,Nomor registrasi perusahaan untuk referensi Anda. Nomor pajak dll DocType: Sales Partner,Distributor,Distributor @@ -960,10 +962,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM Faktor Konversi DocType: Stock Settings,Default Item Group,Default Item Grup apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Database Supplier. DocType: Account,Balance Sheet,Neraca -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Biaya Center For Barang dengan Item Code ' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Biaya Center For Barang dengan Item Code ' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,Sales Anda akan mendapatkan pengingat pada tanggal ini untuk menghubungi pelanggan apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Account lebih lanjut dapat dibuat di bawah Grup, tapi entri dapat dilakukan terhadap non-Grup" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Pajak dan pemotongan gaji lainnya. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Pajak dan pemotongan gaji lainnya. DocType: Lead,Lead,Lead DocType: Email Digest,Payables,Hutang DocType: Account,Warehouse,Gudang @@ -980,10 +982,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Rincian Pembayaran DocType: Global Defaults,Current Fiscal Year,Tahun Anggaran saat ini DocType: Global Defaults,Disable Rounded Total,Nonaktifkan Rounded Jumlah DocType: Lead,Call,Panggilan -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'Entries' tidak boleh kosong +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'Entries' tidak boleh kosong apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Baris duplikat {0} dengan sama {1} ,Trial Balance,Trial Balance -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Menyiapkan Karyawan +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Menyiapkan Karyawan apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","Grid """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,Silakan pilih awalan pertama apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Penelitian @@ -992,7 +994,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,ID Pemakai apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,View Ledger apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Terlama -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Item Grup ada dengan nama yang sama, ubah nama item atau mengubah nama kelompok barang" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Item Grup ada dengan nama yang sama, ubah nama item atau mengubah nama kelompok barang" DocType: Production Order,Manufacture against Sales Order,Industri melawan Sales Order apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Istirahat Of The World apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,Item {0} tidak dapat memiliki Batch @@ -1017,7 +1019,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Gudang Ditolak DocType: GL Entry,Against Voucher,Terhadap Voucher DocType: Item,Default Buying Cost Center,Standar Biaya Membeli Pusat apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Untuk mendapatkan yang terbaik dari ERPNext, kami menyarankan Anda mengambil beberapa waktu dan menonton video ini membantu." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Item {0} harus Penjualan Barang +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Item {0} harus Penjualan Barang apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,untuk DocType: Item,Lead Time in days,Waktu memimpin di hari ,Accounts Payable Summary,Ringkasan Buku Hutang @@ -1043,7 +1045,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Pertanian apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Produk atau Jasa DocType: Mode of Payment,Mode of Payment,Mode Pembayaran -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Website Image harus file umum atau URL situs +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Website Image harus file umum atau URL situs apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,Ini adalah kelompok barang akar dan tidak dapat diedit. DocType: Journal Entry Account,Purchase Order,Purchase Order DocType: Warehouse,Warehouse Contact Info,Info Kontak Gudang @@ -1054,7 +1056,7 @@ DocType: Serial No,Serial No Details,Serial Tidak Detail DocType: Purchase Invoice Item,Item Tax Rate,Tarif Pajak Barang apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","Untuk {0}, hanya rekening kredit dapat dihubungkan dengan entri debit lain" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Pengiriman Note {0} tidak disampaikan -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Item {0} harus Item Sub-kontrak +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Item {0} harus Item Sub-kontrak apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Peralatan Modal apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Rule harga pertama dipilih berdasarkan 'Terapkan On' lapangan, yang dapat Barang, Barang Grup atau Merek." DocType: Hub Settings,Seller Website,Penjual Situs @@ -1063,7 +1065,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Sasaran DocType: Sales Invoice Item,Edit Description,Mengedit Keterangan apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Diharapkan Pengiriman Tanggal adalah lebih rendah daripada Tanggal Rencana Start. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,Untuk Pemasok +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,Untuk Pemasok DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Mengatur Tipe Akun membantu dalam memilih Akun ini dalam transaksi. DocType: Purchase Invoice,Grand Total (Company Currency),Grand Total (Perusahaan Mata Uang) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Total Outgoing @@ -1115,7 +1117,6 @@ DocType: Authorization Rule,Average Discount,Rata-rata Diskon DocType: Address,Utilities,Keperluan DocType: Purchase Invoice Item,Accounting,Akuntansi DocType: Features Setup,Features Setup,Fitur Pengaturan -DocType: Item,Is Service Item,Apakah Layanan Barang apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Periode aplikasi tidak bisa periode alokasi cuti di luar DocType: Activity Cost,Projects,Proyek apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,Silahkan pilih Tahun Anggaran @@ -1136,7 +1137,7 @@ DocType: Item,Maintain Stock,Menjaga Stock apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Saham Entries sudah dibuat untuk Pesanan Produksi apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Perubahan bersih dalam Aset Tetap DocType: Leave Control Panel,Leave blank if considered for all designations,Biarkan kosong jika dipertimbangkan untuk semua sebutan -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Mengisi tipe 'sebenarnya' berturut-turut {0} tidak dapat dimasukkan dalam Butir Tingkat +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Mengisi tipe 'sebenarnya' berturut-turut {0} tidak dapat dimasukkan dalam Butir Tingkat apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Dari Datetime DocType: Email Digest,For Company,Untuk Perusahaan @@ -1145,8 +1146,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Pengiriman Alamat Nama apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Chart of Account DocType: Material Request,Terms and Conditions Content,Syarat dan Ketentuan Konten -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,tidak dapat lebih besar dari 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Item {0} bukan merupakan saham Barang +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,tidak dapat lebih besar dari 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Item {0} bukan merupakan saham Barang DocType: Maintenance Visit,Unscheduled,Terjadwal DocType: Employee,Owned,Dimiliki DocType: Salary Slip Deduction,Depends on Leave Without Pay,Tergantung pada Cuti Tanpa Bayar @@ -1168,7 +1169,7 @@ Used for Taxes and Charges","Rinci tabel pajak diambil dari master barang sebaga apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Karyawan tidak bisa melaporkan kepada dirinya sendiri. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Jika account beku, entri yang diizinkan untuk pengguna terbatas." DocType: Email Digest,Bank Balance,Saldo bank -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Entri akunting untuk {0}: {1} hanya dapat dilakukan dalam mata uang: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Entri akunting untuk {0}: {1} hanya dapat dilakukan dalam mata uang: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Tidak ada Struktur Gaji aktif yang ditemukan untuk karyawan {0} dan bulan DocType: Job Opening,"Job profile, qualifications required etc.","Profil pekerjaan, kualifikasi yang dibutuhkan dll" DocType: Journal Entry Account,Account Balance,Saldo Rekening @@ -1185,7 +1186,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Sub Assemblie DocType: Shipping Rule Condition,To Value,Untuk Menghargai DocType: Supplier,Stock Manager,Bursa Manajer apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Sumber gudang adalah wajib untuk baris {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Packing Slip +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Packing Slip apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Kantor Sewa apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Pengaturan gerbang Pengaturan SMS apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Impor Gagal! @@ -1229,7 +1230,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,No. Rincian BOM DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Jumlah Diskon Tambahan (dalam Mata Uang Perusahaan) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Kesalahan: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,Silahkan buat akun baru dari Bagan Akun. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Pemeliharaan Visit +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Pemeliharaan Visit apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Pelanggan> Grup Pelanggan> Wilayah DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Tersedia Batch Qty di Gudang DocType: Time Log Batch Detail,Time Log Batch Detail,Waktu Log Batch Detil @@ -1238,7 +1239,7 @@ DocType: Leave Block List,Block Holidays on important days.,Blok Holidays pada h ,Accounts Receivable Summary,Ringkasan Buku Piutang apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,Silakan set ID lapangan Pengguna dalam catatan Karyawan untuk mengatur Peran Karyawan DocType: UOM,UOM Name,Nama UOM -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Jumlah kontribusi +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Jumlah kontribusi DocType: Sales Invoice,Shipping Address,Alamat Pengiriman DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,Alat ini membantu Anda untuk memperbarui atau memperbaiki kuantitas dan valuasi saham di sistem. Hal ini biasanya digunakan untuk menyinkronkan sistem nilai-nilai dan apa yang benar-benar ada di gudang Anda. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,Dalam Kata-kata akan terlihat sekali Anda menyimpan Delivery Note. @@ -1279,7 +1280,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Untuk melacak item menggunakan barcode. Anda akan dapat memasukkan item dalam Pengiriman Note dan Faktur Penjualan dengan memindai barcode barang. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Kirim ulang Pembayaran Email DocType: Dependent Task,Dependent Task,Tugas Dependent -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Faktor konversi untuk Unit default Ukur harus 1 berturut-turut {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Faktor konversi untuk Unit default Ukur harus 1 berturut-turut {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Tinggalkan jenis {0} tidak boleh lebih dari {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Coba operasi untuk hari X perencanaan di muka. DocType: HR Settings,Stop Birthday Reminders,Berhenti Ulang Tahun Pengingat @@ -1289,7 +1290,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} View apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Perubahan bersih dalam kas DocType: Salary Structure Deduction,Salary Structure Deduction,Struktur Gaji Pengurangan -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Satuan Ukur {0} telah dimasukkan lebih dari sekali dalam Faktor Konversi Tabel +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Satuan Ukur {0} telah dimasukkan lebih dari sekali dalam Faktor Konversi Tabel apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Permintaan pembayaran sudah ada {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Biaya Produk Dikeluarkan apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Kuantitas tidak boleh lebih dari {0} @@ -1318,7 +1319,7 @@ DocType: BOM Item,BOM Item,Komponen BOM DocType: Appraisal,For Employee,Untuk Karyawan apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Row {0}: Muka melawan Pemasok harus mendebet DocType: Company,Default Values,Nilai Default -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Baris {0}: Jumlah pembayaran tidak boleh negatif +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Baris {0}: Jumlah pembayaran tidak boleh negatif DocType: Expense Claim,Total Amount Reimbursed,Jumlah Total diganti apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Terhadap Faktur Supplier {0} di tanggal {1} DocType: Customer,Default Price List,Standar List Harga @@ -1346,8 +1347,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Gar DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Ganti BOM tertentu dalam semua BOMs lain di mana ia digunakan. Ini akan menggantikan link BOM tua, memperbarui biaya dan regenerasi meja ""BOM Ledakan Item"" per BOM baru" DocType: Shopping Cart Settings,Enable Shopping Cart,Aktifkan Keranjang Belanja DocType: Employee,Permanent Address,Permanent Alamat -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Item {0} harus Layanan Barang. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Uang muka yang dibayar terhadap {0} {1} tidak dapat lebih besar \ dari Grand Total {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Silahkan pilih kode barang DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Mengurangi Pengurangan untuk Tinggalkan Tanpa Bayar (LWP) @@ -1403,12 +1403,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Utama apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Variasi DocType: Naming Series,Set prefix for numbering series on your transactions,Mengatur awalan untuk penomoran seri pada transaksi Anda +DocType: Employee Attendance Tool,Employees HTML,Karyawan HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Agar Berhenti tidak dapat dibatalkan. Unstop untuk membatalkan. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Standar BOM ({0}) harus aktif untuk item ini atau template-nya +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Standar BOM ({0}) harus aktif untuk item ini atau template-nya DocType: Employee,Leave Encashed?,Tinggalkan dicairkan? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Peluang Dari bidang wajib DocType: Item,Variants,Varian -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Membuat Purchase Order +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Membuat Purchase Order DocType: SMS Center,Send To,Kirim Ke apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Tidak ada saldo cuti cukup bagi Leave Type {0} DocType: Payment Reconciliation Payment,Allocated amount,Jumlah yang dialokasikan @@ -1509,7 +1510,7 @@ DocType: Sales Person,Name and Employee ID,Nama dan ID Karyawan apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,Tanggal jatuh tempo tidak bisa sebelum Tanggal Posting DocType: Website Item Group,Website Item Group,Situs Barang Grup apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Tugas dan Pajak -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,Harap masukkan tanggal Referensi +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,Harap masukkan tanggal Referensi apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Payment Gateway Rekening tidak dikonfigurasi apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} entri pembayaran tidak dapat disaring oleh {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,Tabel untuk Item yang akan ditampilkan di Situs Web @@ -1530,7 +1531,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Detail Resolusi DocType: Quality Inspection Reading,Acceptance Criteria,Kriteria Penerimaan DocType: Item Attribute,Attribute Name,Nama Atribut -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Item {0} harus Penjualan atau Jasa Barang di {1} DocType: Item Group,Show In Website,Tampilkan Di Website apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Grup DocType: Task,Expected Time (in hours),Waktu yang diharapkan (dalam jam) @@ -1562,7 +1562,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Pengiriman Jumlah ,Pending Amount,Pending Jumlah DocType: Purchase Invoice Item,Conversion Factor,Faktor konversi DocType: Purchase Order,Delivered,Disampaikan -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Pengaturan server masuk untuk pekerjaan email id. (Misalnya jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Pengaturan server masuk untuk pekerjaan email id. (Misalnya jobs@example.com) DocType: Purchase Receipt,Vehicle Number,Jumlah kendaraan DocType: Purchase Invoice,The date on which recurring invoice will be stop,Tanggal dimana berulang faktur akan berhenti apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Jumlah daun dialokasikan {0} tidak bisa kurang dari daun yang telah disetujui {1} untuk periode @@ -1579,7 +1579,7 @@ DocType: HR Settings,HR Settings,Pengaturan HR apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Beban Klaim sedang menunggu persetujuan. Hanya Approver Beban dapat memperbarui status. DocType: Purchase Invoice,Additional Discount Amount,Jumlah Diskon Tambahan DocType: Leave Block List Allow,Leave Block List Allow,Tinggalkan Block List Izinkan -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abbr tidak boleh kosong atau spasi +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abbr tidak boleh kosong atau spasi apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Kelompok Non-kelompok apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Olahraga apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Total Aktual @@ -1603,7 +1603,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},Faktor UOM Konversi diperlukan berturut-turut {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Tanggal clearance tidak bisa sebelum tanggal check-in baris {0} DocType: Salary Slip,Deduction,Deduksi -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Item Harga ditambahkan untuk {0} di Daftar Harga {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Item Harga ditambahkan untuk {0} di Daftar Harga {1} DocType: Address Template,Address Template,Template Alamat apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,Cukup masukkan Id Karyawan penjualan orang ini DocType: Territory,Classification of Customers by region,Klasifikasi Pelanggan menurut wilayah @@ -1620,7 +1620,7 @@ DocType: Employee,Date of Birth,Tanggal Lahir apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Item {0} telah dikembalikan DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** Tahun Anggaran ** mewakili Tahun Keuangan. Semua entri akuntansi dan transaksi besar lainnya dilacak terhadap Tahun Anggaran ** **. DocType: Opportunity,Customer / Lead Address,Pelanggan / Lead Alamat -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Peringatan: sertifikat SSL tidak valid pada lampiran {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Peringatan: sertifikat SSL tidak valid pada lampiran {0} DocType: Production Order Operation,Actual Operation Time,Waktu Operasi Aktual DocType: Authorization Rule,Applicable To (User),Berlaku Untuk (User) DocType: Purchase Taxes and Charges,Deduct,Mengurangi @@ -1637,7 +1637,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Membagi Pengiriman Catatan ke dalam paket. apps/erpnext/erpnext/hooks.py +69,Shipments,Pengiriman DocType: Purchase Order Item,To be delivered to customer,Yang akan dikirimkan ke pelanggan -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Waktu Log Status harus Dikirim. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Waktu Log Status harus Dikirim. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,Serial ada {0} bukan milik Gudang setiap apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Row # DocType: Purchase Invoice,In Words (Company Currency),Dalam Kata-kata (Perusahaan Mata Uang) @@ -1654,7 +1654,7 @@ DocType: Leave Application,Total Leave Days,Jumlah Cuti Hari DocType: Email Digest,Note: Email will not be sent to disabled users,Catatan: Email tidak akan dikirim ke pengguna cacat apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Pilih Perusahaan ... DocType: Leave Control Panel,Leave blank if considered for all departments,Biarkan kosong jika dianggap untuk semua departemen -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Jenis pekerjaan (permanen, kontrak, magang dll)." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Jenis pekerjaan (permanen, kontrak, magang dll)." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} adalah wajib untuk Item {1} DocType: Currency Exchange,From Currency,Dari Mata apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Silakan pilih Jumlah Alokasi, Faktur Jenis dan Faktur Nomor di minimal satu baris" @@ -1673,7 +1673,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,Dalam Proses DocType: Authorization Rule,Itemwise Discount,Itemwise Diskon DocType: Purchase Order Item,Reference Document Type,Dokumen referensi Type -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} terhadap Sales Order {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} terhadap Sales Order {1} DocType: Account,Fixed Asset,Fixed Asset apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Persediaan serial DocType: Activity Type,Default Billing Rate,Standar Tingkat Penagihan @@ -1683,7 +1683,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Sales Order untuk Pembayaran DocType: Expense Claim Detail,Expense Claim Detail,Beban Klaim Detil apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Waktu Log dibuat: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,Silakan pilih akun yang benar +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,Silakan pilih akun yang benar DocType: Item,Weight UOM,Berat UOM DocType: Employee,Blood Group,Golongan darah DocType: Purchase Invoice Item,Page Break,Halaman Istirahat @@ -1718,7 +1718,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM recursion: {0} tidak bisa menjadi induk atau cabang dari {2} DocType: Production Order Operation,Completed Qty,Selesai Qty apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","Untuk {0}, hanya rekening debit dapat dihubungkan dengan entri kredit lain" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Daftar Harga {0} dinonaktifkan +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Daftar Harga {0} dinonaktifkan DocType: Manufacturing Settings,Allow Overtime,Biarkan Lembur apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} Serial Number diperlukan untuk Item {1}. Anda telah disediakan {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Tingkat Penilaian saat ini @@ -1769,7 +1769,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Ada apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Kasus No tidak bisa 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,Jika Anda memiliki Tim Penjualan dan Penjualan Mitra (Mitra Channel) mereka dapat ditandai dan mempertahankan kontribusi mereka dalam aktivitas penjualan DocType: Item,Show a slideshow at the top of the page,Tampilkan slideshow di bagian atas halaman -DocType: Item,"Allow in Sales Order of type ""Service""",Memungkinkan di Sales Order jenis "Service" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Toko DocType: Time Log,Projects Manager,Proyek Manajer DocType: Serial No,Delivery Time,Waktu Pengiriman @@ -1784,6 +1783,7 @@ DocType: Rename Tool,Rename Tool,Rename Alat apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Pembaruan Biaya DocType: Item Reorder,Item Reorder,Item Reorder apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Material Transfer +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Item {0} harus menjadi barang Penjualan di {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Tentukan operasi, biaya operasi dan memberikan Operation unik ada pada operasi Anda." DocType: Purchase Invoice,Price List Currency,Daftar Harga Mata uang DocType: Naming Series,User must always select,Pengguna harus selalu pilih @@ -1804,7 +1804,7 @@ DocType: Appraisal,Employee,Karyawan apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Impor Email Dari apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Undang sebagai Pengguna DocType: Features Setup,After Sale Installations,Pemasangan setelah Penjualan -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} telah ditagih sepenuhnya +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} telah ditagih sepenuhnya DocType: Workstation Working Hour,End Time,Akhir Waktu apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Ketentuan kontrak standar untuk Penjualan atau Pembelian. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Group by Voucher @@ -1830,7 +1830,7 @@ DocType: Upload Attendance,Attendance To Date,Kehadiran Sampai Tanggal apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Pengaturan server masuk untuk email penjualan id. (Misalnya sales@example.com) DocType: Warranty Claim,Raised By,Dibesarkan Oleh DocType: Payment Gateway Account,Payment Account,Akun Pembayaran -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,Silahkan tentukan Perusahaan untuk melanjutkan +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,Silahkan tentukan Perusahaan untuk melanjutkan apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Perubahan bersih Piutang apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Kompensasi Off DocType: Quality Inspection Reading,Accepted,Diterima @@ -1842,14 +1842,14 @@ DocType: Shipping Rule,Shipping Rule Label,Peraturan Pengiriman Label apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Bahan baku tidak boleh kosong. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Tidak bisa update saham, faktur berisi penurunan barang pengiriman." DocType: Newsletter,Test,tes -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Karena ada transaksi saham yang ada untuk item ini, \ Anda tidak dapat mengubah nilai-nilai 'Memiliki Serial No', 'Apakah Batch Tidak', 'Apakah Stok Item' dan 'Metode Penilaian'" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Cepat Journal Masuk apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,Anda tidak dapat mengubah kurs jika BOM disebutkan atas tiap barang DocType: Employee,Previous Work Experience,Pengalaman Kerja Sebelumnya DocType: Stock Entry,For Quantity,Untuk Kuantitas apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},Masukkan Planned Qty untuk Item {0} pada baris {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} tidak di-posting +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} tidak di-posting apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Permintaan untuk item. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Order produksi yang terpisah akan dibuat untuk setiap item barang jadi. DocType: Purchase Invoice,Terms and Conditions1,Syarat dan Conditions1 @@ -1874,6 +1874,7 @@ DocType: Notification Control,Expense Claim Approved Message,Beban Klaim Disetuj DocType: Email Digest,How frequently?,Seberapa sering? DocType: Purchase Receipt,Get Current Stock,Dapatkan Stok saat ini apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Pohon Bill of Material +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Mark Hadir apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Tanggal mulai pemeliharaan tidak bisa sebelum tanggal pengiriman untuk Serial No {0} DocType: Production Order,Actual End Date,Tanggal Akhir Aktual DocType: Authorization Rule,Applicable To (Role),Berlaku Untuk (Peran) @@ -1888,7 +1889,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Kontrak Tanggal Akhir harus lebih besar dari Tanggal Bergabung DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,Seorang distributor pihak ketiga / agen / komisi agen / affiliate / reseller yang menjual produk-produk perusahaan untuk komisi. DocType: Customer Group,Has Child Node,Memiliki Anak Node -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} terhadap Purchase Order {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} terhadap Purchase Order {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Masukkan parameter url statis di sini (Misalnya pengirim = ERPNext, username = ERPNext, password = 1234 dll)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} tidak dalam Tahun Fiskal aktif. Untuk lebih jelasnya lihat {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Ini adalah situs contoh auto-dihasilkan dari ERPNext @@ -1936,7 +1937,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Menambah atau Dikurangi: Apakah Anda ingin menambah atau mengurangi pajak." DocType: Purchase Receipt Item,Recd Quantity,Recd Kuantitas apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Tidak dapat menghasilkan lebih Barang {0} daripada kuantitas Sales Order {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Masuk Bursa {0} tidak disampaikan +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Masuk Bursa {0} tidak disampaikan DocType: Payment Reconciliation,Bank / Cash Account,Bank / Rekening Kas DocType: Tax Rule,Billing City,Penagihan Kota DocType: Global Defaults,Hide Currency Symbol,Sembunyikan Currency Symbol @@ -1962,7 +1963,7 @@ DocType: Salary Structure,Total Earning,Total Penghasilan DocType: Purchase Receipt,Time at which materials were received,Waktu di mana bahan yang diterima apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Alamat saya DocType: Stock Ledger Entry,Outgoing Rate,Tingkat keluar -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Cabang master organisasi. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Cabang master organisasi. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,atau DocType: Sales Order,Billing Status,Status Penagihan apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Beban utilitas @@ -2000,7 +2001,7 @@ DocType: Bin,Reserved Quantity,Reserved Kuantitas DocType: Landed Cost Voucher,Purchase Receipt Items,Penerimaan Pembelian Produk apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Menyesuaikan Bentuk DocType: Account,Income Account,Akun Penghasilan -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Pengiriman +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Pengiriman DocType: Stock Reconciliation Item,Current Qty,Jumlah saat ini DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section","Lihat ""Rate Of Material Berbasis"" dalam Biaya Bagian" DocType: Appraisal Goal,Key Responsibility Area,Key Responsibility area @@ -2012,9 +2013,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,Vou DocType: Notification Control,Purchase Order Message,Pesan Purchase Order DocType: Tax Rule,Shipping Country,Pengiriman Negara DocType: Upload Attendance,Upload HTML,Upload HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","Total muka ({0}) terhadap Orde {1} tidak bisa lebih besar daripada \ - Grand Total ({2})" DocType: Employee,Relieving Date,Menghilangkan Tanggal apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Rule harga dibuat untuk menimpa Daftar Harga / mendefinisikan persentase diskon, berdasarkan beberapa kriteria." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Gudang hanya dapat diubah melalui Bursa Masuk / Delivery Note / Penerimaan Pembelian @@ -2024,8 +2022,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Pajak apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Jika Aturan Harga yang dipilih dibuat untuk 'Harga', itu akan menimpa Daftar Harga. Harga Rule harga adalah harga akhir, sehingga tidak ada diskon lebih lanjut harus diterapkan. Oleh karena itu, dalam transaksi seperti Sales Order, Purchase Order dll, maka akan diambil di lapangan 'Tingkat', daripada lapangan 'Daftar Harga Tingkat'." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Melacak Memimpin menurut Industri Type. DocType: Item Supplier,Item Supplier,Item Pemasok -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,Masukkan Item Code untuk mendapatkan bets tidak -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},Silakan pilih nilai untuk {0} quotation_to {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,Masukkan Item Code untuk mendapatkan bets tidak +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},Silakan pilih nilai untuk {0} quotation_to {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Semua Alamat DocType: Company,Stock Settings,Pengaturan saham apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Penggabungan ini hanya mungkin jika sifat berikut yang sama di kedua catatan. Apakah Group, Akar Jenis, Perusahaan" @@ -2048,7 +2046,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Nomor Cek DocType: Payment Tool Detail,Payment Tool Detail,Alat Pembayaran Detil ,Sales Browser,Penjualan Browser DocType: Journal Entry,Total Credit,Jumlah Kredit -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Peringatan: lain {0} # {1} ada terhadap masuknya saham {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Peringatan: lain {0} # {1} ada terhadap masuknya saham {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,[Daerah apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Pinjaman Uang Muka dan (Aset) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Debitur @@ -2068,8 +2066,8 @@ DocType: Price List,Price List Master,Daftar Harga Guru DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,Semua Transaksi Penjualan dapat ditandai terhadap beberapa ** Orang Penjualan ** sehingga Anda dapat mengatur dan memonitor target. ,S.O. No.,SO No DocType: Production Order Operation,Make Time Log,Membuat Waktu Log -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Silahkan mengatur kuantitas menyusun ulang -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},Silakan membuat pelanggan dari Lead {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Silahkan mengatur kuantitas menyusun ulang +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},Silakan membuat pelanggan dari Lead {0} DocType: Price List,Applicable for Countries,Berlaku untuk Negara apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Komputer apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,Ini adalah kelompok pelanggan akar dan tidak dapat diedit. @@ -2117,7 +2115,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Penagi DocType: Payment Reconciliation Invoice,Outstanding Amount,Jumlah yang luar biasa DocType: Project Task,Working,Kerja DocType: Stock Ledger Entry,Stock Queue (FIFO),Stock Queue (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Silakan pilih Sisa log. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Silakan pilih Sisa log. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} bukan milik Perusahaan {1} DocType: Account,Round Off,Membulatkan ,Requested Qty,Diminta Qty @@ -2155,7 +2153,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Dapatkan Entries Relevan apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Entri Akunting untuk Stok DocType: Sales Invoice,Sales Team1,Penjualan team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Item {0} tidak ada +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Item {0} tidak ada DocType: Sales Invoice,Customer Address,Alamat pelanggan DocType: Payment Request,Recipient and Message,Penerima dan Pesan DocType: Purchase Invoice,Apply Additional Discount On,Terapkan tambahan Diskon Pada @@ -2174,7 +2172,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Bisu Email apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Makanan, Minuman dan Tembakau" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL atau BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Hanya dapat melakukan pembayaran terhadap yang belum ditagihkan {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Hanya dapat melakukan pembayaran terhadap yang belum ditagihkan {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Tingkat komisi tidak dapat lebih besar dari 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Persediaan Tingkat Minimum DocType: Stock Entry,Subcontract,Kontrak tambahan @@ -2192,9 +2190,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Perangkat apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Warna DocType: Maintenance Visit,Scheduled,Dijadwalkan apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Silakan pilih item mana "Apakah Stock Item" adalah "Tidak", dan "Apakah Penjualan Item" adalah "Ya" dan tidak ada Bundle Produk lainnya" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Total muka ({0}) terhadap Orde {1} tidak dapat lebih besar dari Grand Total ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Pilih Distribusi bulanan untuk merata mendistribusikan target di bulan. DocType: Purchase Invoice Item,Valuation Rate,Tingkat Penilaian -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Daftar Harga Mata uang tidak dipilih +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Daftar Harga Mata uang tidak dipilih apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,Item Row {0}: Penerimaan Pembelian {1} tidak ada dalam tabel di atas 'Pembelian Penerimaan' apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Karyawan {0} telah diterapkan untuk {1} antara {2} dan {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Proyek Tanggal Mulai @@ -2206,6 +2205,7 @@ DocType: Quality Inspection,Inspection Type,Inspeksi Type apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},Silahkan pilih {0} DocType: C-Form,C-Form No,C-Form ada DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,Kehadiran ditandai apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Peneliti apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,Harap menyimpan Newsletter sebelum dikirim apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Nama atau Email adalah wajib @@ -2231,7 +2231,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Dikonfi DocType: Payment Gateway,Gateway,Pintu gerbang apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Pemasok> Pemasok Type apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Silahkan masukkan menghilangkan date. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,Hanya Tinggalkan Aplikasi status 'Disetujui' dapat diajukan apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Wajib masukan Judul Alamat. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,Masukkan nama kampanye jika sumber penyelidikan adalah kampanye @@ -2246,10 +2246,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Gudang Diterima DocType: Bank Reconciliation Detail,Posting Date,Tanggal Posting DocType: Item,Valuation Method,Metode Penilaian apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Tidak dapat menemukan tukar untuk {0} ke {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Mark Half Day DocType: Sales Invoice,Sales Team,Tim Penjualan apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Gandakan entri DocType: Serial No,Under Warranty,Berdasarkan Jaminan -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Kesalahan] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Kesalahan] DocType: Sales Order,In Words will be visible once you save the Sales Order.,Dalam Kata-kata akan terlihat setelah Anda menyimpan Sales Order. ,Employee Birthday,Ulang Tahun Karyawan apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Modal Ventura @@ -2272,6 +2273,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,Biaya Center dengan transaksi yang ada tidak dapat dikonversi ke grup DocType: Account,Depreciation,Penyusutan apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Pemasok (s) +DocType: Employee Attendance Tool,Employee Attendance Tool,Alat Absensi Karyawan DocType: Supplier,Credit Limit,Batas Kredit apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Pilih jenis transaksi DocType: GL Entry,Voucher No,Voucher Tidak ada @@ -2298,7 +2300,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Account root tidak bisa dihapus ,Is Primary Address,Apakah Alamat Primer DocType: Production Order,Work-in-Progress Warehouse,Kerja-in Progress-Gudang -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Referensi # {0} tanggal {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Referensi # {0} tanggal {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Mengelola Alamat DocType: Pricing Rule,Item Code,Item Code DocType: Production Planning Tool,Create Production Orders,Buat Pesanan Produksi @@ -2325,7 +2327,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Rekonsiliasi Bank apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Dapatkan Update apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Permintaan Material {0} dibatalkan atau dihentikan apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Tambahkan beberapa catatan sampel -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Tinggalkan Manajemen +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Tinggalkan Manajemen apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Group by Akun DocType: Sales Order,Fully Delivered,Sepenuhnya Disampaikan DocType: Lead,Lower Income,Penghasilan rendah @@ -2340,6 +2342,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','Tanggal Mulai' harus sebelum 'Tanggal Akhir' ,Stock Projected Qty,Stock Proyeksi Jumlah apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Pelanggan {0} bukan milik proyek {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Kehadiran ditandai HTML DocType: Sales Order,Customer's Purchase Order,Purchase Order pelanggan DocType: Warranty Claim,From Company,Dari Perusahaan apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Nilai atau Qty @@ -2404,6 +2407,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Transfer apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,Silakan pilih Rekening Bank DocType: Newsletter,Create and Send Newsletters,Membuat dan Kirim Nawala +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,periksa semua DocType: Sales Order,Recurring Order,Berulang Order DocType: Company,Default Income Account,Akun Pendapatan standar apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Kelompok Pelanggan / Pelanggan @@ -2435,6 +2439,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Kembali Terhadap Pembe DocType: Item,Warranty Period (in days),Masa Garansi (dalam hari) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Kas Bersih dari Operasi apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,misalnya PPN +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Kehadiran Mark Karyawan di Massal apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Item 4 DocType: Journal Entry Account,Journal Entry Account,Masuk Rekening Journal DocType: Shopping Cart Settings,Quotation Series,Quotation Series @@ -2580,14 +2585,14 @@ DocType: Task,Actual Start Date (via Time Logs),Tanggal Mulai Aktual (via Log Wa DocType: Stock Reconciliation Item,Before reconciliation,Sebelum rekonsiliasi apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Untuk {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Pajak dan Biaya Ditambahkan (Perusahaan Mata Uang) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Item Pajak Row {0} harus memiliki akun Pajak jenis atau Penghasilan atau Beban atau Dibebankan +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Item Pajak Row {0} harus memiliki akun Pajak jenis atau Penghasilan atau Beban atau Dibebankan DocType: Sales Order,Partly Billed,Sebagian Ditagih DocType: Item,Default BOM,Standar BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,Mohon tipe nama perusahaan untuk mengkonfirmasi apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Jumlah Posisi Amt DocType: Time Log Batch,Total Hours,Jumlah Jam DocType: Journal Entry,Printing Settings,Pengaturan pencetakan -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Jumlah Debit harus sama dengan total kredit. Perbedaannya adalah {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Jumlah Debit harus sama dengan total kredit. Perbedaannya adalah {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Otomotif apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Dari Delivery Note DocType: Time Log,From Time,Dari Waktu @@ -2634,7 +2639,7 @@ DocType: Purchase Invoice Item,Image View,Citra Tampilan DocType: Issue,Opening Time,Membuka Waktu apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,Dari dan Untuk tanggal yang Anda inginkan apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Efek & Bursa Komoditi -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Standar Satuan Ukur untuk Variant '{0}' harus sama seperti di Template '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Standar Satuan Ukur untuk Variant '{0}' harus sama seperti di Template '{1}' DocType: Shipping Rule,Calculate Based On,Hitung Berbasis On DocType: Delivery Note Item,From Warehouse,Dari Gudang DocType: Purchase Taxes and Charges,Valuation and Total,Penilaian dan Total @@ -2656,7 +2661,7 @@ DocType: Leave Application,Follow via Email,Ikuti via Email DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Jumlah pajak Setelah Diskon Jumlah apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Akun anak ada untuk akun ini. Anda tidak dapat menghapus akun ini. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Entah sasaran qty atau jumlah target adalah wajib -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},Tidak ada standar BOM ada untuk Item {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},Tidak ada standar BOM ada untuk Item {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,Silakan pilih Posting Tanggal pertama apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Tanggal pembukaan harus sebelum Tanggal Penutupan DocType: Leave Control Panel,Carry Forward,Carry Teruskan @@ -2734,7 +2739,7 @@ DocType: Leave Type,Is Encash,Apakah menjual DocType: Purchase Invoice,Mobile No,Ponsel Tidak ada DocType: Payment Tool,Make Journal Entry,Membuat Jurnal Entri DocType: Leave Allocation,New Leaves Allocated,Daun baru Dialokasikan -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Data proyek-bijaksana tidak tersedia untuk Quotation +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Data proyek-bijaksana tidak tersedia untuk Quotation DocType: Project,Expected End Date,Diharapkan Tanggal Akhir DocType: Appraisal Template,Appraisal Template Title,Judul Template Penilaian apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Komersial @@ -2782,6 +2787,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,Ca apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Silakan tentukan DocType: Offer Letter,Awaiting Response,Menunggu Respon apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Di atas +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Waktu Log telah Ditagih DocType: Salary Slip,Earning & Deduction,Earning & Pengurangan apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Akun {0} tidak dapat menjadi akun Grup apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Opsional. Pengaturan ini akan digunakan untuk menyaring dalam berbagai transaksi. @@ -2852,14 +2858,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Berhasil dihapus semua transaksi yang terkait dengan perusahaan ini! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Seperti pada Tanggal apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Percobaan -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Standar Warehouse adalah wajib bagi saham Barang. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Standar Warehouse adalah wajib bagi saham Barang. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Pembayaran gaji untuk bulan {0} dan tahun {1} DocType: Stock Settings,Auto insert Price List rate if missing,Insert auto tingkat Daftar Harga jika hilang apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Jumlah Total Dibayar ,Transferred Qty,Ditransfer Qty apps/erpnext/erpnext/config/learn.py +11,Navigating,Menjelajahi apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Perencanaan -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Membuat Waktu Log Batch +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Membuat Waktu Log Batch apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Diterbitkan DocType: Project,Total Billing Amount (via Time Logs),Jumlah Total Tagihan (via Waktu Log) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Kami menjual item ini @@ -2867,7 +2873,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Kuantitas harus lebih besar dari 0 DocType: Journal Entry,Cash Entry,Masuk Kas DocType: Sales Partner,Contact Desc,Contact Info -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Jenis daun seperti kasual, dll sakit" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Jenis daun seperti kasual, dll sakit" DocType: Email Digest,Send regular summary reports via Email.,Mengirim laporan ringkasan rutin melalui Email. DocType: Brand,Item Manager,Item Manajer DocType: Cost Center,Add rows to set annual budgets on Accounts.,Tambahkan baris untuk mengatur akun anggaran tahunan. @@ -2882,7 +2888,7 @@ DocType: GL Entry,Party Type,Type Partai apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Bahan baku tidak bisa sama dengan Butir utama DocType: Item Attribute Value,Abbreviation,Singkatan apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Tidak Authroized sejak {0} melebihi batas -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Master Gaji Template. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Master Gaji Template. DocType: Leave Type,Max Days Leave Allowed,Max Hari Cuti Diizinkan apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Set Peraturan Pajak untuk keranjang belanja DocType: Payment Tool,Set Matching Amounts,Set Jumlah Matching @@ -2895,7 +2901,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Harga u DocType: Stock Settings,Role Allowed to edit frozen stock,Peran Diizinkan untuk mengedit saham beku ,Territory Target Variance Item Group-Wise,Wilayah Sasaran Variance Barang Group-Wise apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Semua Grup Pelanggan -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} adalah wajib. Mungkin data rekaman kurs mata uang tidak dibuat untuk {1} ke {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} adalah wajib. Mungkin data rekaman kurs mata uang tidak dibuat untuk {1} ke {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Template pajak adalah wajib. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Akun {0}: akun Induk {1} tidak ada DocType: Purchase Invoice Item,Price List Rate (Company Currency),Daftar Harga Rate (Perusahaan Mata Uang) @@ -2915,8 +2921,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Barang Wise Detil Pajak ,Item-wise Price List Rate,Barang-bijaksana Daftar Harga Tingkat apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Pemasok Quotation DocType: Quotation,In Words will be visible once you save the Quotation.,Dalam Kata-kata akan terlihat sekali Anda menyimpan Quotation tersebut. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} dihentikan -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Barcode {0} sudah digunakan dalam Butir {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} dihentikan +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Barcode {0} sudah digunakan dalam Butir {1} DocType: Lead,Add to calendar on this date,Tambahkan ke kalender pada tanggal ini apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Aturan untuk menambahkan biaya pengiriman. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Acara Mendatang @@ -2943,8 +2949,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,St apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Setidaknya satu gudang adalah wajib DocType: Serial No,Out of Warranty,Out of Garansi DocType: BOM Replace Tool,Replace,Mengganti -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} terhadap Faktur Penjualan {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Masukkan Satuan default Ukur +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} terhadap Faktur Penjualan {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Masukkan Satuan default Ukur DocType: Purchase Invoice Item,Project Name,Nama Proyek DocType: Supplier,Mention if non-standard receivable account,Menyebutkan jika non-standar piutang DocType: Journal Entry Account,If Income or Expense,Jika Penghasilan atau Beban @@ -2969,7 +2975,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Tahun Anggaran: {0} tidak ada DocType: Currency Exchange,To Currency,Untuk Mata DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Izinkan pengguna ini untuk menyetujui aplikasi izin cuti untuk hari yang terpilih(blocked). -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Jenis Beban Klaim. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Jenis Beban Klaim. DocType: Item,Taxes,PPN apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Dibayar dan Tidak Disampaikan DocType: Project,Default Cost Center,Standar Biaya Pusat @@ -2999,7 +3005,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Row # {0}: Serial No {1} tidak sesuai dengan {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Santai Cuti DocType: Batch,Batch ID,Batch ID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Catatan: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Catatan: {0} ,Delivery Note Trends,Tren pengiriman Note apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Ringkasan minggu ini apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} harus merupakan barang yang dibeli atau barang sub-kontrak di baris {1} @@ -3039,6 +3045,7 @@ DocType: Project Task,Pending Review,Pending Ulasan apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Klik di sini untuk membayar DocType: Task,Total Expense Claim (via Expense Claim),Jumlah Klaim Beban (via Beban Klaim) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Pelanggan Id +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Mark Absen apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Untuk waktu harus lebih besar dari Dari Waktu DocType: Journal Entry Account,Exchange Rate,Nilai Tukar apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Sales Order {0} tidak disampaikan @@ -3086,7 +3093,7 @@ DocType: Item Group,Default Expense Account,Beban standar Akun DocType: Employee,Notice (days),Notice (hari) DocType: Tax Rule,Sales Tax Template,Template Pajak Penjualan DocType: Employee,Encashment Date,Pencairan Tanggal -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Terhadap Tipe Voucher harus merupakan salah satu dari Purchase Order, Faktur Pembelian atau Entri Jurnal" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Terhadap Tipe Voucher harus merupakan salah satu dari Purchase Order, Faktur Pembelian atau Entri Jurnal" DocType: Account,Stock Adjustment,Penyesuaian Stock apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Standar Kegiatan Biaya ada untuk Jenis Kegiatan - {0} DocType: Production Order,Planned Operating Cost,Direncanakan Biaya Operasi @@ -3140,6 +3147,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Menulis Off Masuk DocType: BOM,Rate Of Materials Based On,Laju Bahan Berbasis On apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Dukungan Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Jangan tandai semua apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Perusahaan hilang di gudang {0} DocType: POS Profile,Terms and Conditions,Syarat dan Ketentuan apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},Untuk tanggal harus dalam Tahun Anggaran. Dengan asumsi To Date = {0} @@ -3161,7 +3169,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Untuk mengatur Tahun Anggaran ini sebagai Default, klik 'Set as Default'" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Pengaturan server masuk untuk email dukungan id. (Misalnya support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Kekurangan Jumlah -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Item varian {0} ada dengan atribut yang sama +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Item varian {0} ada dengan atribut yang sama DocType: Salary Slip,Salary Slip,Slip Gaji apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,'Sampai Tanggal' harus diisi DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Menghasilkan kemasan slip paket yang akan dikirimkan. Digunakan untuk memberitahu nomor paket, isi paket dan berat." @@ -3209,7 +3217,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Lihat M DocType: Item Attribute Value,Attribute Value,Nilai Atribut apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","Email id harus unik, sudah ada untuk {0}" ,Itemwise Recommended Reorder Level,Itemwise Rekomendasi Reorder Tingkat -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,Silahkan pilih {0} pertama +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,Silahkan pilih {0} pertama DocType: Features Setup,To get Item Group in details table,Untuk mendapatkan Barang Group di tabel rincian apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Batch {0} Item {1} telah berakhir. DocType: Sales Invoice,Commission,Komisi @@ -3264,7 +3272,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Dapatkan Posisi Voucher DocType: Warranty Claim,Resolved By,Terselesaikan Dengan DocType: Appraisal,Start Date,Tanggal Mulai -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Alokasi cuti untuk periode tertentu +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Alokasi cuti untuk periode tertentu apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Cek dan Deposit tidak benar dibersihkan apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Klik di sini untuk memverifikasi apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Akun {0}: Anda tidak dapat menetapkanya sebagai Akun Induk @@ -3284,7 +3292,7 @@ DocType: Employee,Educational Qualification,Kualifikasi Pendidikan DocType: Workstation,Operating Costs,Biaya Operasional DocType: Employee Leave Approver,Employee Leave Approver,Karyawan Tinggalkan Approver apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} telah berhasil ditambahkan ke daftar Newsletter. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Baris {0}: Entri perekam sudah ada untuk gudang ini {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Baris {0}: Entri perekam sudah ada untuk gudang ini {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Tidak dapat mendeklarasikan sebagai hilang, karena Quotation telah dibuat." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Pembelian Guru Manajer apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Pesanan produksi {0} harus diserahkan @@ -3308,7 +3316,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Faktur Penjualan {0} telah disampaikan apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Tanggal Penyelesaian DocType: Purchase Invoice Item,Amount (Company Currency),Jumlah (Perusahaan Mata Uang) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Unit Organisasi (kawasan) menguasai. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Unit Organisasi (kawasan) menguasai. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Masukkan nos ponsel yang valid DocType: Budget Detail,Budget Detail,Rincian Anggaran apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,Masukkan pesan sebelum mengirimnya @@ -3324,13 +3332,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Diterima dan Diterima ,Serial No Service Contract Expiry,Serial No Layanan Kontrak kadaluarsa DocType: Item,Unit of Measure Conversion,Unit Konversi Ukur apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Karyawan tidak dapat diubah -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Anda tidak dapat kredit dan mendebit rekening yang sama pada waktu yang sama +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Anda tidak dapat kredit dan mendebit rekening yang sama pada waktu yang sama DocType: Naming Series,Help HTML,Bantuan HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Jumlah weightage ditugaskan harus 100%. Ini adalah {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Penyisihan over-{0} menyeberang untuk Item {1} DocType: Address,Name of person or organization that this address belongs to.,Nama orang atau organisasi yang alamat ini milik. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Pemasok Anda -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,Tidak dapat ditetapkan sebagai Hilang sebagai Sales Order dibuat. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,Tidak dapat ditetapkan sebagai Hilang sebagai Sales Order dibuat. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,Lain Struktur Gaji {0} aktif untuk karyawan {1}. Silakan membuat statusnya 'aktif' untuk melanjutkan. DocType: Purchase Invoice,Contact,Kontak apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Diterima dari @@ -3340,11 +3348,11 @@ DocType: Item,Has Serial No,Memiliki Serial No DocType: Employee,Date of Issue,Tanggal Issue apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: Dari {0} untuk {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Row # {0}: Set Pemasok untuk item {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Website Image {0} melekat Butir {1} tidak dapat ditemukan +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Website Image {0} melekat Butir {1} tidak dapat ditemukan DocType: Issue,Content Type,Content Type apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Komputer DocType: Item,List this Item in multiple groups on the website.,Daftar Barang ini dalam beberapa kelompok di website. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,Silakan periksa opsi Mata multi untuk memungkinkan account dengan mata uang lainnya +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,Silakan periksa opsi Mata multi untuk memungkinkan account dengan mata uang lainnya apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Item: {0} tidak ada dalam sistem apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Anda tidak diizinkan untuk menetapkan nilai yg sedang dibekukan DocType: Payment Reconciliation,Get Unreconciled Entries,Dapatkan Entries Unreconciled @@ -3354,14 +3362,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Apa gunanya? DocType: Delivery Note,To Warehouse,Untuk Gudang apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Akun {0} telah dimasukkan lebih dari sekali untuk tahun fiskal {1} ,Average Commission Rate,Rata-rata Komisi Tingkat -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,"""Memiliki Nomor Serial' tidak bisa 'dipilih' untuk item non-stok" +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,"""Memiliki Nomor Serial' tidak bisa 'dipilih' untuk item non-stok" apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Kehadiran tidak dapat ditandai untuk tanggal masa depan DocType: Pricing Rule,Pricing Rule Help,Aturan Harga Bantuan DocType: Purchase Taxes and Charges,Account Head,Akun Kepala apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Memperbarui biaya tambahan untuk menghitung biaya mendarat item apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Listrik DocType: Stock Entry,Total Value Difference (Out - In),Total Nilai Selisih (Out - Dalam) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Row {0}: Kurs adalah wajib +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Row {0}: Kurs adalah wajib apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},User ID tidak ditetapkan untuk Karyawan {0} DocType: Stock Entry,Default Source Warehouse,Sumber standar Gudang DocType: Item,Customer Code,Kode Pelanggan @@ -3380,15 +3388,15 @@ DocType: Notification Control,Sales Invoice Message,Penjualan Faktur Pesan apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Penutupan Rekening {0} harus dari jenis Kewajiban / Ekuitas DocType: Authorization Rule,Based On,Berdasarkan DocType: Sales Order Item,Ordered Qty,Memerintahkan Qty -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Item {0} dinonaktifkan +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Item {0} dinonaktifkan DocType: Stock Settings,Stock Frozen Upto,Stock Frozen Upto apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Periode Dari dan Untuk Periode tanggal wajib bagi berulang {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Kegiatan proyek / tugas. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Menghasilkan Gaji Slips +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Menghasilkan Gaji Slips apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Membeli harus dicentang, jika ""Berlaku Untuk"" dipilih sebagai {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Diskon harus kurang dari 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Menulis Off Jumlah (Perusahaan Mata Uang) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Row # {0}: Silakan mengatur kuantitas menyusun ulang +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Row # {0}: Silakan mengatur kuantitas menyusun ulang DocType: Landed Cost Voucher,Landed Cost Voucher,Voucher Biaya mendarat apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},Silakan set {0} DocType: Purchase Invoice,Repeat on Day of Month,Ulangi pada Hari Bulan @@ -3441,7 +3449,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Standar Kerja In Progress Gudang apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Pengaturan default untuk transaksi akuntansi. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Diharapkan Tanggal tidak bisa sebelum Material Request Tanggal -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Item {0} harus Item Penjualan +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Item {0} harus Item Penjualan DocType: Naming Series,Update Series Number,Pembaruan Series Number DocType: Account,Equity,Modal DocType: Sales Order,Printing Details,Percetakan Detail @@ -3493,7 +3501,7 @@ DocType: Task,Review Date,Ulasan Tanggal DocType: Purchase Invoice,Advance Payments,Pembayaran Uang Muka (Down Payment / Advance) DocType: Purchase Taxes and Charges,On Net Total,Pada Bersih Jumlah apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Target gudang di baris {0} harus sama dengan Orde Produksi -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Tidak ada izin untuk menggunakan Alat Pembayaran +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Tidak ada izin untuk menggunakan Alat Pembayaran apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,'Notifikasi Alamat Email' tidak ditentukan untuk nota langganan %s apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Mata uang tidak dapat diubah setelah melakukan entri menggunakan beberapa mata uang lainnya DocType: Company,Round Off Account,Bulat Off Akun @@ -3516,7 +3524,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Jumlah barang yang diperoleh setelah manufaktur / repacking dari mengingat jumlah bahan baku DocType: Payment Reconciliation,Receivable / Payable Account,Piutang / Account Payable DocType: Delivery Note Item,Against Sales Order Item,Terhadap Barang di Sales Order -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},Silakan tentukan Atribut Nilai untuk atribut {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},Silakan tentukan Atribut Nilai untuk atribut {0} DocType: Item,Default Warehouse,Standar Gudang DocType: Task,Actual End Date (via Time Logs),Tanggal Akhir Aktual (via Log Waktu) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Anggaran tidak dapat diberikan terhadap Account Group {0} @@ -3541,10 +3549,10 @@ DocType: Lead,Blog Subscriber,Blog Subscriber apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Buat aturan untuk membatasi transaksi berdasarkan nilai-nilai. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Jika dicentang, total ada. dari Hari Kerja akan mencakup libur, dan ini akan mengurangi nilai Gaji Per Hari" DocType: Purchase Invoice,Total Advance,Jumlah Uang Muka -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Pengolahan Payroll +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Pengolahan Payroll DocType: Opportunity Item,Basic Rate,Harga Dasar DocType: GL Entry,Credit Amount,Jumlah kredit -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Set as Hilang +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Set as Hilang apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Pembayaran Penerimaan Catatan DocType: Supplier,Credit Days Based On,Hari Kredit Berdasarkan DocType: Tax Rule,Tax Rule,Aturan pajak @@ -3574,7 +3582,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Kuantitas Diterima apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} tidak ada apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Bills diajukan ke Pelanggan. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Proyek Id -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Row ada {0}: Jumlah dapat tidak lebih besar dari Pending Jumlah terhadap Beban Klaim {1}. Pending Jumlah adalah {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Row ada {0}: Jumlah dapat tidak lebih besar dari Pending Jumlah terhadap Beban Klaim {1}. Pending Jumlah adalah {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} pelanggan telah ditambahkan DocType: Maintenance Schedule,Schedule,Jadwal DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Tentukan Anggaran untuk Biaya Pusat ini. Untuk mengatur aksi anggaran, lihat "Daftar Perusahaan"" @@ -3635,19 +3643,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS Profil DocType: Payment Gateway Account,Payment URL Message,Pembayaran URL Pesan apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Musiman untuk menetapkan anggaran, target dll" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Baris {0}: Jumlah Pembayaran tidak dapat lebih besar dari Jumlah Posisi +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Baris {0}: Jumlah Pembayaran tidak dapat lebih besar dari Jumlah Posisi apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Jumlah Tunggakan -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Waktu Log tidak dapat ditagih -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Item {0} adalah template, silahkan pilih salah satu variannya" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Waktu Log tidak dapat ditagih +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Item {0} adalah template, silahkan pilih salah satu variannya" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Pembeli apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Gaji bersih yang belum dapat negatif -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Silahkan masukkan Terhadap Voucher manual +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Silahkan masukkan Terhadap Voucher manual DocType: SMS Settings,Static Parameters,Parameter Statis DocType: Purchase Order,Advance Paid,Pembayaran Dimuka (Advance) DocType: Item,Item Tax,Pajak Barang apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Bahan untuk Pemasok apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Cukai Faktur DocType: Expense Claim,Employees Email Id,Karyawan Email Id +DocType: Employee Attendance Tool,Marked Attendance,Kehadiran ditandai apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Kewajiban Lancar apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Kirim SMS massal ke kontak Anda DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Pertimbangkan Pajak atau Biaya untuk @@ -3670,7 +3679,7 @@ DocType: Item Attribute,Numeric Values,Nilai numerik apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Pasang Logo DocType: Customer,Commission Rate,Komisi Tingkat apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Membuat Varian -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Memblokir aplikasi cuti berdasarkan departemen. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Memblokir aplikasi cuti berdasarkan departemen. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Cart adalah Kosong DocType: Production Order,Actual Operating Cost,Biaya Operasi Aktual apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Root tidak dapat diedit. @@ -3689,7 +3698,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,Secara otomatis membuat Bahan Permintaan jika kuantitas turun di bawah tingkat ini ,Item-wise Purchase Register,Barang-bijaksana Pembelian Register DocType: Batch,Expiry Date,Tanggal Berakhir -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Untuk mengatur tingkat pemesanan ulang, barang harus Item Pembelian atau Manufacturing Barang" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Untuk mengatur tingkat pemesanan ulang, barang harus Item Pembelian atau Manufacturing Barang" ,Supplier Addresses and Contacts,Pemasok Alamat dan Kontak apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,Silahkan pilih Kategori pertama apps/erpnext/erpnext/config/projects.py +18,Project master.,Menguasai proyek. diff --git a/erpnext/translations/it.csv b/erpnext/translations/it.csv index 236ff22e99..cf0c7598e2 100644 --- a/erpnext/translations/it.csv +++ b/erpnext/translations/it.csv @@ -25,7 +25,7 @@ apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +37,{0} Tree,{0 DocType: Job Applicant,Job Applicant,Candidato di lavoro apps/erpnext/erpnext/hub_node/page/hub/hub_body.html +18,No more results.,Nessun altro risultato. apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +34,Legal,legale -apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +114,Actual type tax cannot be included in Item rate in row {0},Imposta tipo effettivo non può essere incluso nel prezzo dell'oggetto in riga {0} +apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +114,Actual type tax cannot be included in Item rate in row {0},Il tipo di imposta / tassa non può essere inclusa nella tariffa della riga {0} DocType: C-Form,Customer,Clienti DocType: Purchase Receipt Item,Required By,Richiesto da DocType: Delivery Note,Return Against Delivery Note,Di ritorno contro Consegna Nota @@ -127,7 +127,7 @@ DocType: SMS Log,SMS Log,SMS Log apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Delivered Items,Costo di oggetti consegnati DocType: Quality Inspection,Get Specification Details,Ottieni Specifiche Dettagli DocType: Lead,Interested,Interessati -apps/erpnext/erpnext/config/manufacturing.py +14,Bill of Material,Bill of Material +apps/erpnext/erpnext/config/manufacturing.py +14,Bill of Material,Distinta base (BOM) apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +158,Opening,Apertura apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +28,From {0} to {1},Da {0} a {1} DocType: Item,Copy From Item Group,Copiare da elemento Gruppo @@ -164,14 +164,14 @@ DocType: Journal Entry Account,Credit in Company Currency,Credito in Società Va DocType: Delivery Note,Installation Status,Stato di installazione apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Quantità accettata + rifiutata deve essere uguale alla quantità ricevuta per {0} DocType: Item,Supply Raw Materials for Purchase,Fornire Materie Prime per l'Acquisto -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,L'articolo {0} deve essere un'Articolo da Acquistare +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,L'articolo {0} deve essere un'Articolo da Acquistare DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Scarica il modello, compilare i dati appropriati e allegare il file modificato. Tutti date e dipendente combinazione nel periodo selezionato arriverà nel modello, con record di presenze esistenti" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,L'articolo {0} non è attivo o la fine della vita è stato raggiunta DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Saranno aggiornate dopo fattura di vendita sia presentata. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Per includere fiscale in riga {0} in rate articolo , tasse nelle righe {1} devono essere inclusi" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Impostazioni per il modulo HR +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Per includere fiscale in riga {0} in rate articolo , tasse nelle righe {1} devono essere inclusi" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Impostazioni per il modulo HR DocType: SMS Center,SMS Center,Centro SMS DocType: BOM Replace Tool,New BOM,Nuova Distinta Base apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Batch registri di tempo per la fatturazione. @@ -199,7 +199,7 @@ DocType: Offer Letter,Select Terms and Conditions,Selezionare i Termini e Condiz DocType: Production Planning Tool,Sales Orders,Ordini di vendita DocType: Purchase Taxes and Charges,Valuation,Valorizzazione ,Purchase Order Trends,Acquisto Tendenze Ordine -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Assegnare le foglie per l' anno. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Assegnare le foglie per l' anno. DocType: Earning Type,Earning Type,Tipo Rendimento DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Capacity Planning e Disabilita Time Tracking DocType: Bank Reconciliation,Bank Account,Conto Bancario @@ -237,7 +237,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Specifica da Sito Web dell'articolo DocType: Payment Tool,Reference No,Di riferimento apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Lascia Bloccato -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},L'articolo {0} ha raggiunto la fine della sua vita su {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},L'articolo {0} ha raggiunto la fine della sua vita su {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,annuale DocType: Stock Reconciliation Item,Stock Reconciliation Item,Voce Riconciliazione Giacenza DocType: Stock Entry,Sales Invoice No,Fattura di Vendita n. @@ -249,7 +249,7 @@ DocType: Item,Minimum Order Qty,Qtà ordine minimo DocType: Pricing Rule,Supplier Type,Tipo Fornitore DocType: Item,Publish in Hub,Pubblicare in Hub ,Terretory,Territorio -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,L'articolo {0} è annullato +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,L'articolo {0} è annullato apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Richiesta materiale DocType: Bank Reconciliation,Update Clearance Date,Aggiornare Liquidazione Data DocType: Item,Purchase Details,"Acquisto, i dati" @@ -261,11 +261,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Rifiutato Quantità DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Campo disponibile nella Bolla di consegna, preventivi, fatture di vendita, ordini di vendita" DocType: SMS Settings,SMS Sender Name,SMS Sender Nome DocType: Contact,Is Primary Contact,È primario di contatto +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Tempo Log è stata accorpata per fatturazione DocType: Notification Control,Notification Control,Controllo di notifica DocType: Lead,Suggestions,Suggerimenti DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Impostare la voce del budget di Gruppo-saggi su questo territorio. È inoltre possibile includere la stagionalità impostando la distribuzione. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},Inserisci il gruppo account padre per il magazzino {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Il pagamento contro {0} {1} non può essere maggiore di eccezionale Importo {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Il pagamento contro {0} {1} non può essere maggiore di eccezionale Importo {2} DocType: Supplier,Address HTML,Indirizzo HTML DocType: Lead,Mobile No.,Num. Cellulare DocType: Maintenance Schedule,Generate Schedule,Genera Programma @@ -282,7 +283,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Sincronizzati con Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Password Errata DocType: Item,Variant Of,Variante di -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,L'Articolo {0} deve essere un Servizio apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',Completato Quantità non può essere maggiore di 'Quantità di Fabbricazione' DocType: Period Closing Voucher,Closing Account Head,Chiudere Conto Primario DocType: Employee,External Work History,Storia del lavoro esterno @@ -294,10 +294,10 @@ DocType: Newsletter,Newsletter,Newsletter DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Notifica tramite e-mail sulla creazione di Richiesta automatica Materiale DocType: Journal Entry,Multi Currency,Multi valuta DocType: Payment Reconciliation Invoice,Invoice Type,Tipo Fattura -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Nota Consegna +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Nota Consegna apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Impostazione Tasse apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,Pagamento ingresso è stato modificato dopo l'tirato. Si prega di tirare di nuovo. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} inserito due volte in tassazione articolo +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} inserito due volte in tassazione articolo apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Riepilogo per questa settimana e le attività in corso DocType: Workstation,Rent Cost,Affitto Costo apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Si prega di selezionare mese e anno @@ -308,7 +308,7 @@ DocType: Shipping Rule,Valid for Countries,Valido per paesi DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Tutti i campi correlati importati come valuta, il tasso di conversione , totale, ecc, sono disponibili nella Ricevuta d'Acquisto, nel Preventivo Fornitore, nella Fattura d'Acquisto , ordine d'Acquisto , ecc." apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,Questo articolo è un modello e non può essere utilizzato nelle transazioni. Attributi Voce verranno copiate nelle varianti meno che sia impostato 'No Copy' apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Totale ordine Considerato -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Titolo dipendente (ad esempio amministratore delegato , direttore , ecc.)" +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Titolo dipendente (p. es. amministratore delegato, direttore, CEO, ecc.)" apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,Inserisci ' Ripetere il giorno del mese ' valore di campo DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,Velocità con cui valuta Cliente viene convertito in valuta di base del cliente DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Disponibile in distinta, bolla di consegna, fattura d'acquisto, ordine di produzione, ordine d'acquisto, ricevuta d'acquisto, fattura di vendita, ordini di vendita, giacenza, foglio presenze" @@ -339,7 +339,7 @@ DocType: Leave Application,Leave Approver Name,Nome responsabile ferie ,Schedule Date,Programma Data DocType: Packed Item,Packed Item,Nota Consegna Imballaggio articolo apps/erpnext/erpnext/config/buying.py +54,Default settings for buying transactions.,Impostazioni predefinite per operazioni di acquisto . -apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +29,Activity Cost exists for Employee {0} against Activity Type - {1},Esiste Attività Costo per Employee {0} contro Tipo Attività - {1} +apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +29,Activity Cost exists for Employee {0} against Activity Type - {1},Costo attività trovato per dipendente {0} con tipo attività - {1} apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +29,Please do NOT create Accounts for Customers and Suppliers. They are created directly from the Customer / Supplier masters.,Si prega di non creare account per clienti e fornitori. Essi vengono creati direttamente dai maestri cliente / fornitore. DocType: Currency Exchange,Currency Exchange,Cambio Valuta DocType: Purchase Invoice Item,Item Name,Nome dell'articolo @@ -356,7 +356,7 @@ DocType: Workstation,Consumable Cost,Costo consumabili apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) deve avere il ruolo 'Approvatore Ferie' DocType: Purchase Receipt,Vehicle Date,Veicolo apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Medico -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Motivo per Perdere +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Motivo per Perdere apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Workstation è chiuso nei seguenti giorni secondo l'elenco di vacanza: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Opportunità DocType: Employee,Single,Singolo @@ -384,14 +384,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Canale Partner DocType: Account,Old Parent,Vecchio genitore DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,Personalizza testo di introduzione che andrà nell'email. Ogni transazione ha un introduzione distinta. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Non includere i simboli (es. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Sales Master Manager apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Impostazioni globali per tutti i processi produttivi. -DocType: Accounts Settings,Accounts Frozen Upto,Conti congelati fino +DocType: Accounts Settings,Accounts Frozen Upto,Conti congelati fino al DocType: SMS Log,Sent On,Inviata il -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Attributo {0} selezionato più volte in Attributi Tabella +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Attributo {0} selezionato più volte in Attributi Tabella DocType: HR Settings,Employee record is created using selected field. ,Record dipendente viene creato utilizzando campo selezionato. DocType: Sales Order,Not Applicable,Non Applicabile -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Vacanza principale. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Vacanza principale. DocType: Material Request Item,Required Date,Data richiesta DocType: Delivery Note,Billing Address,Indirizzo Fatturazione apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,Inserisci il codice dell'articolo. @@ -427,7 +428,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,Inserisci il Magazzino per cui Materiale richiesta sarà sollevata DocType: Production Order,Additional Operating Cost,Ulteriori costi di esercizio apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,cosmetici -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Per unire , seguenti proprietà devono essere uguali per entrambe le voci" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Per unire , seguenti proprietà devono essere uguali per entrambe le voci" DocType: Shipping Rule,Net Weight,Peso netto DocType: Employee,Emergency Phone,Telefono di emergenza ,Serial No Warranty Expiry,Serial No Garanzia di scadenza @@ -483,17 +484,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Fatturazione e di condizione di consegna apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Ripetere i clienti DocType: Leave Control Panel,Allocate,Assegna -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Ritorno di vendite +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Ritorno di vendite DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Selezionare gli ordini di vendita da cui si desidera creare gli ordini di produzione. DocType: Item,Delivered by Supplier (Drop Ship),Consegnato da Supplier (Drop Ship) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Componenti stipendio +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Componenti stipendio apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Database Potenziali Clienti. DocType: Authorization Rule,Customer or Item,Cliente o Voce apps/erpnext/erpnext/config/crm.py +17,Customer database.,Database Clienti. DocType: Quotation,Quotation To,Preventivo Per DocType: Lead,Middle Income,Reddito Medio apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Opening ( Cr ) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Unità di misura predefinita per la voce {0} non può essere modificato direttamente perché si è già fatto qualche operazione (s) con un altro UOM. Sarà necessario creare una nuova voce per utilizzare un diverso UOM predefinito. +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Unità di misura predefinita per la voce {0} non può essere modificato direttamente perché si è già fatto qualche operazione (s) con un altro UOM. Sarà necessario creare una nuova voce per utilizzare un diverso UOM predefinito. apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Importo concesso non può essere negativo DocType: Purchase Order Item,Billed Amt,Importo Fatturato DocType: Warehouse,A logical Warehouse against which stock entries are made.,Magazzino logico utilizzato per l'entrata giacenza. @@ -512,14 +513,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Tasse di vendita e oneri DocType: Employee,Organization Profile,Profilo dell'organizzazione apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,Si prega serie di numerazione di installazione per presenze tramite Setup > Numerazione Series DocType: Employee,Reason for Resignation,Motivo della Dimissioni -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Modello per la valutazione delle prestazioni . +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Modello per la valutazione delle prestazioni . DocType: Payment Reconciliation,Invoice/Journal Entry Details,Dettagli Fattura/Registro apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' non in anno fiscale {2} DocType: Buying Settings,Settings for Buying Module,Impostazioni per l'acquisto del modulo apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,Inserisci RICEVUTA primo DocType: Buying Settings,Supplier Naming By,Fornitore di denominazione DocType: Activity Type,Default Costing Rate,Tasso Costing Predefinito -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Programma di manutenzione +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Programma di manutenzione apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Poi Regole dei prezzi vengono filtrati in base a cliente, Gruppo Cliente, Territorio, Fornitore, Fornitore Tipo, Campagna, Partner di vendita ecc" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Variazione netta Inventario DocType: Employee,Passport Number,Numero di passaporto @@ -558,7 +559,7 @@ DocType: Purchase Invoice,Quarterly,Trimestralmente DocType: Selling Settings,Delivery Note Required,Nota Consegna Richiesta DocType: Sales Order Item,Basic Rate (Company Currency),Tasso Base (Valuta Azienda) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush Materie prime calcolate in base a -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,Inserisci il dettaglio articolo +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,Inserisci il dettaglio articolo DocType: Purchase Receipt,Other Details,Altri dettagli DocType: Account,Accounts,Accounts apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Marketing @@ -571,7 +572,7 @@ DocType: Employee,Provide email id registered in company,Fornire id-mail registr DocType: Hub Settings,Seller City,Città Venditore DocType: Email Digest,Next email will be sent on:,La prossimo Email verrà inviato: DocType: Offer Letter Term,Offer Letter Term,Offerta Lettera Termine -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Articolo ha varianti. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Articolo ha varianti. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Articolo {0} non trovato DocType: Bin,Stock Value,Valore Giacenza apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,albero Type @@ -579,7 +580,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Quantità consumata per unità DocType: Serial No,Warranty Expiry Date,Data di scadenza Garanzia DocType: Material Request Item,Quantity and Warehouse,Quantità e Magazzino DocType: Sales Invoice,Commission Rate (%),Tasso Commissione (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Contro Voucher tipo deve essere uno dei Sales Order, Fattura o diario" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Contro Voucher tipo deve essere uno dei Sales Order, Fattura o diario" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,aerospaziale DocType: Journal Entry,Credit Card Entry,Entry Carta di Credito apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Oggetto attività @@ -666,10 +667,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,responsabilità apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Importo sanzionato non può essere maggiore di rivendicazione Importo in riga {0}. DocType: Company,Default Cost of Goods Sold Account,Costo predefinito di Account merci vendute -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Listino Prezzi non selezionati +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Listino Prezzi non selezionati DocType: Employee,Family Background,Sfondo Famiglia DocType: Process Payroll,Send Email,Invia Email -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Attenzione: L'allegato non valido {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Attenzione: L'allegato non valido {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Nessuna autorizzazione DocType: Company,Default Bank Account,Conto Banca Predefinito apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Per filtrare sulla base del partito, selezionare Partito Digitare prima" @@ -697,7 +698,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Suppo DocType: Features Setup,"To enable ""Point of Sale"" features",Per attivare la "Point of Sale" caratteristiche DocType: Bin,Moving Average Rate,Tasso Media Mobile DocType: Production Planning Tool,Select Items,Selezionare Elementi -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} contro fattura {1} in data {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} per fattura {1} in data {2} DocType: Maintenance Visit,Completion Status,Stato Completamento DocType: Sales Invoice Item,Target Warehouse,Obiettivo Warehouse DocType: Item,Allow over delivery or receipt upto this percent,Consenti superamento ricezione o invio fino a questa percentuale @@ -734,7 +735,7 @@ DocType: Sales Invoice Item,Stock Details,Dettagli della apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +29,Project Value,Valore di progetto apps/erpnext/erpnext/config/selling.py +304,Point-of-Sale,Punto vendita apps/erpnext/erpnext/accounts/doctype/account/account.py +115,"Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'","Saldo a bilancio già nel credito, non è permesso impostare il 'Saldo Futuro' come 'debito'" -DocType: Account,Balance must be,Saldo deve essere +DocType: Account,Balance must be,Il saldo deve essere DocType: Hub Settings,Publish Pricing,Pubblicare Prezzi DocType: Notification Control,Expense Claim Rejected Message,Messaggio Rimborso Spese Rifiutato ,Available Qty,Disponibile Quantità @@ -757,7 +758,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Maes apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Impossibile trovare tempo di slot nei prossimi {0} giorni per l'operazione {1} DocType: Production Order,Plan material for sub-assemblies,Materiale Piano per sub-assemblaggi apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} deve essere attivo -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,Si prega di selezionare il tipo di documento prima +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Si prega di selezionare il tipo di documento prima apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Vai a carrello apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Annulla Visite Materiale {0} prima di annullare questa visita di manutenzione DocType: Salary Slip,Leave Encashment Amount,Lascia Incasso Importo @@ -775,7 +776,7 @@ DocType: Purchase Receipt,Range,Intervallo DocType: Supplier,Default Payable Accounts,Debiti default apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Employee {0} non è attiva o non esiste DocType: Features Setup,Item Barcode,Barcode articolo -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Voce Varianti {0} aggiornato +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Voce Varianti {0} aggiornato DocType: Quality Inspection Reading,Reading 6,Lettura 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Acquisto Advance Fattura DocType: Address,Shop,Negozio @@ -798,7 +799,7 @@ DocType: Salary Slip,Total in words,Totale in parole DocType: Material Request Item,Lead Time Date,Data Tempo di Esecuzione apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,Obbligatorio. Forse non è stato definito il vambio di valuta apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Row # {0}: Si prega di specificare Numero d'ordine per la voce {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Per 'prodotto Bundle', Warehouse, numero di serie e Batch No sarà considerata dal 'Packing List' tavolo. Se Magazzino e Batch No sono gli stessi per tutti gli elementi di imballaggio per un elemento qualsiasi 'Product Bundle', questi valori possono essere inseriti nella tabella principale elemento, i valori verranno copiati a 'Packing List' tavolo." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Per 'prodotto Bundle', Warehouse, numero di serie e Batch No sarà considerata dal 'Packing List' tavolo. Se Magazzino e Batch No sono gli stessi per tutti gli elementi di imballaggio per un elemento qualsiasi 'Product Bundle', questi valori possono essere inseriti nella tabella principale elemento, i valori verranno copiati a 'Packing List' tavolo." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Le spedizioni verso i clienti. DocType: Purchase Invoice Item,Purchase Order Item,Ordine di acquisto dell'oggetto apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Proventi indiretti @@ -819,6 +820,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Selezionare Payroll Anno apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Vai al gruppo appropriato (solitamente Applicazione dei fondi> Attività correnti> conti bancari e creare un nuovo account (facendo clic su Add Child) di tipo "Banca" DocType: Workstation,Electricity Cost,Costo Elettricità DocType: HR Settings,Don't send Employee Birthday Reminders,Non inviare Dipendente Birthday Reminders +,Employee Holiday Attendance,Impiegato vacanze presenze DocType: Opportunity,Walk In,Walk In apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Le entrate nelle scorte DocType: Item,Inspection Criteria,Criteri di ispezione @@ -841,7 +843,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,S DocType: Journal Entry Account,Expense Claim,Rimborso Spese apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Quantità per {0} DocType: Leave Application,Leave Application,Lascia Application -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Lascia strumento Allocazione +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Lascia strumento Allocazione DocType: Leave Block List,Leave Block List Dates,Lascia Blocco Elenco date DocType: Company,If Monthly Budget Exceeded (for expense account),Se Budget Mensile superato (per conto spese) DocType: Workstation,Net Hour Rate,Tasso Netto Orario @@ -851,7 +853,7 @@ DocType: Packing Slip Item,Packing Slip Item,Distinta di imballaggio articolo DocType: POS Profile,Cash/Bank Account,Conto Cassa/Banca apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Elementi rimossi senza variazione di quantità o valore. DocType: Delivery Note,Delivery To,Consegna a -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Tavolo attributo è obbligatorio +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Tavolo attributo è obbligatorio DocType: Production Planning Tool,Get Sales Orders,Ottieni Ordini di Vendita apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} non può essere negativo apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Sconto @@ -870,8 +872,8 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +113,You are the Expense Approver for this record. Please Update the 'Status' and Save,Tu sei il Responsabile approvazione spese per questo record. Aggiorna lo Stato e salva DocType: Serial No,Creation Document No,Creazione di documenti No DocType: Issue,Issue,Questione -apps/erpnext/erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py +28,Account does not match with Company,Conto non corrisponde con la Società -apps/erpnext/erpnext/config/stock.py +131,"Attributes for Item Variants. e.g Size, Color etc.","Attributi per Voce Varianti. ad esempio Taglia, colore etc." +apps/erpnext/erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py +28,Account does not match with Company,Il conto non corrisponde alla Società +apps/erpnext/erpnext/config/stock.py +131,"Attributes for Item Variants. e.g Size, Color etc.","Attributi per voce Varianti. P. es. Taglia, colore etc." apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +39,WIP Warehouse,WIP Warehouse apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +194,Serial No {0} is under maintenance contract upto {1},Serial No {0} è sotto contratto di manutenzione fino a {1} DocType: BOM Operation,Operation,Operazione @@ -915,7 +917,7 @@ DocType: SMS Center,Total Characters,Totale Personaggi apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},Seleziona BOM BOM in campo per la voce {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-Form Detagli Fattura DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Pagamento Riconciliazione fattura -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Contributo% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Contributo% DocType: Item,website page link,sito web link alla pagina DocType: Company,Company registration numbers for your reference. Tax numbers etc.,"Numeri di registrazione dell'azienda per il vostro riferimento. numero Tassa, ecc" DocType: Sales Partner,Distributor,Distributore @@ -957,10 +959,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,Fattore di Conversione UOM DocType: Stock Settings,Default Item Group,Gruppo elemento Predefinito apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Banca dati dei fornitori. DocType: Account,Balance Sheet,bilancio patrimoniale -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Centro di costo per articoli con Codice Prodotto ' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Centro di costo per articoli con Codice Prodotto ' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,Il rivenditore riceverà un promemoria in questa data per contattare il cliente apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Ulteriori conti possono essere fatti in Gruppi, ma le voci possono essere fatte contro i non-Gruppi" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Fiscale e di altre deduzioni salariali. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Fiscale e di altre deduzioni salariali. DocType: Lead,Lead,Lead DocType: Email Digest,Payables,Debiti DocType: Account,Warehouse,magazzino @@ -977,10 +979,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Non riconciliate Pa DocType: Global Defaults,Current Fiscal Year,Anno Fiscale Corrente DocType: Global Defaults,Disable Rounded Total,Disabilita Arrotondamento su Totale DocType: Lead,Call,Chiama -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'le voci' non possono essere vuote +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'le voci' non possono essere vuote apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Fila Duplicate {0} con lo stesso {1} ,Trial Balance,Bilancio di verifica -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Impostazione dipendenti +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Impostazione dipendenti apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","Grid """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,Si prega di selezionare il prefisso prima apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,ricerca @@ -989,7 +991,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,ID utente apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,vista Ledger apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,La prima -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Un gruppo di elementi esiste con lo stesso nome , si prega di cambiare il nome della voce o rinominare il gruppo di articoli" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Un gruppo di elementi esiste con lo stesso nome , si prega di cambiare il nome della voce o rinominare il gruppo di articoli" DocType: Production Order,Manufacture against Sales Order,Produzione su Ordine di vendita apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Resto del Mondo apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,L'articolo {0} non può avere Lotto @@ -1014,7 +1016,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Magazzino Rifiutato DocType: GL Entry,Against Voucher,Per Tagliando DocType: Item,Default Buying Cost Center,Comprare Centro di costo predefinito apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Per ottenere il meglio da ERPNext, si consiglia di richiedere un certo tempo e guardare questi video di aiuto." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,L'Articolo {0} deve essere un'Articolo in Vendita +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,L'Articolo {0} deve essere un'Articolo in Vendita apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,a DocType: Item,Lead Time in days,Tempi di Esecuzione in giorni ,Accounts Payable Summary,Conti pagabili Sommario @@ -1040,7 +1042,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,agricoltura apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,I vostri prodotti o servizi DocType: Mode of Payment,Mode of Payment,Modalità di Pagamento -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Website Immagine dovrebbe essere un file o URL del sito web pubblico +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Website Immagine dovrebbe essere un file o URL del sito web pubblico apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,Questo è un gruppo elemento principale e non può essere modificato . DocType: Journal Entry Account,Purchase Order,Ordine di acquisto DocType: Warehouse,Warehouse Contact Info,Magazzino contatto @@ -1051,7 +1053,7 @@ DocType: Serial No,Serial No Details,Serial No Dettagli DocType: Purchase Invoice Item,Item Tax Rate,Articolo Tax Rate apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","Per {0}, solo i conti di credito possono essere collegati contro un'altra voce di addebito" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Consegna Note {0} non è presentata -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,L'Articolo {0} deve essere di un sub-contratto +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,L'Articolo {0} deve essere di un sub-contratto apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Attrezzature Capital apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Regola Prezzi viene prima selezionato in base al 'applicare sul campo', che può essere prodotto, Articolo di gruppo o di marca." DocType: Hub Settings,Seller Website,Venditore Sito @@ -1060,7 +1062,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Obiettivo DocType: Sales Invoice Item,Edit Description,Modifica Descrizione apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Data prevista di consegna è minore del previsto Data inizio. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,per Fornitore +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,per Fornitore DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Impostazione Tipo di account aiuta nella scelta questo account nelle transazioni. DocType: Purchase Invoice,Grand Total (Company Currency),Somma totale (valuta Azienda) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Uscita totale @@ -1092,7 +1094,7 @@ apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_ DocType: Appraisal Template Goal,Appraisal Template Goal,Valutazione Modello Obiettivo DocType: Salary Slip,Earning,Rendimento DocType: Payment Tool,Party Account Currency,Partito Conto Valuta -,BOM Browser,BOM Browser +,BOM Browser,Sfoglia BOM DocType: Purchase Taxes and Charges,Add or Deduct,Aggiungere o dedurre DocType: Company,If Yearly Budget Exceeded (for expense account),Se Budget annuale superato (per conto spese) apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +81,Overlapping conditions found between:,Condizioni sovrapposti trovati tra : @@ -1112,7 +1114,6 @@ DocType: Authorization Rule,Average Discount,Sconto Medio DocType: Address,Utilities,Utilità DocType: Purchase Invoice Item,Accounting,Contabilità DocType: Features Setup,Features Setup,Configurazione Funzioni -DocType: Item,Is Service Item,È il servizio Voce apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Periodo di applicazione non può essere periodo di assegnazione congedo di fuori DocType: Activity Cost,Projects,Progetti apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,Si prega di selezionare l'anno fiscale @@ -1133,7 +1134,7 @@ DocType: Item,Maintain Stock,Scorta da mantenere apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Le voci di archivio già creati per ordine di produzione apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Variazione netta delle immobilizzazioni DocType: Leave Control Panel,Leave blank if considered for all designations,Lasciare vuoto se considerato per tutte le designazioni -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Carica di tipo ' Actual ' in riga {0} non può essere incluso nella voce Tasso +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Carica di tipo ' Actual ' in riga {0} non può essere incluso nella voce Tasso apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Da Datetime DocType: Email Digest,For Company,Per Azienda @@ -1142,8 +1143,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Indirizzo Shipping Name apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Piano dei Conti DocType: Material Request,Terms and Conditions Content,Termini e condizioni contenuti -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,non può essere superiore a 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,L'articolo {0} non è in Giagenza +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,non può essere superiore a 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,L'articolo {0} non è in Giagenza DocType: Maintenance Visit,Unscheduled,Non in programma DocType: Employee,Owned,Di proprietà DocType: Salary Slip Deduction,Depends on Leave Without Pay,Dipende in aspettativa senza assegni @@ -1152,7 +1153,7 @@ DocType: Pricing Rule,"Higher the number, higher the priority","Più alto è il DocType: Employee,Better Prospects,Prospettive Migliori DocType: Appraisal,Goals,Obiettivi DocType: Warranty Claim,Warranty / AMC Status,Garanzia / AMC Stato -,Accounts Browser,conti Browser +,Accounts Browser,Esplora Conti DocType: GL Entry,GL Entry,GL Entry DocType: HR Settings,Employee Settings,Impostazioni dipendente ,Batch-Wise Balance History,Cronologia Bilanciamento Lotti-Wise @@ -1165,7 +1166,7 @@ Used for Taxes and Charges","Dettaglio Tax tavolo prelevato dalla voce principal apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Il dipendente non può riportare a se stesso. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Se l'account viene bloccato , le voci sono autorizzati a utenti con restrizioni ." DocType: Email Digest,Bank Balance,Saldo bancario -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Ingresso contabile per {0}: {1} può essere fatto solo in valuta: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Ingresso contabile per {0}: {1} può essere fatto solo in valuta: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Nessuna struttura retributiva attivo trovato per dipendente {0} e il mese DocType: Job Opening,"Job profile, qualifications required etc.","Profilo del lavoro , qualifiche richieste ecc" DocType: Journal Entry Account,Account Balance,Saldo a bilancio @@ -1182,7 +1183,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,sub Assemblie DocType: Shipping Rule Condition,To Value,Per Valore DocType: Supplier,Stock Manager,Manager di Giacenza apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Magazzino Source è obbligatorio per riga {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Documento di trasporto +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Documento di trasporto apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Affitto Ufficio apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Impostazioni del gateway configurazione di SMS apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Importazione non riuscita! @@ -1222,11 +1223,11 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +27,Executive Search,ex apps/erpnext/erpnext/stock/stock_ledger.py +407,"Purchase rate for item: {0} not found, which is required to book accounting entry (expense). Please mention item price against a buying price list.","Tasso di acquisto per la voce: {0} non trovato, che è necessario per prenotare l'ingresso contabilità (oneri). Si prega di indicare prezzi contro un listino prezzi di acquisto." DocType: Maintenance Schedule,Schedules,Orari DocType: Purchase Invoice Item,Net Amount,Importo Netto -DocType: Purchase Order Item Supplied,BOM Detail No,DIBA Dettagli N. +DocType: Purchase Order Item Supplied,BOM Detail No,Dettaglio BOM N. DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Ulteriori Importo Discount (valuta Company) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Errore: {0} > {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,Si prega di creare un nuovo account dal Piano dei conti . -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Visita di manutenzione +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Visita di manutenzione apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Clienti> Gruppi clienti> Territorio DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Disponibile Quantità Batch in magazzino DocType: Time Log Batch Detail,Time Log Batch Detail,Ora Dettaglio Batch Log @@ -1235,12 +1236,12 @@ DocType: Leave Block List,Block Holidays on important days.,Vacanze di blocco ne ,Accounts Receivable Summary,Contabilità Sommario Crediti apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,Impostare campo ID utente in un record Employee impostare Ruolo Employee DocType: UOM,UOM Name,UOM Nome -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Contributo Importo +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Contributo Importo DocType: Sales Invoice,Shipping Address,Indirizzo di spedizione DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,Questo strumento consente di aggiornare o correggere la quantità e la valutazione delle azioni nel sistema. Viene tipicamente utilizzato per sincronizzare i valori di sistema e ciò che esiste realmente in vostri magazzini. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,In parole saranno visibili una volta che si salva il DDT. -apps/erpnext/erpnext/config/stock.py +115,Brand master.,Marchio Originale. -DocType: Sales Invoice Item,Brand Name,Nome Marca +apps/erpnext/erpnext/config/stock.py +115,Brand master.,Marchio principale +DocType: Sales Invoice Item,Brand Name,Nome Marchio DocType: Purchase Receipt,Transporter Details,Transporter Dettagli apps/erpnext/erpnext/public/js/setup_wizard.js +292,Box,Scatola apps/erpnext/erpnext/public/js/setup_wizard.js +49,The Organization,L'Organizzazione @@ -1276,7 +1277,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Per tenere traccia di elementi con codice a barre. Si sarà in grado di inserire articoli nel DDT e fattura di vendita attraverso la scansione del codice a barre del prodotto. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Invia di nuovo pagamento Email DocType: Dependent Task,Dependent Task,Task dipendente -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Fattore di conversione per unità di misura predefinita deve essere 1 in riga {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Fattore di conversione per unità di misura predefinita deve essere 1 in riga {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Lascia di tipo {0} non può essere superiore a {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Provare le operazioni per X giorni in programma in anticipo. DocType: HR Settings,Stop Birthday Reminders,Arresto Compleanno Promemoria @@ -1286,7 +1287,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Vista apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Variazione netta delle disponibilità DocType: Salary Structure Deduction,Salary Structure Deduction,Struttura salariale Deduzione -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Unità di misura {0} è stato inserito più di una volta Factor Tabella di conversione +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Unità di misura {0} è stato inserito più di una volta Factor Tabella di conversione apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Richiesta di pagamento già esistente {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Costo di elementi Emesso apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Quantità non deve essere superiore a {0} @@ -1311,11 +1312,11 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +74,Human Resources, DocType: Lead,Upper Income,Reddito superiore DocType: Journal Entry Account,Debit in Company Currency,Debito in Società Valuta apps/erpnext/erpnext/support/doctype/issue/issue.py +58,My Issues,I miei problemi -DocType: BOM Item,BOM Item,DIBA Articolo +DocType: BOM Item,BOM Item,BOM Articolo DocType: Appraisal,For Employee,Per Dipendente apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Riga {0}: Advance contro Fornitore deve essere addebito DocType: Company,Default Values,Valori Predefiniti -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Riga {0}: Importo del pagamento non può essere negativo +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Riga {0}: Importo del pagamento non può essere negativo DocType: Expense Claim,Total Amount Reimbursed,Dell'importo totale rimborsato apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Contro Fornitore Invoice {0} {1} datato DocType: Customer,Default Price List,Listino Prezzi Predefinito @@ -1343,8 +1344,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Ric DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Sostituire un particolare distinta in tutte le altre distinte materiali in cui viene utilizzato. Essa sostituirà il vecchio link BOM, aggiornare i costi e rigenerare ""BOM Explosion Item"" tabella di cui al nuovo BOM" DocType: Shopping Cart Settings,Enable Shopping Cart,Abilita Carrello DocType: Employee,Permanent Address,Indirizzo permanente -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,L'Articolo {0} deve essere un Servizio -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Anticipo versato contro {0} {1} non può essere maggiore \ di Gran Totale {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Si prega di selezionare il codice articolo DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Ridurre Deduzione per aspettativa senza assegni (LWP) @@ -1386,7 +1386,7 @@ DocType: Quotation,Order Type,Tipo di ordine DocType: Purchase Invoice,Notification Email Address,Indirizzo e-mail di notifica DocType: Payment Tool,Find Invoices to Match,Trova Fatture per incontri ,Item-wise Sales Register,Vendite articolo-saggio Registrati -apps/erpnext/erpnext/public/js/setup_wizard.js +59,"e.g. ""XYZ National Bank""","ad esempio ""XYZ Banca nazionale """ +apps/erpnext/erpnext/public/js/setup_wizard.js +59,"e.g. ""XYZ National Bank""","p. es. ""Banca Nazionale XYZ""" DocType: Purchase Taxes and Charges,Is this Tax included in Basic Rate?,È questa tassa inclusi nel prezzo base? apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Target,Obiettivo totale apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.js +29,Shopping Cart is enabled,Carrello è abilitato @@ -1400,12 +1400,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,principale apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Variante DocType: Naming Series,Set prefix for numbering series on your transactions,Impostare prefisso per numerazione serie sulle transazioni +DocType: Employee Attendance Tool,Employees HTML,Dipendenti HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Arrestato ordine non può essere cancellato . Stappare per annullare. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,BOM default ({0}) deve essere attivo per questo articolo o il suo modello +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,BOM default ({0}) deve essere attivo per questo articolo o il suo modello DocType: Employee,Leave Encashed?,Lascia incassati? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Opportunity Dal campo è obbligatorio DocType: Item,Variants,Varianti -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Crea ordine d'acquisto +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Crea ordine d'acquisto DocType: SMS Center,Send To,Invia a apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Non c'è equilibrio congedo sufficiente per Leave tipo {0} DocType: Payment Reconciliation Payment,Allocated amount,Somma stanziata @@ -1483,7 +1484,7 @@ DocType: Cost Center,Budget,Budget apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +41,"Budget cannot be assigned against {0}, as it's not an Income or Expense account","Bilancio non può essere assegnato contro {0}, in quanto non è un conto entrate o uscite" apps/erpnext/erpnext/selling/report/sales_person_target_variance_item_group_wise/sales_person_target_variance_item_group_wise.py +51,Achieved,Raggiunto apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +65,Territory / Customer,Territorio / Cliente -apps/erpnext/erpnext/public/js/setup_wizard.js +224,e.g. 5,ad esempio 5 +apps/erpnext/erpnext/public/js/setup_wizard.js +224,e.g. 5,p. es. 5 apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +150,Row {0}: Allocated amount {1} must be less than or equals to invoice outstanding amount {2},Riga {0}: importo assegnato {1} deve essere inferiore o uguale a fatturare importo residuo {2} DocType: Sales Invoice,In Words will be visible once you save the Sales Invoice.,In parole saranno visibili una volta che si salva la fattura di vendita. DocType: Item,Is Sales Item,È Voce vendite @@ -1506,7 +1507,7 @@ DocType: Sales Person,Name and Employee ID,Nome e ID Dipendente apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,Data di scadenza non può essere precedente Data di registrazione DocType: Website Item Group,Website Item Group,Sito Gruppo Articolo apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Dazi e tasse -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,Inserisci Data di riferimento +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,Inserisci Data di riferimento apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Payment Gateway account non è configurato apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} voci di pagamento non possono essere filtrate per {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,Tavolo per la voce che verrà mostrato in Sito Web @@ -1527,7 +1528,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Dettagli risoluzione DocType: Quality Inspection Reading,Acceptance Criteria,Criterio di accettazione DocType: Item Attribute,Attribute Name,Nome Attributo -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},L'Articolo {0} deve essere un'Articolo in Vendita o un Servizio in {1} DocType: Item Group,Show In Website,Mostra Nel Sito Web apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Gruppo DocType: Task,Expected Time (in hours),Tempo previsto (in ore) @@ -1536,7 +1536,7 @@ DocType: Features Setup,"To track brand name in the following documents Delivery apps/erpnext/erpnext/config/projects.py +51,Gantt chart of all tasks.,Diagramma di Gantt di tutte le attività. DocType: Appraisal,For Employee Name,Per Nome Dipendente DocType: Holiday List,Clear Table,Pulisci Tabella -DocType: Features Setup,Brands,Marche +DocType: Features Setup,Brands,Marchi DocType: C-Form Invoice Detail,Invoice No,Fattura n apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +93,"Leave cannot be applied/cancelled before {0}, as leave balance has already been carry-forwarded in the future leave allocation record {1}","Lasciare non può essere applicata / annullato prima {0}, come equilibrio congedo è già stato inoltrato carry-in futuro record di assegnazione congedo {1}" DocType: Activity Cost,Costing Rate,Costing Tasso @@ -1559,7 +1559,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Importo spedizione ,Pending Amount,In attesa di Importo DocType: Purchase Invoice Item,Conversion Factor,Fattore di Conversione DocType: Purchase Order,Delivered,Consegnato -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Configurazione del server in arrivo per i lavori di id-mail . ( ad esempio jobs@example.com ) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Indirizzo di posta in arrivo per impieghi (p. es. jobs@example.com ) DocType: Purchase Receipt,Vehicle Number,Numero di veicoli DocType: Purchase Invoice,The date on which recurring invoice will be stop,La data in cui la fattura ricorrente si concluderà apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Totale foglie assegnati {0} non può essere inferiore a foglie già approvati {1} per il periodo @@ -1576,7 +1576,7 @@ DocType: HR Settings,HR Settings,Impostazioni HR apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Rimborso spese in attesa di approvazione. Solo il Responsabile Spese può modificarne lo stato. DocType: Purchase Invoice,Additional Discount Amount,Ulteriori Importo Sconto DocType: Leave Block List Allow,Leave Block List Allow,Lascia Block List Consentire -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Sigla non può essere vuoto o spazio +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,L'abbr. non può essere vuota o spazio apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Gruppo di Non-Group apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,sportivo apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Totale Actual @@ -1596,11 +1596,11 @@ DocType: Workstation,Wages per hour,Salari all'ora apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +47,Stock balance in Batch {0} will become negative {1} for Item {2} at Warehouse {3},Equilibrio Stock in Lotto {0} sarà negativo {1} per la voce {2} a Warehouse {3} apps/erpnext/erpnext/config/setup.py +83,"Show / Hide features like Serial Nos, POS etc.","Mostra / Nascondi caratteristiche come Serial Nos, POS ecc" apps/erpnext/erpnext/templates/emails/reorder_item.html +1,Following Material Requests have been raised automatically based on Item's re-order level,A seguito di richieste di materiale sono state sollevate automaticamente in base al livello di riordino della Voce -apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is invalid. Account Currency must be {1},Il Conto {0} non è valido. La valuta del conto deve essere {1} +apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is invalid. Account Currency must be {1},Account {0} non valido. La valuta del conto deve essere {1} apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},Fattore UOM conversione è necessaria in riga {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Data di Liquidazione non può essere prima della data di arrivo in riga {0} DocType: Salary Slip,Deduction,Deduzioni -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Articolo Prezzo aggiunto per {0} in Listino Prezzi {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Articolo Prezzo aggiunto per {0} in Listino Prezzi {1} DocType: Address Template,Address Template,Indirizzo Template apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,Inserisci ID dipendente di questa persona di vendite DocType: Territory,Classification of Customers by region,Classificazione dei Clienti per regione @@ -1617,7 +1617,7 @@ DocType: Employee,Date of Birth,Data Compleanno apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,L'articolo {0} è già stato restituito DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,**Anno Fiscale** rappresenta un anno contabile. Tutte le voci contabili e le altre operazioni importanti sono tracciati per **Anno Fiscale**. DocType: Opportunity,Customer / Lead Address,Indirizzo Cliente / Contatto -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Attenzione: certificato SSL non valido sull'attaccamento {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Attenzione: certificato SSL non valido sull'attaccamento {0} DocType: Production Order Operation,Actual Operation Time,Tempo lavoro effettiva DocType: Authorization Rule,Applicable To (User),Applicabile a (Utente) DocType: Purchase Taxes and Charges,Deduct,Detrarre @@ -1634,7 +1634,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Split di consegna Nota in pacchetti. apps/erpnext/erpnext/hooks.py +69,Shipments,Spedizioni DocType: Purchase Order Item,To be delivered to customer,Da consegnare al cliente -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Tempo Log Stato deve essere presentata. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Tempo Log Stato deve essere presentata. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,N. di serie {0} non appartiene ad alcun magazzino apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Row # DocType: Purchase Invoice,In Words (Company Currency),In Parole (Azienda valuta) @@ -1651,7 +1651,7 @@ DocType: Leave Application,Total Leave Days,Totale Lascia Giorni DocType: Email Digest,Note: Email will not be sent to disabled users,Nota: E-mail non sarà inviata agli utenti disabilitati apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Seleziona Company ... DocType: Leave Control Panel,Leave blank if considered for all departments,Lasciare vuoto se considerato per tutti i reparti -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Tipi di occupazione (permanente , contratti , ecc intern ) ." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Tipi di occupazione (permanente , contratti , ecc intern ) ." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} è obbligatorio per la voce {1} DocType: Currency Exchange,From Currency,Da Valuta apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Seleziona importo assegnato, Tipo fattura e fattura numero in almeno uno di fila" @@ -1666,11 +1666,11 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +12,Banking,bancario apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +38,Please click on 'Generate Schedule' to get schedule,Si prega di cliccare su ' Generate Schedule ' per ottenere pianificazione apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +300,New Cost Center,Nuovo Centro di costo DocType: Bin,Ordered Quantity,Ordinato Quantità -apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for builders""","ad esempio "" Costruire strumenti per i costruttori """ +apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for builders""","p. es. "" Costruire strumenti per i costruttori """ DocType: Quality Inspection,In Process,In Process DocType: Authorization Rule,Itemwise Discount,Sconto Itemwise DocType: Purchase Order Item,Reference Document Type,Riferimento Tipo di documento -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} contro ordine di vendita {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} per ordine di vendita {1} DocType: Account,Fixed Asset,Asset fisso apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Serialized Inventario DocType: Activity Type,Default Billing Rate,Predefinito fatturazione Tasso @@ -1680,7 +1680,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Ordine di vendita a pagamento DocType: Expense Claim Detail,Expense Claim Detail,Dettaglio Rimborso Spese apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Tempo Logs creato: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,Seleziona account corretto +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,Seleziona account corretto DocType: Item,Weight UOM,Peso UOM DocType: Employee,Blood Group,Gruppo Discendenza DocType: Purchase Invoice Item,Page Break,Interruzione di pagina @@ -1712,10 +1712,10 @@ DocType: Time Log,To Time,Per Tempo DocType: Authorization Rule,Approving Role (above authorized value),Approvazione di ruolo (di sopra del valore autorizzato) apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +25,"To add child nodes, explore tree and click on the node under which you want to add more nodes.","Per aggiungere nodi figlio , esplorare albero e fare clic sul nodo in cui si desidera aggiungere più nodi ." apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103,Credit To account must be a Payable account,Credit Per account deve essere un account a pagamento -apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM ricorsione : {0} non può essere genitore o figlio di {2} +apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM ricorsivo: {0} non può essere un padre o un figlio di {2} DocType: Production Order Operation,Completed Qty,Q.tà Completata apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","Per {0}, solo gli account di debito possono essere collegati contro un'altra voce di credito" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Prezzo di listino {0} è disattivato +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Prezzo di listino {0} è disattivato DocType: Manufacturing Settings,Allow Overtime,Consenti Overtime apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} numeri di serie necessari per la voce {1}. Lei ha fornito {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Corrente Tasso di Valutazione @@ -1757,7 +1757,7 @@ DocType: Company,For Reference Only.,Per riferimento soltanto. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +49,Invalid {0}: {1},Non valido {0}: {1} DocType: Sales Invoice Advance,Advance Amount,Importo Anticipo DocType: Manufacturing Settings,Capacity Planning,Capacity Planning -apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +43,'From Date' is required,"""data iniziale"" richiesta" +apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +43,'From Date' is required,"La ""data iniziale"" è richiesta" DocType: Journal Entry,Reference Number,Numero di riferimento DocType: Employee,Employment Details,Dettagli Dipendente DocType: Employee,New Workplace,Nuovo posto di lavoro @@ -1766,7 +1766,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Ness apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Caso No. Non può essere 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,Se si dispone di team di vendita e vendita Partners (Partner di canale) possono essere taggati e mantenere il loro contributo per l'attività di vendita DocType: Item,Show a slideshow at the top of the page,Visualizzare una presentazione in cima alla pagina -DocType: Item,"Allow in Sales Order of type ""Service""",Lasciare in Vendita a distanza di tipo "Servizio" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,negozi DocType: Time Log,Projects Manager,Responsabile Progetti DocType: Serial No,Delivery Time,Tempo Consegna @@ -1781,6 +1780,7 @@ DocType: Rename Tool,Rename Tool,Rename Tool apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,aggiornamento dei costi DocType: Item Reorder,Item Reorder,Articolo riordino apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Material Transfer +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Voce {0} deve essere un elemento di vendita in {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Specificare le operazioni, costi operativi e dare una gestione unica di no a vostre operazioni." DocType: Purchase Invoice,Price List Currency,Prezzo di listino Valuta DocType: Naming Series,User must always select,L'utente deve sempre selezionare @@ -1801,7 +1801,7 @@ DocType: Appraisal,Employee,Dipendente apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Importa posta elettronica da apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Invita come utente DocType: Features Setup,After Sale Installations,Installazioni Post Vendita -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} è completamente fatturato +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} è completamente fatturato DocType: Workstation Working Hour,End Time,Ora fine apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Condizioni contrattuali standard per la vendita o di acquisto. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Raggruppa per Voucher @@ -1822,12 +1822,12 @@ DocType: Maintenance Schedule Detail,Maintenance Schedule Detail,Dettaglio progr DocType: Quality Inspection Reading,Reading 9,Lettura 9 DocType: Supplier,Is Frozen,È Congelato DocType: Buying Settings,Buying Settings,Impostazioni Acquisto -DocType: Stock Entry Detail,BOM No. for a Finished Good Item,DiBa N. per un buon articolo finito +DocType: Stock Entry Detail,BOM No. for a Finished Good Item,N. BOM per quantità buona completata DocType: Upload Attendance,Attendance To Date,Data Fine Frequenza -apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Configurazione del server per la posta elettronica in entrata vendite id . ( ad esempio sales@example.com ) +apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Indirizzo di posta in arrivo per le vendite (p. es. salve@example.com ) DocType: Warranty Claim,Raised By,Sollevata dal DocType: Payment Gateway Account,Payment Account,Conto di Pagamento -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,Si prega di specificare Società di procedere +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,Si prega di specificare Società di procedere apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Variazione netta dei crediti apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,compensativa Off DocType: Quality Inspection Reading,Accepted,Accettato @@ -1839,14 +1839,14 @@ DocType: Shipping Rule,Shipping Rule Label,Etichetta Regola di Spedizione apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Materie prime non può essere vuoto. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Impossibile aggiornare magazzino, fattura contiene articoli di trasporto di goccia." DocType: Newsletter,Test,Test -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Siccome ci sono transazioni di magazzino per questo articolo, \ non è possibile modificare i valori di 'Ha Numero Seriale', 'Ha Numero Lotto', 'presente in Scorta' e 'il metodo di valutazione'" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Breve diario apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,Non è possibile cambiare tariffa se la distinta (BOM) è già assegnata a un articolo DocType: Employee,Previous Work Experience,Lavoro precedente esperienza DocType: Stock Entry,For Quantity,Per Quantità apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},Inserisci pianificato quantità per la voce {0} alla riga {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} non è inviato +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} non è inviato apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Le richieste di articoli. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Ordine di produzione separata verrà creato per ogni buon prodotto finito. DocType: Purchase Invoice,Terms and Conditions1,Termini e Condizioni @@ -1871,6 +1871,7 @@ DocType: Notification Control,Expense Claim Approved Message,Messaggio Rimborso DocType: Email Digest,How frequently?,Con quale frequenza? DocType: Purchase Receipt,Get Current Stock,Richiedi disponibilità apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Albero di Bill of Materials +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Mark Presente apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},La data di inizio manutenzione non può essere precedente alla consegna del Serial No {0} DocType: Production Order,Actual End Date,Data di fine effettiva DocType: Authorization Rule,Applicable To (Role),Applicabile a (Ruolo) @@ -1885,7 +1886,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Data fine contratto deve essere maggiore di Data di giunzione DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,Un distributore di terze parti / distributore / commissionario / affiliato / rivenditore che vende i prodotti delle aziende per una commissione. DocType: Customer Group,Has Child Node,Ha un Nodo Figlio -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} contro ordine di acquisto {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} contro ordine di acquisto {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Inserisci parametri statici della url qui (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} non è in alcun anno fiscale attivo. Per maggiori dettagli si veda {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Questo è un sito di esempio generato automaticamente da ERPNext @@ -1933,11 +1934,11 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Aggiungi o dedurre: Se si desidera aggiungere o detrarre l'imposta." DocType: Purchase Receipt Item,Recd Quantity,RECD Quantità apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Non può produrre più Voce {0} di Sales Order quantità {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Giacenza {0} non inserita +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Giacenza {0} non inserita DocType: Payment Reconciliation,Bank / Cash Account,Banca / Account Cash DocType: Tax Rule,Billing City,Fatturazione Città DocType: Global Defaults,Hide Currency Symbol,Nascondi Simbolo Valuta -apps/erpnext/erpnext/config/accounts.py +174,"e.g. Bank, Cash, Credit Card","per esempio bancario, contanti, carta di credito" +apps/erpnext/erpnext/config/accounts.py +174,"e.g. Bank, Cash, Credit Card","p. es. Banca, Bonifico, Contanti, Carta di credito" DocType: Journal Entry,Credit Note,Nota Credito apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +219,Completed Qty cannot be more than {0} for operation {1},Completato Quantità non può essere superiore a {0} per il funzionamento {1} DocType: Features Setup,Quality,Qualità @@ -1959,7 +1960,7 @@ DocType: Salary Structure,Total Earning,Guadagnare totale DocType: Purchase Receipt,Time at which materials were received,Ora in cui sono stati ricevuti i materiali apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,I miei indirizzi DocType: Stock Ledger Entry,Outgoing Rate,Tasso di uscita -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Ramo Organizzazione master. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Ramo Organizzazione master. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,oppure DocType: Sales Order,Billing Status,Stato Fatturazione apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Spese Utility @@ -1997,7 +1998,7 @@ DocType: Bin,Reserved Quantity,Riservato Quantità DocType: Landed Cost Voucher,Purchase Receipt Items,Acquistare oggetti Receipt apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Personalizzazione dei moduli DocType: Account,Income Account,Conto Proventi -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Recapito +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Recapito DocType: Stock Reconciliation Item,Current Qty,Quantità corrente DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",Vedere "tasso di materiali a base di" in Costing Sezione DocType: Appraisal Goal,Key Responsibility Area,Area Chiave Responsabilità @@ -2009,9 +2010,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,Vou DocType: Notification Control,Purchase Order Message,Ordine di acquisto Message DocType: Tax Rule,Shipping Country,Spedizione Nazione DocType: Upload Attendance,Upload HTML,Carica HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","Anticipo Totale ({0}) contro Order {1} non può essere maggiore \ - del Grand Total ({2})" DocType: Employee,Relieving Date,Alleviare Data apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Regola Pricing è fatto per sovrascrivere Listino Prezzi / definire la percentuale di sconto, sulla base di alcuni criteri." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Magazzino può essere modificato solo tramite Inserimento Giacenza / Bolla (DDT) / Ricevuta d'acquisto @@ -2021,8 +2019,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Tassa apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Se regola tariffaria selezionato è fatta per 'prezzo', che sovrascriverà Listino. Prezzo Regola Il prezzo è il prezzo finale, in modo che nessun ulteriore sconto deve essere applicato. Quindi, in operazioni come ordine di vendita, ordine di acquisto, ecc, che viene prelevato in campo 'Tasso', piuttosto che il campo 'Listino Rate'." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Traccia Contatti per settore Type. DocType: Item Supplier,Item Supplier,Articolo Fornitore -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,Inserisci il codice Item per ottenere lotto non -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},Si prega di selezionare un valore per {0} quotation_to {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,Inserisci il codice Item per ottenere lotto non +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},Si prega di selezionare un valore per {0} quotation_to {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Tutti gli indirizzi. DocType: Company,Stock Settings,Impostazioni Giacenza apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","La fusione è possibile solo se seguenti sono gli stessi in entrambi i record. È il gruppo, Radice Tipo, Company" @@ -2045,7 +2043,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Numero Assegno DocType: Payment Tool Detail,Payment Tool Detail,Dettaglio strumento di pagamento ,Sales Browser,Browser vendite DocType: Journal Entry,Total Credit,Totale credito -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Attenzione: Un altro {0} # {1} esiste per l'entrata Giacenza {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Attenzione: Un altro {0} # {1} esiste per l'entrata Giacenza {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Locale apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Crediti ( Assets ) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Debitori @@ -2065,8 +2063,8 @@ DocType: Price List,Price List Master,Listino Maestro DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,Tutte le transazioni di vendita possono essere etichettati contro più persone ** ** di vendita in modo da poter impostare e monitorare gli obiettivi. ,S.O. No.,S.O. No. DocType: Production Order Operation,Make Time Log,Crea resoconto orario -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Si prega di impostare la quantità di riordino -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},Si prega di creare Cliente da Contatto {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Si prega di impostare la quantità di riordino +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},Si prega di creare Cliente da Contatto {0} DocType: Price List,Applicable for Countries,Applicabile per i paesi apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,computer apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,Si tratta di un gruppo di clienti root e non può essere modificato . @@ -2114,7 +2112,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Fattur DocType: Payment Reconciliation Invoice,Outstanding Amount,Eccezionale Importo DocType: Project Task,Working,Lavoro DocType: Stock Ledger Entry,Stock Queue (FIFO),Code Giacenze (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Si prega di selezionare Registri di tempo. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Si prega di selezionare Registri di tempo. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} non appartiene alla società {1} DocType: Account,Round Off,Arrotondare ,Requested Qty,richiesto Quantità @@ -2152,7 +2150,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Prendi le voci rilevanti apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Voce contabilità per giacenza DocType: Sales Invoice,Sales Team1,Vendite Team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,L'articolo {0} non esiste +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,L'articolo {0} non esiste DocType: Sales Invoice,Customer Address,Indirizzo Cliente DocType: Payment Request,Recipient and Message,Destinatario e il messaggio DocType: Purchase Invoice,Apply Additional Discount On,Applicare Sconto Ulteriori On @@ -2171,7 +2169,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Mute Email apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Prodotti alimentari , bevande e tabacco" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL o BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Posso solo effettuare il pagamento non ancora fatturate contro {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Posso solo effettuare il pagamento non ancora fatturate contro {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Tasso Commissione non può essere superiore a 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Livello Minimo di Inventario DocType: Stock Entry,Subcontract,Subappaltare @@ -2189,9 +2187,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,software apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Colore DocType: Maintenance Visit,Scheduled,Pianificate apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Si prega di selezionare la voce dove "è articolo di" è "No" e "Is Voce di vendita" è "Sì", e non c'è nessun altro pacchetto di prodotti" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Anticipo totale ({0}) contro l'ordine {1} non può essere superiore al totale complessivo ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Selezionare distribuzione mensile per distribuire in modo non uniforme obiettivi attraverso mesi. DocType: Purchase Invoice Item,Valuation Rate,Tasso Valutazione -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Listino Prezzi Valuta non selezionati +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Listino Prezzi Valuta non selezionati apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,Voce Riga {0}: Acquisto Ricevuta {1} non esiste nella tabella di cui sopra 'ricevute di acquisto' apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Employee {0} ha già presentato domanda di {1} tra {2} e {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Data di inizio del progetto @@ -2203,6 +2202,7 @@ DocType: Quality Inspection,Inspection Type,Tipo di ispezione apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},Si prega di selezionare {0} DocType: C-Form,C-Form No,C-Form N. DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,Partecipazione Contrassegno apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,ricercatore apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,Si prega di salvare la Newsletter prima di inviare apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Nome o e-mail è obbligatorio @@ -2228,7 +2228,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Conferm DocType: Payment Gateway,Gateway,Ingresso apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Fornitore> Fornitore Tipo apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Inserisci la data alleviare . -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,Lasciare solo applicazioni con stato ' approvato ' possono essere presentate apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Titolo Indirizzo è obbligatorio. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,Inserisci il nome della Campagna se la sorgente di indagine è la campagna @@ -2243,10 +2243,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Magazzino accettazione DocType: Bank Reconciliation Detail,Posting Date,Data di registrazione DocType: Item,Valuation Method,Metodo di Valutazione apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Impossibile trovare il tasso di cambio per {0} a {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Mark Mezza giornata DocType: Sales Invoice,Sales Team,Team di vendita apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Duplicate entry DocType: Serial No,Under Warranty,Sotto Garanzia -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Errore] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Errore] DocType: Sales Order,In Words will be visible once you save the Sales Order.,In parole saranno visibili una volta che si salva l'ordine di vendita. ,Employee Birthday,Compleanno Dipendente apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,capitale a rischio @@ -2269,6 +2270,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,Centro di costo con le transazioni esistenti non può essere convertito in gruppo DocType: Account,Depreciation,ammortamento apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Fornitore (s) +DocType: Employee Attendance Tool,Employee Attendance Tool,Impiegato presenze Strumento DocType: Supplier,Credit Limit,Limite Credito apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Seleziona il tipo di operazione DocType: GL Entry,Voucher No,Voucher No @@ -2295,7 +2297,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Account root non può essere eliminato ,Is Primary Address,È primario Indirizzo DocType: Production Order,Work-in-Progress Warehouse,Work-in-Progress Warehouse -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Riferimento # {0} datato {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Riferimento # {0} datato {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Gestire indirizzi DocType: Pricing Rule,Item Code,Codice Articolo DocType: Production Planning Tool,Create Production Orders,Crea Ordine Prodotto @@ -2322,7 +2324,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Conciliazione Banca apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Ricevi aggiornamenti apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Richiesta materiale {0} è stato annullato o interrotto apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Aggiungere un paio di record di esempio -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Lascia Gestione +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Lascia Gestione apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Raggruppa per Conto DocType: Sales Order,Fully Delivered,Completamente Consegnato DocType: Lead,Lower Income,Reddito più basso @@ -2331,12 +2333,13 @@ DocType: Payment Tool,Against Vouchers,Contro Buoni apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +23,Quick Help,Guida rapida apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +169,Source and target warehouse cannot be same for row {0},Origine e magazzino target non possono essere uguali per riga {0} DocType: Features Setup,Sales Extras,Vendite Extras -apps/erpnext/erpnext/accounts/utils.py +346,{0} budget for Account {1} against Cost Center {2} will exceed by {3},{0} preventivo per portafoglio {1} comparato al centro di costo {2} eccederà di {3} +apps/erpnext/erpnext/accounts/utils.py +346,{0} budget for Account {1} against Cost Center {2} will exceed by {3},{0} preventivo per {1} del centro di costo {2} eccederà di {3} apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +243,"Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry","Account La differenza deve essere un account di tipo attività / passività, dal momento che questo Stock riconciliazione è una voce di apertura" apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Purchase Order number required for Item {0},Numero ordine di acquisto richiesto per la voce {0} apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',' Dalla Data' deve essere successivo a 'Alla Data' ,Stock Projected Qty,Qtà Prevista Giacenza apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Cliente {0} non appartiene a proiettare {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Marcata presenze HTML DocType: Sales Order,Customer's Purchase Order,Ordine di Acquisto del Cliente DocType: Warranty Claim,From Company,Da Azienda apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Valore o Quantità @@ -2369,7 +2372,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +34,Approving Role cannot be same as role the rule is Applicable To,Approvazione ruolo non può essere lo stesso ruolo la regola è applicabile ad apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +66,Unsubscribe from this Email Digest,Cancellati da questo Email Digest apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +28,Message Sent,Messaggio Inviato -apps/erpnext/erpnext/accounts/doctype/account/account.py +97,Account with child nodes cannot be set as ledger,Conto con nodi figli non può essere impostato come libro mastro +apps/erpnext/erpnext/accounts/doctype/account/account.py +97,Account with child nodes cannot be set as ledger,Il conto con nodi figli non può essere impostato come libro mastro DocType: Production Plan Sales Order,SO Date,SO Data DocType: Sales Invoice,Rate at which Price list currency is converted to customer's base currency,Tasso al quale Listino valuta viene convertita in valuta di base del cliente DocType: Purchase Invoice Item,Net Amount (Company Currency),Importo netto (Valuta Azienda) @@ -2401,6 +2404,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Bonifico bancario apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,Seleziona conto bancario DocType: Newsletter,Create and Send Newsletters,Creare e inviare newsletter +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Seleziona tutto DocType: Sales Order,Recurring Order,Ordine Ricorrente DocType: Company,Default Income Account,Conto Predefinito Entrate apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Gruppi clienti / clienti @@ -2422,7 +2426,7 @@ DocType: Issue,Opening Date,Data di apertura DocType: Journal Entry,Remark,Osservazioni DocType: Purchase Receipt Item,Rate and Amount,Aliquota e importo DocType: Sales Order,Not Billed,Non Fatturata -apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +107,Both Warehouse must belong to same Company,Entrambi Warehouse deve appartenere alla stessa Società +apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +107,Both Warehouse must belong to same Company,Entrambi i magazzini devono appartenere alla stessa società apps/erpnext/erpnext/public/js/templates/contact_list.html +31,No contacts added yet.,Nessun contatto ancora aggiunto. DocType: Purchase Receipt Item,Landed Cost Voucher Amount,Landed Cost Voucher Importo DocType: Time Log,Batched for Billing,Raggruppati per la Fatturazione @@ -2431,7 +2435,8 @@ DocType: POS Profile,Write Off Account,Scrivi Off account DocType: Purchase Invoice,Return Against Purchase Invoice,Ritorno Contro Acquisto Fattura DocType: Item,Warranty Period (in days),Periodo di garanzia (in giorni) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Cassa netto da attività -apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,ad esempio IVA +apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,p. es. IVA +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,La frequenza Mark dipendenti in massa apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Articolo 4 DocType: Journal Entry Account,Journal Entry Account,Addebito Journal DocType: Shopping Cart Settings,Quotation Series,Serie Preventivi @@ -2479,7 +2484,7 @@ DocType: Delivery Note,Transporter Info,Info Transporter DocType: Purchase Order Item Supplied,Purchase Order Item Supplied,Ordine di acquisto Articolo inserito apps/erpnext/erpnext/public/js/setup_wizard.js +86,Company Name cannot be Company,Nome azienda non può essere azienda apps/erpnext/erpnext/config/setup.py +27,Letter Heads for print templates.,Lettera Teste per modelli di stampa . -apps/erpnext/erpnext/config/setup.py +32,Titles for print templates e.g. Proforma Invoice.,Titoli di modelli di stampa ad esempio Fattura Proforma . +apps/erpnext/erpnext/config/setup.py +32,Titles for print templates e.g. Proforma Invoice.,Titoli di modelli di stampa p. es. Fattura proforma apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +140,Valuation type charges can not marked as Inclusive,Spese tipo di valutazione non possono contrassegnata come Inclusive DocType: POS Profile,Update Stock,Aggiornare Giacenza apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +100,Different UOM for items will lead to incorrect (Total) Net Weight value. Make sure that Net Weight of each item is in the same UOM.,Diverso UOM per gli elementi porterà alla non corretta ( Total) Valore di peso netto . Assicurarsi che il peso netto di ogni articolo è nella stessa UOM . @@ -2499,7 +2504,7 @@ DocType: Expense Claim,Total Sanctioned Amount,Totale importo sanzionato DocType: Sales Invoice Item,Delivery Note Item,Nota articolo Consegna DocType: Expense Claim,Task,Attività DocType: Purchase Taxes and Charges,Reference Row #,Riferimento Row # -apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +76,Batch number is mandatory for Item {0},Numero di lotto è obbligatoria per la voce {0} +apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +76,Batch number is mandatory for Item {0},Numero di lotto obbligatoria per la voce {0} apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.js +14,This is a root sales person and cannot be edited.,Si tratta di una persona di vendita di root e non può essere modificato . ,Stock Ledger,Inventario apps/erpnext/erpnext/templates/pages/order.html +67,Rate: {0},Vota: {0} @@ -2524,7 +2529,7 @@ apps/erpnext/erpnext/support/doctype/warranty_claim/warranty_claim.py +16,{0}: F DocType: Task,depends_on,dipende da DocType: Features Setup,"Discount Fields will be available in Purchase Order, Purchase Receipt, Purchase Invoice","Il Campo Sconto sarà abilitato in Ordine di acquisto, ricevuta di acquisto, Fattura Acquisto" apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +211,Name of new Account. Note: Please don't create accounts for Customers and Suppliers,Nome del nuovo account. Nota: Si prega di non creare account per Clienti e Fornitori -DocType: BOM Replace Tool,BOM Replace Tool,DiBa Sostituire Strumento +DocType: BOM Replace Tool,BOM Replace Tool,BOM Strumento di sostituzione apps/erpnext/erpnext/config/setup.py +37,Country wise default Address Templates,Modelli Country saggio di default Indirizzo DocType: Sales Order Item,Supplier delivers to Customer,Fornitore garantisce al Cliente apps/erpnext/erpnext/public/js/controllers/transaction.js +733,Show tax break-up,Mostra fiscale break-up @@ -2577,14 +2582,14 @@ DocType: Task,Actual Start Date (via Time Logs),Data di inizio effettiva (da reg DocType: Stock Reconciliation Item,Before reconciliation,Prima di riconciliazione apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Per {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Tasse e spese aggiuntive (Azienda valuta) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Voce fiscale Row {0} deve avere un account di tipo fiscale o di reddito o spese o addebitabile +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Voce fiscale Row {0} deve avere un account di tipo fiscale o di reddito o spese o addebitabile DocType: Sales Order,Partly Billed,Parzialmente Fatturato DocType: Item,Default BOM,BOM Predefinito apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,Si prega di digitare nuovamente il nome della società per confermare apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Totale Outstanding Amt DocType: Time Log Batch,Total Hours,Totale ore DocType: Journal Entry,Printing Settings,Impostazioni di stampa -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Debito totale deve essere pari al totale credito . +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Debito totale deve essere pari al totale credito . apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Automotive apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Da Nota di Consegna DocType: Time Log,From Time,Da Periodo @@ -2600,7 +2605,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +34,Basic,di base apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +94,Stock transactions before {0} are frozen,Operazioni Giacenza prima {0} sono bloccate apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +217,Please click on 'Generate Schedule',Si prega di cliccare su ' Generate Schedule ' apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.js +61,To Date should be same as From Date for Half Day leave,'A Data' deve essere uguale a 'Da Data' per il congedo di mezza giornata -apps/erpnext/erpnext/config/stock.py +105,"e.g. Kg, Unit, Nos, m","ad esempio Kg, unità, nn, m" +apps/erpnext/erpnext/config/stock.py +105,"e.g. Kg, Unit, Nos, m","p. es. Kg, Unità, Nos, m" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +96,Reference No is mandatory if you entered Reference Date,N. di riferimento è obbligatoria se hai inserito Reference Data apps/erpnext/erpnext/hr/doctype/employee/employee.py +108,Date of Joining must be greater than Date of Birth,Data di adesione deve essere maggiore di Data di nascita apps/erpnext/erpnext/hr/doctype/employee/employee.js +27,Salary Structure,Struttura salariale @@ -2631,7 +2636,7 @@ DocType: Purchase Invoice Item,Image View,Visualizza immagine DocType: Issue,Opening Time,Tempo di apertura apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,Data Inizio e Fine sono obbligatorie apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Securities & borse merci -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Unità di misura predefinita per la variante '{0}' deve essere lo stesso in Template '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Unità di misura predefinita per la variante '{0}' deve essere lo stesso in Template '{1}' DocType: Shipping Rule,Calculate Based On,Calcola in base a DocType: Delivery Note Item,From Warehouse,Dal magazzino DocType: Purchase Taxes and Charges,Valuation and Total,Valutazione e Total @@ -2653,7 +2658,7 @@ DocType: Leave Application,Follow via Email,Seguire via Email DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Fiscale Ammontare Dopo Sconto Importo apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Conto Child esiste per questo account . Non è possibile eliminare questo account . apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Sia qty destinazione o importo obiettivo è obbligatoria -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},Non esiste Distinta Base predefinita per l'articolo {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},Non esiste Distinta Base predefinita per l'articolo {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,Seleziona Data Pubblicazione primo apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Data di apertura dovrebbe essere prima Data di chiusura DocType: Leave Control Panel,Carry Forward,Portare Avanti @@ -2731,7 +2736,7 @@ DocType: Leave Type,Is Encash,È incassare DocType: Purchase Invoice,Mobile No,Num. Cellulare DocType: Payment Tool,Make Journal Entry,Crea Registro DocType: Leave Allocation,New Leaves Allocated,Nuove foglie allocato -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Dati di progetto non sono disponibile per Preventivo +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Dati di progetto non sono disponibile per Preventivo DocType: Project,Expected End Date,Data prevista di fine DocType: Appraisal Template,Appraisal Template Title,Valutazione Titolo Modello apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,commerciale @@ -2779,6 +2784,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,Re apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Si prega di specificare una DocType: Offer Letter,Awaiting Response,In attesa di risposta apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Sopra +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Tempo Log è stato fatturato DocType: Salary Slip,Earning & Deduction,Rendimento & Detrazione apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Il Conto {0} non può essere un gruppo apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Facoltativo. Questa impostazione verrà utilizzato per filtrare in diverse operazioni . @@ -2845,18 +2851,18 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Maintenance Visit,Breakdown,Esaurimento apps/erpnext/erpnext/controllers/accounts_controller.py +257,Account: {0} with currency: {1} can not be selected,Account: {0} con valuta: {1} non può essere selezionato DocType: Bank Reconciliation Detail,Cheque Date,Data Assegno -apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent account {1} does not belong to company: {2},Il Conto {0}: conto derivato {1} non appartiene alla società: {2} +apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent account {1} does not belong to company: {2},Account {0}: conto derivato {1} non appartiene alla società: {2} apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Cancellato con successo tutte le operazioni relative a questa società! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Come in data apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,prova -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Magazino predefinito necessario per articolo in Giacenza. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Magazino predefinito necessario per articolo in Giacenza. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Il pagamento dello stipendio del mese {0} e l'anno {1} DocType: Stock Settings,Auto insert Price List rate if missing,Inserimento automatico tasso Listino se mancante apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Importo totale pagato ,Transferred Qty,Quantità trasferito apps/erpnext/erpnext/config/learn.py +11,Navigating,Navigazione apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,pianificazione -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Crea resoconto orario (lotto) +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Crea resoconto orario (lotto) apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Rilasciato DocType: Project,Total Billing Amount (via Time Logs),Importo totale fatturazione (via Time Diari) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Vendiamo questo articolo @@ -2864,7 +2870,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Quantità deve essere maggiore di 0 DocType: Journal Entry,Cash Entry,Cash Entry DocType: Sales Partner,Contact Desc,Desc Contatto -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Tipo di foglie come casuale, malati ecc" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Tipo di foglie come casuale, malati ecc" DocType: Email Digest,Send regular summary reports via Email.,Invia relazioni di sintesi periodiche via Email. DocType: Brand,Item Manager,Manager del'Articolo DocType: Cost Center,Add rows to set annual budgets on Accounts.,Aggiungere righe per impostare i budget annuali sui conti. @@ -2879,22 +2885,22 @@ DocType: GL Entry,Party Type,Tipo partito apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,La materia prima non può essere lo stesso come voce principale DocType: Item Attribute Value,Abbreviation,Abbreviazione apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Non autorizzato poiché {0} supera i limiti -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Modello Stipendio master. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Modello Stipendio master. DocType: Leave Type,Max Days Leave Allowed,Max giorni di ferie domestici apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Set di regole fiscali per carrello della spesa DocType: Payment Tool,Set Matching Amounts,Impostare Importi abbinabili DocType: Purchase Invoice,Taxes and Charges Added,Tasse e spese aggiuntive ,Sales Funnel,imbuto di vendita -apps/erpnext/erpnext/setup/doctype/company/company.py +35,Abbreviation is mandatory,Abbreviazione è obbligatoria +apps/erpnext/erpnext/setup/doctype/company/company.py +35,Abbreviation is mandatory,L'abbreviazione è obbligatoria apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +136,Thank you for your interest in subscribing to our updates,Grazie per il vostro interesse per sottoscrivere i nostri aggiornamenti ,Qty to Transfer,Qtà da Trasferire apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Preventivo a clienti o contatti. DocType: Stock Settings,Role Allowed to edit frozen stock,Ruolo ammessi da modificare stock congelato ,Territory Target Variance Item Group-Wise,Territorio di destinazione Varianza articolo Group- Wise apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Tutti i gruppi di clienti -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} è obbligatorio. Forse il record di cambio di valuta non è stato creato per {1} {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} è obbligatorio. Forse il record di cambio di valuta non è stato creato per {1} {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Tax modello è obbligatoria. -apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Il Conto {0}: conto derivato {1} non esiste +apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Account {0}: conto derivato {1} non esistente DocType: Purchase Invoice Item,Price List Rate (Company Currency),Prezzo di listino (Valuta Azienda) DocType: Account,Temporary,Temporaneo DocType: Address,Preferred Billing Address,Preferito Indirizzo di fatturazione @@ -2912,8 +2918,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Voce Wise fiscale Detta ,Item-wise Price List Rate,Articolo -saggio Listino Tasso apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Preventivo Fornitore DocType: Quotation,In Words will be visible once you save the Quotation.,In parole saranno visibili una volta che si salva il preventivo. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} è fermato -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Codice a barre {0} già utilizzato nel Prodotto {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} è fermato +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Codice a barre {0} già utilizzato nel Prodotto {1} DocType: Lead,Add to calendar on this date,Aggiungi al calendario in questa data apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Regole per l'aggiunta di spese di spedizione . apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Prossimi eventi @@ -2939,8 +2945,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,Se apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Almeno un Magazzino è obbligatorio DocType: Serial No,Out of Warranty,Fuori Garanzia DocType: BOM Replace Tool,Replace,Sostituire -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} contro fattura di vendita {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Inserisci unità di misura predefinita +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} per fattura di vendita {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Inserisci unità di misura predefinita DocType: Purchase Invoice Item,Project Name,Nome del progetto DocType: Supplier,Mention if non-standard receivable account,Menzione se conto credito non standard DocType: Journal Entry Account,If Income or Expense,Se proventi od oneri @@ -2949,7 +2955,7 @@ DocType: Stock Ledger Entry,Stock Value Difference,Differenza Valore Giacenza apps/erpnext/erpnext/config/learn.py +239,Human Resource,Risorsa Umana DocType: Payment Reconciliation Payment,Payment Reconciliation Payment,Pagamento Riconciliazione di pagamento apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +36,Tax Assets,Attività fiscali -DocType: BOM Item,BOM No,N. DiBa +DocType: BOM Item,BOM No,BOM n. apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +134,Journal Entry {0} does not have account {1} or already matched against other voucher,Diario {0} non ha conto {1} o già confrontato altro buono DocType: Item,Moving Average,Media Mobile DocType: BOM Replace Tool,The BOM which will be replaced,La distinta base che sarà sostituita @@ -2965,7 +2971,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Anno fiscale: {0} non esiste DocType: Currency Exchange,To Currency,Per valuta DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Consentire i seguenti utenti per approvare le richieste per i giorni di blocco. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Tipi di Nota Spese. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Tipi di Nota Spese. DocType: Item,Taxes,Tasse apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Pagato ma non ritirato DocType: Project,Default Cost Center,Centro di costo predefinito @@ -2994,8 +3000,8 @@ DocType: Salary Structure Earning,Reduce Earning for Leave Without Pay (LWP),Rid apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organization, other than yourself","Aggiungere utenti alla vostra organizzazione, diversa da te" apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Fila # {0}: N. di serie {1} non corrisponde con {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Casual Leave -DocType: Batch,Batch ID,ID Lotto -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Nota : {0} +DocType: Batch,Batch ID,Lotto ID +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Nota : {0} ,Delivery Note Trends,Nota Consegna Tendenza apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Sintesi di questa settimana apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} deve essere un articolo acquistato o in subappalto in riga {1} @@ -3025,7 +3031,7 @@ DocType: Opportunity,To Discuss,Da Discutere DocType: SMS Settings,SMS Settings,Impostazioni SMS apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +60,Temporary Accounts,Conti provvisori apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +155,Black,Nero -DocType: BOM Explosion Item,BOM Explosion Item,DIBA Articolo Esploso +DocType: BOM Explosion Item,BOM Explosion Item,BOM Articolo Esploso DocType: Account,Auditor,Uditore DocType: Purchase Order,End date of current order's period,Data di fine del periodo di fine corso apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js +10,Return,Ritorno @@ -3035,6 +3041,7 @@ DocType: Project Task,Pending Review,In attesa recensione apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Clicca qui per pagare DocType: Task,Total Expense Claim (via Expense Claim),Rimborso spese totale (via Expense Claim) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Id Cliente +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Mark Assente apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Per ora deve essere maggiore di From Time DocType: Journal Entry Account,Exchange Rate,Tasso di cambio: apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Sales Order {0} non è presentata @@ -3043,7 +3050,7 @@ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +74,Warehouse {0}: Par DocType: BOM,Last Purchase Rate,Ultimo Purchase Rate DocType: Account,Asset,attività DocType: Project Task,Task ID,ID attività -apps/erpnext/erpnext/public/js/setup_wizard.js +55,"e.g. ""MC""","ad esempio "" MC """ +apps/erpnext/erpnext/public/js/setup_wizard.js +55,"e.g. ""MC""","p. es. ""MC """ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +84,Stock cannot exist for Item {0} since has variants,Stock non può esistere per la voce {0} dal ha varianti ,Sales Person-wise Transaction Summary,Sales Person-saggio Sintesi dell'Operazione apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +104,Warehouse {0} does not exist,Warehouse {0} non esiste @@ -3082,7 +3089,7 @@ DocType: Item Group,Default Expense Account,Account Spese Predefinito DocType: Employee,Notice (days),Avviso ( giorni ) DocType: Tax Rule,Sales Tax Template,Sales Tax Template DocType: Employee,Encashment Date,Data Incasso -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Contro Voucher tipo deve essere uno di Ordine di Acquisto, Acquisto fattura o diario" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Contro Voucher tipo deve essere uno di Ordine di Acquisto, Acquisto fattura o diario" DocType: Account,Stock Adjustment,Regolazione della apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Esiste di default Attività Costo per il tipo di attività - {0} DocType: Production Order,Planned Operating Cost,Planned Cost operativo @@ -3136,6 +3143,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Scrivi Off Entry DocType: BOM,Rate Of Materials Based On,Tasso di materiali a base di apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Analtyics supporto +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Deseleziona tutto apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Azienda è presente nei magazzini {0} DocType: POS Profile,Terms and Conditions,Termini e Condizioni apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},'A Data' deve essere entro l'anno fiscale. Assumendo A Data = {0} @@ -3155,9 +3163,9 @@ DocType: Sales Invoice,Get Advances Received,ottenere anticipo Ricevuto DocType: Email Digest,Add/Remove Recipients,Aggiungere/Rimuovere Destinatario apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction not allowed against stopped Production Order {0},Operazione non ammessi contro Production smesso di ordine {0} apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Per impostare questo anno fiscale come predefinito , clicca su ' Imposta come predefinito'" -apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Configurazione del server in arrivo per il supporto e-mail id . ( ad esempio support@example.com ) +apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Indirizzo di posta in arrivo per l'assistenza (p. es. suppor@example.com ) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Carenza Quantità -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Variante item {0} esiste con le stesse caratteristiche +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Variante item {0} esiste con le stesse caratteristiche DocType: Salary Slip,Salary Slip,Busta paga apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,'Alla Data' è obbligatorio DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Generare documenti di trasporto per i pacchetti da consegnare. Utilizzato per comunicare il numero del pacchetto, contenuto della confezione e il suo peso." @@ -3170,7 +3178,7 @@ apps/erpnext/erpnext/config/setup.py +14,Global Settings,Impostazioni globali DocType: Employee Education,Employee Education,Istruzione Dipendente apps/erpnext/erpnext/public/js/controllers/transaction.js +749,It is needed to fetch Item Details.,E 'necessario per recuperare Dettagli elemento. DocType: Salary Slip,Net Pay,Retribuzione Netta -DocType: Account,Account,Conto +DocType: Account,Account,Account apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +213,Serial No {0} has already been received,Serial No {0} è già stato ricevuto ,Requested Items To Be Transferred,Voci si chiede il trasferimento DocType: Purchase Invoice,Recurring Id,Id ricorrente @@ -3205,9 +3213,9 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Visuali DocType: Item Attribute Value,Attribute Value,Valore Attributo apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","Email id deve essere unico, esiste già per {0}" ,Itemwise Recommended Reorder Level,Itemwise consigliata riordino Livello -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,Si prega di selezionare {0} prima +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,Si prega di selezionare {0} prima DocType: Features Setup,To get Item Group in details table,Per ottenere Gruppo di elementi in dettaglio tabella -apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Lotto {0} di {1} Voce è scaduto. +apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Il lotto {0} di {1} scaduto. DocType: Sales Invoice,Commission,Commissione DocType: Address Template,"

        Default Template

        Uses Jinja Templating and all the fields of Address (including Custom Fields if any) will be available

        @@ -3260,13 +3268,13 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Ottieni buoni in sospeso DocType: Warranty Claim,Resolved By,Deliberato dall'Assemblea DocType: Appraisal,Start Date,Data di inizio -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Allocare le foglie per un periodo . +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Allocare le foglie per un periodo . apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Assegni e depositi cancellati in modo non corretto apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Clicca qui per verificare -apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Il Conto {0}: Non è possibile assegnare se stesso come conto principale +apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Account {0}: non è possibile assegnare se stesso come conto principale DocType: Purchase Invoice Item,Price List Rate,Prezzo di listino Vota DocType: Item,"Show ""In Stock"" or ""Not in Stock"" based on stock available in this warehouse.",Mostra "Disponibile" o "Non disponibile" sulla base di scorte disponibili in questo magazzino. -apps/erpnext/erpnext/config/manufacturing.py +13,Bill of Materials (BOM),Distinta Materiali (DiBa) +apps/erpnext/erpnext/config/manufacturing.py +13,Bill of Materials (BOM),Distinte materiali (BOM) DocType: Item,Average time taken by the supplier to deliver,Tempo medio impiegato dal fornitore di consegnare DocType: Time Log,Hours,Ore DocType: Project,Expected Start Date,Data prevista di inizio @@ -3280,7 +3288,7 @@ DocType: Employee,Educational Qualification,Titolo di Studio DocType: Workstation,Operating Costs,Costi operativi DocType: Employee Leave Approver,Employee Leave Approver,Responsabile / Approvatore Ferie apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} è stato aggiunto alla nostra lista Newsletter. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Riga {0}: Una voce di riordino esiste già per questo magazzino {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Riga {0}: Una voce di riordino esiste già per questo magazzino {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Non è possibile dichiarare come perduto, perché è stato fatto il Preventivo." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Acquisto Maestro Direttore apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Ordine di produzione {0} deve essere presentata @@ -3304,7 +3312,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,La fattura di vendita {0} è già stata presentata apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Data Completamento DocType: Purchase Invoice Item,Amount (Company Currency),Importo (Valuta Azienda) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Unità organizzativa ( dipartimento) master. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Unità organizzativa ( dipartimento) master. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Inserisci nos mobili validi DocType: Budget Detail,Budget Detail,Dettaglio Budget apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,Inserisci il messaggio prima di inviarlo @@ -3320,13 +3328,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Ricevuti e accettati ,Serial No Service Contract Expiry,Serial No Contratto di Servizio di scadenza DocType: Item,Unit of Measure Conversion,Unità di Conversione di misura apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Il dipendente non può essere modificato -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,"Non si può di credito e debito stesso conto , allo stesso tempo" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,"Non si può di credito e debito stesso conto , allo stesso tempo" DocType: Naming Series,Help HTML,Aiuto HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Weightage totale assegnato dovrebbe essere al 100 % . E ' {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Indennità per over-{0} incrociate per la voce {1} DocType: Address,Name of person or organization that this address belongs to.,Nome della persona o organizzazione che questo indirizzo appartiene. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,I vostri fornitori -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,Impossibile impostare come persa come è fatto Sales Order . +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,Impossibile impostare come persa come è fatto Sales Order . apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,Un'altra struttura Stipendio {0} è attivo per dipendente {1}. Si prega di fare il suo status di 'Inattivo' per procedere. DocType: Purchase Invoice,Contact,Contatto apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Ricevuto da @@ -3336,11 +3344,11 @@ DocType: Item,Has Serial No,Ha Serial No DocType: Employee,Date of Issue,Data Pubblicazione apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: Da {0} per {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Fila # {0}: Impostare fornitore per voce {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Website Immagine {0} collegata alla voce {1} non può essere trovato +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Website Immagine {0} collegata alla voce {1} non può essere trovato DocType: Issue,Content Type,Tipo Contenuto apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,computer DocType: Item,List this Item in multiple groups on the website.,Elenco questo articolo a più gruppi sul sito. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,Si prega di verificare l'opzione multi valuta per consentire agli account con altra valuta +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,Si prega di verificare l'opzione multi valuta per consentire agli account con altra valuta apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Voce: {0} non esiste nel sistema apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Non sei autorizzato a impostare il valore bloccato DocType: Payment Reconciliation,Get Unreconciled Entries,Ottieni entrate non riconciliate @@ -3350,14 +3358,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Che cosa fa DocType: Delivery Note,To Warehouse,A Magazzino apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Il Conto {0} è stato inserito più di una volta per l'anno fiscale {1} ,Average Commission Rate,Tasso medio di commissione -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'Ha un numero di serie' non può essere 'Sì' per gli articoli non in scorta +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'Ha un numero di serie' non può essere 'Sì' per gli articoli non in scorta apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,La Presenza non può essere inserita nel futuro DocType: Pricing Rule,Pricing Rule Help,Regola Prezzi Aiuto DocType: Purchase Taxes and Charges,Account Head,Riferimento del conto apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Aggiornare costi aggiuntivi per calcolare il costo sbarcato di articoli apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,elettrico DocType: Stock Entry,Total Value Difference (Out - In),Totale Valore Differenza (Out - In) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Riga {0}: Tasso di cambio è obbligatorio +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Riga {0}: Tasso di cambio è obbligatorio apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},ID utente non è impostato per Employee {0} DocType: Stock Entry,Default Source Warehouse,Magazzino Origine Predefinito DocType: Item,Customer Code,Codice Cliente @@ -3376,15 +3384,15 @@ DocType: Notification Control,Sales Invoice Message,Fattura Messaggio apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Chiusura account {0} deve essere di tipo Responsabilità / Patrimonio netto DocType: Authorization Rule,Based On,Basato su DocType: Sales Order Item,Ordered Qty,Quantità ordinato -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Voce {0} è disattivato +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Voce {0} è disattivato DocType: Stock Settings,Stock Frozen Upto,Giacenza Bloccate Fino apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Periodo Dal periodo e per date obbligatorie per ricorrenti {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Attività / attività del progetto. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Generare buste paga -apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","L'acquisto deve essere controllato, se applicabile per è selezionato come {0}" +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Generare buste paga +apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","L'acquisto deve essere controllato, se ""applicabile per"" bisogna selezionarlo come {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Sconto deve essere inferiore a 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Scrivi Off Importo (Società valuta) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Fila # {0}: Si prega di impostare la quantità di riordino +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Fila # {0}: Si prega di impostare la quantità di riordino DocType: Landed Cost Voucher,Landed Cost Voucher,Landed Voucher Cost apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},Impostare {0} DocType: Purchase Invoice,Repeat on Day of Month,Ripetere il Giorno del mese @@ -3414,7 +3422,7 @@ DocType: Upload Attendance,Upload Attendance,Carica presenze apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +119,BOM and Manufacturing Quantity are required,BOM e produzione quantità sono necessari apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +44,Ageing Range 2,Gamma Ageing 2 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +461,Amount,Importo -apps/erpnext/erpnext/manufacturing/doctype/bom_replace_tool/bom_replace_tool.py +21,BOM replaced,DiBa Sostituire +apps/erpnext/erpnext/manufacturing/doctype/bom_replace_tool/bom_replace_tool.py +21,BOM replaced,BOM sostituita ,Sales Analytics,Analisi dei dati di vendita DocType: Manufacturing Settings,Manufacturing Settings,Impostazioni di Produzione apps/erpnext/erpnext/config/setup.py +56,Setting up Email,Configurazione della posta elettronica @@ -3436,7 +3444,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Work In Progress Magazzino di default apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Impostazioni predefinite per le operazioni contabili. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Data prevista non può essere precedente Material Data richiesta -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,L'articolo {0} deve essere un'Articolo in Vendita +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,L'articolo {0} deve essere un'Articolo in Vendita DocType: Naming Series,Update Series Number,Aggiornamento Numero di Serie DocType: Account,Equity,equità DocType: Sales Order,Printing Details,Dettagli stampa @@ -3488,7 +3496,7 @@ DocType: Task,Review Date,Data di revisione DocType: Purchase Invoice,Advance Payments,Pagamenti anticipati DocType: Purchase Taxes and Charges,On Net Total,Sul totale netto apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Magazzino Target in riga {0} deve essere uguale ordine di produzione -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Non autorizzato a utilizzare lo Strumento di Pagamento +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Non autorizzato a utilizzare lo Strumento di Pagamento apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,'Indirizzi email di notifica' non specificati per %s ricorrenti apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Valuta non può essere modificata dopo aver fatto le voci utilizzando qualche altra valuta DocType: Company,Round Off Account,Arrotondamento Account @@ -3498,7 +3506,7 @@ DocType: Customer Group,Parent Customer Group,Parent Gruppo clienti apps/erpnext/erpnext/public/js/pos/pos.js +450,Change,Cambiamento DocType: Purchase Invoice,Contact Email,Email Contatto DocType: Appraisal Goal,Score Earned,Punteggio Earned -apps/erpnext/erpnext/public/js/setup_wizard.js +53,"e.g. ""My Company LLC""","ad esempio ""My Company LLC """ +apps/erpnext/erpnext/public/js/setup_wizard.js +53,"e.g. ""My Company LLC""","p. es. ""My Company LLC """ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +173,Notice Period,Periodo Di Preavviso DocType: Bank Reconciliation Detail,Voucher ID,ID Voucher apps/erpnext/erpnext/setup/doctype/territory/territory.js +14,This is a root territory and cannot be edited.,Questo è un territorio root e non può essere modificato . @@ -3511,7 +3519,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Quantità di prodotto ottenuto dopo la produzione / reimballaggio da determinati quantitativi di materie prime DocType: Payment Reconciliation,Receivable / Payable Account,Conto Crediti / Debiti DocType: Delivery Note Item,Against Sales Order Item,Contro Sales Order Item -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},Si prega di specificare Attributo Valore per l'attributo {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},Si prega di specificare Attributo Valore per l'attributo {0} DocType: Item,Default Warehouse,Magazzino Predefinito DocType: Task,Actual End Date (via Time Logs),Data di fine effettiva (da registro presenze) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Bilancio non può essere assegnato contro account gruppo {0} @@ -3536,10 +3544,10 @@ DocType: Lead,Blog Subscriber,Abbonati Blog apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Creare regole per limitare le transazioni in base ai valori . DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Se selezionato, non totale. di giorni lavorativi includerà vacanze, e questo ridurrà il valore di salario per ogni giorno" DocType: Purchase Invoice,Total Advance,Totale Advance -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Elaborazione paghe +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Elaborazione paghe DocType: Opportunity Item,Basic Rate,Tasso Base DocType: GL Entry,Credit Amount,Ammontare del credito -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Imposta come persa +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Imposta come persa apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Ricevuta di pagamento Nota DocType: Supplier,Credit Days Based On,Giorni di credito in funzione DocType: Tax Rule,Tax Rule,Regola fiscale @@ -3569,7 +3577,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Quantità accettata apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} non esiste apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Fatture sollevate dai Clienti. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Progetto Id -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Fila No {0}: Importo non può essere maggiore di attesa Importo contro Rimborso Spese {1}. In attesa importo è {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Fila No {0}: Importo non può essere maggiore di attesa Importo contro Rimborso Spese {1}. In attesa importo è {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} abbonati aggiunti DocType: Maintenance Schedule,Schedule,Pianificare DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Definire bilancio per questo centro di costo. Per impostare l'azione di bilancio, vedere "Elenco Società"" @@ -3624,25 +3632,26 @@ DocType: BOM,With Operations,Con operazioni apps/erpnext/erpnext/accounts/party.py +232,Accounting entries have already been made in currency {0} for company {1}. Please select a receivable or payable account with currency {0}.,Scritture contabili sono già stati fatti in valuta {0} per azienda {1}. Si prega di selezionare un account di credito o da pagare con moneta {0}. ,Monthly Salary Register,Registro Stipendio Mensile DocType: Warranty Claim,If different than customer address,Se diverso da indirizzo del cliente -DocType: BOM Operation,BOM Operation,DiBa Operazione +DocType: BOM Operation,BOM Operation,Operazione BOM DocType: Purchase Taxes and Charges,On Previous Row Amount,Sul Fila Indietro Importo apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please enter Payment Amount in atleast one row,Inserisci il pagamento Importo in almeno uno di fila DocType: POS Profile,POS Profile,POS Profilo DocType: Payment Gateway Account,Payment URL Message,Pagamento URL Messaggio apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Stagionalità per impostare i budget, obiettivi ecc" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Riga {0}: Importo pagamento non può essere maggiore di consistenze +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Riga {0}: Importo pagamento non può essere maggiore di consistenze apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Totale non pagato -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Il tempo log non è fatturabile -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","L'articolo {0} è un modello, si prega di selezionare una delle sue varianti" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Il tempo log non è fatturabile +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","L'articolo {0} è un modello, si prega di selezionare una delle sue varianti" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Acquirente apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Retribuzione netta non può essere negativa -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Si prega di inserire manualmente il Against Buoni +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Si prega di inserire manualmente il Against Buoni DocType: SMS Settings,Static Parameters,Parametri statici DocType: Purchase Order,Advance Paid,Anticipo versato DocType: Item,Item Tax,Tax articolo apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Materiale da Fornitore apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Accise Fattura DocType: Expense Claim,Employees Email Id,Email Dipendenti +DocType: Employee Attendance Tool,Marked Attendance,Partecipazione Marcato apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Passività correnti apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Invia SMS di massa ai tuoi contatti DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Cnsidera Tasse o Cambio per @@ -3665,7 +3674,7 @@ DocType: Item Attribute,Numeric Values,Valori numerici apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Allega Logo DocType: Customer,Commission Rate,Tasso Commissione apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Crea variante -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Blocco domande uscita da ufficio. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Blocco domande uscita da ufficio. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Carrello è Vuoto DocType: Production Order,Actual Operating Cost,Costo operativo effettivo apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Root non può essere modificato . @@ -3684,7 +3693,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,Creazione automatica di materiale richiesta se la quantità scende al di sotto di questo livello ,Item-wise Purchase Register,Articolo-saggio Acquisto Registrati DocType: Batch,Expiry Date,Data Scadenza -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Per impostare il livello di riordino, elemento deve essere un acquisto dell'oggetto o Produzione Voce" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Per impostare il livello di riordino, elemento deve essere un acquisto dell'oggetto o Produzione Voce" ,Supplier Addresses and Contacts,Indirizzi e contatti Fornitore apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,Si prega di selezionare Categoria prima apps/erpnext/erpnext/config/projects.py +18,Project master.,Progetto Master. @@ -3694,7 +3703,7 @@ DocType: Supplier,Credit Days,Giorni Credito DocType: Leave Type,Is Carry Forward,È Portare Avanti apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +566,Get Items from BOM,Recupera elementi da Distinta Base apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Lead Time Days,Giorni Tempo di Esecuzione -apps/erpnext/erpnext/config/manufacturing.py +120,Bill of Materials,Distinta materiali +apps/erpnext/erpnext/config/manufacturing.py +120,Bill of Materials,Distinte materiali apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +77,Row {0}: Party Type and Party is required for Receivable / Payable account {1},Riga {0}: Partito Tipo e Partito è necessario per Crediti / Debiti conto {1} apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +102,Ref Date,Data Rif DocType: Employee,Reason for Leaving,Motivo per Lasciare diff --git a/erpnext/translations/ja.csv b/erpnext/translations/ja.csv index 90d0236f5b..5b17a73cd6 100644 --- a/erpnext/translations/ja.csv +++ b/erpnext/translations/ja.csv @@ -164,14 +164,14 @@ DocType: Journal Entry Account,Credit in Company Currency,会社通貨の貸方 DocType: Delivery Note,Installation Status,設置ステータス apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},受入数と拒否数の合計はアイテム{0}の受領数と等しくなければなりません DocType: Item,Supply Raw Materials for Purchase,購入のための原材料供給 -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,アイテム{0}は仕入アイテムでなければなりません +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,アイテム{0}は仕入アイテムでなければなりません DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","テンプレートをダウンロードし、適切なデータを記入した後、変更したファイルを添付してください。 選択した期間内のすべての日付と従業員の組み合わせは、既存の出勤記録と一緒に、テンプレートに入ります" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,アイテム{0}は、アクティブでないか、販売終了となっています DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,請求書を提出すると更新されます。 -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included",アイテム料金の行{0}に税を含めるには、行{1}の税も含まれていなければなりません -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,人事モジュール設定 +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included",アイテム料金の行{0}に税を含めるには、行{1}の税も含まれていなければなりません +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,人事モジュール設定 DocType: SMS Center,SMS Center,SMSセンター DocType: BOM Replace Tool,New BOM,新しい部品表 apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,請求用時間ログバッチ @@ -199,7 +199,7 @@ DocType: Offer Letter,Select Terms and Conditions,規約を選択 DocType: Production Planning Tool,Sales Orders,受注 DocType: Purchase Taxes and Charges,Valuation,評価 ,Purchase Order Trends,発注傾向 -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,今年の休暇を割り当てる。 +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,今年の休暇を割り当てる。 DocType: Earning Type,Earning Type,収益タイプ DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,キャパシティプランニングとタイムトラッキングを無効にします DocType: Bank Reconciliation,Bank Account,銀行口座 @@ -237,7 +237,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,アイテムのWebサイトの仕様 DocType: Payment Tool,Reference No,参照番号 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,休暇 -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},アイテム{0}は{1}に耐用年数の終わりに達します +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},アイテム{0}は{1}に耐用年数の終わりに達します apps/erpnext/erpnext/accounts/utils.py +341,Annual,年次 DocType: Stock Reconciliation Item,Stock Reconciliation Item,在庫棚卸アイテム DocType: Stock Entry,Sales Invoice No,請求番号 @@ -249,7 +249,7 @@ DocType: Item,Minimum Order Qty,最小注文数量 DocType: Pricing Rule,Supplier Type,サプライヤータイプ DocType: Item,Publish in Hub,ハブに公開 ,Terretory,地域 -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,アイテム{0}をキャンセルしました +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,アイテム{0}をキャンセルしました apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,資材要求 DocType: Bank Reconciliation,Update Clearance Date,清算日の更新 DocType: Item,Purchase Details,仕入詳細 @@ -261,11 +261,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,拒否された数量 DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order",フィールドでは納品書、見積書、請求書、受注が利用可能です DocType: SMS Settings,SMS Sender Name,SMS送信者名 DocType: Contact,Is Primary Contact,主連絡先 +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,タイムログは、課金のためにバッチ処理されています DocType: Notification Control,Notification Control,通知制御 DocType: Lead,Suggestions,提案 DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,この地域用にアイテムグループごとの予算を設定します。また「配分」を設定することで、期間を含めることができます。 apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},倉庫{0}の親勘定グループを入力してください -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},{0} {1} に対する支払は残高 {2} より大きくすることができません +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},{0} {1} に対する支払は残高 {2} より大きくすることができません DocType: Supplier,Address HTML,住所のHTML DocType: Lead,Mobile No.,携帯番号 DocType: Maintenance Schedule,Generate Schedule,スケジュールを生成 @@ -282,7 +283,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,ハブと同期 apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,間違ったパスワード DocType: Item,Variant Of,バリエーション元 -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,アイテム{0}はサービスアイテムでなければなりません apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',完成した数量は「製造数量」より大きくすることはできません DocType: Period Closing Voucher,Closing Account Head,決算科目 DocType: Employee,External Work History,職歴(他社) @@ -294,10 +294,10 @@ DocType: Newsletter,Newsletter,ニュースレター DocType: Stock Settings,Notify by Email on creation of automatic Material Request,自動的な資材要求の作成時にメールで通知 DocType: Journal Entry,Multi Currency,複数通貨 DocType: Payment Reconciliation Invoice,Invoice Type,請求書タイプ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,納品書 +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,納品書 apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,税設定 apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,支払エントリが変更されています。引用しなおしてください -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,アイテムの税金に{0}が2回入力されています +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,アイテムの税金に{0}が2回入力されています apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,今週と保留中の活動の概要 DocType: Workstation,Rent Cost,地代・賃料 apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,月と年を選択してください @@ -309,7 +309,7 @@ DocType: Features Setup,"All import related fields like currency, conversion rat apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"この商品はテンプレートで、取引内で使用することはできません。 「コピーしない」が設定されていない限り、アイテムの属性は、バリエーションにコピーされます" apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,検討された注文合計 -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).",従業員の肩書(例:最高経営責任者(CEO)、取締役など)。 +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).",従業員の肩書(例:最高経営責任者(CEO)、取締役など)。 apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,フィールド値「毎月繰り返し」を入力してください DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,顧客通貨が顧客の基本通貨に換算されるレート DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet",部品表、納品書、請求書、製造指示、発注、仕入領収書、納品書、受注、在庫エントリー、タイムシートで利用可能 @@ -358,7 +358,7 @@ DocType: Workstation,Consumable Cost,消耗品費 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0}({1})は「休暇承認者」の役割を持っている必要があります DocType: Purchase Receipt,Vehicle Date,車両日付 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,検診 -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,失敗の原因 +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,失敗の原因 apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},作業所は、休日リストに従って、次の日に休業します:{0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,機会 DocType: Employee,Single,シングル @@ -386,14 +386,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,チャネルパートナー DocType: Account,Old Parent,古い親 DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,メールの一部となる入門テキストをカスタマイズします。各取引にははそれぞれ入門テキストがあります +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),シンボルを含めないでください(例:$) DocType: Sales Taxes and Charges Template,Sales Master Manager,販売マスターマネージャー apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,全製造プロセスの共通設定 DocType: Accounts Settings,Accounts Frozen Upto,凍結口座上限 DocType: SMS Log,Sent On,送信済 -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,属性 {0} は属性表内で複数回選択されています +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,属性 {0} は属性表内で複数回選択されています DocType: HR Settings,Employee record is created using selected field. ,従業員レコードは選択されたフィールドを使用して作成されます。 DocType: Sales Order,Not Applicable,特になし -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,休日マスター +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,休日マスター DocType: Material Request Item,Required Date,要求日 DocType: Delivery Note,Billing Address,請求先住所 apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,アイテムコードを入力してください @@ -429,7 +430,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,資材要求が発生する倉庫を入力してください DocType: Production Order,Additional Operating Cost,追加の営業費用 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,化粧品 -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items",マージするには、両方のアイテムで次の属性が同じである必要があります。 +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items",マージするには、両方のアイテムで次の属性が同じである必要があります。 DocType: Shipping Rule,Net Weight,正味重量 DocType: Employee,Emergency Phone,緊急電話 ,Serial No Warranty Expiry,シリアル番号(保証期限) @@ -485,17 +486,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,請求と配達の状況 apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,リピート顧客 DocType: Leave Control Panel,Allocate,割当 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,販売返品 +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,販売返品 DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,作成した製造指示から受注を選択します。 DocType: Item,Delivered by Supplier (Drop Ship),サプライヤー(ドロップ船)で配信 -apps/erpnext/erpnext/config/hr.py +120,Salary components.,給与コンポーネント +apps/erpnext/erpnext/config/hr.py +128,Salary components.,給与コンポーネント apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,潜在顧客データベース DocType: Authorization Rule,Customer or Item,お客様またはアイテム apps/erpnext/erpnext/config/crm.py +17,Customer database.,顧客データベース DocType: Quotation,Quotation To,見積先 DocType: Lead,Middle Income,中収益 apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),開く(貸方) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,すでに別の測定単位でいくつかのトランザクションを行っているので、項目のデフォルトの単位は、{0}を直接変更することはできません。あなたは、異なるデフォルトのUOMを使用する新しいアイテムを作成する必要があります。 +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,すでに別の測定単位でいくつかのトランザクションを行っているので、項目のデフォルトの単位は、{0}を直接変更することはできません。あなたは、異なるデフォルトのUOMを使用する新しいアイテムを作成する必要があります。 apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,割当額をマイナスにすることはできません DocType: Purchase Order Item,Billed Amt,支払額 DocType: Warehouse,A logical Warehouse against which stock entries are made.,在庫エントリが作成されるのに対する論理的な倉庫。 @@ -514,14 +515,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,販売租税公課 DocType: Employee,Organization Profile,組織プロファイル apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,設定>シリーズ採番からシリーズ採番をセットアップしてください DocType: Employee,Reason for Resignation,退職理由 -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,業績評価用テンプレート +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,業績評価用テンプレート DocType: Payment Reconciliation,Invoice/Journal Entry Details,請求/仕訳詳細 apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}'は会計年度{2}中ではありません DocType: Buying Settings,Settings for Buying Module,モジュール購入設定 apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,領収書を入力してください DocType: Buying Settings,Supplier Naming By,サプライヤー通称 DocType: Activity Type,Default Costing Rate,デフォルト原価 -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,メンテナンス予定 +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,メンテナンス予定 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.",価格設定ルールは、顧客、顧客グループ、地域、サプライヤー、サプライヤータイプ、キャンペーン、販売パートナーなどに基づいて抽出されます apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,在庫の純変更 DocType: Employee,Passport Number,パスポート番号 @@ -560,7 +561,7 @@ DocType: Purchase Invoice,Quarterly,4半期ごと DocType: Selling Settings,Delivery Note Required,納品書必須 DocType: Sales Order Item,Basic Rate (Company Currency),基本速度(会社通貨) DocType: Manufacturing Settings,Backflush Raw Materials Based On,原材料のバックフラッシュ基準 -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,アイテムの詳細を入力してください +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,アイテムの詳細を入力してください DocType: Purchase Receipt,Other Details,その他の詳細 DocType: Account,Accounts,アカウント apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,マーケティング @@ -573,7 +574,7 @@ DocType: Employee,Provide email id registered in company,会社に登録され DocType: Hub Settings,Seller City,販売者の市区町村 DocType: Email Digest,Next email will be sent on:,次のメール送信先: DocType: Offer Letter Term,Offer Letter Term,雇用契約書条件 -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,アイテムはバリエーションがあります +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,アイテムはバリエーションがあります apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,アイテム{0}が見つかりません DocType: Bin,Stock Value,在庫価値 apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,ツリー型 @@ -581,7 +582,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,単位当たり消費数量 DocType: Serial No,Warranty Expiry Date,保証有効期限 DocType: Material Request Item,Quantity and Warehouse,数量と倉庫 DocType: Sales Invoice,Commission Rate (%),手数料率(%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry",対伝票タイプは受注・納品書・仕訳のいずれかでなければなりません +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry",対伝票タイプは受注・納品書・仕訳のいずれかでなければなりません apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,航空宇宙 DocType: Journal Entry,Credit Card Entry,クレジットカードエントリ apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,タスクの件名 @@ -675,10 +676,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,負債 apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,決済額は、行{0}での請求額を超えることはできません。 DocType: Company,Default Cost of Goods Sold Account,製品販売アカウントのデフォルト費用 -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,価格表が選択されていません +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,価格表が選択されていません DocType: Employee,Family Background,家族構成 DocType: Process Payroll,Send Email,メールを送信 -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},警告:不正な添付ファイル{0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},警告:不正な添付ファイル{0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,権限がありませんん DocType: Company,Default Bank Account,デフォルト銀行口座 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first",「当事者」に基づいてフィルタリングするには、最初の「当事者タイプ」を選択してください @@ -706,7 +707,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,顧 DocType: Features Setup,"To enable ""Point of Sale"" features",POS機能を有効にする DocType: Bin,Moving Average Rate,移動平均レート DocType: Production Planning Tool,Select Items,アイテム選択 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{2}を指定日とする支払{1}に対する{0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{2}を指定日とする支払{1}に対する{0} DocType: Maintenance Visit,Completion Status,完了状況 DocType: Sales Invoice Item,Target Warehouse,ターゲット倉庫 DocType: Item,Allow over delivery or receipt upto this percent,このパーセント以上の配送または受領を許可 @@ -766,7 +767,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,為 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},操作{1}のための時間スロットは次の{0}日間に存在しません DocType: Production Order,Plan material for sub-assemblies,部分組立品資材計画 apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,部品表{0}はアクティブでなければなりません -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,文書タイプを選択してください +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,文書タイプを選択してください apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,後藤カート apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,このメンテナンス訪問をキャンセルする前に資材訪問{0}をキャンセルしなくてはなりません DocType: Salary Slip,Leave Encashment Amount,休暇現金化量 @@ -784,7 +785,7 @@ DocType: Purchase Receipt,Range,幅 DocType: Supplier,Default Payable Accounts,デフォルト買掛金勘定 apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,従業員{0}はアクティブでないか、存在しません DocType: Features Setup,Item Barcode,アイテムのバーコード -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,アイテムバリエーション{0}を更新しました +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,アイテムバリエーション{0}を更新しました DocType: Quality Inspection Reading,Reading 6,報告要素6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,仕入請求前払 DocType: Address,Shop,店 @@ -807,7 +808,7 @@ DocType: Salary Slip,Total in words,合計の文字表記 DocType: Material Request Item,Lead Time Date,リードタイム日 apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,必須です。多分両替レコードが作成されません apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},行 {0}:アイテム{1}のシリアル番号を指定してください -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.",「製品付属品」アイテム、倉庫、シリアル番号、バッチ番号は、「梱包リスト」テーブルから検討します。倉庫とバッチ番号が任意の「製品付属品」アイテムのすべての梱包アイテムと同じであれば、これらの値はメインのアイテムテーブルに入力することができ、「梱包リスト」テーブルにコピーされます。 +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.",「製品付属品」アイテム、倉庫、シリアル番号、バッチ番号は、「梱包リスト」テーブルから検討します。倉庫とバッチ番号が任意の「製品付属品」アイテムのすべての梱包アイテムと同じであれば、これらの値はメインのアイテムテーブルに入力することができ、「梱包リスト」テーブルにコピーされます。 apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,顧客への出荷 DocType: Purchase Invoice Item,Purchase Order Item,発注アイテム apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,間接収入 @@ -828,6 +829,7 @@ DocType: Process Payroll,Select Payroll Year and Month,賃金台帳 年と月を apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",適切なグループ(通常は資金運用>流動資産>銀行口座)に移動し、新しい「銀行」アカウント(クリックして子要素を追加します)を作成してください。 DocType: Workstation,Electricity Cost,電気代 DocType: HR Settings,Don't send Employee Birthday Reminders,従業員の誕生日リマインダを送信しないでください +,Employee Holiday Attendance,従業員の休日の出席 DocType: Opportunity,Walk In,立入 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,ストックエントリ DocType: Item,Inspection Criteria,検査基準 @@ -852,7 +854,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options, DocType: Journal Entry Account,Expense Claim,経費請求 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},{0}用数量 DocType: Leave Application,Leave Application,休暇申請 -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,休暇割当ツール +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,休暇割当ツール DocType: Leave Block List,Leave Block List Dates,休暇リスト日付 DocType: Company,If Monthly Budget Exceeded (for expense account),毎月の予算(費用勘定のため)を超えた場合 DocType: Workstation,Net Hour Rate,時給総計 @@ -862,7 +864,7 @@ DocType: Packing Slip Item,Packing Slip Item,梱包伝票項目 DocType: POS Profile,Cash/Bank Account,現金/銀行口座 apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,数量または値の変化のないアイテムを削除しました。 DocType: Delivery Note,Delivery To,納品先 -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,属性表は必須です +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,属性表は必須です DocType: Production Planning Tool,Get Sales Orders,注文を取得 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0}はマイナスにできません apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,割引 @@ -926,7 +928,7 @@ DocType: SMS Center,Total Characters,文字数合計 apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},アイテム{0}の部品表フィールドで部品表を選択してください DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-フォーム請求書の詳細 DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,支払照合 請求 -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,貢献% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,貢献% DocType: Item,website page link,ウェブサイトのページリンク DocType: Company,Company registration numbers for your reference. Tax numbers etc.,参照用の会社登録番号(例:税番号など) DocType: Sales Partner,Distributor,販売代理店 @@ -968,10 +970,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,数量単位の変換係数 DocType: Stock Settings,Default Item Group,デフォルトアイテムグループ apps/erpnext/erpnext/config/buying.py +13,Supplier database.,サプライヤーデータベース DocType: Account,Balance Sheet,貸借対照表 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',アイテムコードのあるアイテムのためのコストセンター +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',アイテムコードのあるアイテムのためのコストセンター DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,営業担当者には、顧客訪問日にリマインドが表示されます。 apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups",アカウントはさらにグループの下に作成できますが、エントリは非グループに対して作成できます -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,税その他給与控除 +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,税その他給与控除 DocType: Lead,Lead,リード DocType: Email Digest,Payables,買掛金 DocType: Account,Warehouse,倉庫 @@ -988,10 +990,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,未照合支払い DocType: Global Defaults,Current Fiscal Year,現在の会計年度 DocType: Global Defaults,Disable Rounded Total,合計の四捨五入を無効にする DocType: Lead,Call,電話 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,「エントリ」は空にできません +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,「エントリ」は空にできません apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},行{0}は{1}と重複しています ,Trial Balance,試算表 -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,従業員設定 +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,従業員設定 apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","グリッド """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,接頭辞を選択してください apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,リサーチ @@ -1000,7 +1002,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,ユーザー ID apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,元帳の表示 apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,最初 -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group",同名のアイテムグループが存在しますので、アイテム名を変えるか、アイテムグループ名を変更してください +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group",同名のアイテムグループが存在しますので、アイテム名を変えるか、アイテムグループ名を変更してください DocType: Production Order,Manufacture against Sales Order,受注に対する製造 apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,その他の地域 apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,アイテム{0}はバッチを持てません @@ -1025,7 +1027,7 @@ DocType: Purchase Receipt,Rejected Warehouse,拒否された倉庫 DocType: GL Entry,Against Voucher,対伝票 DocType: Item,Default Buying Cost Center,デフォルト購入コストセンター apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.",ERPNextを最大限にするには、我々はあなたがいくつかの時間がかかるし、これらのヘルプビデオを見ることをお勧めします。 -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,アイテム{0}は販売アイテムでなければなりません +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,アイテム{0}は販売アイテムでなければなりません apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,へ DocType: Item,Lead Time in days,リードタイム日数 ,Accounts Payable Summary,買掛金の概要 @@ -1051,7 +1053,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,農業 apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,あなたの製品またはサービス DocType: Mode of Payment,Mode of Payment,支払方法 -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,ウェブサイトのイメージは、公開ファイルまたはウェブサイトのURLを指定する必要があります +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,ウェブサイトのイメージは、公開ファイルまたはウェブサイトのURLを指定する必要があります apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,これは、ルートアイテムグループであり、編集することはできません。 DocType: Journal Entry Account,Purchase Order,発注 DocType: Warehouse,Warehouse Contact Info,倉庫連絡先情報 @@ -1062,7 +1064,7 @@ DocType: Serial No,Serial No Details,シリアル番号詳細 DocType: Purchase Invoice Item,Item Tax Rate,アイテムごとの税率 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry",{0}には、別の借方エントリに対する貸方勘定のみリンクすることができます apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,納品書{0}は提出されていません -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,アイテム{0}は下請けアイテムでなければなりません +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,アイテム{0}は下請けアイテムでなければなりません apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,資本設備 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.",価格設定ルールは、「適用」フィールドに基づき、アイテム、アイテムグループ、ブランドとすることができます。 DocType: Hub Settings,Seller Website,販売者のウェブサイト @@ -1071,7 +1073,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,目標 DocType: Sales Invoice Item,Edit Description,説明編集 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,配送予定日が計画開始日よりも前に指定されています -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,サプライヤー用 +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,サプライヤー用 DocType: Account,Setting Account Type helps in selecting this Account in transactions.,アカウントタイプを設定すると、取引内で選択できるようになります DocType: Purchase Invoice,Grand Total (Company Currency),総合計(会社通貨) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,出費総額 @@ -1123,7 +1125,6 @@ DocType: Authorization Rule,Average Discount,平均割引 DocType: Address,Utilities,ユーティリティー DocType: Purchase Invoice Item,Accounting,会計 DocType: Features Setup,Features Setup,機能設定 -DocType: Item,Is Service Item,サービスアイテム apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,受付期間は、外部休暇割当期間にすることはできません DocType: Activity Cost,Projects,プロジェクト apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,会計年度を選択してください @@ -1144,7 +1145,7 @@ DocType: Item,Maintain Stock,在庫維持 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,製造指示が作成済の在庫エントリー apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,固定資産の純変動 DocType: Leave Control Panel,Leave blank if considered for all designations,全ての肩書を対象にする場合は空白のままにします -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,行{0}の料金タイプ「実費」はアイテムの料金に含めることはできません +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,行{0}の料金タイプ「実費」はアイテムの料金に含めることはできません apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},最大:{0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,開始日時 DocType: Email Digest,For Company,会社用 @@ -1153,8 +1154,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,配送先住所 apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,勘定科目表 DocType: Material Request,Terms and Conditions Content,規約の内容 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,100を超えることはできません -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,アイテム{0}は在庫アイテムではありません +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,100を超えることはできません +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,アイテム{0}は在庫アイテムではありません DocType: Maintenance Visit,Unscheduled,スケジュール解除済 DocType: Employee,Owned,所有済 DocType: Salary Slip Deduction,Depends on Leave Without Pay,無給休暇に依存 @@ -1176,7 +1177,7 @@ Used for Taxes and Charges","文字列としてアイテムマスタから取得 apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,従業員は自分自身に報告することはできません。 DocType: Account,"If the account is frozen, entries are allowed to restricted users.",会計が凍結されている場合、エントリは限られたユーザーに許可されています。 DocType: Email Digest,Bank Balance,銀行残高 -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},{0}の勘定科目では{1}は通貨{2}でのみ作成可能です +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},{0}の勘定科目では{1}は通貨{2}でのみ作成可能です apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,従業員{0}と月が見つかりませアクティブ給与構造ません DocType: Job Opening,"Job profile, qualifications required etc.",必要な業務内容、資格など DocType: Journal Entry Account,Account Balance,口座残高 @@ -1193,7 +1194,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,組立部品 DocType: Shipping Rule Condition,To Value,値 DocType: Supplier,Stock Manager,在庫マネージャー apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},行{0}には出庫元が必須です -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,梱包伝票 +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,梱包伝票 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,事務所賃料 apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,SMSゲートウェイの設定 apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,インポートが失敗しました! @@ -1238,7 +1239,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,部品表詳細番号 DocType: Purchase Invoice,Additional Discount Amount (Company Currency),追加割引額(会社通貨) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},エラー:{0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,勘定科目表から新しいアカウントを作成してください -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,メンテナンスのための訪問 +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,メンテナンスのための訪問 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,顧客>顧客グループ>地域 DocType: Sales Invoice Item,Available Batch Qty at Warehouse,倉庫での利用可能なバッチ数量 DocType: Time Log Batch Detail,Time Log Batch Detail,時間ログバッチの詳細 @@ -1247,7 +1248,7 @@ DocType: Leave Block List,Block Holidays on important days.,年次休暇(記 ,Accounts Receivable Summary,売掛金概要 apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,従業員の役割を設定するには、従業員レコードのユーザーIDフィールドを設定してください DocType: UOM,UOM Name,数量単位名 -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,貢献額 +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,貢献額 DocType: Sales Invoice,Shipping Address,発送先 DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,"このツールを使用すると、システム内の在庫の数量と評価額を更新・修正するのに役立ちます。 これは通常、システムの値と倉庫に実際に存在するものを同期させるために使用されます。" @@ -1289,7 +1290,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,バーコードを使用してアイテムを追跡します。アイテムのバーコードをスキャンすることによって、納品書や請求書にアイテムを入力することができます。 apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,支払メールを再送信 DocType: Dependent Task,Dependent Task,依存タスク -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},デフォルト数量単位は、行{0}の1でなければなりません +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},デフォルト数量単位は、行{0}の1でなければなりません apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},休暇タイプ{0}は、{1}よりも長くすることはできません DocType: Manufacturing Settings,Try planning operations for X days in advance.,事前にX日の業務を計画してみてください DocType: HR Settings,Stop Birthday Reminders,誕生日リマインダを停止 @@ -1299,7 +1300,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0}ビュー apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,現金の純変更 DocType: Salary Structure Deduction,Salary Structure Deduction,給与体系(控除) -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,数量{0}が変換係数表に複数回記入されました。 +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,数量{0}が変換係数表に複数回記入されました。 apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},支払い要求がすでに存在している{0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,課題アイテムの費用 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},数量は{0}以下でなければなりません @@ -1328,7 +1329,7 @@ DocType: BOM Item,BOM Item,部品表アイテム DocType: Appraisal,For Employee,従業員用 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,行{0}:サプライヤーに対して事前に引き落としされなければなりません DocType: Company,Default Values,デフォルト値 -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,行{0}:支払額は負にすることはできません +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,行{0}:支払額は負にすることはできません DocType: Expense Claim,Total Amount Reimbursed,総払戻額 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},対サプライヤー請求書{0} 日付{1} DocType: Customer,Default Price List,デフォルト価格表 @@ -1357,8 +1358,7 @@ DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it i 古い部品表のリンクが交換され、費用を更新して新しい部品表の通り「部品表展開項目」テーブルを再生成します" DocType: Shopping Cart Settings,Enable Shopping Cart,ショッピングカートを有効にする DocType: Employee,Permanent Address,本籍地 -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,アイテム{0}はサービスアイテムでなければなりません。 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",{0}への前払金として {1} は{2}の総計より大きくすることはできません apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,アイテムコードを選択してください。 DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),無給休暇(LWP)の控除減 @@ -1415,12 +1415,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,メイン apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,バリエーション DocType: Naming Series,Set prefix for numbering series on your transactions,取引に連番の接頭辞を設定 +DocType: Employee Attendance Tool,Employees HTML,従業員のHTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,停止された注文はキャンセルできません。キャンセルするには停止解除してください -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,このアイテムまたはテンプレートには、デフォルトの部品表({0})がアクティブでなければなりません +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,このアイテムまたはテンプレートには、デフォルトの部品表({0})がアクティブでなければなりません DocType: Employee,Leave Encashed?,現金化された休暇? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,機会元フィールドは必須です DocType: Item,Variants,バリエーション -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,発注を作成 +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,発注を作成 DocType: SMS Center,Send To,送信先 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},休暇タイプ{0}のための休暇残が足りません DocType: Payment Reconciliation Payment,Allocated amount,割当額 @@ -1520,7 +1521,7 @@ DocType: Sales Person,Name and Employee ID,名前と従業員ID apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,期限日を転記日付より前にすることはできません DocType: Website Item Group,Website Item Group,ウェブサイトの項目グループ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,関税と税金 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,基準日を入力してください +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,基準日を入力してください apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,ペイメントゲートウェイアカウントが設定されていません apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} 件の支払いエントリが {1}によってフィルタリングできません DocType: Item Website Specification,Table for Item that will be shown in Web Site,Webサイトに表示されたアイテムの表 @@ -1542,7 +1543,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,課題解決詳細 DocType: Quality Inspection Reading,Acceptance Criteria,合否基準 DocType: Item Attribute,Attribute Name,属性名 -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},アイテム{0}は{1}での販売またはサービスでなければなりません DocType: Item Group,Show In Website,ウェブサイトで表示 apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,グループ DocType: Task,Expected Time (in hours),予定時間(時) @@ -1574,7 +1574,7 @@ DocType: Shipping Rule Condition,Shipping Amount,出荷量 ,Pending Amount,保留中の金額 DocType: Purchase Invoice Item,Conversion Factor,換算係数 DocType: Purchase Order,Delivered,納品済 -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),ジョブメールを受信するサーバのメールIDをセットアップします。(例 jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),ジョブメールを受信するサーバのメールIDをセットアップします。(例 jobs@example.com) DocType: Purchase Receipt,Vehicle Number,車両番号 DocType: Purchase Invoice,The date on which recurring invoice will be stop,繰り返し請求停止予定日 apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,総割り当てられた葉{0}の期間のために既に承認された葉{1}より小さくすることはできません @@ -1591,7 +1591,7 @@ DocType: HR Settings,HR Settings,人事設定 apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,経費請求は承認待ちです。経費承認者のみ、ステータスを更新することができます。 DocType: Purchase Invoice,Additional Discount Amount,追加割引額 DocType: Leave Block List Allow,Leave Block List Allow,許可する休暇リスト -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,略称は、空白またはスペースにすることはできません +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,略称は、空白またはスペースにすることはできません apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,非グループのグループ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,スポーツ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,実費計 @@ -1615,7 +1615,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},行{0}には数量単位変換係数が必要です apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},決済日付は行{0}の小切手日付より前にすることはできません DocType: Salary Slip,Deduction,控除 -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},アイテムの価格は価格表{1}に{0}のために追加 +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},アイテムの価格は価格表{1}に{0}のために追加 DocType: Address Template,Address Template,住所テンプレート apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,営業担当者の従業員IDを入力してください DocType: Territory,Classification of Customers by region,地域別の顧客の分類 @@ -1632,7 +1632,7 @@ DocType: Employee,Date of Birth,生年月日 apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,アイテム{0}はすでに返品されています DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,「会計年度」は、会計年度を表します。すべての会計記帳および他の主要な取引は、「会計年度」に対して記録されます。 DocType: Opportunity,Customer / Lead Address,顧客/リード住所 -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},警告:添付ファイル{0}に無効なSSL証明書 +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},警告:添付ファイル{0}に無効なSSL証明書 DocType: Production Order Operation,Actual Operation Time,実作業時間 DocType: Authorization Rule,Applicable To (User),(ユーザー)に適用 DocType: Purchase Taxes and Charges,Deduct,差し引く @@ -1649,7 +1649,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,梱包ごとに納品書を分割 apps/erpnext/erpnext/hooks.py +69,Shipments,出荷 DocType: Purchase Order Item,To be delivered to customer,顧客に配信します -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,時間ログのステータスが提出されなければなりません +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,時間ログのステータスが提出されなければなりません apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,シリアル番号は{0}任意の倉庫にも属していません apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,行# DocType: Purchase Invoice,In Words (Company Currency),文字表記(会社通貨) @@ -1666,7 +1666,7 @@ DocType: Leave Application,Total Leave Days,総休暇日数 DocType: Email Digest,Note: Email will not be sent to disabled users,注意:ユーザーを無効にするとメールは送信されなくなります apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,会社を選択... DocType: Leave Control Panel,Leave blank if considered for all departments,全部門が対象の場合は空白のままにします -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).",雇用タイプ(正社員、契約社員、インターンなど) +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).",雇用タイプ(正社員、契約社員、インターンなど) apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0}はアイテム{1}に必須です DocType: Currency Exchange,From Currency,通貨から apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row",割当額、請求タイプ、請求書番号を少なくとも1つの行から選択してください @@ -1685,7 +1685,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,処理中 DocType: Authorization Rule,Itemwise Discount,アイテムごとの割引 DocType: Purchase Order Item,Reference Document Type,リファレンスドキュメントの種類 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},受注{1}に対する{0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},受注{1}に対する{0} DocType: Account,Fixed Asset,固定資産 apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,シリアル番号を付与した目録 DocType: Activity Type,Default Billing Rate,デフォルト請求単価 @@ -1695,7 +1695,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,受注からの支払 DocType: Expense Claim Detail,Expense Claim Detail,経費請求の詳細 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,時間ログを作成しました: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,正しいアカウントを選択してください +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,正しいアカウントを選択してください DocType: Item,Weight UOM,重量単位 DocType: Employee,Blood Group,血液型 DocType: Purchase Invoice Item,Page Break,改ページ @@ -1730,7 +1730,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},部品表再帰:{0} {2}の親または子にすることはできません DocType: Production Order Operation,Completed Qty,完成した数量 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry",{0}には、別の貸方エントリに対する借方勘定のみリンクすることができます -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,価格表{0}は無効になっています +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,価格表{0}は無効になっています DocType: Manufacturing Settings,Allow Overtime,残業を許可 apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,アイテム {1} には {0} 件のシリアル番号が必要です。{2} 件指定されています DocType: Stock Reconciliation Item,Current Valuation Rate,現在の評価額 @@ -1781,7 +1781,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},バ apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,ケース番号は0にすることはできません DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,営業チームと販売パートナー(チャネルパートナー)がある場合、それらはタグ付けされ、営業活動での貢献度を保持することができます DocType: Item,Show a slideshow at the top of the page,ページの上部にスライドショーを表示 -DocType: Item,"Allow in Sales Order of type ""Service""",「サービス」タイプの受注で許可 apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,店舗 DocType: Time Log,Projects Manager,プロジェクトマネージャー DocType: Serial No,Delivery Time,納品時間 @@ -1796,6 +1795,7 @@ DocType: Rename Tool,Rename Tool,ツール名称変更 apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,費用更新 DocType: Item Reorder,Item Reorder,アイテム再注文 apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,資材配送 +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},項目{0}が{1}での販売項目でなければなりません DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.",「運用」には「運用コスト」「固有の運用番号」を指定してください。 DocType: Purchase Invoice,Price List Currency,価格表の通貨 DocType: Naming Series,User must always select,ユーザーは常に選択する必要があります @@ -1817,7 +1817,7 @@ DocType: Appraisal,Employee,従業員 apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,メールインポート元 apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,ユーザーとして招待 DocType: Features Setup,After Sale Installations,販売後設置 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1}は支払済です +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1}は支払済です DocType: Workstation Working Hour,End Time,終了時間 apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,販売・仕入用の標準的な契約条件 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,伝票によるグループ @@ -1843,7 +1843,7 @@ DocType: Upload Attendance,Attendance To Date,出勤日 apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),営業メールを受信するサーバのメールIDをセットアップします。 (例 sales@example.com) DocType: Warranty Claim,Raised By,要求者 DocType: Payment Gateway Account,Payment Account,支払勘定 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,続行する会社を指定してください +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,続行する会社を指定してください apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,売掛金の純変更 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,代償オフ DocType: Quality Inspection Reading,Accepted,承認済 @@ -1855,14 +1855,14 @@ DocType: Shipping Rule,Shipping Rule Label,出荷ルールラベル apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,原材料は空白にできません。 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.",請求書は、ドロップシッピングの項目を含む、株式を更新できませんでした。 DocType: Newsletter,Test,テスト -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'",このアイテムには在庫取引が存在するため、「シリアル番号あり」「バッチ番号あり」「ストックアイテム」「評価方法」の値を変更することはできません。 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,クイック仕訳 apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,アイテムに対して部品表が記載されている場合は、レートを変更することができません DocType: Employee,Previous Work Experience,前職歴 DocType: Stock Entry,For Quantity,数量 apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},アイテム{0}行{1}に予定数量を入力してください -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1}は提出されていません +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1}は提出されていません apps/erpnext/erpnext/config/stock.py +18,Requests for items.,アイテム要求 DocType: Production Planning Tool,Separate production order will be created for each finished good item.,各完成品それぞれに独立した製造指示が作成されます。 DocType: Purchase Invoice,Terms and Conditions1,規約1 @@ -1887,6 +1887,7 @@ DocType: Notification Control,Expense Claim Approved Message,経費請求を承 DocType: Email Digest,How frequently?,どのくらいの頻度? DocType: Purchase Receipt,Get Current Stock,在庫状況を取得 apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,部品表ツリー +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,マークプレゼント apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},メンテナンスの開始日は、シリアル番号{0}の納品日より前にすることはできません DocType: Production Order,Actual End Date,実際の終了日 DocType: Authorization Rule,Applicable To (Role),(役割)に適用 @@ -1901,7 +1902,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,契約終了日は、入社日よりも大きくなければなりません DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,コミッションのための企業の製品を販売している第三者の代理店/ディーラー/コミッションエージェント/アフィリエイト/リセラー。 DocType: Customer Group,Has Child Node,子ノードあり -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},発注{1}に対する{0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},発注{1}に対する{0} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","静的なURLパラメータを入力してください(例:sender=ERPNext, username=ERPNext, password=1234 など)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1}は有効な会計年度内にありません。詳細については{2}を確認してください。 apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,これはERPNextの自動生成ウェブサイトの例です。 @@ -1956,7 +1957,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 追加か控除かを選択します" DocType: Purchase Receipt Item,Recd Quantity,受領数量 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},受注数{1}より多くのアイテム{0}を製造することはできません -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,在庫エントリ{0}は提出されていません +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,在庫エントリ{0}は提出されていません DocType: Payment Reconciliation,Bank / Cash Account,銀行/現金勘定 DocType: Tax Rule,Billing City,請求先の市 DocType: Global Defaults,Hide Currency Symbol,通貨記号を非表示にする @@ -1982,7 +1983,7 @@ DocType: Salary Structure,Total Earning,収益合計 DocType: Purchase Receipt,Time at which materials were received,資材受領時刻 apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,自分の住所 DocType: Stock Ledger Entry,Outgoing Rate,出庫率 -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,組織支部マスター。 +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,組織支部マスター。 apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,または DocType: Sales Order,Billing Status,課金状況 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,水道光熱費 @@ -2020,7 +2021,7 @@ DocType: Bin,Reserved Quantity,予約数量 DocType: Landed Cost Voucher,Purchase Receipt Items,領収書アイテム apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,フォームのカスタマイズ DocType: Account,Income Account,収益勘定 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,配送 +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,配送 DocType: Stock Reconciliation Item,Current Qty,現在の数量 DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",原価計算セクションの「資材単価基準」を参照してください。 DocType: Appraisal Goal,Key Responsibility Area,重要責任分野 @@ -2032,8 +2033,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,伝 DocType: Notification Control,Purchase Order Message,発注メッセージ DocType: Tax Rule,Shipping Country,出荷先の国 DocType: Upload Attendance,Upload HTML,HTMLアップロード -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})",注文{1}に対する前受金計({0})は総計({2})より大きくすることはできません DocType: Employee,Relieving Date,退職日 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.",価格設定ルールは、価格表を上書きし、いくつかの基準に基づいて値引きの割合を定義します DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,倉庫は在庫エントリー/納品書/領収書を介してのみ変更可能です @@ -2043,8 +2042,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,所 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.",選択した価格設定ルールが「価格」のために作られている場合は、価格表が上書きされます。価格設定ルールの価格は最終的な価格なので、以降は割引が適用されるべきではありません。したがって、受注、発注書などのような取引内では「価格表レート」フィールドよりも「レート」フィールドで取得されます。 apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,業種によってリードを追跡 DocType: Item Supplier,Item Supplier,アイテムサプライヤー -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,バッチ番号を取得するためにアイテムコードを入力をしてください -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},{0} quotation_to {1} の値を選択してください +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,バッチ番号を取得するためにアイテムコードを入力をしてください +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},{0} quotation_to {1} の値を選択してください apps/erpnext/erpnext/config/selling.py +33,All Addresses.,全ての住所。 DocType: Company,Stock Settings,在庫設定 apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company",両方のレコードで次のプロパティが同じである場合、マージのみ可能です。グループ、ルートタイプ、会社です @@ -2067,7 +2066,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,小切手番号 DocType: Payment Tool Detail,Payment Tool Detail,支払ツールの詳細 ,Sales Browser,販売ブラウザ DocType: Journal Entry,Total Credit,貸方合計 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},警告:別の{0}#{1}が在庫エントリ{2}に対して存在します +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},警告:別の{0}#{1}が在庫エントリ{2}に対して存在します apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,現地 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),ローンと貸付金(資産) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,債務者 @@ -2087,8 +2086,8 @@ DocType: Price List,Price List Master,価格表マスター DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,すべての販売取引について、複数の「営業担当者」に対するタグを付けることができるため、これによって目標を設定しチェックすることができます。 ,S.O. No.,受注番号 DocType: Production Order Operation,Make Time Log,時間ログを作成 -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,再注文数量を設定してください -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},リード{0}から顧客を作成してください +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,再注文数量を設定してください +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},リード{0}から顧客を作成してください DocType: Price List,Applicable for Countries,国に適用 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,コンピュータ apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,ルート(大元の)顧客グループなので編集できません @@ -2135,7 +2134,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),請求 DocType: Payment Reconciliation Invoice,Outstanding Amount,残高 DocType: Project Task,Working,進行中 DocType: Stock Ledger Entry,Stock Queue (FIFO),先入先出法 -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,時間ログを選択してください。 +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,時間ログを選択してください。 apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} は会社 {1} に所属していません DocType: Account,Round Off,丸め誤差 ,Requested Qty,要求数量 @@ -2173,7 +2172,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,関連するエントリを取得 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,在庫の会計エントリー DocType: Sales Invoice,Sales Team1,販売チーム1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,アイテム{0}は存在しません +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,アイテム{0}は存在しません DocType: Sales Invoice,Customer Address,顧客の住所 DocType: Payment Request,Recipient and Message,受信者とメッセージ DocType: Purchase Invoice,Apply Additional Discount On,追加割引に適用 @@ -2192,7 +2191,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,ミュートメール apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco",食品、飲料&タバコ apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL・BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},唯一の未請求{0}に対して支払いを行うことができます +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},唯一の未請求{0}に対して支払いを行うことができます apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,手数料率は、100を超えることはできません。 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,最小在庫レベル DocType: Stock Entry,Subcontract,下請 @@ -2210,9 +2209,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,ソフト apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,カラー DocType: Maintenance Visit,Scheduled,スケジュール設定済 apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle",「在庫アイテム」が「いいえ」であり「販売アイテム」が「はい」であり他の製品付属品が無いアイテムを選択してください。 +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),注文に対する総事前({0}){1}({2})総合計よりも大きくすることはできません。 DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,月をまたがってターゲットを不均等に配分するには、「月次配分」を選択してください DocType: Purchase Invoice Item,Valuation Rate,評価額 -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,価格表の通貨が選択されていません +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,価格表の通貨が選択されていません apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,アイテムの行{0}:領収書{1}は上記の「領収書」テーブルに存在しません apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},従業員{0}は{2} と{3}の間の{1}を既に申請しています apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,プロジェクト開始日 @@ -2224,6 +2224,7 @@ DocType: Quality Inspection,Inspection Type,検査タイプ apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},{0}を選択してください DocType: C-Form,C-Form No,C-フォームはありません DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,無印出席 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,リサーチャー apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,送信する前にニュースレターを保存してください apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,名前またはメールアドレスが必須です @@ -2249,7 +2250,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,確認 DocType: Payment Gateway,Gateway,ゲートウェイ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,サプライヤー>サプライヤータイプ apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,退職日を入力してください。 -apps/erpnext/erpnext/controllers/trends.py +137,Amt,量/額 +apps/erpnext/erpnext/controllers/trends.py +138,Amt,量/額 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,ステータスを「承認」とした休暇申請のみ提出可能です apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,住所タイトルは必須です。 DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,問い合わせの内容がキャンペーンの場合は、キャンペーンの名前を入力してください @@ -2264,10 +2265,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,承認済み倉庫 DocType: Bank Reconciliation Detail,Posting Date,転記日付 DocType: Item,Valuation Method,評価方法 apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},{0} {1}への為替レートを見つけることができません。 +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,マーク半日 DocType: Sales Invoice,Sales Team,営業チーム apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,エントリーを複製 DocType: Serial No,Under Warranty,保証期間中 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[エラー] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[エラー] DocType: Sales Order,In Words will be visible once you save the Sales Order.,受注を保存すると表示される表記内。 ,Employee Birthday,従業員の誕生日 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,ベンチャーキャピタル @@ -2290,6 +2292,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,既存の取引があるコストセンターは、グループに変換することはできません DocType: Account,Depreciation,減価償却 apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),サプライヤー +DocType: Employee Attendance Tool,Employee Attendance Tool,従業員の出席ツール DocType: Supplier,Credit Limit,与信限度 apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,取引タイプを選択 DocType: GL Entry,Voucher No,伝票番号 @@ -2316,7 +2319,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,rootアカウントを削除することはできません ,Is Primary Address,プライマリアドレス DocType: Production Order,Work-in-Progress Warehouse,作業中の倉庫 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},参照#{0} 日付{1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},参照#{0} 日付{1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,住所管理 DocType: Pricing Rule,Item Code,アイテムコード DocType: Production Planning Tool,Create Production Orders,製造指示を作成 @@ -2343,7 +2346,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,銀行勘定調整 apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,アップデートを入手 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,資材要求{0}はキャンセルまたは停止されています apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,いくつかのサンプルレコードを追加 -apps/erpnext/erpnext/config/hr.py +210,Leave Management,休暇管理 +apps/erpnext/erpnext/config/hr.py +225,Leave Management,休暇管理 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,勘定によるグループ DocType: Sales Order,Fully Delivered,全て納品済 DocType: Lead,Lower Income,低収益 @@ -2358,6 +2361,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',「終了日」は「開始日」の後にしてください。 ,Stock Projected Qty,予測在庫数 apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},顧客{0}はプロジェクト{1}に属していません +DocType: Employee Attendance Tool,Marked Attendance HTML,著しい出席HTML DocType: Sales Order,Customer's Purchase Order,顧客の購入注文 DocType: Warranty Claim,From Company,会社から apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,値または数量 @@ -2422,6 +2426,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,電信振込 apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,銀行口座を選択してください DocType: Newsletter,Create and Send Newsletters,ニュースレターの作成・送信 +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,すべてチェック DocType: Sales Order,Recurring Order,定期的な注文 DocType: Company,Default Income Account,デフォルト損益勘定 apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,顧客グループ/顧客 @@ -2453,6 +2458,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,仕入請求書に対 DocType: Item,Warranty Period (in days),保証期間(日数) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,事業からの純キャッシュ・フロー apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,例「付加価値税(VAT)」 +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,一括でマーク従業員の出席 apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,アイテム4 DocType: Journal Entry Account,Journal Entry Account,仕訳勘定 DocType: Shopping Cart Settings,Quotation Series,見積シリーズ @@ -2597,14 +2603,14 @@ DocType: Task,Actual Start Date (via Time Logs),実際の開始日(時間ロ DocType: Stock Reconciliation Item,Before reconciliation,照合前 apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},{0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),租税公課が追加されました。(報告通貨) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,アイテムごとの税の行{0}では、勘定タイプ「税」「収入」「経費」「支払」のいずれかが必要です +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,アイテムごとの税の行{0}では、勘定タイプ「税」「収入」「経費」「支払」のいずれかが必要です DocType: Sales Order,Partly Billed,一部支払済 DocType: Item,Default BOM,デフォルト部品表 apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,確認のため会社名を再入力してください apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,残高合計 DocType: Time Log Batch,Total Hours,時間合計 DocType: Journal Entry,Printing Settings,印刷設定 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},借方合計は貸方合計に等しくなければなりません。{0}の差があります。 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},借方合計は貸方合計に等しくなければなりません。{0}の差があります。 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,自動車 apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,納品書から DocType: Time Log,From Time,開始時間 @@ -2651,7 +2657,7 @@ DocType: Purchase Invoice Item,Image View,画像を見る DocType: Issue,Opening Time,「時間」を開く apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,期間日付が必要です apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,証券・商品取引所 -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',バリアントのためのデフォルトの単位は '{0}'テンプレートと同じである必要があります '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',バリアントのためのデフォルトの単位は '{0}'テンプレートと同じである必要があります '{1}' DocType: Shipping Rule,Calculate Based On,計算基準 DocType: Delivery Note Item,From Warehouse,倉庫から DocType: Purchase Taxes and Charges,Valuation and Total,評価と総合 @@ -2673,7 +2679,7 @@ DocType: Leave Application,Follow via Email,メール経由でフォロー DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,割引後の税額 apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,このアカウントには子アカウントが存在しています。このアカウントを削除することはできません。 apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,ターゲット数量や目標量のどちらかが必須です -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},アイテム{0}にはデフォルトの部品表が存在しません +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},アイテム{0}にはデフォルトの部品表が存在しません apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,最初の転記日付を選択してください apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,日付を開くと、日付を閉じる前にすべきです DocType: Leave Control Panel,Carry Forward,繰り越す @@ -2750,7 +2756,7 @@ DocType: Leave Type,Is Encash,現金化済 DocType: Purchase Invoice,Mobile No,携帯番号 DocType: Payment Tool,Make Journal Entry,仕訳を作成 DocType: Leave Allocation,New Leaves Allocated,新しい有給休暇 -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,プロジェクトごとのデータは、引用符は使用できません +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,プロジェクトごとのデータは、引用符は使用できません DocType: Project,Expected End Date,終了予定日 DocType: Appraisal Template,Appraisal Template Title,査定テンプレートタイトル apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,営利企業 @@ -2798,6 +2804,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No., apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,指定してください DocType: Offer Letter,Awaiting Response,応答を待っています apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,上記 +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,タイムログは銘打たれています DocType: Salary Slip,Earning & Deduction,収益と控除 apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,アカウント{0}はグループにすることはできません apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,(オプション)この設定は、様々な取引をフィルタリングするために使用されます。 @@ -2868,14 +2875,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,この会社に関連するすべての取引を正常に削除しました! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,基準日 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,試用 -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,在庫アイテムにはデフォルト倉庫が必須です。 +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,在庫アイテムにはデフォルト倉庫が必須です。 apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},{1}年{0}月の給与支払 DocType: Stock Settings,Auto insert Price List rate if missing,空の場合価格表の単価を自動挿入 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,支出額合計 ,Transferred Qty,移転数量 apps/erpnext/erpnext/config/learn.py +11,Navigating,ナビゲート apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,計画 -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,時間ログバッチを作成 +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,時間ログバッチを作成 apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,課題 DocType: Project,Total Billing Amount (via Time Logs),総請求金額(時間ログ経由) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,このアイテムを売る @@ -2883,7 +2890,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,量は、0より大きくなければなりません DocType: Journal Entry,Cash Entry,現金エントリー DocType: Sales Partner,Contact Desc,連絡先説明 -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.",休暇の種類(欠勤・病欠など) +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.",休暇の種類(欠勤・病欠など) DocType: Email Digest,Send regular summary reports via Email.,メール経由で定期的な要約レポートを送信 DocType: Brand,Item Manager,アイテムマネージャ DocType: Cost Center,Add rows to set annual budgets on Accounts.,アカウントの年間予算を設定するために行を追加 @@ -2898,7 +2905,7 @@ DocType: GL Entry,Party Type,当事者タイプ apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,原材料は、メインアイテムと同じにすることはできません DocType: Item Attribute Value,Abbreviation,略語 apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,{0}の限界を超えているので認証されません -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,給与テンプレートマスター +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,給与テンプレートマスター DocType: Leave Type,Max Days Leave Allowed,休暇割当最大日数 apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,ショッピングカート用の税ルールを設定 DocType: Payment Tool,Set Matching Amounts,一致額を設定 @@ -2911,7 +2918,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,リー DocType: Stock Settings,Role Allowed to edit frozen stock,凍結在庫の編集が許可された役割 ,Territory Target Variance Item Group-Wise,地域ターゲット差違(アイテムグループごと) apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,全ての顧客グループ -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0}は必須です。おそらく{1}から {2}のための通貨変換レコードが作成されていません +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0}は必須です。おそらく{1}から {2}のための通貨変換レコードが作成されていません apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,税テンプレートは必須です apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,アカウント{0}:親アカウント{1}が存在しません DocType: Purchase Invoice Item,Price List Rate (Company Currency),価格表単価(会社通貨) @@ -2931,8 +2938,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,アイテムごとの ,Item-wise Price List Rate,アイテムごとの価格表単価 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,サプライヤー見積 DocType: Quotation,In Words will be visible once you save the Quotation.,見積を保存すると表示される表記内。 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1}は停止しています -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},バーコード{0}はアイテム{1}で使用済です +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1}は停止しています +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},バーコード{0}はアイテム{1}で使用済です DocType: Lead,Add to calendar on this date,この日付でカレンダーに追加 apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,送料を追加するためのルール apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,今後のイベント @@ -2958,8 +2965,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling, apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,倉庫は少なくとも1つ必須です DocType: Serial No,Out of Warranty,保証外 DocType: BOM Replace Tool,Replace,置き換え -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},納品書{1}に対する{0} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,デフォルトの単位を入力してください +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},納品書{1}に対する{0} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,デフォルトの単位を入力してください DocType: Purchase Invoice Item,Project Name,プロジェクト名 DocType: Supplier,Mention if non-standard receivable account,非標準の売掛金の場合に記載 DocType: Journal Entry Account,If Income or Expense,収益または費用の場合 @@ -2985,7 +2992,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,会計年度:{0}は存在しません DocType: Currency Exchange,To Currency,通貨 DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,次のユーザーが休暇期間申請を承認することを許可 -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,経費請求タイプ +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,経費請求タイプ DocType: Item,Taxes,税 apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,有料と配信されません DocType: Project,Default Cost Center,デフォルトコストセンター @@ -3015,7 +3022,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},行#{0}:シリアル番号 {1} が {2} {3}と一致しません apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,臨時休暇 DocType: Batch,Batch ID,バッチID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},注:{0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},注:{0} ,Delivery Note Trends,納品書の動向 apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,今週のまとめ apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},行{1}の{0}は仕入または下請アイテムでなければなりません @@ -3055,6 +3062,7 @@ DocType: Project Task,Pending Review,レビュー待ち apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,お支払いには、ここをクリックして DocType: Task,Total Expense Claim (via Expense Claim),総経費請求(経費請求経由) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,顧客ID +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,マーク不在 apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,終了時間は開始時間より大きくなければなりません DocType: Journal Entry Account,Exchange Rate,為替レート apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,受注{0}は提出されていません @@ -3102,7 +3110,7 @@ DocType: Item Group,Default Expense Account,デフォルト経費 DocType: Employee,Notice (days),お知らせ(日) DocType: Tax Rule,Sales Tax Template,販売税テンプレート DocType: Employee,Encashment Date,現金化日 -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry",対伝票タイプは発注・請求書・仕訳のいずれかでなければなりません +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry",対伝票タイプは発注・請求書・仕訳のいずれかでなければなりません DocType: Account,Stock Adjustment,在庫調整 apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},デフォルトの活動コストが活動タイプ - {0} に存在します DocType: Production Order,Planned Operating Cost,予定営業費用 @@ -3156,6 +3164,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,償却エントリ DocType: BOM,Rate Of Materials Based On,資材単価基準 apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,サポート分析 +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,選択をすべて解除 apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},倉庫{0}に「会社」がありません DocType: POS Profile,Terms and Conditions,規約 apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},開始日は会計年度内でなければなりません(もしかして:{0}) @@ -3177,7 +3186,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'",この会計年度をデフォルト値に設定するには、「デフォルトに設定」をクリックしてください apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),サポートメールを受信するサーバのメールIDをセットアップします。 (例 support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,不足数量 -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,アイテムバリエーション{0}は同じ属性で存在しています +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,アイテムバリエーション{0}は同じ属性で存在しています DocType: Salary Slip,Salary Slip,給料明細 apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,「終了日」が必要です DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.",納品する梱包の荷造伝票を生成します。パッケージ番号、内容と重量を通知するために使用します。 @@ -3225,7 +3234,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,リー DocType: Item Attribute Value,Attribute Value,属性値 apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}",メールアドレスは重複できません。すでに{0}に存在しています ,Itemwise Recommended Reorder Level,アイテムごとに推奨される再注文レベル -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,{0}を選択してください +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,{0}を選択してください DocType: Features Setup,To get Item Group in details table,詳細テーブルのアイテムグループを取得する apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,アイテム {1}のバッチ {0} は期限切れです DocType: Sales Invoice,Commission,歩合 @@ -3280,7 +3289,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,未払伝票を取得 DocType: Warranty Claim,Resolved By,課題解決者 DocType: Appraisal,Start Date,開始日 -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,期間に休暇を割り当てる。 +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,期間に休暇を割り当てる。 apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,小切手及び預金が不正にクリア apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,クリックして認証 apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,アカウント{0}:自身を親アカウントに割当することはできません @@ -3300,7 +3309,7 @@ DocType: Employee,Educational Qualification,学歴 DocType: Workstation,Operating Costs,営業費用 DocType: Employee Leave Approver,Employee Leave Approver,従業員休暇承認者 apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} はニュースレターのリストに正常に追加されました -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},行{0}:この倉庫{1}には既に再注文エントリが存在しています +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},行{0}:この倉庫{1}には既に再注文エントリが存在しています apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.",見積が作成されているため、失注を宣言できません DocType: Purchase Taxes and Charges Template,Purchase Master Manager,仕入マスターマネージャー apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,製造指示{0}を提出しなければなりません @@ -3324,7 +3333,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,請求書{0}は提出済です apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,完了日 DocType: Purchase Invoice Item,Amount (Company Currency),額(会社通貨) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,組織単位(部門)マスター。 +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,組織単位(部門)マスター。 apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,有効な携帯電話番号を入力してください DocType: Budget Detail,Budget Detail,予算の詳細 apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,メッセージを入力してください @@ -3340,13 +3349,13 @@ DocType: Purchase Receipt Item,Received and Accepted,受領・承認済 ,Serial No Service Contract Expiry,シリアル番号(サービス契約の有効期限) DocType: Item,Unit of Measure Conversion,数量単位変換 apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,従業員を変更することはできません -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,同じ口座を同時に借方と貸方にすることはできません +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,同じ口座を同時に借方と貸方にすることはできません DocType: Naming Series,Help HTML,HTMLヘルプ apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},割り当てられた重みづけの合計は100%でなければなりません。{0}になっています。 apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},{0}以上の引当金は、アイテム {1}と相殺されています DocType: Address,Name of person or organization that this address belongs to.,このアドレスが所属する個人または組織の名前。 apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,サプライヤー -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,受注が作成されているため、失注にできません +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,受注が作成されているため、失注にできません apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,従業員{1}のための別の給与体系{0}がアクティブです。ステータスを「非アクティブ」にして続行してください。 DocType: Purchase Invoice,Contact,連絡先 apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,から受け取りました @@ -3356,11 +3365,11 @@ DocType: Item,Has Serial No,シリアル番号あり DocType: Employee,Date of Issue,発行日 apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: {1}のための{0}から apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},行#{0}:項目の設定サプライヤー{1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,ウェブサイトのイメージ{0}アイテムに添付{1}が見つかりません +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,ウェブサイトのイメージ{0}アイテムに添付{1}が見つかりません DocType: Issue,Content Type,コンテンツタイプ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,コンピュータ DocType: Item,List this Item in multiple groups on the website.,ウェブサイト上の複数のグループでこのアイテムを一覧表示します。 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,アカウントで他の通貨の使用を可能にするには「複数通貨」オプションをチェックしてください +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,アカウントで他の通貨の使用を可能にするには「複数通貨」オプションをチェックしてください apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,アイテム:{0}はシステムに存在しません apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,凍結された値を設定する権限がありません DocType: Payment Reconciliation,Get Unreconciled Entries,未照合のエントリーを取得 @@ -3370,14 +3379,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,これは何 DocType: Delivery Note,To Warehouse,倉庫 apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},アカウント{0}は会計年度の{1}を複数回入力されました ,Average Commission Rate,平均手数料率 -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,在庫アイテム以外は「シリアル番号あり」を「はい」にすることができません。 +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,在庫アイテム以外は「シリアル番号あり」を「はい」にすることができません。 apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,出勤は将来の日付にマークを付けることができません DocType: Pricing Rule,Pricing Rule Help,価格設定ルールヘルプ DocType: Purchase Taxes and Charges,Account Head,勘定科目 apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,アイテムの陸揚費用を計算するために、追加の費用を更新してください apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,電気 DocType: Stock Entry,Total Value Difference (Out - In),価値差違合計(出 - 入) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,行{0}:為替レートは必須です +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,行{0}:為替レートは必須です apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},従業員{0}のユーザーIDが未設定です。 DocType: Stock Entry,Default Source Warehouse,デフォルトの出庫元倉庫 DocType: Item,Customer Code,顧客コード @@ -3396,15 +3405,15 @@ DocType: Notification Control,Sales Invoice Message,請求書メッセージ apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,アカウント{0}を閉じると、型責任/エクイティのものでなければなりません DocType: Authorization Rule,Based On,参照元 DocType: Sales Order Item,Ordered Qty,注文数 -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,項目{0}が無効になっています +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,項目{0}が無効になっています DocType: Stock Settings,Stock Frozen Upto,在庫凍結 apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},からと期間、繰り返しのために必須の日付までの期間{0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,プロジェクト活動/タスク -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,給与明細を生成 +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,給与明細を生成 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}",適用のためには次のように選択されている場合の購入は、チェックする必要があります{0} apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,割引は100未満でなければなりません DocType: Purchase Invoice,Write Off Amount (Company Currency),償却額(会社通貨) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,行#{0}:再注文数量を設定してください +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,行#{0}:再注文数量を設定してください DocType: Landed Cost Voucher,Landed Cost Voucher,陸揚費用伝票 apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},{0}を設定してください DocType: Purchase Invoice,Repeat on Day of Month,毎月繰り返し @@ -3458,7 +3467,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,デフォルト作業中倉庫 apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,会計処理のデフォルト設定。 apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,予定日は資材要求日の前にすることはできません -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,アイテム{0}は販売アイテムでなければなりません +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,アイテム{0}は販売アイテムでなければなりません DocType: Naming Series,Update Series Number,シリーズ番号更新 DocType: Account,Equity,株式 DocType: Sales Order,Printing Details,印刷詳細 @@ -3510,7 +3519,7 @@ DocType: Task,Review Date,レビュー日 DocType: Purchase Invoice,Advance Payments,前払金 DocType: Purchase Taxes and Charges,On Net Total,差引計 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,{0}列のターゲット倉庫は製造注文と同じでなければなりません。 -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,支払ツールを使用する権限がありません +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,支払ツールを使用する権限がありません apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,%s の繰り返しに「通知メールアドレス」が指定されていません apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,他の通貨を使用してエントリーを作成した後には通貨を変更することができません DocType: Company,Round Off Account,丸め誤差アカウント @@ -3533,7 +3542,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,与えられた原材料の数量から製造/再梱包した後に得られたアイテムの数量 DocType: Payment Reconciliation,Receivable / Payable Account,売掛金/買掛金 DocType: Delivery Note Item,Against Sales Order Item,対受注アイテム -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},属性 {0} の属性値を指定してください +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},属性 {0} の属性値を指定してください DocType: Item,Default Warehouse,デフォルト倉庫 DocType: Task,Actual End Date (via Time Logs),実際の終了日(時間ログ経由) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},グループアカウント{0}に対して予算を割り当てることができません @@ -3558,10 +3567,10 @@ DocType: Lead,Blog Subscriber,ブログ購読者 apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,値に基づいて取引を制限するルールを作成 DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day",チェックした場合、営業日数は全て祝日を含みますが、これにより1日あたりの給与の値は小さくなります DocType: Purchase Invoice,Total Advance,前払金計 -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,給与計算 +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,給与計算 DocType: Opportunity Item,Basic Rate,基本料金 DocType: GL Entry,Credit Amount,貸方金額 -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,失注として設定 +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,失注として設定 apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,支払領収書の注意 DocType: Supplier,Credit Days Based On,与信日数基準 DocType: Tax Rule,Tax Rule,税ルール @@ -3591,7 +3600,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,受入数 apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}:{1}は存在しません apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,顧客あて請求 apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,プロジェクトID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},行番号 {0}:経費請求{1}に対して保留額より大きい額は指定できません。保留額は {2} です +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},行番号 {0}:経費請求{1}に対して保留額より大きい額は指定できません。保留額は {2} です apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0}登録者追加済 DocType: Maintenance Schedule,Schedule,スケジュール DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""",このコストセンターの予算を定義します。予算のアクションを設定するには、「会社リスト」を参照してください @@ -3652,19 +3661,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POSプロフィール DocType: Payment Gateway Account,Payment URL Message,ペイメントURLメッセージ apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.",予算や目標などを設定する期間 -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,行{0}:支払金額は残高を超えることはできません +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,行{0}:支払金額は残高を超えることはできません apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,未払合計 -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,時間ログは請求できません -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants",アイテム{0}はテンプレートです。バリエーションのいずれかを選択してください +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,時間ログは請求できません +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants",アイテム{0}はテンプレートです。バリエーションのいずれかを選択してください apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,購入者 apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,給与をマイナスにすることはできません -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,伝票を入力してください +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,伝票を入力してください DocType: SMS Settings,Static Parameters,静的パラメータ DocType: Purchase Order,Advance Paid,立替金 DocType: Item,Item Tax,アイテムごとの税 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,サプライヤーへの材質 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,消費税の請求書 DocType: Expense Claim,Employees Email Id,従業員メールアドレス +DocType: Employee Attendance Tool,Marked Attendance,マークされた出席 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,流動負債 apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,連絡先にまとめてSMSを送信 DocType: Purchase Taxes and Charges,Consider Tax or Charge for,税金・料金を考慮 @@ -3687,7 +3697,7 @@ DocType: Item Attribute,Numeric Values,数値 apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,ロゴを添付 DocType: Customer,Commission Rate,手数料率 apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,バリエーション作成 -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,部門別休暇申請 +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,部門別休暇申請 apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,カートは空です DocType: Production Order,Actual Operating Cost,実際の営業費用 apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,ルートを編集することはできません @@ -3706,7 +3716,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,量がこのレベルを下回った場合、自動的に資材要求を作成します ,Item-wise Purchase Register,アイテムごとの仕入登録 DocType: Batch,Expiry Date,有効期限 -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item",再注文のレベルを設定するには、アイテムは、購買アイテムや製造項目でなければなりません +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item",再注文のレベルを設定するには、アイテムは、購買アイテムや製造項目でなければなりません ,Supplier Addresses and Contacts,サプライヤー住所・連絡先 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,カテゴリを選択してください apps/erpnext/erpnext/config/projects.py +18,Project master.,プロジェクトマスター diff --git a/erpnext/translations/km.csv b/erpnext/translations/km.csv index 4fa5aef3f5..bc7b2710a7 100644 --- a/erpnext/translations/km.csv +++ b/erpnext/translations/km.csv @@ -4,9 +4,11 @@ DocType: Employee,Divorced,លែងលះគ្នា apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +81,Warning: Same item has been entered multiple times.,ព្រមាន & ‧;: ធាតុដូចគ្នាត្រូវបានបញ្ចូលច្រើនដង។ apps/erpnext/erpnext/hub_node/doctype/hub_settings/hub_settings.py +96,Items already synced,ធាតុដែលបានធ្វើសមកាលកម្មរួចទៅហើយ DocType: Buying Settings,Allow Item to be added multiple times in a transaction,អនុញ្ញាតឱ្យធាតុនឹងត្រូវបានបន្ថែមជាច្រើនដងនៅក្នុងប្រតិបត្តិការ +apps/erpnext/erpnext/support/doctype/warranty_claim/warranty_claim.py +33,Cancel Material Visit {0} before cancelling this Warranty Claim,បោះបង់ {0} ទស្សនកិច្ចនៅមុនពេលលុបចោលសំភារៈបណ្តឹងធានានេះ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +19,Consumer Products,ផលិតផលទំនិញប្រើប្រាស់ apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +68,Please select Party Type first,សូមជ្រើសប្រភេទបក្សទីមួយ DocType: Item,Customer Items,ធាតុអតិថិជន +apps/erpnext/erpnext/accounts/doctype/account/account.py +48,Account {0}: Parent account {1} can not be a ledger,គណនី {0}: គណនីមាតាបិតា {1} មិនអាចជាសៀវភៅមួយ DocType: Item,Publish Item to hub.erpnext.com,បោះពុម្ពផ្សាយធាតុទៅ hub.erpnext.com apps/erpnext/erpnext/config/setup.py +93,Email Notifications,ការជូនដំណឹងអ៊ីមែល DocType: Item,Default Unit of Measure,អង្គភាពលំនាំដើមនៃវិធានការ @@ -18,6 +20,7 @@ DocType: POS Profile,Applicable for User,អាចប្រើប្រាស់ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +169,"Stopped Production Order cannot be cancelled, Unstop it first to cancel",បញ្ឈប់ការបញ្ជាទិញផលិតផលដែលមិនអាចត្រូវបានលុបចោលឮវាជាលើកដំបូងដើម្បីបោះបង់ DocType: Sales Taxes and Charges Template,* Will be calculated in the transaction.,* នឹងត្រូវបានគណនាក្នុងប្រតិបត្តិការនេះ។ DocType: Purchase Order,Customer Contact,ទំនាក់ទំនងអតិថិជន +apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +37,{0} Tree,ដើមឈើ {0} DocType: Job Applicant,Job Applicant,ការងារដែលអ្នកដាក់ពាក្យសុំ apps/erpnext/erpnext/hub_node/page/hub/hub_body.html +18,No more results.,មិនមានលទ្ធផលជាច្រើនទៀត។ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +34,Legal,ផ្នែកច្បាប់ @@ -26,6 +29,7 @@ DocType: Purchase Receipt Item,Required By,ដែលបានទាមទារ DocType: Delivery Note,Return Against Delivery Note,ការវិលត្រឡប់ពីការប្រឆាំងនឹងការផ្តល់ចំណាំ DocType: Department,Department,នាយកដ្ឋាន DocType: Purchase Order,% Billed,% billed +apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +43,Exchange Rate must be same as {0} {1} ({2}),អត្រាប្តូរប្រាក់ត្រូវតែមានដូចគ្នា {0} {1} ({2}) DocType: Sales Invoice,Customer Name,ឈ្មោះអតិថិជន DocType: Features Setup,"All export related fields like currency, conversion rate, export total, export grand total etc are available in Delivery Note, POS, Quotation, Sales Invoice, Sales Order etc.","ទាក់ទងនឹងការនាំចេញទាំងអស់គ្នាប្រៀបដូចជាវាលរូបិយប័ណ្ណអត្រានៃការប្តូសរុបនៃការនាំចេញការនាំចេញលសរុបគឺមាននៅក្នុងការចំណាំដឹកជញ្ជូនម៉ាស៊ីនឆូតកាត, សម្រង់, ការលក់វិក័យប័ត្រ, ការលក់លំដាប់ល" DocType: Account,Heads (or groups) against which Accounting Entries are made and balances are maintained.,ក្បាល (ឬក្រុម) ប្រឆាំងនឹងធាតុគណនេយ្យនិងតុល្យភាពត្រូវបានធ្វើឡើងត្រូវបានរក្សា។ @@ -55,9 +59,11 @@ DocType: Purchase Invoice,Monthly,ប្រចាំខែ apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +66,Delay in payment (Days),ពន្យាពេលក្នុងការទូទាត់ (ថ្ងៃ) apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +612,Invoice,វិក័យប័ត្រ DocType: Maintenance Schedule Item,Periodicity,រយៈពេល +apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +20,Fiscal Year {0} is required,ឆ្នាំសារពើពន្ធ {0} ត្រូវបានទាមទារ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +21,Defense,ការពារជាតិ DocType: Company,Abbr,Abbr DocType: Appraisal Goal,Score (0-5),ពិន្ទុ (0-5) +apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +74,Row # {0}:,ជួរដេក # {0}: DocType: Delivery Note,Vehicle No,គ្មានយានយន្ត apps/erpnext/erpnext/public/js/pos/pos.js +549,Please select Price List,សូមជ្រើសតារាងតម្លៃ DocType: Production Order Operation,Work In Progress,ការងារក្នុងវឌ្ឍនភាព @@ -70,8 +76,11 @@ DocType: Time Log,"Log of Activities performed by users against Tasks that can b ,Sales Partners Commission,គណៈកម្មាធិការលក់ដៃគូ apps/erpnext/erpnext/setup/doctype/company/company.py +32,Abbreviation cannot have more than 5 characters,អក្សរកាត់មិនអាចមានច្រើនជាង 5 តួអក្សរ DocType: Payment Request,Payment Request,ស្នើសុំការទូទាត់ +apps/erpnext/erpnext/stock/doctype/item_attribute/item_attribute.py +56,"Attribute Value {0} cannot be removed from {1} as Item Variants \ + exist with this Attribute.",តម្លៃគុណលក្ខណៈ {0} មិនអាចត្រូវបានយកចេញពី {1} ជាធាតុវ៉ារ្យ៉ង់ \ មានដែលមានគុណលក្ខណៈនេះ។ apps/erpnext/erpnext/accounts/doctype/account/account.js +27,This is a root account and cannot be edited.,នេះគឺជាគណនី root និងមិនអាចត្រូវបានកែសម្រួល។ DocType: BOM,Operations,ប្រតិបត្ដិការ +apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +38,Cannot set authorization on basis of Discount for {0},មិនអាចកំណត់ការអនុញ្ញាតនៅលើមូលដ្ឋាននៃការបញ្ចុះតម្លៃសម្រាប់ {0} DocType: Bin,Quantity Requested for Purchase,បរិមាណដែលបានស្នើសម្រាប់ការទិញ DocType: Rename Tool,"Attach .csv file with two columns, one for the old name and one for the new name",ភ្ជាប់ឯកសារ .csv ដែលមានជួរឈរពីរសម្រាប់ឈ្មោះចាស់និងមួយសម្រាប់ឈ្មោះថ្មី DocType: Packed Item,Parent Detail docname,ពត៌មានលំអិតរបស់ឪពុកម្តាយ docname @@ -83,6 +92,7 @@ apps/erpnext/erpnext/public/js/stock_analytics.js +63,Select Warehouse...,ជ្ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +6,Advertising,ការផ្សព្វផ្សាយពាណិជ្ជកម្ម apps/erpnext/erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py +22,Same Company is entered more than once,ក្រុមហ៊ុនដូចគ្នាត្រូវបានបញ្ចូលច្រើនជាងម្ដង DocType: Employee,Married,រៀបការជាមួយ +apps/erpnext/erpnext/accounts/party.py +38,Not permitted for {0},មិនត្រូវបានអនុញ្ញាតសម្រាប់ {0} apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +441,Get items from,ទទួលបានធាតុពី DocType: Payment Reconciliation,Reconcile,សម្របសម្រួល apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +30,Grocery,គ្រឿងទេស @@ -140,10 +150,11 @@ DocType: Production Order Operation,Show Time Logs,បង្ហាញកំណ DocType: Journal Entry Account,Credit in Company Currency,ឥណទានក្នុងក្រុមហ៊ុនរូបិយប័ណ្ណ DocType: Delivery Note,Installation Status,ស្ថានភាពនៃការដំឡើង DocType: Item,Supply Raw Materials for Purchase,ការផ្គត់ផ្គង់សម្ភារៈសម្រាប់ការទិញសាច់ឆៅ +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,ធាតុ {0} ត្រូវតែជាធាតុទិញ DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records",ទាញយកទំព័រគំរូបំពេញទិន្នន័យត្រឹមត្រូវហើយភ្ជាប់ឯកសារដែលបានកែប្រែ។ កាលបរិច្ឆេទនិងបុគ្គលិកទាំងអស់រួមបញ្ចូលគ្នានៅក្នុងរយៈពេលដែលបានជ្រើសនឹងមកនៅក្នុងពុម្ពដែលមានស្រាប់ជាមួយនឹងកំណត់ត្រាវត្តមាន DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,នឹងត្រូវបានបន្ថែមបន្ទាប់ពីមានវិក័យប័ត្រលក់ត្រូវបានដាក់ស្នើ។ -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,ការកំណត់សម្រាប់ម៉ូឌុលធនធានមនុស្ស +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,ការកំណត់សម្រាប់ម៉ូឌុលធនធានមនុស្ស DocType: SMS Center,SMS Center,ផ្ញើសារជាអក្សរមជ្ឈមណ្ឌល DocType: BOM Replace Tool,New BOM,Bom ដែលថ្មី apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,កំណត់ហេតុជាបាច់សម្រាប់វិក័យប័ត្រវេលាម៉ោង។ @@ -156,18 +167,20 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +26,The first user will become th apps/erpnext/erpnext/config/manufacturing.py +39,Details of the operations carried out.,ពត៌មានលំអិតនៃការប្រតិបត្ដិការនេះបានអនុវត្ត។ DocType: Serial No,Maintenance Status,ស្ថានភាពថែទាំ apps/erpnext/erpnext/config/stock.py +258,Items and Pricing,ធាតុនិងតម្លៃ +apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +39,From Date should be within the Fiscal Year. Assuming From Date = {0},ពីកាលបរិច្ឆេទគួរជានៅក្នុងឆ្នាំសារពើពន្ធ។ សន្មត់ថាពីកាលបរិច្ឆេទ = {0} DocType: Appraisal,Select the Employee for whom you are creating the Appraisal.,ជ្រើសនិយោជិតដែលអ្នកកំពុងបង្កើតវាយតម្លៃនេះ។ DocType: Customer,Individual,បុគគល apps/erpnext/erpnext/config/support.py +23,Plan for maintenance visits.,ផែនការសម្រាប់ការមើលថែទាំ។ DocType: SMS Settings,Enter url parameter for message,បញ្ចូលប៉ារ៉ាម៉ែត្រ URL សម្រាប់សារ apps/erpnext/erpnext/config/selling.py +148,Rules for applying pricing and discount.,ក្បួនសម្រាប់ការដាក់ពាក្យសុំការកំណត់តម្លៃនិងការបញ្ចុះតម្លៃ។ apps/erpnext/erpnext/stock/doctype/price_list/price_list.py +14,Price List must be applicable for Buying or Selling,បញ្ជីតម្លៃត្រូវតែមានការអនុវត្តសម្រាប់ទិញឬលក់ +apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.py +81,Installation date cannot be before delivery date for Item {0},កាលបរិច្ឆេទដំឡើងមិនអាចជាមុនកាលបរិច្ឆេទចែកចាយសម្រាប់ធាតុ {0} DocType: Pricing Rule,Discount on Price List Rate (%),ការបញ្ចុះតំលៃលើតំលៃអត្រាបញ្ជី (%) DocType: Offer Letter,Select Terms and Conditions,ជ្រើសលក្ខខណ្ឌ DocType: Production Planning Tool,Sales Orders,ការបញ្ជាទិញការលក់ DocType: Purchase Taxes and Charges,Valuation,ការវាយតម្លៃ ,Purchase Order Trends,ទិញលំដាប់និន្នាការ -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,បម្រុងទុកស្លឹកសម្រាប់ឆ្នាំនេះ។ +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,បម្រុងទុកស្លឹកសម្រាប់ឆ្នាំនេះ។ DocType: Earning Type,Earning Type,ប្រភេទការរកប្រាក់ចំណូល DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,បិទការធ្វើផែនការតាមដានម៉ោងសមត្ថភាពនិង DocType: Bank Reconciliation,Bank Account,គណនីធនាគារ @@ -175,6 +188,7 @@ DocType: Leave Type,Allow Negative Balance,អនុញ្ញាតឱ្យម DocType: Selling Settings,Default Territory,ដែនដីលំនាំដើម apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +53,Television,ទូរទស្សន៏ DocType: Production Order Operation,Updated via 'Time Log',ធ្វើឱ្យទាន់សម័យតាមរយៈ "ពេលវេលាកំណត់ហេតុ ' +apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +82,Account {0} does not belong to Company {1},គណនី {0} មិនមែនជាកម្មសិទ្ធិរបស់ក្រុមហ៊ុន {1} DocType: Naming Series,Series List for this Transaction,បញ្ជីស៊េរីសម្រាប់ប្រតិបត្តិការនេះ DocType: Sales Invoice,Is Opening Entry,ត្រូវការបើកចូល DocType: Customer Group,Mention if non-standard receivable account applicable,និយាយបានបើគណនីដែលមិនមែនជាស្តង់ដាទទួលអនុវត្តបាន @@ -187,6 +201,7 @@ DocType: Delivery Note Item,Against Sales Invoice Item,ការប្រឆា apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +37,Net Cash from Financing,សាច់ប្រាក់សុទ្ធពីការផ្តល់ហិរញ្ញប្បទាន DocType: Lead,Address & Contact,អាសយដ្ឋានទំនាក់ទំនង DocType: Leave Allocation,Add unused leaves from previous allocations,បន្ថែមស្លឹកដែលមិនបានប្រើពីការបែងចែកពីមុន +apps/erpnext/erpnext/controllers/recurring_document.py +208,Next Recurring {0} will be created on {1},កើតឡើងបន្ទាប់ {0} នឹងត្រូវបានបង្កើតនៅលើ {1} DocType: Newsletter List,Total Subscribers,អតិថិជនសរុប ,Contact Name,ឈ្មោះទំនាក់ទំនង DocType: Production Plan Item,SO Pending Qty,សូដែលមិនទាន់បាន Qty @@ -197,6 +212,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +173,Only apps/erpnext/erpnext/hr/doctype/employee/employee.py +114,Relieving Date must be greater than Date of Joining,បន្ថយកាលបរិច្ឆេទត្រូវតែធំជាងកាលបរិច្ឆេទនៃការចូលរួម apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +172,Leaves per Year,ស្លឹកមួយឆ្នាំ DocType: Time Log,Will be updated when batched.,នឹងត្រូវបានបន្ថែមពេល batched ។ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +104,Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry.,ជួរដេក {0}: សូមពិនិត្យមើលតើជាមុនប្រឆាំងគណនី {1} ប្រសិនបើនេះជាធាតុជាមុន។ DocType: Item Website Specification,Item Website Specification,បញ្ជាក់ធាតុគេហទំព័រ DocType: Payment Tool,Reference No,សេចក្តីយោងគ្មាន apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,ទុកឱ្យទប់ស្កាត់ @@ -211,9 +227,11 @@ DocType: Item,Minimum Order Qty,អប្បរមាលំដាប់ Qty DocType: Pricing Rule,Supplier Type,ប្រភេទក្រុមហ៊ុនផ្គត់ផ្គង់ DocType: Item,Publish in Hub,បោះពុម្ពផ្សាយនៅក្នុងមជ្ឈមណ្ឌល ,Terretory,Terretory +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,ធាតុ {0} ត្រូវបានលុបចោល apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,សម្ភារៈស្នើសុំ DocType: Bank Reconciliation,Update Clearance Date,ធ្វើឱ្យទាន់សម័យបោសសំអាតកាលបរិច្ឆេទ DocType: Item,Purchase Details,ពត៌មានលំអិតទិញ +apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +325,Item {0} not found in 'Raw Materials Supplied' table in Purchase Order {1},ធាតុ {0} មិនត្រូវបានរកឃើញនៅក្នុង 'វត្ថុធាតុដើមការី "តារាងក្នុងការទិញលំដាប់ {1} DocType: Employee,Relation,ការទំនាក់ទំនង DocType: Shipping Rule,Worldwide Shipping,ការដឹកជញ្ជូននៅទូទាំងពិភពលោក apps/erpnext/erpnext/config/selling.py +23,Confirmed orders from Customers.,ការបញ្ជាទិញបានបញ្ជាក់អះអាងពីអតិថិជន។ @@ -221,9 +239,11 @@ DocType: Purchase Receipt Item,Rejected Quantity,បរិមាណដែលត DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","វាលដែលមាននៅក្នុងការចំណាំដឹកជញ្ជូនសម្រង់, ការលក់វិក័យប័ត្រ, សណ្តាប់ធ្នាប់ការលក់" DocType: SMS Settings,SMS Sender Name,ឈ្មោះរបស់អ្នកផ្ញើសារជាអក្សរ DocType: Contact,Is Primary Contact,តើការទំនាក់ទំនងបឋមសិក្សា +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,កំណត់ហេតុពេលវេលាត្រូវបាន Batched សម្រាប់វិក័យប័ត្រ DocType: Notification Control,Notification Control,សេចក្តីជូនដំណឹងស្តីពីការត្រួតពិនិត្យ DocType: Lead,Suggestions,ការផ្តល់យោបល់ DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,ធាតុសំណុំថវិកាគ្រុបប្រាជ្ញានៅលើទឹកដីនេះ។ អ្នកក៏អាចរួមបញ្ចូលរដូវកាលដោយការកំណត់ការចែកចាយនេះ។ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},ការទូទាត់ប្រឆាំងនឹង {0} {1} មិនអាចត្រូវបានធំជាងឆ្នើមចំនួន {2} DocType: Supplier,Address HTML,អាសយដ្ឋានរបស់ HTML DocType: Lead,Mobile No.,លេខទូរស័ព្ទចល័ត DocType: Maintenance Schedule,Generate Schedule,បង្កើតកាលវិភាគ @@ -251,9 +271,10 @@ DocType: Newsletter,Newsletter,ព្រឹត្តិប័ត្រព័ត DocType: Stock Settings,Notify by Email on creation of automatic Material Request,ជូនដំណឹងដោយអ៊ីមែលនៅលើការបង្កើតសម្ភារៈស្នើសុំដោយស្វ័យប្រវត្តិ DocType: Journal Entry,Multi Currency,រូបិយប័ណ្ណពហុ DocType: Payment Reconciliation Invoice,Invoice Type,ប្រភេទវិក័យប័ត្រ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,ដឹកជញ្ជូនចំណាំ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,ដឹកជញ្ជូនចំណាំ apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,ការរៀបចំពន្ធ apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,ចូលការទូទាត់ត្រូវបានកែប្រែបន្ទាប់ពីអ្នកបានទាញវា។ សូមទាញវាម្តងទៀត។ +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} បានចូលពីរដងនៅក្នុងការប្រមូលពន្ធលើធាតុ apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,សង្ខេបសម្រាប់សប្តាហ៍នេះនិងសកម្មភាពដែលមិនទាន់សម្រេច DocType: Workstation,Rent Cost,ការចំណាយជួល apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,សូមជ្រើសខែនិងឆ្នាំ @@ -264,12 +285,15 @@ DocType: Shipping Rule,Valid for Countries,សុពលភាពសម្រា DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","ទាក់ទងនឹងការនាំចូលទាំងអស់គ្នាប្រៀបដូចជាវាលរូបិយប័ណ្ណអត្រានៃការប្តូសរុបការនាំចូល, ការនាំចូលលសរុបគឺមាននៅក្នុងបង្កាន់ដៃទិញ, សម្រង់ហាងទំនិញ, ការទិញវិក័យប័ត្រ, ការទិញលំដាប់ល" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,ធាតុនេះគឺជាគំរូមួយនិងមិនអាចត្រូវបានប្រើនៅក្នុងការតិបត្តិការ។ គុណលក្ខណៈធាតុនឹងត្រូវបានចម្លងចូលទៅក្នុងវ៉ារ្យ៉ង់នោះទេលុះត្រាតែ 'គ្មាន' ចម្លង 'ត្រូវបានកំណត់ apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,ចំនួនសរុបត្រូវបានចាត់ទុកថាសណ្តាប់ធ្នាប់ -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).",រចនាបុគ្គលិក (ឧនាយកប្រតិបត្តិនាយកជាដើម) ។ +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).",រចនាបុគ្គលិក (ឧនាយកប្រតិបត្តិនាយកជាដើម) ។ apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,សូមបញ្ចូល 'ធ្វើម្តងទៀតនៅថ្ងៃនៃខែ' តម្លៃវាល DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,អត្រាដែលរូបិយវត្ថុរបស់អតិថិជនត្រូវបានបម្លែងទៅជារូបិយប័ណ្ណមូលដ្ឋានរបស់អតិថិជន DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","ដែលមាននៅក្នុង Bom, ដឹកជញ្ជូនចំណាំ, ការទិញវិក័យប័ត្រ, ការបញ្ជាទិញផលិតផល, ការទិញលំដាប់, ទទួលទិញ, លក់វិក័យប័ត្រ, ការលក់លំដាប់, ហ៊ុនធាតុ, Timesheet" DocType: Item Tax,Tax Rate,អត្រាអាករ +apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +54,{0} already allocated for Employee {1} for period {2} to {3},{0} បម្រុងទុកសម្រាប់បុគ្គលិក {1} សម្រាប់រយៈពេល {2} ទៅ {3} apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +644,Select Item,ជ្រើសធាតុ +apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +150,"Item: {0} managed batch-wise, can not be reconciled using \ + Stock Reconciliation, instead use Stock Entry","ធាតុ: {0} គ្រប់គ្រងបាច់ប្រាជ្ញា, មិនអាចត្រូវបានផ្សះផ្សាដោយប្រើ \ ហ៊ុនផ្សះផ្សាជំនួសឱ្យការប្រើការចូលហ៊ុន" apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +65,Convert to non-Group,បម្លែងទៅនឹងការមិនគ្រុប apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +55,Purchase Receipt must be submitted,ទទួលទិញត្រូវតែត្រូវបានដាក់ជូន apps/erpnext/erpnext/config/stock.py +53,Batch (lot) of an Item.,បាច់ (ច្រើន) នៃវត្ថុមួយ។ @@ -303,7 +327,7 @@ DocType: Landed Cost Item,Applicable Charges,ការចោទប្រកា DocType: Workstation,Consumable Cost,ការចំណាយរបស់អតិថិជនបាន DocType: Purchase Receipt,Vehicle Date,កាលបរិច្ឆេទយានយន្ត apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,ពេទ្យ -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,ហេតុផលសម្រាប់ការសម្រក +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,ហេតុផលសម្រាប់ការសម្រក apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,ឱកាសការងារ DocType: Employee,Single,នៅលីវ DocType: Issue,Attachment,ឯកសារភ្ជាប់ @@ -314,6 +338,7 @@ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py DocType: Journal Entry Account,Sales Order,សណ្តាប់ធ្នាប់ការលក់ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +67,Avg. Selling Rate,ជាមធ្យម។ អត្រាការលក់ DocType: Purchase Order,Start date of current order's period,ការចាប់ផ្តើមកាលបរិច្ឆេទនៃការបញ្ជាទិញនាពេលបច្ចុប្បន្នរបស់រយៈពេល +apps/erpnext/erpnext/utilities/transaction_base.py +131,Quantity cannot be a fraction in row {0},បរិមាណមិនអាចមានចំណែកក្នុងជួរដេកមួយ {0} DocType: Purchase Invoice Item,Quantity and Rate,បរិមាណនិងអត្រាការប្រាក់ DocType: Delivery Note,% Installed,% ដែលបានដំឡើង apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +59,Please enter company name first,សូមបញ្ចូលឈ្មោះរបស់ក្រុមហ៊ុនដំបូង @@ -329,13 +354,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,ឆានែលដៃគូ DocType: Account,Old Parent,ឪពុកម្តាយចាស់ DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,ប្ដូរតាមបំណងអត្ថបទណែនាំដែលទៅជាផ្នែកមួយនៃអ៊ីម៉ែលមួយ។ ប្រតិបត្តិការគ្នាមានអត្ថបទណែនាំមួយដាច់ដោយឡែក។ +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),មិនរួមបញ្ចូលនិមិត្តសញ្ញា (អតីត $) ។ DocType: Sales Taxes and Charges Template,Sales Master Manager,កម្មវិធីគ្រប់គ្រងលោកគ្រូការលក់ apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,ការកំណត់សកលសម្រាប់ដំណើរការផលិតទាំងអស់។ DocType: Accounts Settings,Accounts Frozen Upto,រីករាយជាមួយនឹងទឹកកកគណនី DocType: SMS Log,Sent On,ដែលបានផ្ញើនៅថ្ងៃ +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,គុណលក្ខណៈ {0} បានជ្រើសរើសច្រើនដងក្នុងតារាងគុណលក្ខណៈ DocType: HR Settings,Employee record is created using selected field. ,កំណត់ត្រាបុគ្គលិកត្រូវបានបង្កើតដោយប្រើវាលដែលបានជ្រើស។ DocType: Sales Order,Not Applicable,ដែលមិនអាចអនុវត្តបាន -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,ចៅហ្វាយថ្ងៃឈប់សម្រាក។ +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,ចៅហ្វាយថ្ងៃឈប់សម្រាក។ DocType: Material Request Item,Required Date,កាលបរិច្ឆេទដែលបានទាមទារ DocType: Delivery Note,Billing Address,វិក័យប័ត្រអាសយដ្ឋាន apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,សូមបញ្ចូលលេខកូដធាតុ។ @@ -367,10 +394,11 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +88,Administrative O DocType: Payment Tool,Received Or Paid,ទទួលបានការឬបង់ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +318,Please select Company,សូមជ្រើសរើសក្រុមហ៊ុន DocType: Stock Entry,Difference Account,គណនីមានភាពខុសគ្នា +apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its dependant task {0} is not closed.,មិនអាចភារកិច្ចជិតស្និទ្ធដូចជាការពឹងផ្អែករបស់ខ្លួនមានភារកិច្ច {0} គឺមិនត្រូវបានបិទ។ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,សូមបញ្ចូលឃ្លាំងដែលសម្ភារៈស្នើសុំនឹងត្រូវបានលើកឡើង DocType: Production Order,Additional Operating Cost,ចំណាយប្រតិបត្តិការបន្ថែម apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,គ្រឿងសំអាង -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items",រួមបញ្ចូលគ្នានោះមានលក្ខណៈសម្បត្តិដូចខាងក្រោមនេះត្រូវដូចគ្នាសម្រាប់ធាតុទាំងពីរ +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items",រួមបញ្ចូលគ្នានោះមានលក្ខណៈសម្បត្តិដូចខាងក្រោមនេះត្រូវដូចគ្នាសម្រាប់ធាតុទាំងពីរ DocType: Shipping Rule,Net Weight,ទំងន់សុទ្ធ DocType: Employee,Emergency Phone,ទូរស័ព្ទសង្រ្គោះបន្ទាន់ ,Serial No Warranty Expiry,គ្មានផុតកំណត់ការធានាសៀរៀល @@ -418,22 +446,25 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,វិក័យប័ត្រនិងការដឹកជញ្ជូនស្ថានភាព apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,អតិថិជនម្តងទៀត DocType: Leave Control Panel,Allocate,ការបម្រុងទុក -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,ត្រឡប់មកវិញការលក់ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,ត្រឡប់មកវិញការលក់ DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,ជ្រើសការបញ្ជាទិញលក់ដែលអ្នកចង់បង្កើតការបញ្ជាទិញផលិតកម្ម។ DocType: Item,Delivered by Supplier (Drop Ship),ថ្លែងដោយហាងទំនិញ (ទម្លាក់នាវា) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,សមាសភាគប្រាក់បៀវត្ស។ +apps/erpnext/erpnext/config/hr.py +128,Salary components.,សមាសភាគប្រាក់បៀវត្ស។ apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,មូលដ្ឋានទិន្នន័យរបស់អតិថិជនសក្តានុពល។ DocType: Authorization Rule,Customer or Item,អតិថិជនឬធាតុ apps/erpnext/erpnext/config/crm.py +17,Customer database.,មូលដ្ឋានទិន្នន័យរបស់អតិថិជន។ DocType: Quotation,Quotation To,សម្រង់ដើម្បី DocType: Lead,Middle Income,ប្រាក់ចំណូលពាក់កណ្តាល apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),ពិធីបើក (Cr) +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,ឯកតាលំនាំដើមសម្រាប់ធាតុវិធានការ {0} មិនអាចត្រូវបានផ្លាស់ប្តូរដោយផ្ទាល់ដោយសារតែអ្នកបានធ្វើប្រតិបត្តិការមួយចំនួន (s) ដែលមាន UOM មួយទៀតរួចទៅហើយ។ អ្នកនឹងត្រូវការដើម្បីបង្កើតធាតុថ្មីមួយក្នុងការប្រើ UOM លំនាំដើមផ្សេងគ្នា។ apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,ចំនួនទឹកប្រាក់ដែលបានបម្រុងទុកសម្រាប់មិនអាចជាអវិជ្ជមាន DocType: Purchase Order Item,Billed Amt,វិក័យប័ត្រ AMT DocType: Warehouse,A logical Warehouse against which stock entries are made.,មួយឃ្លាំងសមប្រឆាំងនឹងធាតុដែលភាគហ៊ុនត្រូវបានធ្វើឡើង។ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +92,Reference No & Reference Date is required for {0},សេចក្តីយោង & ទេយោងកាលបរិច្ឆេទត្រូវបានទាមទារសម្រាប់ {0} DocType: Sales Invoice,Customer's Vendor,អតិថិជនរបស់អ្នកលក់ apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +212,Production Order is Mandatory,ផលិតកម្មលំដាប់គឺចាំបាច់ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +139,Proposal Writing,ការសរសេរសំណើរ +apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +35,Another Sales Person {0} exists with the same Employee id,បុគ្គលលក់មួយផ្សេងទៀត {0} មានដែលមានលេខសម្គាល់និយោជិតដូចគ្នា DocType: Fiscal Year Company,Fiscal Year Company,ក្រុមហ៊ុនឆ្នាំសារពើពន្ធ DocType: Packing Slip Item,DN Detail,ពត៌មានលំអិត DN DocType: Time Log,Billed,ផ្សព្វផ្សាយ @@ -443,13 +474,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,ពន្ធលក់និងក DocType: Employee,Organization Profile,ពត៌មានរបស់អង្គការ apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,សូមរៀបចំការចំនួនស៊េរីសម្រាប់ការចូលរួមតាមរយៈការរៀបចំ> លេខរៀងកម្រងឯកសារ DocType: Employee,Reason for Resignation,ហេតុផលសម្រាប់ការលាលែងពីតំណែង -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,ការវាយតម្លៃការងារសម្រាប់ពុម្ព។ +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,ការវាយតម្លៃការងារសម្រាប់ពុម្ព។ DocType: Payment Reconciliation,Invoice/Journal Entry Details,វិក័យប័ត្រ / ធាតុទិនានុប្បវត្តិពត៌មានលំអិត +apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' មិនមែននៅក្នុងឆ្នាំសារពើពន្ធ {2} DocType: Buying Settings,Settings for Buying Module,ម៉ូឌុលការកំណត់សម្រាប់ការទិញ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,សូមបញ្ចូលបង្កាន់ដៃទិញលើកដំបូង DocType: Buying Settings,Supplier Naming By,ដាក់ឈ្មោះអ្នកផ្គត់ផ្គង់ដោយ DocType: Activity Type,Default Costing Rate,អត្រាផ្សារលំនាំដើម -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,កាលវិភាគថែទាំ +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,កាលវិភាគថែទាំ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","បន្ទាប់មក Pricing ក្បួនត្រូវបានត្រងចេញដោយផ្អែកលើអតិថិជន, ក្រុមអតិថិជនដែនដី, ហាងទំនិញ, ប្រភេទហាងទំនិញ, យុទ្ធនាការ, ការលក់ដៃគូល" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,ការផ្លាស់ប្តូរសុទ្ធនៅសារពើភ័ណ្ឌ DocType: Employee,Passport Number,លេខលិខិតឆ្លងដែន @@ -460,6 +492,7 @@ apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not DocType: Sales Person,Sales Person Targets,ការលក់មនុស្សគោលដៅ DocType: Production Order Operation,In minutes,នៅក្នុងនាទី DocType: Issue,Resolution Date,ការដោះស្រាយកាលបរិច្ឆេទ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +676,Please set default Cash or Bank account in Mode of Payment {0},សូមកំណត់លំនាំដើមឬគណនីសាច់ប្រាក់របស់ធនាគារក្នុងរបៀបនៃការទូទាត់ {0} DocType: Selling Settings,Customer Naming By,ឈ្មោះអតិថិជនដោយ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +69,Convert to Group,បម្លែងទៅជាក្រុម DocType: Activity Cost,Activity Type,ប្រភេទសកម្មភាព @@ -473,6 +506,7 @@ apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_re DocType: Company,Round Off Cost Center,បិទការប្រកួតជុំមជ្ឈមណ្ឌលការចំណាយ DocType: Material Request,Material Transfer,សម្ភារៈសេវាផ្ទេរប្រាក់ apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +56,Opening (Dr),ពិធីបើក (លោកបណ្ឌិត) +apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +39,Posting timestamp must be after {0},ត្រាពេលវេលាប្រកាសត្រូវតែមានបន្ទាប់ {0} DocType: Landed Cost Taxes and Charges,Landed Cost Taxes and Charges,ពន្ធទូកចោទប្រកាន់ចំនាយ DocType: Production Order Operation,Actual Start Time,ជាក់ស្តែងពេលវេលាចាប់ផ្ដើម DocType: BOM Operation,Operation Time,ប្រតិបត្ដិការពេលវេលា @@ -484,7 +518,7 @@ DocType: Purchase Invoice,Quarterly,ប្រចាំត្រីមាស DocType: Selling Settings,Delivery Note Required,ត្រូវការដឹកជញ្ជូនចំណាំ DocType: Sales Order Item,Basic Rate (Company Currency),អត្រាការប្រាក់មូលដ្ឋាន (ក្រុមហ៊ុនរូបិយវត្ថុ) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush វត្ថុធាតុដើមដែលមានមូលដ្ឋាននៅលើ -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,សូមបញ្ចូលសេចក្ដីលម្អិតធាតុ +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,សូមបញ្ចូលសេចក្ដីលម្អិតធាតុ DocType: Purchase Receipt,Other Details,ពត៌មានលំអិតផ្សេងទៀត DocType: Account,Accounts,គណនី apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,ទីផ្សារ @@ -497,14 +531,15 @@ DocType: Employee,Provide email id registered in company,ផ្តល់ជូ DocType: Hub Settings,Seller City,ទីក្រុងអ្នកលក់ DocType: Email Digest,Next email will be sent on:,អ៊ីម៉ែលបន្ទាប់នឹងត្រូវបានផ្ញើនៅលើ: DocType: Offer Letter Term,Offer Letter Term,ផ្តល់ជូននូវលិខិតអាណត្តិ -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,ធាតុមានវ៉ារ្យ៉ង់។ +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,ធាតុមានវ៉ារ្យ៉ង់។ +apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,ធាតុ {0} មិនបានរកឃើញ DocType: Bin,Stock Value,ភាគហ៊ុនតម្លៃ apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,ប្រភេទដើមឈើ DocType: BOM Explosion Item,Qty Consumed Per Unit,qty ប្រើប្រាស់ក្នុងមួយឯកតា DocType: Serial No,Warranty Expiry Date,ការធានាកាលបរិច្ឆេទផុតកំណត់ DocType: Material Request Item,Quantity and Warehouse,បរិមាណនិងឃ្លាំង DocType: Sales Invoice,Commission Rate (%),អត្រាប្រាក់កំរៃ (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","ប្រឆាំងនឹងប្រភេទត្រូវតែមានប័ណ្ណមួយនៃការលក់សណ្តាប់ធ្នាប់, ការលក់វិក័យប័ត្រឬធាតុទិនានុប្បវត្តិ" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","ប្រឆាំងនឹងប្រភេទត្រូវតែមានប័ណ្ណមួយនៃការលក់សណ្តាប់ធ្នាប់, ការលក់វិក័យប័ត្រឬធាតុទិនានុប្បវត្តិ" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,អវកាស DocType: Journal Entry,Credit Card Entry,ចូលកាតឥណទាន apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,ភារកិច្ចប្រធានបទ @@ -514,6 +549,7 @@ DocType: Lead,Campaign Name,ឈ្មោះយុទ្ធនាការឃោ DocType: Purchase Order,Supply Raw Materials,ផ្គត់ផ្គង់សំភារៈឆៅ DocType: Purchase Invoice,The date on which next invoice will be generated. It is generated on submit.,កាលបរិច្ឆេទដែលវិក័យប័ត្រក្រោយនឹងត្រូវបានបង្កើត។ វាត្រូវបានគេបង្កើតនៅលើការដាក់ស្នើ។ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +10,Current Assets,ទ្រព្យនាពេលបច្ចុប្បន្ន +apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +93,{0} is not a stock Item,{0} គឺមិនមានធាតុភាគហ៊ុន DocType: Mode of Payment Account,Default Account,គណនីលំនាំដើម apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +157,Lead must be set if Opportunity is made from Lead,ការនាំមុខត្រូវតែត្រូវបានកំណត់ប្រសិនបើមានឱកាសត្រូវបានធ្វើពីអ្នកដឹកនាំ apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +33,Please select weekly off day,សូមជ្រើសយកថ្ងៃឈប់សម្រាកប្រចាំសប្តាហ៍ @@ -530,6 +566,8 @@ DocType: Opportunity,Opportunity From,ឱកាសការងារពី apps/erpnext/erpnext/config/hr.py +33,Monthly salary statement.,សេចក្តីថ្លែងការប្រាក់បៀវត្សរ៍ប្រចាំខែ។ DocType: Item Group,Website Specifications,ជាក់លាក់វេបសាយ apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +208,New Account,គណនីថ្មី +apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +21,{0}: From {0} of type {1},{0}: ពី {0} នៃប្រភេទ {1} +apps/erpnext/erpnext/controllers/buying_controller.py +274,Row {0}: Conversion Factor is mandatory,ជួរដេក {0}: ការប្រែចិត្តជឿកត្តាគឺជាការចាំបាច់ apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +27,Accounting Entries can be made against leaf nodes. Entries against Groups are not allowed.,ធាតុគណនេយ្យអាចត្រូវបានធ្វើប្រឆាំងនឹងការថ្នាំងស្លឹក។ ធាតុប្រឆាំងនឹងក្រុមដែលមិនត្រូវបានអនុញ្ញាត។ apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +357,Cannot deactivate or cancel BOM as it is linked with other BOMs,មិនអាចធ្វើឱ្យឬបោះបង់ Bom ជាវាត្រូវបានផ្សារភ្ជាប់ជាមួយនឹង BOMs ផ្សេងទៀត DocType: Opportunity,Maintenance,ការថែរក្សា @@ -561,14 +599,17 @@ DocType: Quality Inspection Reading,Reading 7,ការអាន 7 DocType: Address,Personal,ផ្ទាល់ខ្លួន DocType: Expense Claim Detail,Expense Claim Type,ការចំណាយប្រភេទពាក្យបណ្តឹង DocType: Shopping Cart Settings,Default settings for Shopping Cart,ការកំណត់លំនាំដើមសម្រាប់កន្រ្តកទំនិញ +apps/erpnext/erpnext/controllers/accounts_controller.py +340,"Journal Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice.","ធាតុទិនានុប្បវត្តិ {0} ត្រូវបានផ្សារភ្ជាប់នឹងដីកាសម្រេច {1}, ពិនិត្យមើលថាតើវាគួរតែត្រូវបានដកមុននៅក្នុងវិក័យប័ត្រដែលជានេះ។" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +13,Biotechnology,ជីវបច្ចេកវិទ្យា apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +108,Office Maintenance Expenses,ការិយាល័យថែទាំចំណាយ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.js +66,Please enter Item first,សូមបញ្ចូលធាតុដំបូង DocType: Account,Liability,ការទទួលខុសត្រូវ +apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,ចំនួនទឹកប្រាក់បានអនុញ្ញាតមិនអាចជាចំនួនទឹកប្រាក់ធំជាងក្នុងជួរដេកណ្តឹងទាមទារសំណង {0} ។ DocType: Company,Default Cost of Goods Sold Account,តម្លៃលំនាំដើមនៃគណនីទំនិញលក់ -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,បញ្ជីតម្លៃដែលមិនបានជ្រើស +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,បញ្ជីតម្លៃដែលមិនបានជ្រើស DocType: Employee,Family Background,ប្រវត្តិក្រុមគ្រួសារ DocType: Process Payroll,Send Email,ផ្ញើអ៊ីមែល +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},ព្រមាន & ‧;: ឯកសារភ្ជាប់មិនត្រឹមត្រូវ {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,គ្មានសិទ្ធិ DocType: Company,Default Bank Account,គណនីធនាគារលំនាំដើម apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first",ដើម្បីត្រងដោយផ្អែកទៅលើគណបក្សជ្រើសគណបក្សវាយជាលើកដំបូង @@ -605,10 +646,12 @@ DocType: Process Payroll,Activity Log,សកម្មភាពកំណត់ហ apps/erpnext/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py +30,Net Profit / Loss,ប្រាក់ចំណេញសុទ្ធ / បាត់បង់ apps/erpnext/erpnext/config/setup.py +94,Automatically compose message on submission of transactions.,តែងសារស្វ័យប្រវត្តិនៅលើការដាក់ប្រតិបត្តិការ។ DocType: Production Order,Item To Manufacture,ធាតុដើម្បីផលិត +apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +87,{0} {1} status is {2},{0} {1} ស្ថានភាពគឺ {2} apps/erpnext/erpnext/config/learn.py +207,Purchase Order to Payment,ដីកាបង្គាប់ឱ្យទូទាត់ការទិញ DocType: Sales Order Item,Projected Qty,ការព្យាករ Qty DocType: Sales Invoice,Payment Due Date,ការទូទាត់កាលបរិច្ឆេទ DocType: Newsletter,Newsletter Manager,កម្មវិធីគ្រប់គ្រងព្រឹត្តិប័ត្រព័ត៌មាន +apps/erpnext/erpnext/stock/doctype/item/item.js +247,Item Variant {0} already exists with same attributes,ធាតុវ៉ារ្យង់ {0} រួចហើយដែលមានគុណលក្ខណៈដូចគ្នា apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +95,'Opening',"ការបើក" DocType: Notification Control,Delivery Note Message,សារដឹកជញ្ជូនចំណាំ DocType: Expense Claim,Expenses,ការចំណាយ @@ -620,6 +663,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +77,Research & Devel DocType: Company,Registration Details,ពត៌មានលំអិតការចុះឈ្មោះ DocType: Item,Re-Order Qty,ដីកាសម្រេច Qty ឡើងវិញ DocType: Leave Block List Date,Leave Block List Date,ទុកឱ្យបញ្ជីប្លុកកាលបរិច្ឆេទ +apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +25,Scheduled to send to {0},គ្រោងនឹងផ្ញើទៅ {0} DocType: Pricing Rule,Price or Discount,ថ្លៃឬការបញ្ចុះតម្លៃ DocType: Sales Team,Incentives,ការលើកទឹកចិត្ត DocType: SMS Log,Requested Numbers,លេខដែលបានស្នើ @@ -649,9 +693,11 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +583, DocType: Employee,Ms,លោកស្រី apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,អត្រាប្តូរប្រាក់រូបិយប័ណ្ណមេ។ DocType: Production Order,Plan material for sub-assemblies,សម្ភារៈផែនការសម្រាប់ការអនុសភា -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,សូមជ្រើសប្រភេទឯកសារនេះជាលើកដំបូង +apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,Bom {0} ត្រូវតែសកម្ម +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,សូមជ្រើសប្រភេទឯកសារនេះជាលើកដំបូង apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,រទេះទៅ DocType: Salary Slip,Leave Encashment Amount,ទុកឱ្យ Encashment ចំនួនទឹកប្រាក់ +apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +209,Serial No {0} does not belong to Item {1},សៀរៀលគ្មាន {0} មិនមែនជារបស់ធាតុ {1} DocType: Purchase Receipt Item Supplied,Required Qty,តម្រូវការ Qty DocType: Bank Reconciliation,Total Amount,ចំនួនសរុប apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +32,Internet Publishing,ការបោះពុម្ពអ៊ីធឺណិត @@ -663,15 +709,19 @@ DocType: Bank Reconciliation,Account Currency,រូបិយប័ណ្ណគ apps/erpnext/erpnext/accounts/general_ledger.py +131,Please mention Round Off Account in Company,សូមនិយាយពីគណនីបិទជុំទីក្នុងក្រុមហ៊ុន DocType: Purchase Receipt,Range,ជួរ DocType: Supplier,Default Payable Accounts,គណនីទូទាត់លំនាំដើម +apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,បុគ្គលិក {0} គឺមិនសកម្មឬមិនមានទេ DocType: Features Setup,Item Barcode,កូដផលិតផលធាតុ +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,ធាតុវ៉ារ្យ៉ង់ {0} ធ្វើឱ្យទាន់សម័យ DocType: Quality Inspection Reading,Reading 6,ការអាន 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,ទិញវិក័យប័ត្រជាមុន DocType: Address,Shop,ហាងលក់ DocType: Hub Settings,Sync Now,ធ្វើសមកាលកម្មឥឡូវ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +173,Row {0}: Credit entry can not be linked with a {1},ជួរដេក {0}: ធាតុឥណទានមិនអាចត្រូវបានផ្សារភ្ជាប់ទៅនឹងការ {1} DocType: Mode of Payment Account,Default Bank / Cash account will be automatically updated in POS Invoice when this mode is selected.,លំនាំដើមគណនីធនាគារ / សាច់ប្រាក់នឹងត្រូវបានធ្វើបច្ចុប្បន្នភាពដោយស្វ័យប្រវត្តិក្នុងម៉ាស៊ីនឆូតកាតវិក្កយបត្រពេលអ្នកប្រើរបៀបនេះត្រូវបានជ្រើស។ DocType: Employee,Permanent Address Is,អាសយដ្ឋានគឺជាអចិន្រ្តៃយ៍ DocType: Production Order Operation,Operation completed for how many finished goods?,ប្រតិបត្ដិការបានបញ្ចប់សម្រាប់ទំនិញដែលបានបញ្ចប់តើមានមនុស្សប៉ុន្មាន? apps/erpnext/erpnext/public/js/setup_wizard.js +164,The Brand,ម៉ាកនេះ +apps/erpnext/erpnext/controllers/status_updater.py +165,Allowance for over-{0} crossed for Item {1}.,អនុញ្ញាតឱ្យមានឥទ្ធិពលមិន {0} បានឆ្លងកាត់សម្រាប់ធាតុ {1} ។ DocType: Employee,Exit Interview Details,ពត៌មានលំអិតចេញពីការសម្ភាសន៍ DocType: Item,Is Purchase Item,តើមានធាតុទិញ DocType: Journal Entry Account,Purchase Invoice,ការទិញវិក័យប័ត្រ @@ -683,7 +733,7 @@ DocType: Payment Request,Paid,Paid DocType: Salary Slip,Total in words,សរុបនៅក្នុងពាក្យ DocType: Material Request Item,Lead Time Date,កាលបរិច្ឆេទពេលវេលានាំមុខ apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,គឺជាចាំបាច់។ ប្រហែលជាកំណត់ត្រាប្តូររូបិយប័ណ្ណដែលមិនត្រូវបានបង្កើតឡើងសម្រាប់ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","សម្រាប់ធាតុ "ផលិតផលកញ្ចប់, ឃ្លាំង, សៀរៀល, គ្មានទេនិងបាច់ & ‧នឹងត្រូវបានចាត់ទុកថាពី" ការវេចខ្ចប់បញ្ជី "តារាង។ បើសិនជាគ្មានឃ្លាំងនិងជំនាន់ដូចគ្នាសម្រាប់ធាតុដែលមានទាំងអស់សម្រាប់វេចខ្ចប់ធាតុណាមួយ "ផលិតផលជាកញ្ចប់" តម្លៃទាំងនោះអាចត្រូវបានបញ្ចូលនៅក្នុងតារាងធាតុដ៏សំខាន់, តម្លៃនឹងត្រូវបានចម្លងទៅ 'វេចខ្ចប់បញ្ជី "តារាង។" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","សម្រាប់ធាតុ "ផលិតផលកញ្ចប់, ឃ្លាំង, សៀរៀល, គ្មានទេនិងបាច់ & ‧នឹងត្រូវបានចាត់ទុកថាពី" ការវេចខ្ចប់បញ្ជី "តារាង។ បើសិនជាគ្មានឃ្លាំងនិងជំនាន់ដូចគ្នាសម្រាប់ធាតុដែលមានទាំងអស់សម្រាប់វេចខ្ចប់ធាតុណាមួយ "ផលិតផលជាកញ្ចប់" តម្លៃទាំងនោះអាចត្រូវបានបញ្ចូលនៅក្នុងតារាងធាតុដ៏សំខាន់, តម្លៃនឹងត្រូវបានចម្លងទៅ 'វេចខ្ចប់បញ្ជី "តារាង។" apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,ការនាំចេញទៅកាន់អតិថិជន។ DocType: Purchase Invoice Item,Purchase Order Item,ទិញធាតុលំដាប់ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,ចំណូលប្រយោល @@ -703,6 +753,7 @@ DocType: Process Payroll,Select Payroll Year and Month,ជ្រើសបើក apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",សូមចូលទៅកាន់ក្រុមដែលសមស្រប (ជាធម្មតាពាក្យស្នើសុំរបស់មូលនិធិ> ទ្រព្យបច្ចុប្បន្ន> គណនីធនាគារនិងបង្កើតគណនីថ្មីមួយ (ដោយចុចលើ Add កុមារ) នៃប្រភេទ "ធនាគារ" DocType: Workstation,Electricity Cost,តម្លៃអគ្គិសនី DocType: HR Settings,Don't send Employee Birthday Reminders,កុំផ្ញើបុគ្គលិករំលឹកខួបកំណើត +,Employee Holiday Attendance,បុគ្គលិកវត្តមានថ្ងៃឈប់សម្រាក DocType: Opportunity,Walk In,ដើរក្នុង apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,ធាតុភាគហ៊ុន DocType: Item,Inspection Criteria,លក្ខណៈវិនិច្ឆ័យអធិការកិច្ច @@ -722,8 +773,9 @@ apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_ DocType: Holiday List,Holiday List Name,បញ្ជីថ្ងៃឈប់សម្រាកឈ្មោះ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,ជម្រើសភាគហ៊ុន DocType: Journal Entry Account,Expense Claim,ពាក្យបណ្តឹងលើការចំណាយ +apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},qty សម្រាប់ {0} DocType: Leave Application,Leave Application,ការឈប់សម្រាករបស់កម្មវិធី -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,ទុកឱ្យឧបករណ៍បម្រុងទុក +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,ទុកឱ្យឧបករណ៍បម្រុងទុក DocType: Leave Block List,Leave Block List Dates,ទុកឱ្យប្លុកថ្ងៃបញ្ជី DocType: Company,If Monthly Budget Exceeded (for expense account),ប្រសិនបើមានថវិកាប្រចាំខែលើសពី (សម្រាប់គណនីដែលការចំណាយ) DocType: Workstation,Net Hour Rate,អត្រាហួរសុទ្ធ @@ -733,14 +785,16 @@ DocType: Packing Slip Item,Packing Slip Item,វេចខ្ចប់ធាត DocType: POS Profile,Cash/Bank Account,សាច់ប្រាក់ / គណនីធនាគារ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,ធាតុបានយកចេញដោយការផ្លាស់ប្តូរក្នុងបរិមាណឬតម្លៃទេ។ DocType: Delivery Note,Delivery To,ដឹកជញ្ជូនដើម្បី -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,តារាងគុណលក្ខណៈគឺជាការចាំបាច់ +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,តារាងគុណលក្ខណៈគឺជាការចាំបាច់ DocType: Production Planning Tool,Get Sales Orders,ទទួលបានការបញ្ជាទិញលក់ +apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} មិនអាចជាអវិជ្ជមាន apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,បញ្ចុះតំលៃ DocType: Features Setup,Purchase Discounts,ការបញ្ចុះតម្លៃទិញ DocType: Workstation,Wages,ប្រាក់ឈ្នួល DocType: Time Log,Will be updated only if Time Log is 'Billable',នឹងត្រូវបានធ្វើឱ្យទាន់សម័យតែប៉ុណ្ណោះប្រសិនបើកំណត់ហេតុពេលវេលាគឺ "Billable" DocType: Project,Internal,ផ្ទៃក្នុង DocType: Task,Urgent,បន្ទាន់ +apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +97,Please specify a valid Row ID for row {0} in table {1},សូមបញ្ជាក់លេខសម្គាល់ជួរដេកដែលមានសុពលភាពសម្រាប់ជួរ {0} ក្នុងតារាង {1} apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +23,Go to the Desktop and start using ERPNext,ចូរទៅផ្ទៃតុហើយចាប់ផ្តើមដោយការប្រើ ERPNext DocType: Item,Manufacturer,ក្រុមហ៊ុនផលិត DocType: Landed Cost Item,Purchase Receipt Item,ធាតុបង្កាន់ដៃទិញ @@ -762,6 +816,7 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Buying,ទ DocType: GL Entry,Against,ប្រឆាំងនឹងការ DocType: Item,Default Selling Cost Center,ចំណាយលើការលក់លំនាំដើមរបស់មជ្ឈមណ្ឌល DocType: Sales Partner,Implementation Partner,ដៃគូអនុវត្ដន៍ +apps/erpnext/erpnext/controllers/selling_controller.py +227,Sales Order {0} is {1},លំដាប់ការលក់ {0} គឺ {1} DocType: Opportunity,Contact Info,ពត៌មានទំនាក់ទំនង apps/erpnext/erpnext/config/stock.py +273,Making Stock Entries,ការធ្វើឱ្យធាតុហ៊ុន DocType: Packing Slip,Net Weight UOM,សុទ្ធទម្ងន់ UOM @@ -790,11 +845,12 @@ DocType: Email Digest,Annual Expense,ចំណាយប្រចាំឆ្ន DocType: SMS Center,Total Characters,តួអក្សរសរុប DocType: C-Form Invoice Detail,C-Form Invoice Detail,ពត៌មានវិក័យប័ត្ររបស់ C-សំណុំបែបបទ DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,ការទូទាត់វិក័យប័ត្រផ្សះផ្សានិងយុត្តិធម៌ -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,ការចូលរួមចំណែក% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,ការចូលរួមចំណែក% DocType: Item,website page link,តំណភ្ជាប់ទំព័រវេបសាយ DocType: Company,Company registration numbers for your reference. Tax numbers etc.,លេខចុះបញ្ជីក្រុមហ៊ុនសម្រាប់ជាឯកសារយោងរបស់អ្នក។ ចំនួនពន្ធល DocType: Sales Partner,Distributor,ចែកចាយ DocType: Shopping Cart Shipping Rule,Shopping Cart Shipping Rule,ការដើរទិញឥវ៉ាន់វិធានការដឹកជញ្ជូនក្នុងកន្រ្តក +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +210,Production Order {0} must be cancelled before cancelling this Sales Order,ផលិតកម្មលំដាប់ {0} ត្រូវតែបានលុបចោលមុនពេលលុបចោលការបញ្ជាលក់នេះ apps/erpnext/erpnext/public/js/controllers/transaction.js +879,Please set 'Apply Additional Discount On',សូមកំណត់ 'អនុវត្តការបញ្ចុះតម្លៃបន្ថែមទៀតនៅលើ " ,Ordered Items To Be Billed,ធាតុបញ្ជាឱ្យនឹងត្រូវបានផ្សព្វផ្សាយ apps/erpnext/erpnext/stock/doctype/item_attribute/item_attribute.py +24,From Range has to be less than To Range,ពីជួរមានដើម្បីឱ្យមានតិចជាងដើម្បីជួរ @@ -814,6 +870,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p apps/erpnext/erpnext/projects/doctype/task/task.py +38,'Actual Start Date' can not be greater than 'Actual End Date',"ជាក់ស្តែងកាលបរិច្ឆេទចាប់ផ្តើម" មិនអាចជាធំជាងជាក់ស្តែងកាលបរិច្ឆេទបញ្ចប់ " apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +75,Management,ការគ្រប់គ្រង apps/erpnext/erpnext/config/projects.py +33,Types of activities for Time Sheets,ប្រភេទនៃសកម្មភាពសម្រាប់សន្លឹកម៉ោង +apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +51,Either debit or credit amount is required for {0},ទាំងចំនួនឥណពន្ធឬឥណទានគឺត្រូវបានទាមទារសម្រាប់ {0} DocType: Item Attribute Value,"This will be appended to the Item Code of the variant. For example, if your abbreviation is ""SM"", and the item code is ""T-SHIRT"", the item code of the variant will be ""T-SHIRT-SM""","នេះនឹងត្រូវបានបន្ថែមទៅក្នុងក្រមធាតុនៃវ៉ារ្យ៉ង់នោះ។ ឧទាហរណ៍ប្រសិនបើអក្សរកាត់របស់អ្នកគឺ "ផលិតកម្ម SM" និងលេខកូដធាតុគឺ "អាវយឺត", លេខកូដធាតុនៃវ៉ារ្យ៉ង់នេះនឹងត្រូវបាន "អាវយឺត-ផលិតកម្ម SM"" DocType: Salary Slip,Net Pay (in words) will be visible once you save the Salary Slip.,ប្រាក់ចំណេញសុទ្ធ (និយាយម្យ៉ាង) នឹងមើលឃើញនៅពេលដែលអ្នករក្សាទុកប័ណ្ណប្រាក់បៀវត្ស។ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +154,Blue,ពណ៌ខៀវ @@ -827,13 +884,14 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM កត្តាប្រ DocType: Stock Settings,Default Item Group,លំនាំដើមធាតុគ្រុប apps/erpnext/erpnext/config/buying.py +13,Supplier database.,មូលដ្ឋានទិន្នន័យដែលបានផ្គត់ផ្គង់។ DocType: Account,Balance Sheet,តារាងតុល្យការ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',មជ្ឈមណ្ឌលចំណាយសម្រាប់ធាតុដែលមានលេខកូដធាតុ " +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',មជ្ឈមណ្ឌលចំណាយសម្រាប់ធាតុដែលមានលេខកូដធាតុ " DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,មនុស្សម្នាក់ដែលលក់របស់អ្នកនឹងទទួលបាននូវការរំលឹកមួយនៅលើកាលបរិច្ឆេទនេះដើម្បីទាក់ទងអតិថិជន apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups",គណនីដែលមានបន្ថែមទៀតអាចត្រូវបានធ្វើក្រោមការក្រុមនោះទេតែធាតុដែលអាចត្រូវបានធ្វើប្រឆាំងនឹងការដែលមិនមែនជាក្រុម -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,ពន្ធនិងការកាត់ប្រាក់ខែផ្សេងទៀត។ +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,ពន្ធនិងការកាត់ប្រាក់ខែផ្សេងទៀត។ DocType: Lead,Lead,ការនាំមុខ DocType: Email Digest,Payables,បង់ DocType: Account,Warehouse,ឃ្លាំង +apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +83,Row #{0}: Rejected Qty can not be entered in Purchase Return,ជួរដេក # {0}: បានច្រានចោលមិនអាច Qty បញ្ចូលនៅក្នុងការទិញត្រឡប់មកវិញ ,Purchase Order Items To Be Billed,ការបញ្ជាទិញធាតុដែលនឹងត្រូវបានផ្សព្វផ្សាយ DocType: Purchase Invoice Item,Net Rate,អត្រាការប្រាក់សុទ្ធ DocType: Purchase Invoice Item,Purchase Invoice Item,ទិញទំនិញវិក័យប័ត្រ @@ -846,9 +904,9 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,ពត៌មាន DocType: Global Defaults,Current Fiscal Year,ឆ្នាំសារពើពន្ធនាពេលបច្ចុប្បន្ន DocType: Global Defaults,Disable Rounded Total,បិទការសរុបមូល DocType: Lead,Call,ការហៅ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,"ធាតុ" មិនអាចទទេ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,"ធាតុ" មិនអាចទទេ ,Trial Balance,អង្គជំនុំតុល្យភាព -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,ការរៀបចំបុគ្គលិក +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,ការរៀបចំបុគ្គលិក apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid """,ក្រឡាចត្រង្គ " apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,សូមជ្រើសបុព្វបទជាលើកដំបូង apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,ស្រាវជ្រាវ @@ -857,7 +915,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,លេខសម្គាល់អ្នកប្រើ apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,មើលសៀវភៅ apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,ដំបូងបំផុត -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group",ធាតុមួយពូលមានឈ្មោះដូចគ្នាសូមប្ដូរឈ្មោះធាតុឬប្ដូរឈ្មោះធាតុដែលជាក្រុម +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group",ធាតុមួយពូលមានឈ្មោះដូចគ្នាសូមប្ដូរឈ្មោះធាតុឬប្ដូរឈ្មោះធាតុដែលជាក្រុម DocType: Production Order,Manufacture against Sales Order,ផលិតប្រឆាំងនឹងការលក់សណ្តាប់ធ្នាប់ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,នៅសល់នៃពិភពលោក ,Budget Variance Report,របាយការណ៍អថេរថវិការ @@ -887,6 +945,7 @@ DocType: Journal Entry,Get Outstanding Invoices,ទទួលបានវិក apps/erpnext/erpnext/setup/doctype/company/company.py +159,"Sorry, companies cannot be merged","សូមអភ័យទោស, ក្រុមហ៊ុនមិនអាចត្រូវបានបញ្ចូលគ្នា" apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +145,Small,ខ្នាតតូច DocType: Employee,Employee Number,ចំនួនបុគ្គលិក +apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.py +65,Case No(s) already in use. Try from Case No {0},ករណីគ្មានការ (s) បានរួចហើយនៅក្នុងការប្រើប្រាស់។ សូមព្យាយាមពីករណីគ្មាន {0} ,Invoiced Amount (Exculsive Tax),ចំនួន invoiced (ពន្ធលើ Exculsive) apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +14,Item 2,ធាតុ 2 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +153,Green,ពណ៌បៃតង @@ -899,7 +958,7 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,កសិកម្ម apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,ផលិតផលឬសេវាកម្មរបស់អ្នក DocType: Mode of Payment,Mode of Payment,របៀបនៃការទូទាត់ -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,វេបសាយរូបភាពគួរតែជាឯកសារសាធារណៈឬគេហទំព័ររបស់ URL +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,វេបសាយរូបភាពគួរតែជាឯកសារសាធារណៈឬគេហទំព័ររបស់ URL apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,នេះគឺជាក្រុមមួយដែលធាតុ root និងមិនអាចត្រូវបានកែសម្រួល។ DocType: Journal Entry Account,Purchase Order,ការបញ្ជាទិញ DocType: Warehouse,Warehouse Contact Info,ឃ្លាំងពត៌មានទំនាក់ទំនង @@ -908,6 +967,7 @@ DocType: Address,City/Town,ទីក្រុង / ក្រុង DocType: Email Digest,Annual Income,ប្រាក់ចំណូលប្រចាំឆ្នាំ DocType: Serial No,Serial No Details,គ្មានព័ត៌មានលំអិតសៀរៀល DocType: Purchase Invoice Item,Item Tax Rate,អត្រាអាករធាតុ +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,ធាតុ {0} ត្រូវតែជាធាតុអនុចុះកិច្ចសន្យា apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,ឧបករណ៍រាជធានី apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.",វិធានកំណត់តម្លៃដំបូងត្រូវបានជ្រើសដោយផ្អែកលើ 'អនុវត្តនៅលើ' វាលដែលអាចជាធាតុធាតុក្រុមឬម៉ាក។ DocType: Hub Settings,Seller Website,វេបសាយអ្នកលក់ @@ -915,7 +975,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +143,Total allocated perc DocType: Appraisal Goal,Goal,គ្រាប់បាល់បញ្ចូលទី DocType: Sales Invoice Item,Edit Description,កែសម្រួលការបរិយាយ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,គេរំពឹងថាកាលបរិច្ឆេទដឹកជញ្ជូនគឺតិចជាងចាប់ផ្ដើមគំរោងកាលបរិច្ឆេទ។ -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,សម្រាប់ផ្គត់ផ្គង់ +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,សម្រាប់ផ្គត់ផ្គង់ DocType: Account,Setting Account Type helps in selecting this Account in transactions.,ការកំណត់ប្រភេទគណនីជួយក្នុងការជ្រើសគណនីនេះក្នុងប្រតិបតិ្តការ។ DocType: Purchase Invoice,Grand Total (Company Currency),សម្ពោធសរុប (ក្រុមហ៊ុនរូបិយវត្ថុ) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,ចេញសរុប @@ -960,7 +1020,6 @@ DocType: Authorization Rule,Average Discount,ការបញ្ចុះតម DocType: Address,Utilities,ឧបករណ៍ប្រើប្រាស់ DocType: Purchase Invoice Item,Accounting,គណនេយ្យ DocType: Features Setup,Features Setup,ការរៀបចំលក្ខណៈពិសេស -DocType: Item,Is Service Item,តើមានធាតុសេវា apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,រយៈពេលប្រើប្រាស់មិនអាចមានការបែងចែកការឈប់សម្រាកនៅខាងក្រៅក្នុងរយៈពេល DocType: Activity Cost,Projects,គម្រោងការ apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,សូមជ្រើសរើសឆ្នាំសារពើពន្ធ @@ -980,6 +1039,7 @@ DocType: Item,Maintain Stock,ការរក្សាហ៊ុន apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,ធាតុភាគហ៊ុនដែលបានបង្កើតរួចផលិតកម្មលំដាប់ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,ការផ្លាស់ប្តូរសុទ្ធនៅលើអចលនទ្រព្យ DocType: Leave Control Panel,Leave blank if considered for all designations,ប្រសិនបើអ្នកទុកវាឱ្យទទេសម្រាប់ការរចនាទាំងអស់បានពិចារណាថា +apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},អតិបរមា: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,ចាប់ពី Datetime DocType: Email Digest,For Company,សម្រាប់ក្រុមហ៊ុន apps/erpnext/erpnext/config/support.py +38,Communication log.,កំណត់ហេតុនៃការទំនាក់ទំនង។ @@ -987,7 +1047,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,ការដឹកជញ្ជូនឈ្មោះអាសយដ្ឋាន apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,គំនូសតាងគណនី DocType: Material Request,Terms and Conditions Content,លក្ខខណ្ឌមាតិកា -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,មិនអាចជាធំជាង 100 +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,មិនអាចជាធំជាង 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,ធាតុ {0} គឺមិនមានធាតុភាគហ៊ុន DocType: Maintenance Visit,Unscheduled,គ្មានការគ្រោងទុក DocType: Employee,Owned,កម្មសិទ្ធផ្ទាល់ខ្លួន DocType: Salary Slip Deduction,Depends on Leave Without Pay,អាស្រ័យនៅលើស្លឹកដោយគ្មានប្រាក់ខែ @@ -1008,6 +1069,8 @@ Used for Taxes and Charges",តារាងពន្ធលើការដែល apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,បុគ្គលិកមិនអាចរាយការណ៍ទៅខ្លួនឯង។ DocType: Account,"If the account is frozen, entries are allowed to restricted users.",ប្រសិនបើគណនីគឺជាការកកធាតុត្រូវបានអនុញ្ញាតឱ្យអ្នកប្រើប្រាស់ដាក់កម្រិត។ DocType: Email Digest,Bank Balance,ធនាគារតុល្យភាព +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},គណនេយ្យធាតុសម្រាប់ {0} {1} អាចត្រូវបានធ្វើតែនៅក្នុងរូបិយប័ណ្ណ: {2} +apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,គ្មានប្រាក់ខែសកម្មបានរកឃើញរចនាសម្ព័ន្ធសម្រាប់បុគ្គលិក {0} និងខែ DocType: Job Opening,"Job profile, qualifications required etc.",ទម្រង់យ៉ូបបានទាមទារលក្ខណៈសម្បត្តិល DocType: Journal Entry Account,Account Balance,សមតុល្យគណនី apps/erpnext/erpnext/config/accounts.py +122,Tax Rule for transactions.,វិធានពន្ធសម្រាប់កិច្ចការជំនួញ។ @@ -1016,12 +1079,13 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +296,We buy this Item,យើង DocType: Address,Billing,វិក័យប័ត្រ DocType: Purchase Invoice,Total Taxes and Charges (Company Currency),ពន្ធសរុបនិងការចោទប្រកាន់ (រូបិយប័ណ្ណរបស់ក្រុមហ៊ុន) DocType: Shipping Rule,Shipping Account,គណនីលើការដឹកជញ្ជូន +apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +43,Scheduled to send to {0} recipients,គ្រោងនឹងផ្ញើទៅអ្នកទទួល {0} DocType: Quality Inspection,Readings,អាន DocType: Stock Entry,Total Additional Costs,ការចំណាយបន្ថែមទៀតសរុប apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,សភាអនុ DocType: Shipping Rule Condition,To Value,ទៅតម្លៃ DocType: Supplier,Stock Manager,ភាគហ៊ុនប្រធានគ្រប់គ្រង -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,គ្រូពេទ្យប្រហែលជាវេចខ្ចប់ +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,គ្រូពេទ្យប្រហែលជាវេចខ្ចប់ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,ការិយាល័យសំរាប់ជួល apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,ការកំណត់ច្រកចេញចូលការរៀបចំសារជាអក្សរ apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,នាំចូលបានបរាជ័យ! @@ -1060,8 +1124,9 @@ DocType: Maintenance Schedule,Schedules,កាលវិភាគ DocType: Purchase Invoice Item,Net Amount,ចំនួនទឹកប្រាក់សុទ្ធ DocType: Purchase Order Item Supplied,BOM Detail No,ពត៌មានលំអិត Bom គ្មាន DocType: Purchase Invoice,Additional Discount Amount (Company Currency),ចំនួនទឹកប្រាក់ដែលបញ្ចុះតម្លៃបន្ថែម (រូបិយប័ណ្ណរបស់ក្រុមហ៊ុន) +apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},កំហុស: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,សូមបង្កើតគណនីថ្មីមួយពីតារាងនៃគណនី។ -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,ថែទាំទស្សនកិច្ច +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,ថែទាំទស្សនកិច្ច apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,អតិថិជន> គ្រុបអតិថិជន> ដែនដី DocType: Sales Invoice Item,Available Batch Qty at Warehouse,បាច់អាចរកបាន Qty នៅឃ្លាំង DocType: Time Log Batch Detail,Time Log Batch Detail,ពត៌មានលំអិតបាច់កំណត់ហេតុម៉ោង @@ -1070,7 +1135,7 @@ DocType: Leave Block List,Block Holidays on important days.,ប្រតិទ ,Accounts Receivable Summary,គណនីសង្ខេបទទួល apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,សូមកំណត់លេខសម្គាល់អ្នកប្រើនៅក្នុងវាលកំណត់ត្រានិយោជិតម្នាក់ក្នុងការកំណត់តួនាទីរបស់និយោជិត DocType: UOM,UOM Name,ឈ្មោះ UOM -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,ចំនួនទឹកប្រាក់ចំែណក +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,ចំនួនទឹកប្រាក់ចំែណក DocType: Sales Invoice,Shipping Address,ការដឹកជញ្ជូនអាសយដ្ឋាន DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,ឧបករណ៍នេះអាចជួយអ្នកក្នុងការធ្វើឱ្យទាន់សម័យឬជួសជុលបរិមាណនិងតម្លៃនៃភាគហ៊ុននៅក្នុងប្រព័ន្ធ។ វាត្រូវបានប្រើដើម្បីធ្វើសមកាលកម្មតម្លៃប្រព័ន្ធនិងអ្វីដែលជាការពិតមាននៅក្នុងឃ្លាំងរបស់អ្នក។ DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,នៅក្នុងពាក្យនោះនឹងត្រូវបានមើលឃើញនៅពេលដែលអ្នករក្សាទុកចំណាំដឹកជញ្ជូនផងដែរ។ @@ -1086,11 +1151,13 @@ DocType: Sales Partner,Sales Partner Target,ដៃគូគោលដៅការ DocType: Pricing Rule,Pricing Rule,វិធានការកំណត់តម្លៃ apps/erpnext/erpnext/config/learn.py +202,Material Request to Purchase Order,សម្ភារៈសំណើទិញសណ្តាប់ធ្នាប់ DocType: Payment Gateway Account,Payment Success URL,ការទូទាត់ URL ដែលទទួលបានភាពជោគជ័យ +apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +74,Row # {0}: Returned Item {1} does not exists in {2} {3},ជួរដេក # {0}: ធាតុមាតុភូមិនិវត្តន៍ {1} មិនមាននៅក្នុង {2} {3} apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +16,Bank Accounts,គណនីធនាគារ ,Bank Reconciliation Statement,សេចក្តីថ្លែងការរបស់ធនាគារការផ្សះផ្សា DocType: Address,Lead Name,ការនាំមុខឈ្មោះ ,POS,ម៉ាស៊ីនឆូតកាត apps/erpnext/erpnext/config/stock.py +268,Opening Stock Balance,ការបើកផ្សារហ៊ុនតុល្យភាព +apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +336,Not allowed to tranfer more {0} than {1} against Purchase Order {2},មិនអនុញ្ញាតឱ្យការផ្តល់ជាច្រើនទៀត {0} {1} ជាជាងការប្រឆាំងនឹងការទិញលំដាប់ {2} apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.py +40,No Items to pack,គ្មានធាតុខ្ចប់ DocType: Shipping Rule Condition,From Value,ពីតម្លៃ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +542,Manufacturing Quantity is mandatory,បរិមាណដែលត្រូវទទួលទានគឺចាំបាច់កម្មន្តសាល @@ -1113,6 +1180,7 @@ DocType: Payment Tool Detail,Payment Amount,ចំនួនទឹកប្រា apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +46,Consumed Amount,ចំនួនទឹកប្រាក់ដែលគេប្រើប្រាស់ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,ការផ្លាស់ប្តូរសាច់ប្រាក់សុទ្ធ DocType: Salary Structure Deduction,Salary Structure Deduction,ការកាត់រចនាសម្ព័ន្ធប្រាក់បៀវត្ស +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,ឯកតារង្វាស់ {0} ត្រូវបានបញ្ចូលលើសពីមួយដងនៅក្នុងការសន្ទនាកត្តាតារាង apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,តម្លៃនៃធាតុដែលបានចេញផ្សាយ apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +41,Age (Days),អាយុ (ថ្ងៃ) DocType: Quotation Item,Quotation Item,ធាតុសម្រង់ @@ -1121,10 +1189,12 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +36,From Dat apps/erpnext/erpnext/config/buying.py +59,Supplier Type master.,ប្រភេទផ្គត់ផ្គង់គ្រូ។ DocType: Purchase Order Item,Supplier Part Number,ក្រុមហ៊ុនផ្គត់ផ្គង់ផ្នែកមួយចំនួន apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +93,Conversion rate cannot be 0 or 1,អត្រានៃការប្រែចិត្តជឿមិនអាចជា 0 ឬ 1 +apps/erpnext/erpnext/controllers/stock_controller.py +247,{0} {1} is cancelled or stopped,{0} {1} ត្រូវបានលុបចោលឬបញ្ឈប់ DocType: Accounts Settings,Credit Controller,ឧបករណ៍ត្រួតពិនិត្យឥណទាន DocType: Delivery Note,Vehicle Dispatch Date,កាលបរិច្ឆេទបញ្ជូនយានយន្ត DocType: Company,Default Payable Account,គណនីទូទាត់លំនាំដើម apps/erpnext/erpnext/config/website.py +13,"Settings for online shopping cart such as shipping rules, price list etc.",ការកំណត់សម្រាប់រទេះដើរទិញឥវ៉ាន់អនឡាញដូចជាវិធានការដឹកជញ្ជូនបញ្ជីតម្លៃល +apps/erpnext/erpnext/controllers/website_list_for_contact.py +65,{0}% Billed,{0}% បានបង់ប្រាក់ apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +17,Reserved Qty,រក្សា Qty DocType: Party Account,Party Account,គណនីគណបក្ស apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +74,Human Resources,ធនធានមនុស្ស @@ -1134,7 +1204,9 @@ apps/erpnext/erpnext/support/doctype/issue/issue.py +58,My Issues,បញ្ហ DocType: BOM Item,BOM Item,ធាតុ Bom DocType: Appraisal,For Employee,សម្រាប់បុគ្គលិក DocType: Company,Default Values,តម្លៃលំនាំដើម +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,ជួរដេក {0}: ចំនួនទឹកប្រាក់ទូទាត់មិនអាចជាអវិជ្ជមាន DocType: Expense Claim,Total Amount Reimbursed,ចំនួនទឹកប្រាក់សរុបដែលបានសងវិញ +apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},ប្រឆាំងនឹងការផ្គត់ផ្គង់វិក័យប័ត្រ {0} {1} ចុះកាលបរិច្ឆេទ DocType: Customer,Default Price List,តារាងតម្លៃលំនាំដើម DocType: Payment Reconciliation,Payments,ការទូទាត់ DocType: Budget Detail,Budget Allocated,ថវិកាដែលបានត្រៀមបម្រុងទុក @@ -1160,6 +1232,8 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,ព DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","ជំនួសជាក់លាក់ Bom ក្នុង BOMs ផ្សេងទៀតទាំងអស់ដែលជាកន្លែងដែលវាត្រូវបានគេប្រើ។ វានឹងជំនួសតំណ Bom អាយុ, ធ្វើឱ្យទាន់សម័យការចំណាយនិងការរីកលូតលាស់ឡើងវិញ "ធាតុផ្ទុះ Bom" តារាងជាមួយ Bom ថ្មី" DocType: Shopping Cart Settings,Enable Shopping Cart,បើកការកន្រ្តកទំនិញ DocType: Employee,Permanent Address,អាសយដ្ឋានអចិន្រ្តៃយ៍ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ + than Grand Total {2}",ជំរុញបង់ប្រឆាំងនឹង {0} {1} មិនអាចច្រើន \ ជាងសរុប {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,សូមជ្រើសរើសលេខកូដធាតុ DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),កាត់បន្ថយការកាត់ស្នើសុំការអនុញ្ញាតដោយគ្មានប្រាក់ខែ (LWP) DocType: Territory,Territory Manager,កម្មវិធីគ្រប់គ្រងទឹកដី @@ -1177,6 +1251,7 @@ DocType: Stock Entry Detail,Material Request used to make this Stock Entry,ស apps/erpnext/erpnext/config/support.py +43,Single unit of an Item.,អង្គភាពតែមួយនៃធាតុមួយ។ DocType: Accounts Settings,Make Accounting Entry For Every Stock Movement,ធ្វើឱ្យធាតុគណនេយ្យសម្រាប់គ្រប់ចលនាហ៊ុន DocType: Leave Allocation,Total Leaves Allocated,ចំនួនសរុបដែលបានបម្រុងទុកស្លឹក +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +394,Warehouse required at Row No {0},ឃ្លាំងបានទាមទារនៅក្នុងជួរដេកគ្មាន {0} apps/erpnext/erpnext/public/js/setup_wizard.js +81,Please enter valid Financial Year Start and End Dates,សូមបញ្ចូលឆ្នាំដែលមានសុពលភាពហិរញ្ញវត្ថុកាលបរិច្ឆេទចាប់ផ្ដើមនិងបញ្ចប់ DocType: Employee,Date Of Retirement,កាលបរិច្ឆេទនៃការចូលនិវត្តន៍ DocType: Upload Attendance,Get Template,ទទួលបានទំព័រគំរូ @@ -1188,8 +1263,11 @@ DocType: Territory,Parent Territory,ដែនដីមាតាឬបិតា DocType: Quality Inspection Reading,Reading 2,ការអាន 2 DocType: Stock Entry,Material Receipt,សម្ភារៈបង្កាន់ដៃ apps/erpnext/erpnext/public/js/setup_wizard.js +288,Products,ផលិតផល +apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +47,Party Type and Party is required for Receivable / Payable account {0},បក្សនិងបក្សប្រភេទត្រូវបានទាមទារសម្រាប់ការទទួលគណនី / បង់ {0} DocType: Item,"If this item has variants, then it cannot be selected in sales orders etc.","ប្រសិនបើមានធាតុនេះមានវ៉ារ្យ៉ង់, បន្ទាប់មកវាមិនអាចត្រូវបានជ្រើសនៅក្នុងការបញ្ជាទិញការលក់ល" DocType: Lead,Next Contact By,ទំនាក់ទំនងបន្ទាប់ដោយ +apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +211,Quantity required for Item {0} in row {1},បរិមាណដែលទាមទារសម្រាប់ធាតុ {0} នៅក្នុងជួរដេក {1} +apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +85,Warehouse {0} can not be deleted as quantity exists for Item {1},ឃ្លាំង {0} មិនអាចត្រូវបានលុបជាបរិមាណមានសម្រាប់ធាតុ {1} DocType: Quotation,Order Type,ប្រភេទលំដាប់ DocType: Purchase Invoice,Notification Email Address,សេចក្តីជូនដំណឹងស្តីពីអាសយដ្ឋានអ៊ីម៉ែល DocType: Payment Tool,Find Invoices to Match,សែ្វងរកវិក័យប័ត្រឱ្យស្មើភាពគ្នារវាង @@ -1207,12 +1285,15 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,ដើមចម្បង apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,វ៉ារ្យ៉ង់ DocType: Naming Series,Set prefix for numbering series on your transactions,កំណត់បុព្វបទសម្រាប់លេខស៊េរីលើប្រតិបតិ្តការរបស់អ្នក +DocType: Employee Attendance Tool,Employees HTML,និយោជិករបស់ HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,គោលបំណងបញ្ឈប់ការដែលមិនអាចត្រូវបានលុបចោល។ ឮដើម្បីលុបចោល។ +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Bom លំនាំដើម ({0}) ត្រូវតែសកម្មសម្រាប់ធាតុនេះឬពុម្ពរបស់ខ្លួន DocType: Employee,Leave Encashed?,ទុកឱ្យ Encashed? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,ឱកាសក្នុងវាលពីគឺចាំបាច់ DocType: Item,Variants,វ៉ារ្យ៉ង់ -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,ធ្វើឱ្យការទិញសណ្តាប់ធ្នាប់ +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,ធ្វើឱ្យការទិញសណ្តាប់ធ្នាប់ DocType: SMS Center,Send To,បញ្ជូនទៅ +apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},មិនមានតុល្យភាពឈប់សម្រាកឱ្យបានគ្រប់គ្រាន់សម្រាប់ទុកឱ្យប្រភេទ {0} DocType: Payment Reconciliation Payment,Allocated amount,ទឹកប្រាក់ដែលត្រៀមបម្រុងទុក DocType: Sales Team,Contribution to Net Total,ការចូលរួមចំណែកក្នុងការសុទ្ធសរុប DocType: Sales Invoice Item,Customer's Item Code,ក្រមធាតុរបស់អតិថិជន @@ -1231,9 +1312,11 @@ DocType: GL Entry,Credit Amount in Account Currency,ចំនួនឥណទា apps/erpnext/erpnext/config/manufacturing.py +24,Time Logs for manufacturing.,កំណត់ហេតុសម្រាប់ការផលិតវេលាម៉ោង។ DocType: Item,Apply Warehouse-wise Reorder Level,អនុវត្តឃ្លាំងប្រាជ្ញារៀបចំកំរិត DocType: Authorization Control,Authorization Control,ការត្រួតពិនិត្យសេចក្តីអនុញ្ញាត +apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +92,Row #{0}: Rejected Warehouse is mandatory against rejected Item {1},ជួរដេក # {0}: ឃ្លាំងគឺជាការចាំបាច់បានច្រានចោលការប្រឆាំងនឹងធាតុច្រានចោល {1} apps/erpnext/erpnext/config/projects.py +23,Time Log for tasks.,កំណត់ហេតុពេលវេលាសម្រាប់ការងារ។ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +562,Payment,ការទូទាត់ DocType: Production Order Operation,Actual Time and Cost,ពេលវេលាពិតប្រាកដនិងការចំណាយ +apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +53,Material Request of maximum {0} can be made for Item {1} against Sales Order {2},ស្នើសុំសម្ភារៈនៃអតិបរមា {0} អាចត្រូវបានធ្វើឡើងសម្រាប់ធាតុ {1} នឹងដីកាសម្រេចលក់ {2} DocType: Employee,Salutation,ពាក្យសួរសុខទុក្ខ DocType: Pricing Rule,Brand,ម៉ាក DocType: Item,Will also apply for variants,ក៏នឹងអនុវត្តសម្រាប់វ៉ារ្យ៉ង់ @@ -1244,6 +1327,7 @@ DocType: Quality Inspection Reading,Reading 10,ការអាន 10 apps/erpnext/erpnext/public/js/setup_wizard.js +278,"List your products or services that you buy or sell. Make sure to check the Item Group, Unit of Measure and other properties when you start.",រាយបញ្ជីផលិតផលឬសេវាកម្មរបស់អ្នកដែលអ្នកទិញឬលក់។ ធ្វើឱ្យប្រាកដថាដើម្បីពិនិត្យមើលធាតុ Group ដែលជាឯកតារង្វាស់និងលក្ខណៈសម្បត្តិផ្សេងទៀតនៅពេលដែលអ្នកចាប់ផ្តើម។ DocType: Hub Settings,Hub Node,ហាប់ថ្នាំង apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +78,You have entered duplicate items. Please rectify and try again.,អ្នកបានបញ្ចូលធាតុស្ទួន។ សូមកែតម្រូវនិងព្យាយាមម្ដងទៀត។ +apps/erpnext/erpnext/controllers/item_variant.py +66,Value {0} for Attribute {1} does not exist in the list of valid Item Attribute Values,តម្លៃ {0} សម្រាប់គុណលក្ខណៈ {1} មិនមាននៅក្នុងបញ្ជីនៃធាតុត្រឹមត្រូវតម្លៃគុណលក្ខណៈ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +87,Associate,រង DocType: SMS Center,Create Receiver List,បង្កើតបញ្ជីអ្នកទទួល DocType: Packing Slip,To Package No.,ខ្ចប់លេខ @@ -1263,6 +1347,8 @@ DocType: SMS Settings,Message Parameter,ប៉ារ៉ាម៉ែត្រស DocType: Serial No,Delivery Document No,ចែកចាយឯកសារមិនមាន DocType: Landed Cost Voucher,Get Items From Purchase Receipts,ទទួលបានធាតុពីបង្កាន់ដៃទិញ DocType: Serial No,Creation Date,កាលបរិច្ឆេទបង្កើត +apps/erpnext/erpnext/stock/doctype/item_price/item_price.py +33,Item {0} appears multiple times in Price List {1},ធាតុ {0} លេចឡើងជាច្រើនដងនៅក្នុងបញ្ជីតម្លៃ {1} +apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +37,"Selling must be checked, if Applicable For is selected as {0}",លក់ត្រូវតែត្រូវបានធីកបើកម្មវិធីសម្រាប់ការត្រូវបានជ្រើសរើសជា {0} DocType: Purchase Order Item,Supplier Quotation Item,ធាតុសម្រង់ក្រុមហ៊ុនផ្គត់ផ្គង់ DocType: Manufacturing Settings,Disables creation of time logs against Production Orders. Operations shall not be tracked against Production Order,មិនអនុញ្ញាតការបង្កើតនៃការពេលវេលាដែលនឹងដីកាកំណត់ហេតុផលិតកម្ម។ ប្រតិបត្ដិការនឹងមិនត្រូវបានតាមដានប្រឆាំងនឹងដីកាសម្រេចរបស់ផលិតកម្ម DocType: Item,Has Variants,មានវ៉ារ្យ៉ង់ @@ -1275,12 +1361,14 @@ apps/erpnext/erpnext/config/projects.py +79,Managing Projects,ការគ្រ DocType: Supplier,Supplier of Goods or Services.,ក្រុមហ៊ុនផ្គត់ផ្គង់ទំនិញឬសេវា។ DocType: Budget Detail,Fiscal Year,ឆ្នាំសារពើពន្ធ DocType: Cost Center,Budget,ថវិការ +apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +41,"Budget cannot be assigned against {0}, as it's not an Income or Expense account","ថវិកាដែលមិនអាចត្រូវបានផ្ដល់ប្រឆាំងនឹង {0}, ដែលជាវាមិនមែនជាគណនីដែលមានប្រាក់ចំណូលឬការចំណាយ" apps/erpnext/erpnext/selling/report/sales_person_target_variance_item_group_wise/sales_person_target_variance_item_group_wise.py +51,Achieved,សម្រេចបាន apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +65,Territory / Customer,ទឹកដី / អតិថិជន apps/erpnext/erpnext/public/js/setup_wizard.js +224,e.g. 5,ឧ 5 DocType: Sales Invoice,In Words will be visible once you save the Sales Invoice.,នៅក្នុងពាក្យនោះនឹងត្រូវបានមើលឃើញនៅពេលដែលអ្នករក្សាទុកវិក័យប័ត្រលក់។ DocType: Item,Is Sales Item,តើមានធាតុលក់ apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +21,Item Group Tree,ធាតុគ្រុបដើមឈើមួយដើម +apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +69,Item {0} is not setup for Serial Nos. Check Item master,ធាតុ {0} មិនត្រូវបានដំឡើងសម្រាប់ការសៀរៀល Nos ។ សូមពិនិត្យមើលមេធាតុ DocType: Maintenance Visit,Maintenance Time,ថែទាំម៉ោង ,Amount to Deliver,ចំនួនទឹកប្រាក់ដែលផ្តល់ apps/erpnext/erpnext/public/js/setup_wizard.js +286,A Product or Service,ផលិតផលឬសេវាកម្ម @@ -1288,13 +1376,15 @@ DocType: Naming Series,Current Value,តម្លៃបច្ចុប្បន DocType: Delivery Note Item,Against Sales Order,ប្រឆាំងនឹងដីកាលក់ ,Serial No Status,ស្ថានភាពគ្មានសៀរៀល apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +448,Item table can not be blank,តារាងធាតុមិនអាចទទេ +apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +138,"Row {0}: To set {1} periodicity, difference between from and to date \ + must be greater than or equal to {2}","ជួរដេក {0}: ដើម្បីកំណត់ {1} រយៈពេល, ភាពខុសគ្នារវាងពីនិងដើម្បីកាលបរិច្ឆេទ \ ត្រូវតែធំជាងឬស្មើទៅនឹង {2}" DocType: Pricing Rule,Selling,លក់ DocType: Employee,Salary Information,ពត៌មានប្រាក់បៀវត្ស DocType: Sales Person,Name and Employee ID,ឈ្មោះនិងលេខសម្គាល់របស់និយោជិត apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,កាលបរិច្ឆេទដោយសារតែមិនអាចមានមុនពេលការប្រកាសកាលបរិច្ឆេទ DocType: Website Item Group,Website Item Group,វេបសាយធាតុគ្រុប apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,ភារកិច្ចនិងពន្ធ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,សូមបញ្ចូលកាលបរិច្ឆេទយោង +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,សូមបញ្ចូលកាលបរិច្ឆេទយោង apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,ការទូទាត់គណនី Gateway ដែលមិនត្រូវបានកំណត់រចនាសម្ព័ន្ធ DocType: Item Website Specification,Table for Item that will be shown in Web Site,តារាងសម្រាប់ធាតុដែលនឹងត្រូវបានបង្ហាញនៅក្នុងវ៉ិបសាយ DocType: Purchase Order Item Supplied,Supplied Qty,ការផ្គត់ផ្គង់ Qty @@ -1303,11 +1393,13 @@ apps/erpnext/erpnext/config/stock.py +98,Tree of Item Groups.,មែកធាង apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +100,Cannot refer row number greater than or equal to current row number for this Charge type,មិនអាចយោងលេខជួរដេកធំជាងឬស្មើទៅនឹងចំនួនជួរដេកបច្ចុប្បន្នសម្រាប់ប្រភេទការចោទប្រកាន់នេះ ,Item-wise Purchase History,ប្រវត្តិទិញប្រាជ្ញាធាតុ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +152,Red,ពណ៌ក្រហម +apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +228,Please click on 'Generate Schedule' to fetch Serial No added for Item {0},សូមចុចលើ 'បង្កើតតារាង "ដើម្បីទៅប្រមូលយកសៀរៀលគ្មានបានបន្ថែមសម្រាប់ធាតុ {0} DocType: Account,Frozen,ទឹកកក ,Open Production Orders,ការបើកចំហរការបញ្ជាទិញផលិតកម្ម DocType: Installation Note,Installation Time,ពេលដំឡើង DocType: Sales Invoice,Accounting Details,សេចក្ដីលម្អិតគណនី apps/erpnext/erpnext/setup/doctype/company/company.js +44,Delete all the Transactions for this Company,លុបប្រតិបត្តិការទាំងអស់សម្រាប់ក្រុមហ៊ុននេះ +apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +190,Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Production Order # {3}. Please update operation status via Time Logs,ជួរដេក # {0}: ប្រតិបត្ដិការ {1} មិនត្រូវបានបញ្ចប់សម្រាប់ {2} qty ទំនិញសម្រេចនៅក្នុងផលិតកម្មលំដាប់ # {3} ។ សូមធ្វើឱ្យទាន់សម័យស្ថានភាពកំណត់ហេតុម៉ោងប្រតិបត្ដិការតាមរយៈការ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +57,Investments,ការវិនិយោគ DocType: Issue,Resolution Details,ពត៌មានលំអិតការដោះស្រាយ DocType: Quality Inspection Reading,Acceptance Criteria,លក្ខណៈវិនិច្ឆ័យក្នុងការទទួលយក @@ -1327,6 +1419,7 @@ DocType: Activity Cost,Costing Rate,អត្រាការប្រាក់ DocType: Employee,Resignation Letter Date,កាលបរិច្ឆេទលិខិតលាលែងពីតំណែង apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +37,Pricing Rules are further filtered based on quantity.,ក្បួនកំណត់តម្លៃត្រូវបានត្រងបន្ថែមទៀតដោយផ្អែកលើបរិមាណ។ apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +61,Repeat Customer Revenue,ប្រាក់ចំណូលគយបានធ្វើម្តងទៀត +apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +51,{0} ({1}) must have role 'Expense Approver',{0} ({1}) ត្រូវតែមានតួនាទីជា "អ្នកអនុម័តការចំណាយ" apps/erpnext/erpnext/public/js/setup_wizard.js +292,Pair,គូ DocType: Bank Reconciliation Detail,Against Account,ប្រឆាំងនឹងគណនី DocType: Maintenance Schedule Detail,Actual Date,ជាក់ស្តែងកាលបរិច្ឆេទ @@ -1340,7 +1433,7 @@ DocType: Shipping Rule Condition,Shipping Amount,ចំនួនទឹកប្ ,Pending Amount,ចំនួនទឹកប្រាក់ដែលមិនទាន់សម្រេច DocType: Purchase Invoice Item,Conversion Factor,ការប្រែចិត្តជឿកត្តា DocType: Purchase Order,Delivered,បានបញ្ជូន -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),រៀបចំម៉ាស៊ីនបម្រើចូលមកសម្រាប់លេខសម្គាល់ការងារអ៊ីមែល។ (ឧ jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),រៀបចំម៉ាស៊ីនបម្រើចូលមកសម្រាប់លេខសម្គាល់ការងារអ៊ីមែល។ (ឧ jobs@example.com) DocType: Purchase Receipt,Vehicle Number,ចំនួនរថយន្ត DocType: Purchase Invoice,The date on which recurring invoice will be stop,ថ្ងៃដែលនឹងត្រូវកើតឡើងវិក្កយបត្របញ្ឈប់ការ DocType: Journal Entry,Accounts Receivable,គណនីអ្នកទទួល @@ -1355,7 +1448,7 @@ DocType: HR Settings,HR Settings,ការកំណត់ធនធានមន apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,ពាក្យបណ្តឹងលើការចំណាយគឺត្រូវរង់ចាំការអនុម័ត។ មានតែការអនុម័តលើការចំណាយនេះអាចធ្វើឱ្យស្ថានភាពទាន់សម័យ។ DocType: Purchase Invoice,Additional Discount Amount,ចំនួនទឹកប្រាក់ដែលបញ្ចុះតម្លៃបន្ថែម DocType: Leave Block List Allow,Leave Block List Allow,បញ្ជីប្លុកអនុញ្ញាតឱ្យចាកចេញពី -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abbr មិនអាចមាននៅទទេឬទំហំ +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abbr មិនអាចមាននៅទទេឬទំហំ apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,ជាក្រុមការមិនគ្រុប apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,កីឡា apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,សរុបជាក់ស្តែង @@ -1365,6 +1458,7 @@ apps/erpnext/erpnext/stock/get_item_details.py +107,Please specify Company,ស DocType: Purchase Receipt,Warehouse where you are maintaining stock of rejected items,ឃ្លាំងដែលជាកន្លែងដែលអ្នកត្រូវបានរក្សាឱ្យបាននូវភាគហ៊ុនរបស់ធាតុដែលបានច្រានចោល apps/erpnext/erpnext/public/js/setup_wizard.js +68,Your financial year ends on,កាលពីឆ្នាំហិរញ្ញវត្ថុរបស់អ្នកនឹងបញ្ចប់នៅថ្ងៃ DocType: POS Profile,Price List,តារាងតម្លៃ +apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +20,{0} is now the default Fiscal Year. Please refresh your browser for the change to take effect.,{0} ឥឡូវនេះជាលំនាំដើមឆ្នាំសារពើពន្ធនេះ។ សូមធ្វើឱ្យកម្មវិធីរុករករបស់អ្នកសម្រាប់ការផ្លាស់ប្តូរមានប្រសិទ្ធិភាព។ apps/erpnext/erpnext/projects/doctype/project/project.js +47,Expense Claims,ប្តឹងទាមទារសំណងលើការចំណាយ DocType: Issue,Support,ការគាំទ្រ ,BOM Search,ស្វែងរក Bom @@ -1373,7 +1467,9 @@ apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_ DocType: Workstation,Wages per hour,ប្រាក់ឈ្នួលក្នុងមួយម៉ោង apps/erpnext/erpnext/config/setup.py +83,"Show / Hide features like Serial Nos, POS etc.",បង្ហាញ / លាក់លក្ខណៈពិសេសដូចជាសៀរៀល NOS លោកម៉ាស៊ីនឆូតកាតជាដើម apps/erpnext/erpnext/templates/emails/reorder_item.html +1,Following Material Requests have been raised automatically based on Item's re-order level,បន្ទាប់ពីការសម្ភារៈសំណើត្រូវបានលើកឡើងដោយស្វ័យប្រវត្តិដោយផ្អែកលើកម្រិតឡើងវិញដើម្បីធាតុរបស់ +apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},កត្តាប្រែចិត្តជឿ UOM គឺត្រូវបានទាមទារនៅក្នុងជួរដេក {0} DocType: Salary Slip,Deduction,ការដក +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},ថ្លៃទំនិញបានបន្ថែមសម្រាប់ {0} នៅក្នុងបញ្ជីតម្លៃ {1} DocType: Address Template,Address Template,អាសយដ្ឋានទំព័រគំរូ apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,សូមបញ្ចូលនិយោជិតលេខសម្គាល់នេះបុគ្គលការលក់ DocType: Territory,Classification of Customers by region,ចំណាត់ថ្នាក់នៃអតិថិជនដោយតំបន់ @@ -1398,12 +1494,13 @@ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +126,"Special DocType: Campaign,"Keep Track of Sales Campaigns. Keep track of Leads, Quotations, Sales Order etc from Campaigns to gauge Return on Investment.","រក្សាដាននៃការលក់យុទ្ធនាការ។ រក្សាដាននៃការនាំមុខ, សម្រង់សម្តី, ការលក់លំដាប់លពីយុទ្ធនាការដើម្បីវាស់ស្ទង់ត្រឡប់ទៅលើការវិនិយោគ។" DocType: Expense Claim,Approver,ការអនុម័ត ,SO Qty,សូ Qty +apps/erpnext/erpnext/accounts/doctype/account/account.py +179,"Stock entries exist against warehouse {0}, hence you cannot re-assign or modify Warehouse","ផ្សារភាគហ៊ុនមានការប្រឆាំងនឹងធាតុឃ្លាំង {0}, ហេតុនេះអ្នកមិនអាចឡើងវិញបានផ្តល់តម្លៃឬកែប្រែឃ្លាំង" DocType: Appraisal,Calculate Total Score,គណនាពិន្ទុសរុប DocType: Supplier Quotation,Manufacturing Manager,កម្មវិធីគ្រប់គ្រងកម្មន្តសាល apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,ចំណាំដឹកជញ្ជូនពុះចូលទៅក្នុងកញ្ចប់។ apps/erpnext/erpnext/hooks.py +69,Shipments,ការនាំចេញ DocType: Purchase Order Item,To be delivered to customer,ត្រូវបានបញ្ជូនទៅកាន់អតិថិជន -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,ស្ថានភាពកំណត់ហេតុម៉ោងត្រូវជូន។ +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,ស្ថានភាពកំណត់ហេតុម៉ោងត្រូវជូន។ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,ជួរដេក # DocType: Purchase Invoice,In Words (Company Currency),នៅក្នុងពាក្យ (ក្រុមហ៊ុនរូបិយវត្ថុ) DocType: Pricing Rule,Supplier,ក្រុមហ៊ុនផ្គត់ផ្គង់ @@ -1416,7 +1513,8 @@ DocType: Leave Application,Total Leave Days,សរុបថ្ងៃស្លឹ DocType: Email Digest,Note: Email will not be sent to disabled users,ចំណាំ: អ៊ីម៉ែលនឹងមិនត្រូវបានផ្ញើទៅកាន់អ្នកប្រើជនពិការ apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,ជ្រើសក្រុមហ៊ុន ... DocType: Leave Control Panel,Leave blank if considered for all departments,ប្រសិនបើអ្នកទុកវាឱ្យទទេទាំងអស់ពិចារណាសម្រាប់នាយកដ្ឋាន -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).",ប្រភេទការងារ (អចិន្ត្រយ៍កិច្ចសន្យាហាត់ជាដើម) ។ +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).",ប្រភេទការងារ (អចិន្ត្រយ៍កិច្ចសន្យាហាត់ជាដើម) ។ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} គឺជាការចាំបាច់សម្រាប់ធាតុ {1} DocType: Currency Exchange,From Currency,ចាប់ពីរូបិយប័ណ្ណ apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","សូមជ្រើសចំនួនទឹកប្រាក់ដែលបានបម្រុងទុក, ប្រភេទវិក័យប័ត្រនិងលេខវិក្កយបត្រក្នុងមួយជួរដេកយ៉ាងហោចណាស់" DocType: Purchase Invoice Item,Rate (Company Currency),អត្រាការប្រាក់ (ក្រុមហ៊ុនរូបិយវត្ថុ) @@ -1441,7 +1539,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,សណ្តាប់ធ្នាប់ការលក់ទៅការទូទាត់ DocType: Expense Claim Detail,Expense Claim Detail,ពត៌មានលំអិតពាក្យបណ្តឹងលើការចំណាយ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,កំណត់ហេតុបង្កើតឡើងវេលាម៉ោង: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,សូមជ្រើសរើសគណនីដែលត្រឹមត្រូវ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,សូមជ្រើសរើសគណនីដែលត្រឹមត្រូវ DocType: Item,Weight UOM,ទំងន់ UOM DocType: Employee,Blood Group,ក្រុមឈាម DocType: Purchase Invoice Item,Page Break,ការបំបែកទំព័រ @@ -1473,7 +1571,10 @@ DocType: Time Log,To Time,ទៅពេល DocType: Authorization Rule,Approving Role (above authorized value),ការអនុម័តតួនាទី (ខាងលើតម្លៃដែលបានអនុញ្ញាត) apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +25,"To add child nodes, explore tree and click on the node under which you want to add more nodes.",ដើម្បីបន្ថែមថ្នាំងកុមារស្វែងយល់ពីដើមឈើហើយចុចលើថ្នាំងក្រោមដែលអ្នកចង់បន្ថែមថ្នាំងបន្ថែមទៀត។ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103,Credit To account must be a Payable account,ឥណទានទៅគណនីត្រូវតែជាគណនីទូទាត់មួយ +apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},ការហៅខ្លួនឯង Bom: {0} មិនអាចជាឪពុកម្តាយឬកូនរបស់ {2} DocType: Production Order Operation,Completed Qty,Qty បានបញ្ចប់ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry",{0} មានតែគណនីឥណពន្ធអាចត្រូវបានតភ្ជាប់ប្រឆាំងនឹងធាតុឥណទានផ្សេងទៀត +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,បញ្ជីតម្លៃ {0} ត្រូវបានបិទ DocType: Manufacturing Settings,Allow Overtime,អនុញ្ញាតឱ្យបន្ថែមម៉ោង DocType: Stock Reconciliation Item,Current Valuation Rate,អត្រាវាយតម្លៃនាពេលបច្ចុប្បន្ន DocType: Item,Customer Item Codes,កូដធាតុអតិថិជន @@ -1502,6 +1603,7 @@ DocType: Appraisal Goal,Appraisal Goal,គោលដៅវាយតម្លៃ DocType: Time Log,Costing Amount,ចំនួនទឹកប្រាក់ដែលចំណាយថវិកាអស់ DocType: Process Payroll,Submit Salary Slip,ដាក់ស្នើប្រាក់ខែគ្រូពេទ្យប្រហែលជា DocType: Salary Structure,Monthly Earning & Deduction,ការរកប្រាក់ចំណូលប្រចាំខែនិងការកាត់កង +apps/erpnext/erpnext/controllers/selling_controller.py +157,Maxiumm discount for Item {0} is {1}%,ការបញ្ចុះតម្លៃ Maxiumm សម្រាប់ធាតុ {0} គឺ {1}% apps/erpnext/erpnext/stock/doctype/item_price/item_price.js +16,Import in Bulk,នាំចូលក្នុងក្រុម DocType: Sales Partner,Address & Contacts,អាសយដ្ឋាន & ទំនាក់ទំនង DocType: SMS Log,Sender Name,ឈ្មោះរបស់អ្នកផ្ញើ @@ -1509,6 +1611,7 @@ DocType: POS Profile,[Select],[ជ្រើស] DocType: SMS Log,Sent To,ដែលបានផ្ញើទៅ DocType: Payment Request,Make Sales Invoice,ធ្វើឱ្យការលក់វិក័យប័ត្រ DocType: Company,For Reference Only.,ឯកសារយោងប៉ុណ្ណោះ។ +apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +49,Invalid {0}: {1},មិនត្រឹមត្រូវ {0} {1} DocType: Sales Invoice Advance,Advance Amount,មុនចំនួនទឹកប្រាក់ DocType: Manufacturing Settings,Capacity Planning,ផែនការការកសាងសមត្ថភាព apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +43,'From Date' is required,"ពីកាលបរិច្ឆេទ 'ត្រូវបានទាមទារ @@ -1516,10 +1619,10 @@ DocType: Journal Entry,Reference Number,សេចក្តីយោងលេខ DocType: Employee,Employment Details,ព័ត៌មានការងារ DocType: Employee,New Workplace,ញូការងារ apps/erpnext/erpnext/crm/doctype/opportunity/opportunity_list.js +17,Set as Closed,ដែលបានកំណត់ជាបិទ +apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},គ្មានធាតុជាមួយនឹងលេខកូដ {0} apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,សំណុំរឿងលេខមិនអាចមាន 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,ប្រសិនបើអ្នកមានក្រុមលក់និងដៃគូលក់ (ឆានែលដៃគូរ) ពួកគេអាចត្រូវបានដាក់ស្លាកនិងរក្សាបាននូវការចូលរួមចំណែករបស់គេនៅក្នុងសកម្មភាពនៃការលក់ DocType: Item,Show a slideshow at the top of the page,បង្ហាញតែការបញ្ចាំងស្លាយមួយនៅផ្នែកខាងលើនៃទំព័រនេះ -DocType: Item,"Allow in Sales Order of type ""Service""",អនុញ្ញាតឱ្យនៅក្នុងការលក់សណ្តាប់ធ្នាប់នៃប្រភេទ "សេវា" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,ហាងលក់ DocType: Time Log,Projects Manager,ការគ្រប់គ្រងគម្រោង DocType: Serial No,Delivery Time,ម៉ោងដឹកជញ្ជូន @@ -1534,6 +1637,7 @@ DocType: Rename Tool,Rename Tool,ឧបករណ៍ប្តូរឈ្មោ apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,តម្លៃដែលធ្វើឱ្យទាន់សម័យ DocType: Item Reorder,Item Reorder,ធាតុរៀបចំ apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,សម្ភារៈសេវាផ្ទេរប្រាក់ +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},ធាតុ {0} ត្រូវតែជាធាតុលក់នៅ {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","បញ្ជាក់ប្រតិបត្តិការ, ការចំណាយប្រតិបត្ដិការនិងផ្ដល់ឱ្យនូវប្រតិបត្ដិការតែមួយគត់នោះទេដើម្បីឱ្យប្រតិបត្តិការរបស់អ្នក។" DocType: Purchase Invoice,Price List Currency,បញ្ជីតម្លៃរូបិយប័ណ្ណ DocType: Naming Series,User must always select,អ្នកប្រើដែលត្រូវតែជ្រើសតែងតែ @@ -1549,16 +1653,20 @@ DocType: Quality Inspection,Purchase Receipt No,គ្មានបង្កា apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +30,Earnest Money,ប្រាក់ Earnest បាន DocType: Process Payroll,Create Salary Slip,បង្កើតប្រាក់ខែគ្រូពេទ្យប្រហែលជា apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +158,Source of Funds (Liabilities),ប្រភពមូលនិធិ (បំណុល) +apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +349,Quantity in row {0} ({1}) must be same as manufactured quantity {2},បរិមាណដែលត្រូវទទួលទានក្នុងមួយជួរដេក {0} ({1}) ត្រូវតែមានដូចគ្នាបរិមាណផលិត {2} DocType: Appraisal,Employee,បុគ្គលិក apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,នាំចូលអ៊ីមែលពី apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,អញ្ជើញជាអ្នកប្រើប្រាស់ DocType: Features Setup,After Sale Installations,បន្ទាប់ពីការដំឡើងលក់ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} ត្រូវបានផ្សព្វផ្សាយឱ្យបានពេញលេញ DocType: Workstation Working Hour,End Time,ពេលវេលាបញ្ចប់ apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,លក្ខខណ្ឌនៃកិច្ចសន្យាស្តង់ដាមួយសម្រាប់ការលក់ឬទិញ។ apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,ក្រុមតាមប័ណ្ណ apps/erpnext/erpnext/templates/form_grid/material_request_grid.html +7,Required On,តម្រូវការនៅលើ DocType: Sales Invoice,Mass Mailing,អភិបូជាសំបុត្ររួម DocType: Rename Tool,File to Rename,ឯកសារដែលត្រូវប្តូរឈ្មោះ +apps/erpnext/erpnext/controllers/buying_controller.py +236,Specified BOM {0} does not exist for Item {1},Bom បានបញ្ជាក់ {0} មិនមានសម្រាប់ធាតុ {1} +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +198,Maintenance Schedule {0} must be cancelled before cancelling this Sales Order,កាលវិភាគថែរក្សា {0} ត្រូវតែបានលុបចោលមុនពេលលុបចោលការបញ្ជាលក់នេះ DocType: Notification Control,Expense Claim Approved,ពាក្យបណ្តឹងលើការចំណាយបានអនុម័ត apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +113,Pharmaceutical,ឱសថ apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Cost of Purchased Items,តម្លៃនៃធាតុដែលបានទិញ @@ -1575,17 +1683,18 @@ DocType: Upload Attendance,Attendance To Date,ចូលរួមកាលបរ apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),រៀបចំម៉ាស៊ីនបម្រើចូលមកសម្រាប់លេខសម្គាល់ការលក់អ៊ីមែល។ (ឧ sales@example.com) DocType: Warranty Claim,Raised By,បានលើកឡើងដោយ DocType: Payment Gateway Account,Payment Account,គណនីទូទាត់ប្រាក់ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,សូមបញ្ជាក់ក្រុមហ៊ុនដើម្បីបន្ត +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,សូមបញ្ជាក់ក្រុមហ៊ុនដើម្បីបន្ត apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,ការផ្លាស់ប្តូរសុទ្ធក្នុងគណនីអ្នកទទួល apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,ទូទាត់បិទ DocType: Quality Inspection Reading,Accepted,បានទទួលយក apps/erpnext/erpnext/setup/doctype/company/company.js +24,Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone.,សូមប្រាកដថាអ្នកពិតជាចង់លុបប្រតិបតិ្តការទាំងអស់សម្រាប់ក្រុមហ៊ុននេះ។ ទិន្នន័យមេរបស់អ្នកនឹងនៅតែជាវាគឺជា។ សកម្មភាពនេះមិនអាចមិនធ្វើវិញ។ DocType: Payment Tool,Total Payment Amount,ចំនួនទឹកប្រាក់សរុប +apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +145,{0} ({1}) cannot be greater than planned quanitity ({2}) in Production Order {3},{0} ({1}) មិនអាចច្រើនជាងការគ្រោងទុក quanitity ({2}) នៅក្នុងផលិតកម្មលំដាប់ {3} DocType: Shipping Rule,Shipping Rule Label,វិធានការដឹកជញ្ជូនស្លាក apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,វត្ថុធាតុដើមដែលមិនអាចត្រូវបានទទេ។ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","មិនអាចធ្វើឱ្យទាន់សម័យហ៊ុន, វិក័យប័ត្រមានធាតុដឹកជញ្ជូនទម្លាក់។" DocType: Newsletter,Test,ការធ្វើតេស្ត -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","ដូចដែលមានប្រតិបតិ្តការភាគហ៊ុនដែលមានស្រាប់សម្រាប់ធាតុនេះ \ អ្នកមិនអាចផ្លាស់ប្តូរតម្លៃនៃ "គ្មានសៀរៀល ',' មានជំនាន់ទីគ្មាន ',' គឺជាធាតុហ៊ុន" និង "វិធីសាស្រ្តវាយតម្លៃ"" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,ធាតុទិនានុប្បវត្តិរហ័ស apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,អ្នកមិនអាចផ្លាស់ប្តូរអត្រាការបានប្រសិនបើ Bom បានរៀបរាប់ agianst ធាតុណាមួយ @@ -1614,6 +1723,7 @@ DocType: Notification Control,Expense Claim Approved Message,សារពាក DocType: Email Digest,How frequently?,តើធ្វើដូចម្តេចឱ្យបានញឹកញាប់? DocType: Purchase Receipt,Get Current Stock,ទទួលបានភាគហ៊ុននាពេលបច្ចុប្បន្ន apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,មែកធាងនៃលោក Bill នៃសម្ភារៈ +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,លោក Mark បច្ចុប្បន្ន DocType: Production Order,Actual End Date,ជាក់ស្តែកាលបរិច្ឆេទបញ្ចប់ DocType: Authorization Rule,Applicable To (Role),ដែលអាចអនុវត្តទៅ (តួនាទី) DocType: Stock Entry,Purpose,គោលបំណង @@ -1627,6 +1737,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,កិច្ចសន្យាដែលកាលបរិច្ឆេទបញ្ចប់ត្រូវតែធំជាងកាលបរិច្ឆេទនៃការចូលរួម DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,ការចែកចាយរបស់ភាគីទីបី / អ្នកចែកបៀ / គណៈកម្មការរបស់ភ្នាក់ងារ / បុត្រសម្ព័ន្ធ / លក់បន្តដែលលក់ផលិតផលរបស់ក្រុមហ៊ុនសម្រាប់គណៈកម្មាការមួយ។ DocType: Customer Group,Has Child Node,មានថ្នាំងកុមារ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} ប្រឆាំងនឹងការទិញលំដាប់ {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","បញ្ចូលប៉ារ៉ាម៉ែត្រ URL ឋិតិវន្តនៅទីនេះ (ឧ។ អ្នកផ្ញើ = ERPNext, ឈ្មោះអ្នកប្រើ = ERPNext ពាក្យសម្ងាត់ = 1234 ល)" apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,នេះត្រូវបានគេហទំព័រជាឧទាហរណ៍មួយបង្កើតដោយស្វ័យប្រវត្តិពី ERPNext apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +37,Ageing Range 1,ជួរ Ageing 1 @@ -1652,11 +1763,14 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 9. Consider Tax or Charge for: In this section you can specify if the tax / charge is only for valuation (not a part of total) or only for total (does not add value to the item) or for both. 10. Add or Deduct: Whether you want to add or deduct the tax.","ពុម្ពស្តង់ដារដែលអាចពន្ធលើត្រូវបានអនុវត្តទៅប្រតិបត្តិការទិញទាំងអស់។ ពុម្ពនេះអាចផ្ទុកបញ្ជីនៃក្បាលពន្ធនិងក្បាលដទៃទៀតដែរដូចជាការការចំណាយ "ការដឹកជញ្ជូន", "ការធានារ៉ាប់រង", "គ្រប់គ្រង" ល #### ចំណាំអត្រាពន្ធដែលអ្នកបានកំណត់នៅទីនេះនឹងមានអត្រាស្តង់ដារសម្រាប់ទាំងអស់ ** ធាតុ * * ។ ប្រសិនបើមានធាតុ ** ** ដែលមានអត្រាការប្រាក់ខុសគ្នា, ពួកគេត្រូវតែត្រូវបានបន្ថែមនៅក្នុងការប្រមូលពន្ធលើធាតុ ** ** នៅ ** តារាងធាតុចៅហ្វាយ ** ។ #### ការពិពណ៌នាសង្ខេបនៃជួរឈរ 1. ប្រភេទគណនា: - នេះអាចមាននៅលើ ** សុទ្ធសរុប ** (នោះគឺជាការបូកនៃចំនួនទឹកប្រាក់ជាមូលដ្ឋាន) ។ - ** នៅលើជួរដេកមុនសរុប / ចំនួន ** (សម្រាប់ការបង់ពន្ធកើនឡើងឬការចោទប្រកាន់) ។ ប្រសិនបើអ្នកជ្រើសជម្រើសនេះ, ពន្ធនេះនឹងត្រូវបានអនុវត្តជាភាគរយនៃជួរដេកពីមុន (ក្នុងតារាងពន្ធនេះ) ចំនួនឬសរុប។ - ** ជាក់ស្តែង ** (ដូចដែលបានរៀបរាប់) ។ 2. ប្រមុខគណនី: សៀវភៅគណនីក្រោមដែលការបង់ពន្ធនេះនឹងត្រូវបានកក់មជ្ឈមណ្ឌលចំនាយ 3: បើពន្ធ / ការទទួលខុសត្រូវគឺជាប្រាក់ចំណូលមួយ (ដូចជាការដឹកជញ្ជូន) ឬចំវាត្រូវការដើម្បីត្រូវបានកក់ប្រឆាំងនឹងការចំណាយផងដែរ។ 4. ការពិពណ៌នាសង្ខេប: ការពិពណ៌នាសង្ខេបនៃការបង់ពន្ធនេះ (ដែលនឹងត្រូវបានបោះពុម្ពនៅក្នុងវិក័យប័ត្រ / សញ្ញាសម្រង់) ។ 5. អត្រាការប្រាក់: អត្រាពន្ធ។ 6. ចំនួន: ចំនួនប្រាក់ពន្ធ។ 7. សរុប: ចំនួនសរុបកើនដល់ចំណុចនេះ។ 8. បញ្ចូលជួរដេក: បើផ្អែកទៅលើ "ជួរដេកពីមុនសរុប" អ្នកអាចជ្រើសចំនួនជួរដេកដែលនឹងត្រូវបានយកជាមូលដ្ឋានមួយសម្រាប់ការគណនានេះ (លំនាំដើមគឺជួរដេកមុន) ។ 9 សូមពិចារណាអំពីការប្រមូលពន្ធលើឬការចោទប្រកាន់ចំពោះ: នៅក្នុងផ្នែកនេះអ្នកអាចបញ្ជាក់ប្រសិនបើពន្ធ / ការចោទប្រកាន់គឺសម្រាប់តែការវាយតម្លៃ (មិនមែនជាផ្នែកមួយនៃចំនួនសរុប) ឬសម្រាប់តែសរុប (មិនបានបន្ថែមតម្លៃដល់ធាតុ) ឬសម្រាប់ទាំងពីរ។ 10. បន្ថែមឬកាត់កង: តើអ្នកចង់បន្ថែមឬកាត់ពន្ធ។" DocType: Purchase Receipt Item,Recd Quantity,បរិមាណដែលត្រូវទទួលទាន Recd +apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},មិនអាចបង្កើតធាតុជាច្រើនទៀត {0} ជាងបរិមាណលំដាប់លក់ {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,ភាគហ៊ុនចូល {0} គឺមិនត្រូវបានដាក់ស្នើ DocType: Payment Reconciliation,Bank / Cash Account,គណនីធនាគារ / សាច់ប្រាក់ DocType: Tax Rule,Billing City,ទីក្រុងវិក័យប័ត្រ DocType: Global Defaults,Hide Currency Symbol,រូបិយប័ណ្ណនិមិត្តសញ្ញាលាក់ apps/erpnext/erpnext/config/accounts.py +174,"e.g. Bank, Cash, Credit Card","ឧធនាគារសាច់ប្រាក់, កាតឥណទាន" DocType: Journal Entry,Credit Note,ឥណទានចំណាំ +apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +219,Completed Qty cannot be more than {0} for operation {1},Qty បញ្ចប់មិនអាចមានច្រើនជាង {0} សម្រាប់ប្រតិបត្តិការ {1} DocType: Features Setup,Quality,ដែលមានគុណភាព DocType: Warranty Claim,Service Address,សេវាអាសយដ្ឋាន apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +83,Max 100 rows for Stock Reconciliation.,អតិបរមា 100 ជួរដេកសម្រាប់ហ៊ុនផ្សះផ្សា។ @@ -1667,6 +1781,7 @@ DocType: Opportunity,Customer / Lead Name,អតិថិជននាំឱ្ apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +63,Clearance Date not mentioned,ការបោសសំអាតកាលបរិច្ឆេទមិនបានលើកឡើង apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +71,Production,ផលិតកម្ម DocType: Item,Allow Production Order,អនុញ្ញាតឱ្យមានការបញ្ជាទិញផលិតផល +apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.js +60,Row {0}:Start Date must be before End Date,ជួរដេក {0}: ចាប់ផ្តើមកាលបរិច្ឆេទត្រូវតែមុនពេលដែលកាលបរិច្ឆេទបញ្ចប់ apps/erpnext/erpnext/controllers/trends.py +19,Total(Qty),សរុប (Qty) DocType: Installation Note Item,Installed Qty,ដែលបានដំឡើង Qty DocType: Lead,Fax,ទូរសារ @@ -1675,7 +1790,7 @@ DocType: Salary Structure,Total Earning,ប្រាក់ចំណូលសរ DocType: Purchase Receipt,Time at which materials were received,ពេលវេលាដែលបានសមា្ភារៈត្រូវបានទទួល apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,អាសយដ្ឋានរបស់ខ្ញុំ DocType: Stock Ledger Entry,Outgoing Rate,អត្រាចេញ -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,ចៅហ្វាយសាខាអង្គការ។ +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,ចៅហ្វាយសាខាអង្គការ។ apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,ឬ DocType: Sales Order,Billing Status,ស្ថានភាពវិក័យប័ត្រ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,ចំណាយឧបករណ៍ប្រើប្រាស់ @@ -1695,6 +1810,7 @@ apps/erpnext/erpnext/accounts/doctype/account/account.js +57,Ledger,សៀវភ DocType: Target Detail,Target Amount,គោលដៅចំនួនទឹកប្រាក់ DocType: Shopping Cart Settings,Shopping Cart Settings,ការកំណត់កន្រ្តកទំនិញ DocType: Journal Entry,Accounting Entries,ធាតុគណនេយ្យ +apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +25,Global POS Profile {0} already created for company {1},ប្រវត្តិម៉ាស៊ីនឆូតកាតសកល {0} បានបង្កើតឡើងរួចទៅហើយសម្រាប់ក្រុមហ៊ុន {1} DocType: Purchase Order,Ref SQ,យោង SQ apps/erpnext/erpnext/config/manufacturing.py +56,Replace Item / BOM in all BOMs,ជំនួសធាតុ / Bom ក្នុង BOMs ទាំងអស់ DocType: Purchase Order Item,Received Qty,ទទួលបានការ Qty @@ -1709,11 +1825,12 @@ DocType: Bin,Reserved Quantity,បរិមាណបំរុងទុក DocType: Landed Cost Voucher,Purchase Receipt Items,ទទួលទិញរបស់របរ apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,ទម្រង់តាមបំណង DocType: Account,Income Account,គណនីប្រាក់ចំណូល -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,ការដឹកជញ្ជូន +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,ការដឹកជញ្ជូន DocType: Stock Reconciliation Item,Current Qty,Qty នាពេលបច្ចុប្បន្ន DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",សូមមើល "អត្រានៃមូលដ្ឋាននៅលើសម្ភារៈ" នៅក្នុងផ្នែកទីផ្សារ DocType: Appraisal Goal,Key Responsibility Area,តំបន់ភារកិច្ចសំខាន់ DocType: Item Reorder,Material Request Type,ប្រភេទស្នើសុំសម្ភារៈ +apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +85,Row {0}: UOM Conversion Factor is mandatory,ជួរដេក {0}: UOM ការប្រែចិត្តជឿកត្តាគឺជាការចាំបាច់ apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +17,Ref,យោង DocType: Cost Center,Cost Center,មជ្ឈមណ្ឌលការចំណាយ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,# កាតមានទឹកប្រាក់ @@ -1729,7 +1846,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,ព apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","បើសិនជាវិធានតម្លៃដែលបានជ្រើសត្រូវបានបង្កើតឡើងសម្រាប់ "តំលៃ" វានឹងសរសេរជាន់លើបញ្ជីតម្លៃ។ តម្លៃដែលកំណត់តម្លៃគឺជាតម្លៃវិធានចុងក្រោយនេះបានបញ្ចុះតម្លៃបន្ថែមទៀតដូច្នេះមិនមានគួរត្រូវបានអនុវត្ត។ ហេតុនេះហើយបានជានៅក្នុងប្រតិបត្តិការដូចជាការលក់សណ្តាប់ធ្នាប់, ការទិញលំដាប់លនោះវានឹងត្រូវបានទៅយកនៅក្នុងវិស័យ 'អត្រា' ជាជាងវាល "តំលៃអត្រាបញ្ជី។" apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,បទនាំតាមប្រភេទឧស្សាហកម្ម។ DocType: Item Supplier,Item Supplier,ផ្គត់ផ្គង់ធាតុ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,សូមបញ្ចូលលេខកូដធាតុដើម្បីទទួលបាច់នោះទេ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,សូមបញ្ចូលលេខកូដធាតុដើម្បីទទួលបាច់នោះទេ apps/erpnext/erpnext/config/selling.py +33,All Addresses.,អាសយដ្ឋានទាំងអស់។ DocType: Company,Stock Settings,ការកំណត់តម្លៃភាគហ៊ុន apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","រួមបញ្ចូលគ្នារវាងគឺអាចធ្វើបានតែប៉ុណ្ណោះប្រសិនបើមានលក្ខណៈសម្បត្តិដូចខាងក្រោមគឺដូចគ្នានៅក្នុងកំណត់ត្រាទាំងពីរ។ គឺជាក្រុម, ប្រភេទជា Root ក្រុមហ៊ុន" @@ -1740,6 +1857,7 @@ apps/erpnext/erpnext/utilities/doctype/address/address.py +95,No default Address DocType: Appraisal,HR User,ធនធានមនុស្សរបស់អ្នកប្រើប្រាស់ DocType: Purchase Invoice,Taxes and Charges Deducted,ពន្ធនិងការចោទប្រកាន់កាត់ apps/erpnext/erpnext/shopping_cart/utils.py +36,Issues,បញ្ហានានា +apps/erpnext/erpnext/controllers/status_updater.py +12,Status must be one of {0},ស្ថានភាពត្រូវតែជាផ្នែកមួយនៃ {0} DocType: Sales Invoice,Debit To,ឥណពន្ធដើម្បី DocType: Delivery Note,Required only for sample item.,បានទាមទារសម្រាប់តែធាតុគំរូ។ DocType: Stock Ledger Entry,Actual Qty After Transaction,Qty ពិតប្រាកដបន្ទាប់ពីការប្រតិបត្តិការ @@ -1768,7 +1886,7 @@ DocType: Price List,Price List Master,តារាងតម្លៃអនុប DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,ទាំងអស់តិបត្តិការអាចនឹងត្រូវបានដាក់ស្លាកលក់បានច្រើនជនលក់ប្រឆាំងនឹង ** ** ដូច្នេះអ្នកអាចកំណត់និងត្រួតពិនិត្យគោលដៅ។ ,S.O. No.,សូលេខ DocType: Production Order Operation,Make Time Log,ធ្វើឱ្យការកំណត់ហេតុម៉ោង -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,សូមកំណត់បរិមាណការរៀបចំ +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,សូមកំណត់បរិមាណការរៀបចំ DocType: Price List,Applicable for Countries,អនុវត្តសម្រាប់បណ្តាប្រទេស apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,កុំព្យូទ័រ apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,នេះគឺជាក្រុមអតិថិជនជា root និងមិនអាចត្រូវបានកែសម្រួល។ @@ -1778,6 +1896,7 @@ apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +91,From Da DocType: Employee Education,Graduate,បានបញ្ចប់ការសិក្សា DocType: Leave Block List,Block Days,ប្លុកថ្ងៃ DocType: Journal Entry,Excise Entry,ចូលរដ្ឋាករកម្ពុជា +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +63,Warning: Sales Order {0} already exists against Customer's Purchase Order {1},ព្រមាន: ការលក់លំដាប់ {0} រួចហើយប្រឆាំងនឹងការទិញលំដាប់របស់អតិថិជន {1} DocType: Terms and Conditions,"Standard Terms and Conditions that can be added to Sales and Purchases. Examples: @@ -1792,8 +1911,10 @@ Examples: 1. Ways of addressing disputes, indemnity, liability, etc. 1. Address and Contact of your Company.","លក្ខខណ្ឌក្នុងស្ដង់ដារនិងលក្ខខណ្ឌដែលអាចត្រូវបានបន្ថែមទៅការលក់និងការទិញ។ ឧទាហរណ៏: 1. សុពលភាពនៃការផ្តល់ជូននេះ។ 1. លក្ខខណ្ឌក្នុងការទូទាត់ (មុន, នៅលើឥណទានដែលជាផ្នែកមួយមុនល) ។ 1. តើអ្វីជាការបន្ថែម (ឬបង់ដោយអតិថិជន) ។ 1. សុវត្ថិភាពការព្រមាន / ការប្រើប្រាស់។ 1. ការធានាប្រសិនបើមាន។ 1. ត្រឡប់គោលនយោបាយ។ 1. ល័ក្ខខ័ណ្ឌលើការដឹកជញ្ជូន, បើអនុវត្តបាន។ 1. វិធីនៃការដោះស្រាយវិវាទសំណងការទទួលខុសត្រូវជាដើម 1. អាសយដ្ឋាននិងទំនាក់ទំនងរបស់ក្រុមហ៊ុនរបស់អ្នក។" DocType: Attendance,Leave Type,ប្រភេទការឈប់សម្រាក +apps/erpnext/erpnext/controllers/stock_controller.py +172,Expense / Difference account ({0}) must be a 'Profit or Loss' account,គណនីក្នុងការចំណាយ / ភាពខុសគ្នា ({0}) ត្រូវតែជា "ចំណញឬខាត 'គណនី DocType: Account,Accounts User,គណនីអ្នកប្រើប្រាស់ DocType: Sales Invoice,"Check if recurring invoice, uncheck to stop recurring or put proper End Date",ពិនិត្យមើលប្រសិនបើកើតឡើងវិក័យប័ត្រដោះធីកដើម្បីបញ្ឈប់ការកើតឡើងឬដាក់កាលបរិច្ឆេទបញ្ចប់ឱ្យបានត្រឹមត្រូវ +apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +18,Attendance for employee {0} is already marked,ការចូលរួមសម្រាប់ការ {0} បុគ្គលិកត្រូវបានសម្គាល់រួចហើយ DocType: Packing Slip,If more than one package of the same type (for print),បើកញ្ចប់ច្រើនជាងមួយនៃប្រភេទដូចគ្នា (សម្រាប់បោះពុម្ព) DocType: C-Form Invoice Detail,Net Total,សរុប DocType: Bin,FCFS Rate,អត្រា FCFS @@ -1801,7 +1922,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),វិ DocType: Payment Reconciliation Invoice,Outstanding Amount,ចំនួនទឹកប្រាក់ដ៏ឆ្នើម DocType: Project Task,Working,ការងារ DocType: Stock Ledger Entry,Stock Queue (FIFO),ភាគហ៊ុនជួរ (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,សូមជ្រើសម៉ោងកំណត់ហេតុ។ +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,សូមជ្រើសម៉ោងកំណត់ហេតុ។ DocType: Account,Round Off,បិទការប្រកួតជុំទី ,Requested Qty,បានស្នើរសុំ Qty DocType: Tax Rule,Use for Shopping Cart,ប្រើសម្រាប់កន្រ្តកទំនិញ @@ -1809,6 +1930,7 @@ DocType: BOM Item,Scrap %,សំណល់អេតចាយ% apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +38,"Charges will be distributed proportionately based on item qty or amount, as per your selection",បទចោទប្រកាន់នឹងត្រូវបានចែកដោយផ្អែកលើធាតុ qty សមាមាត្រឬបរិមាណជាមួយជម្រើសរបស់អ្នក DocType: Maintenance Visit,Purposes,គោលបំនង apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +106,Atleast one item should be entered with negative quantity in return document,យ៉ាងហោចណាស់ធាតុមួយដែលគួរតែត្រូវបញ្ចូលដោយបរិមាណអវិជ្ជមាននៅក្នុងឯកសារវិលត្រឡប់មកវិញ +apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +67,"Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations","ប្រតិបត្ដិការ {0} យូរជាងម៉ោងធ្វើការដែលអាចប្រើណាមួយនៅក្នុងស្ថានីយការងារ {1}, បំបែកប្រតិបត្ដិការទៅក្នុងប្រតិបត្ដិការច្រើន" ,Requested,បានស្នើរសុំ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +67,No Remarks,គ្មានសុន្ទរកថា apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js +13,Overdue,ហួសកាលកំណត់ @@ -1818,6 +1940,7 @@ DocType: Salary Slip,Gross Pay + Arrear Amount +Encashment Amount - Total Deduct DocType: Monthly Distribution,Distribution Name,ឈ្មោះចែកចាយ DocType: Features Setup,Sales and Purchase,ការលក់និងទិញ DocType: Supplier Quotation Item,Material Request No,សម្ភារៈគ្មានសំណើរ +apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +211,Quality Inspection required for Item {0},ពិនិត្យគុណភាពបានទាមទារសម្រាប់ធាតុ {0} DocType: Quotation,Rate at which customer's currency is converted to company's base currency,អត្រារូបិយប័ណ្ណអតិថិជនដែលត្រូវបានបម្លែងទៅជារូបិយប័ណ្ណមូលដ្ឋានរបស់ក្រុមហ៊ុន DocType: Purchase Invoice Item,Net Rate (Company Currency),អត្រាការប្រាក់សុទ្ធ (ក្រុមហ៊ុនរូបិយវត្ថុ) apps/erpnext/erpnext/config/crm.py +81,Manage Territory Tree.,គ្រប់គ្រងដើមឈើមួយដើមដែនដី។ @@ -1831,6 +1954,7 @@ DocType: Process Payroll,Create Bank Entry for the total salary paid for the abo DocType: Stock Entry,Material Transfer for Manufacture,ផ្ទេរសម្រាប់ការផលិតសម្ភារៈ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +18,Discount Percentage can be applied either against a Price List or for all Price List.,ភាគរយបញ្ចុះតម្លៃអាចត្រូវបានអនុវត្តទាំងការប្រឆាំងនឹងតារាងតម្លៃមួយឬសម្រាប់តារាងតម្លៃទាំងអស់។ DocType: Purchase Invoice,Half-yearly,ពាក់កណ្តាលប្រចាំឆ្នាំ +apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} not found.,ឆ្នាំសារពើពន្ធ {0} មិនត្រូវបានរកឃើញ។ DocType: Bank Reconciliation,Get Relevant Entries,ទទួលបានធាតុពាក់ព័ន្ធ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,ចូលគណនេយ្យសម្រាប់ក្រុមហ៊ុនផ្សារ DocType: Sales Invoice,Sales Team1,Team1 ការលក់ @@ -1838,17 +1962,21 @@ DocType: Sales Invoice,Customer Address,អាសយដ្ឋានអតិថ DocType: Payment Request,Recipient and Message,អ្នកទទួលនិងសារ DocType: Purchase Invoice,Apply Additional Discount On,អនុវត្តបន្ថែមការបញ្ចុះតម្លៃនៅលើ DocType: Account,Root Type,ប្រភេទជា Root +apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +84,Row # {0}: Cannot return more than {1} for Item {2},ជួរដេក # {0}: មិនអាចវិលត្រឡប់មកវិញច្រើនជាង {1} សម្រាប់ធាតុ {2} apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +52,Plot,ចំណែកដី DocType: Item Group,Show this slideshow at the top of the page,បង្ហាញតែការបញ្ចាំងស្លាយនេះនៅកំពូលនៃទំព័រ DocType: BOM,Item UOM,ធាតុ UOM DocType: Sales Taxes and Charges,Tax Amount After Discount Amount (Company Currency),ចំនួនប្រាក់ពន្ធបន្ទាប់ពីចំនួនការបញ្ចុះតម្លៃ (ក្រុមហ៊ុនរូបិយវត្ថុ) +apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +150,Target warehouse is mandatory for row {0},ឃ្លាំងគោលដៅគឺជាការចាំបាច់សម្រាប់ជួរ {0} DocType: Quality Inspection,Quality Inspection,ពិនិត្យគុណភាព apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +144,Extra Small,បន្ថែមទៀតខ្នាតតូច apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +546,Warning: Material Requested Qty is less than Minimum Order Qty,ព្រមាន: សម្ភារៈដែលបានស្នើ Qty គឺតិចជាងអប្បបរមាលំដាប់ Qty +apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +187,Account {0} is frozen,គណនី {0} គឺការកក DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization.,ផ្នែកច្បាប់អង្គភាព / តារាងរួមផ្សំជាមួយនឹងគណនីដាច់ដោយឡែកមួយដែលជាកម្មសិទ្ធិរបស់អង្គការនេះ។ DocType: Payment Request,Mute Email,ស្ងាត់អ៊ីម៉ែល apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","អាហារ, ភេសជ្ជៈនិងថ្នាំជក់" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,: PL ឬពាណិជ្ជកម្ម BS +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},ត្រឹមតែអាចធ្វើឱ្យការទូទាត់ប្រឆាំងនឹង unbilled {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,អត្រាការគណៈកម្មាការមិនអាចជាធំជាង 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,កម្រិតសារពើភ័ណ្ឌអប្បបរិមា DocType: Stock Entry,Subcontract,របបម៉ៅការ @@ -1867,7 +1995,8 @@ DocType: Maintenance Visit,Scheduled,កំណត់ពេលវេលា apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle",សូមជ្រើសធាតុដែល "គឺជាធាតុហ៊ុន" គឺ "ទេ" ហើយ "តើធាតុលក់" គឺជា "បាទ" ហើយមិនមានកញ្ចប់ផលិតផលផ្សេងទៀត DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,ជ្រើសដើម្បីមិនស្មើគ្នាចែកចាយប្រចាំខែគោលដៅនៅទូទាំងខែចែកចាយ។ DocType: Purchase Invoice Item,Valuation Rate,អត្រាការវាយតម្លៃ -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,រូបិយប័ណ្ណបញ្ជីតម្លៃមិនបានជ្រើសរើស +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,រូបិយប័ណ្ណបញ្ជីតម្លៃមិនបានជ្រើសរើស +apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,ធាតុជួរដេក {0}: ការទទួលទិញ {1} មិនមាននៅក្នុងតារាងខាងលើ "ការទិញបង្កាន់ដៃ" apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,ការចាប់ផ្តើមគម្រោងកាលបរិច្ឆេទ apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +8,Until,រហូតមកដល់ DocType: Rename Tool,Rename Log,ប្តូរឈ្មោះចូល @@ -1876,6 +2005,7 @@ apps/erpnext/erpnext/config/selling.py +98,Manage Sales Partners.,គ្រប DocType: Quality Inspection,Inspection Type,ប្រភេទអធិការកិច្ច DocType: C-Form,C-Form No,ទម្រង់បែបបទគ្មាន C- DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,វត្តមានចំណាំទុក apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,អ្នកស្រាវជ្រាវ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,សូមរក្សាទុកព្រឹត្តិប័ត្រព័ត៌មានមុនពេលបញ្ជូន apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,ឈ្មោះឬអ៊ីម៉ែលចាំបាច់ @@ -1889,6 +2019,7 @@ DocType: Sales Invoice,Advertisement,ការផ្សព្វផ្សាយ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +165,Probationary Period,រយៈពេលសាកល្បង DocType: Customer Group,Only leaf nodes are allowed in transaction,មានតែថ្នាំងស្លឹកត្រូវបានអនុញ្ញាតក្នុងប្រតិបត្តិការ DocType: Expense Claim,Expense Approver,ការអនុម័តការចំណាយ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +110,Row {0}: Advance against Customer must be credit,ជួរដេក {0}: ជាមុនប្រឆាំងនឹងការអតិថិជនត្រូវតែមានការឥណទាន DocType: Purchase Receipt Item Supplied,Purchase Receipt Item Supplied,ធាតុបង្កាន់ដៃទិញសហការី apps/erpnext/erpnext/public/js/pos/pos.js +352,Pay,បង់ប្រាក់ apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +17,To Datetime,ដើម្បី Datetime @@ -1899,7 +2030,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,បា DocType: Payment Gateway,Gateway,ផ្លូវចេញចូល apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,ក្រុមហ៊ុនផ្គត់ផ្គង់> ប្រភេទផ្គត់ផ្គង់ apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,សូមបញ្ចូលកាលបរិច្ឆេទបន្ថយ។ -apps/erpnext/erpnext/controllers/trends.py +137,Amt,AMT +apps/erpnext/erpnext/controllers/trends.py +138,Amt,AMT apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,ទុកឱ្យបានតែកម្មវិធីដែលមានស្ថានភាព 'ត្រូវបានអនុម័ត "អាចត្រូវបានដាក់ស្នើ apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,អាសយដ្ឋានចំណងជើងគឺជាចាំបាច់។ DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,បញ្ចូលឈ្មោះនៃយុទ្ធនាការបានប្រសិនបើប្រភពនៃការស៊ើបអង្កេតគឺជាយុទ្ធនាការ @@ -1913,10 +2044,11 @@ DocType: Address,Preferred Shipping Address,ការដឹកជញ្ជូន DocType: Purchase Receipt Item,Accepted Warehouse,ឃ្លាំងទទួលយក DocType: Bank Reconciliation Detail,Posting Date,ការប្រកាសកាលបរិច្ឆេទ DocType: Item,Valuation Method,វិធីសាស្រ្តវាយតម្លៃ +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,ប្រារព្ធទិវាពាក់កណ្តាល DocType: Sales Invoice,Sales Team,ការលក់ក្រុមការងារ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,ធាតុស្ទួន DocType: Serial No,Under Warranty,នៅក្រោមការធានា -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[កំហុសក្នុងការ] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[កំហុសក្នុងការ] DocType: Sales Order,In Words will be visible once you save the Sales Order.,នៅក្នុងពាក្យនោះនឹងត្រូវបានមើលឃើញនៅពេលដែលអ្នករក្សាសណ្តាប់ធ្នាប់ការលក់។ ,Employee Birthday,បុគ្គលិកខួបកំណើត apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,យ្រប @@ -1938,14 +2070,18 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,ជាមួយនឹងការប្រតិបត្តិការនៃមជ្ឈមណ្ឌលការចំណាយដែលមានស្រាប់ដែលមិនអាចត្រូវបានបម្លែងទៅជាក្រុម DocType: Account,Depreciation,រំលស់ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),ក្រុមហ៊ុនផ្គត់ផ្គង់ (s បាន) +DocType: Employee Attendance Tool,Employee Attendance Tool,ឧបករណ៍វត្តមានបុគ្គលិក DocType: Supplier,Credit Limit,ដែនកំណត់ឥណទាន apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,ជ្រើសប្រភេទនៃការប្រតិបត្តិការ DocType: GL Entry,Voucher No,កាតមានទឹកប្រាក់គ្មាន DocType: Leave Allocation,Leave Allocation,ទុកឱ្យការបម្រុងទុក +apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +396,Material Requests {0} created,សំណើសម្ភារៈ {0} បង្កើតឡើង apps/erpnext/erpnext/config/selling.py +122,Template of terms or contract.,ទំព័រគំរូនៃពាក្យឬកិច្ចសន្យា។ DocType: Customer,Address and Contact,អាស័យដ្ឋាននិងទំនាក់ទំនង DocType: Supplier,Last Day of the Next Month,ចុងក្រោយកាលពីថ្ងៃនៃខែបន្ទាប់ DocType: Employee,Feedback,មតិអ្នក +apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +66,"Leave cannot be allocated before {0}, as leave balance has already been carry-forwarded in the future leave allocation record {1}","ទុកឱ្យមិនអាចត្រូវបានបម្រុងទុកមុន {0}, ដែលជាតុល្យភាពការឈប់សម្រាកបានជាទំនិញ-បានបញ្ជូនបន្តនៅក្នុងកំណត់ត្រាការបែងចែកការឈប់សម្រាកនាពេលអនាគតរួចទៅហើយ {1}" +apps/erpnext/erpnext/accounts/party.py +280,Note: Due / Reference Date exceeds allowed customer credit days by {0} day(s),ចំណាំ: ដោយសារតែ / សេចក្តីយោងកាលបរិច្ឆេទលើសពីអនុញ្ញាតឱ្យថ្ងៃឥណទានរបស់អតិថិជនដោយ {0} ថ្ងៃ (s) DocType: Stock Settings,Freeze Stock Entries,ធាតុបង្កហ៊ុន DocType: Item,Reorder level based on Warehouse,កម្រិតនៃការរៀបចំដែលមានមូលដ្ឋានលើឃ្លាំង DocType: Activity Cost,Billing Rate,អត្រាវិក័យប័ត្រ @@ -1961,6 +2097,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,គណនី root មិនអាចត្រូវបានលុប ,Is Primary Address,គឺជាអាសយដ្ឋានបឋមសិក្សា DocType: Production Order,Work-in-Progress Warehouse,ការងារក្នុងវឌ្ឍនភាពឃ្លាំង +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},សេចក្តីយោង # {0} {1} ចុះកាលបរិច្ឆេទ apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,គ្រប់គ្រងអាសយដ្ឋាន DocType: Pricing Rule,Item Code,ក្រមធាតុ DocType: Production Planning Tool,Create Production Orders,បង្កើតការបញ្ជាទិញផលិតកម្ម @@ -1970,6 +2107,7 @@ DocType: Lead,Market Segment,ចំណែកទីផ្សារ DocType: Employee Internal Work History,Employee Internal Work History,ប្រវត្តិការងាររបស់បុគ្គលិកផ្ទៃក្នុង apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +225,Closing (Dr),បិទ (លោកបណ្ឌិត) DocType: Contact,Passive,អកម្ម +apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +228,Serial No {0} not in stock,គ្មានសៀរៀល {0} មិនត្រូវបាននៅក្នុងស្តុក apps/erpnext/erpnext/config/selling.py +127,Tax template for selling transactions.,ពុម្ពពន្ធលើការលក់ការធ្វើប្រតិបត្តិការ។ DocType: Sales Invoice,Write Off Outstanding Amount,បិទការសរសេរចំនួនទឹកប្រាក់ដ៏ឆ្នើម DocType: Features Setup,"Check if you need automatic recurring invoices. After submitting any sales invoice, Recurring section will be visible.",សូមពិនិត្យមើលប្រសិនបើអ្នកត្រូវការវិក័យប័ត្រកើតឡើងដោយស្វ័យប្រវត្តិ។ បន្ទាប់ពីការដាក់ស្នើវិក័យប័ត្រណាមួយការលក់ព្យាបាលផ្នែកនឹងត្រូវបានមើលឃើញ។ @@ -1984,17 +2122,21 @@ DocType: Sales Invoice Item,Available Qty at Warehouse,ដែលអាចប្ DocType: Bank Reconciliation,Bank Reconciliation,ធនាគារការផ្សះផ្សា apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,ទទួលបានការធ្វើឱ្យទាន់សម័យ apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,បន្ថែមកំណត់ត្រាគំរូមួយចំនួនដែល -apps/erpnext/erpnext/config/hr.py +210,Leave Management,ទុកឱ្យការគ្រប់គ្រង +apps/erpnext/erpnext/config/hr.py +225,Leave Management,ទុកឱ្យការគ្រប់គ្រង apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,ក្រុមតាមគណនី DocType: Sales Order,Fully Delivered,ផ្តល់ឱ្យបានពេញលេញ DocType: Lead,Lower Income,ប្រាក់ចំណូលទាប DocType: Period Closing Voucher,"The account head under Liability, in which Profit/Loss will be booked","ក្បាលត្រូវស្ថិតក្រោមការទទួលខុសត្រូវមានគណនី, ដែលក្នុងនោះប្រាក់ចំនេញ / ការបាត់បង់នឹងត្រូវបានកក់" DocType: Payment Tool,Against Vouchers,ប្រឆាំងនឹងប័ណ្ណទូទាត់ apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +23,Quick Help,ជំនួយរហ័ស +apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +169,Source and target warehouse cannot be same for row {0},ប្រភពនិងឃ្លាំងគោលដៅមិនអាចមានដូចគ្នាសម្រាប់ជួរដេក {0} DocType: Features Setup,Sales Extras,ការលក់បន្ថែម +apps/erpnext/erpnext/accounts/utils.py +346,{0} budget for Account {1} against Cost Center {2} will exceed by {3},{0} ថវិកាសម្រាប់គណនី {1} ប្រឆាំងនឹងមជ្ឈមណ្ឌលតម្លៃ {2} នឹងកើនលើសដោយ {3} apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +243,"Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry",គណនីមានភាពខុសគ្នាត្រូវតែជាគណនីប្រភេទទ្រព្យសកម្ម / ការទទួលខុសត្រូវចាប់តាំងពីការផ្សះផ្សានេះគឺផ្សារភាគហ៊ុនការបើកជាមួយធាតុ apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"ពីកាលបរិច្ឆេទ" ត្រូវតែមានបន្ទាប់ 'ដើម្បីកាលបរិច្ឆេទ " ,Stock Projected Qty,គម្រោង Qty ផ្សារភាគហ៊ុន +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},អតិថិជន {0} មិនមែនជារបស់គម្រោង {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,វត្តមានដែលបានសម្គាល់ជា HTML DocType: Sales Order,Customer's Purchase Order,ទិញលំដាប់របស់អតិថិជន DocType: Warranty Claim,From Company,ពីក្រុមហ៊ុន apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,តំលៃឬ Qty @@ -2007,6 +2149,7 @@ DocType: Sales Partner,Retailer,ការលក់រាយ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +100,Credit To account must be a Balance Sheet account,ឥណទានទៅគណនីត្រូវតែមានតារាងតុល្យការគណនី apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +128,All Supplier Types,ក្រុមហ៊ុនផ្គត់ផ្គង់គ្រប់ប្រភេទ apps/erpnext/erpnext/stock/doctype/item/item.py +46,Item Code is mandatory because Item is not automatically numbered,ក្រមធាតុគឺជាចាំបាច់ដោយសារតែធាតុបង់លេខដោយស្វ័យប្រវត្តិគឺមិន +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +94,Quotation {0} not of type {1},សម្រង់ {0} មិនត្រូវបាននៃប្រភេទ {1} DocType: Maintenance Schedule Item,Maintenance Schedule Item,កាលវិភាគធាតុថែទាំ DocType: Sales Order,% Delivered,% ដឹកនាំ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +177,Bank Overdraft Account,ធនាគាររូបារូប @@ -2017,6 +2160,7 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Appraisal,Appraisal,ការវាយតម្លៃ apps/erpnext/erpnext/hr/doctype/leave_block_list/leave_block_list.py +22,Date is repeated,កាលបរិច្ឆេទគឺត្រូវបានធ្វើម្តងទៀត apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +27,Authorized Signatory,ហត្ថលេខីដែលបានអនុញ្ញាត +apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +164,Leave approver must be one of {0},ទុកឱ្យការអនុម័តត្រូវតែជាផ្នែកមួយនៃ {0} DocType: Hub Settings,Seller Email,អ្នកលក់អ៊ីម៉ែល DocType: Project,Total Purchase Cost (via Purchase Invoice),ការចំណាយទិញសរុប (តាមរយៈការទិញវិក័យប័ត្រ) DocType: Workstation Working Hour,Start Time,ពេលវេលាចាប់ផ្ដើម @@ -2032,10 +2176,12 @@ DocType: Purchase Invoice Item,Net Amount (Company Currency),ចំនួនទ DocType: BOM Operation,Hour Rate,ហួរអត្រា DocType: Stock Settings,Item Naming By,ធាតុដាក់ឈ្មោះតាម DocType: Production Order,Material Transferred for Manufacturing,សម្ភារៈផ្ទេរសម្រាប់កម្មន្តសាល +apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +29,Account {0} does not exists,គណនី {0} មិនមាន DocType: Purchase Receipt Item,Purchase Order Item No,ទិញធាតុលំដាប់គ្មាន DocType: Project,Project Type,ប្រភេទគម្រោង apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,ទាំង qty គោលដៅឬគោលដៅចំនួនទឹកប្រាក់គឺជាចាំបាច់។ apps/erpnext/erpnext/config/projects.py +38,Cost of various activities,ការចំណាយនៃសកម្មភាពនានា +apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +101,Not allowed to update stock transactions older than {0},មិនត្រូវបានអនុញ្ញាតឱ្យធ្វើបច្ចុប្បន្នភាពប្រតិបតិ្តការភាគហ៊ុនចាស់ជាង {0} DocType: Item,Inspection Required,អធិការកិច្ចដែលបានទាមទារ DocType: Purchase Invoice Item,PR Detail,ពត៌មាននៃការិយាល័យទទួលជំនួយផ្ទាល់ DocType: Sales Order,Fully Billed,ផ្សព្វផ្សាយឱ្យបានពេញលេញ @@ -2049,9 +2195,11 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +43,"Even if DocType: Supplier,Supplier Details,ពត៌មានលំអិតក្រុមហ៊ុនផ្គត់ផ្គង់ DocType: Expense Claim,Approval Status,ស្ថានភាពការអនុម័ត DocType: Hub Settings,Publish Items to Hub,បោះពុម្ពផ្សាយធាតុហាប់ +apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From value must be less than to value in row {0},ពីតម្លៃត្រូវតែតិចជាងទៅនឹងតម្លៃនៅក្នុងជួរដេក {0} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,ការផ្ទេរខ្សែ apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,សូមជ្រើសរើសគណនីធនាគារ DocType: Newsletter,Create and Send Newsletters,បង្កើតនិងផ្ញើការពិពណ៌នា +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,សូមពិនិត្យមើលទាំងអស់ DocType: Sales Order,Recurring Order,លំដាប់កើតឡើង DocType: Company,Default Income Account,គណនីចំណូលលំនាំដើម apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,ក្រុមផ្ទាល់ខ្លួន / អតិថិជន @@ -2065,6 +2213,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +37,Calls,ការ DocType: Project,Total Costing Amount (via Time Logs),ចំនួនទឹកប្រាក់ផ្សារសរុប (តាមរយៈការពេលវេលាកំណត់ហេតុ) DocType: Purchase Order Item Supplied,Stock UOM,ភាគហ៊ុន UOM apps/erpnext/erpnext/stock/doctype/item/item.js +32,Projected,ការព្យាករ +apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +218,Serial No {0} does not belong to Warehouse {1},សៀរៀលគ្មាន {0} មិនមែនជារបស់ឃ្លាំង {1} +apps/erpnext/erpnext/controllers/status_updater.py +139,Note: System will not check over-delivery and over-booking for Item {0} as quantity or amount is 0,ចំណាំ: ប្រព័ន្ធនឹងមិនបានពិនិត្យមើលលើការចែកចាយនិងការកក់សម្រាប់ធាតុ {0} ជាបរិមាណឬចំនួនទឹកប្រាក់គឺ 0 DocType: Notification Control,Quotation Message,សារសម្រង់ DocType: Issue,Opening Date,ពិធីបើកកាលបរិច្ឆេទ DocType: Journal Entry,Remark,សំគាល់ @@ -2080,6 +2230,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,ការវិលត DocType: Item,Warranty Period (in days),ការធានារយៈពេល (នៅក្នុងថ្ងៃ) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,ប្រតិបត្ដិការសាច់ប្រាក់សុទ្ធពី apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,ឧអាករលើតម្លៃបន្ថែម +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,ចូលរួមក្នុងក្រុមរបស់លោក Mark បុគ្គលិក apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,ធាតុ 4 DocType: Journal Entry Account,Journal Entry Account,គណនីធាតុទិនានុប្បវត្តិ DocType: Shopping Cart Settings,Quotation Series,សម្រង់កម្រងឯកសារ @@ -2116,6 +2267,7 @@ DocType: Delivery Note Item,Available Batch Qty at From Warehouse,Qty បាច apps/erpnext/erpnext/manufacturing/doctype/bom_replace_tool/bom_replace_tool.py +25,Current BOM and New BOM can not be same,Bom បច្ចុប្បន្ននិងថ្មី Bom មិនអាចជាដូចគ្នា apps/erpnext/erpnext/hr/doctype/employee/employee.py +111,Date Of Retirement must be greater than Date of Joining,កាលបរិច្ឆេទនៃការចូលនិវត្តន៍ត្រូវតែធំជាងកាលបរិច្ឆេទនៃការចូលរួម DocType: Sales Invoice,Against Income Account,ប្រឆាំងនឹងគណនីចំណូល +apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +79,Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item).,ធាតុ {0}: qty លំដាប់ {1} មិនអាចតិចជាង qty គោលបំណងអប្បរមា {2} (បានកំណត់ក្នុងធាតុ) ។ DocType: Monthly Distribution Percentage,Monthly Distribution Percentage,ភាគរយចែកចាយប្រចាំខែ DocType: Territory,Territory Targets,ទឹកដីគោលដៅ DocType: Delivery Note,Transporter Info,ពត៌មាន transporter @@ -2129,6 +2281,7 @@ apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +100,Different U DocType: Payment Request,Payment Details,សេចក្ដីលម្អិតការបង់ប្រាក់ apps/erpnext/erpnext/stock/report/item_prices/item_prices.py +39,BOM Rate,អត្រា Bom apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.py +85,Please pull items from Delivery Note,សូមទាញធាតុពីការដឹកជញ្ជូនចំណាំ +apps/erpnext/erpnext/accounts/utils.py +270,Journal Entries {0} are un-linked,ធាតុទិនានុប្បវត្តិ {0} គឺជាតំណភ្ជាប់របស់អង្គការសហប្រជាជាតិ apps/erpnext/erpnext/config/crm.py +37,"Record of all communications of type email, phone, chat, visit, etc.","កំណត់ហេតុនៃការទំនាក់ទំនងទាំងអស់នៃប្រភេទអ៊ីមែលទូរស័ព្ទជជែកកំសាន្ត, ដំណើរទស្សនកិច្ច, ល" DocType: Manufacturer,Manufacturers used in Items,ក្រុមហ៊ុនផលិតដែលត្រូវបានប្រើនៅក្នុងធាតុ apps/erpnext/erpnext/accounts/general_ledger.py +134,Please mention Round Off Cost Center in Company,សូមនិយាយពីមជ្ឈមណ្ឌលការចំណាយមូលបិទក្នុងក្រុមហ៊ុន @@ -2141,6 +2294,7 @@ DocType: Expense Claim,Total Sanctioned Amount,ចំនួនទឹកប្រ DocType: Sales Invoice Item,Delivery Note Item,ធាតុចំណាំដឹកជញ្ជូន DocType: Expense Claim,Task,ភារកិច្ច DocType: Purchase Taxes and Charges,Reference Row #,សេចក្តីយោងជួរដេក # +apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +76,Batch number is mandatory for Item {0},ចំនួនបាច់គឺចាំបាច់សម្រាប់ធាតុ {0} apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.js +14,This is a root sales person and cannot be edited.,នេះគឺជាការលក់មនុស្សម្នាក់ជា root និងមិនអាចត្រូវបានកែសម្រួល។ ,Stock Ledger,ភាគហ៊ុនសៀវភៅ DocType: Salary Slip Deduction,Salary Slip Deduction,ការកាត់គ្រូពេទ្យប្រហែលជាប្រាក់បៀវត្ស @@ -2159,6 +2313,7 @@ DocType: Company,Stock Adjustment Account,គណនីកែតម្រូវ DocType: Journal Entry,Write Off,បិទការសរសេរ DocType: Time Log,Operation ID,លេខសម្គាល់ការប្រតិបត្ដិការ DocType: Employee,"System User (login) ID. If set, it will become default for all HR forms.",អ្នកប្រើប្រព័ន្ធ (ចូល) លេខសម្គាល់។ ប្រសិនបើអ្នកបានកំណត់វានឹងក្លាយជាលំនាំដើមសម្រាប់ទម្រង់ធនធានមនុស្សទាំងអស់។ +apps/erpnext/erpnext/support/doctype/warranty_claim/warranty_claim.py +16,{0}: From {1},{0}: ពី {1} DocType: Task,depends_on,depends_on DocType: Features Setup,"Discount Fields will be available in Purchase Order, Purchase Receipt, Purchase Invoice","វាលបញ្ចុះតម្លៃនឹងមាននៅក្នុងការទិញលំដាប់, ទទួលទិញ, ទិញវិក័យប័ត្រ" apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +211,Name of new Account. Note: Please don't create accounts for Customers and Suppliers,ឈ្មោះនៃគណនីថ្មី។ ចំណាំ: សូមកុំបង្កើតគណនីសម្រាប់អតិថិជននិងអ្នកផ្គត់ផ្គង់ @@ -2166,6 +2321,7 @@ DocType: BOM Replace Tool,BOM Replace Tool,Bom ជំនួសឧបករណ៍ apps/erpnext/erpnext/config/setup.py +37,Country wise default Address Templates,ប្រទេសអាស័យដ្ឋានពុម្ពលំនាំដើមរបស់អ្នកមានប្រាជ្ញា DocType: Sales Order Item,Supplier delivers to Customer,ក្រុមហ៊ុនផ្គត់ផ្គង់បានផ្ដល់នូវការទៅឱ្យអតិថិជន apps/erpnext/erpnext/public/js/controllers/transaction.js +733,Show tax break-up,សម្រាកឡើងពន្ធលើការបង្ហាញ +apps/erpnext/erpnext/accounts/party.py +283,Due / Reference Date cannot be after {0},ដោយសារ / សេចក្តីយោងកាលបរិច្ឆេទមិនអាចបន្ទាប់ពី {0} apps/erpnext/erpnext/config/setup.py +51,Data Import and Export,នាំចូលទិន្នន័យនិងការនាំចេញ DocType: Features Setup,If you involve in manufacturing activity. Enables Item 'Is Manufactured',ប្រសិនបើលោកអ្នកមានការចូលរួមក្នុងសកម្មភាពផលិតកម្ម។ អនុញ្ញាតឱ្យមានធាតុ "ត្រូវបានផលិត" apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +54,Invoice Posting Date,កាលបរិច្ឆេទវិក្ក័យប័ត្រ @@ -2175,10 +2331,13 @@ apps/erpnext/erpnext/accounts/doctype/monthly_distribution/monthly_distribution. DocType: Serial No,Out of AMC,ចេញពីមជ្ឈមណ្ឌល AMC DocType: Purchase Order Item,Material Request Detail No,ពត៌មាននៃការស្នើសុំសម្ភារៈគ្មាន apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.js +33,Make Maintenance Visit,ធ្វើឱ្យការថែទាំទស្សនកិច្ច +apps/erpnext/erpnext/selling/doctype/customer/customer.py +187,Please contact to the user who have Sales Master Manager {0} role,សូមទាក់ទងទៅអ្នកប្រើដែលមានការលក់កម្មវិធីគ្រប់គ្រងអនុបណ្ឌិតតួនាទី {0} DocType: Company,Default Cash Account,គណនីសាច់ប្រាក់លំនាំដើម apps/erpnext/erpnext/config/accounts.py +84,Company (not Customer or Supplier) master.,ក្រុមហ៊ុន (មិនមានអតិថិជនឬផ្គត់) មេ។ apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +101,Please enter 'Expected Delivery Date',សូមបញ្ចូល 'កាលបរិច្ឆេទដឹកជញ្ជូនរំពឹងទុក " +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +183,Delivery Notes {0} must be cancelled before cancelling this Sales Order,ភក្ដិកំណត់ត្រាកំណត់ការដឹកជញ្ជូន {0} ត្រូវតែបានលុបចោលមុនពេលលុបចោលការបញ្ជាលក់នេះ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +381,Paid amount + Write Off Amount can not be greater than Grand Total,ចំនួនទឹកប្រាក់ដែលបង់ + + បិទសរសេរចំនួនទឹកប្រាក់ដែលមិនអាចត្រូវបានធំជាងសម្ពោធសរុប +apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +78,{0} is not a valid Batch Number for Item {1},{0} គឺមិនមែនជាលេខបាច់ត្រឹមត្រូវសម្រាប់ធាតុ {1} apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +9,"Note: If payment is not made against any reference, make Journal Entry manually.",ចំណាំ: ប្រសិនបើការទូទាត់មិនត្រូវបានធ្វើប្រឆាំងនឹងឯកសារយោងណាមួយដែលធ្វើឱ្យធាតុទិនានុប្បវត្តិដោយដៃ។ DocType: Item,Supplier Items,ក្រុមហ៊ុនផ្គត់ផ្គង់ធាតុ DocType: Opportunity,Opportunity Type,ប្រភេទឱកាសការងារ @@ -2189,8 +2348,11 @@ apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +31,To c DocType: Hub Settings,Publish Availability,្ងបោះពុម្ពផ្សាយ apps/erpnext/erpnext/hr/doctype/employee/employee.py +105,Date of Birth cannot be greater than today.,ថ្ងៃខែឆ្នាំកំណើតមិនអាចមានចំនួនច្រើនជាងពេលបច្ចុប្បន្ននេះ។ ,Stock Ageing,ភាគហ៊ុន Ageing +apps/erpnext/erpnext/controllers/accounts_controller.py +216,{0} '{1}' is disabled,{0} '{1} "ត្រូវបានបិទ apps/erpnext/erpnext/crm/doctype/opportunity/opportunity_list.js +13,Set as Open,ដែលបានកំណត់ជាបើកទូលាយ DocType: Notification Control,Send automatic emails to Contacts on Submitting transactions.,ផ្ញើអ៊ីម៉ែលដោយស្វ័យប្រវត្តិទៅទំនាក់ទំនងនៅលើដាក់ស្នើប្រតិបត្តិការ។ +apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +231,"Row {0}: Qty not avalable in warehouse {1} on {2} {3}. + Available Qty: {4}, Transfer Qty: {5}","ជួរដេក {0}: Qty ក្នុងឃ្លាំងមិន avalable {1} នៅលើ {2} {3} ។ ដែលអាចប្រើបាន Qty: {4}, ផ្ទេរ Qty: {5}" apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +20,Item 3,ធាតុ 3 DocType: Purchase Order,Customer Contact Email,ទំនាក់ទំនងអតិថិជនអ៊ីម៉ែល DocType: Sales Team,Contribution (%),ចំែណក (%) @@ -2228,6 +2390,8 @@ apps/erpnext/erpnext/config/stock.py +105,"e.g. Kg, Unit, Nos, m","ឧគីឡ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +96,Reference No is mandatory if you entered Reference Date,សេចក្តីយោងមិនមានជាការចាំបាច់បំផុតប្រសិនបើអ្នកបានបញ្ចូលសេចក្តីយោងកាលបរិច្ឆេទ apps/erpnext/erpnext/hr/doctype/employee/employee.py +108,Date of Joining must be greater than Date of Birth,កាលបរិច្ឆេទនៃការចូលរួមត្រូវតែធំជាងថ្ងៃខែឆ្នាំកំណើត apps/erpnext/erpnext/hr/doctype/employee/employee.js +27,Salary Structure,រចនាសម្ព័ន្ធប្រាក់បៀវត្ស +apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +256,"Multiple Price Rule exists with same criteria, please resolve \ + conflict by assigning priority. Price Rules: {0}","វិធានតម្លៃច្រើនមានលក្ខណៈវិនិច្ឆ័យដូចគ្នា, សូមដោះស្រាយជម្លោះដោយផ្ដល់អាទិភាព \ ។ វិធានតម្លៃ: {0}" DocType: Account,Bank,ធនាគារ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +9,Airline,ក្រុមហ៊ុនអាកាសចរណ៍ apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +579,Issue Material,សម្ភារៈបញ្ហា @@ -2272,6 +2436,7 @@ DocType: Leave Application,Follow via Email,សូមអនុវត្តតា DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,ចំនួនប្រាក់ពន្ធបន្ទាប់ពីចំនួនទឹកប្រាក់ដែលបញ្ចុះតម្លៃ apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,គណនីកុមារដែលមានសម្រាប់គណនីនេះ។ អ្នកមិនអាចលុបគណនីនេះ។ apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,ទាំង qty គោលដៅឬចំនួនគោលដៅគឺជាចាំបាច់ +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},គ្មាន Bom លំនាំដើមសម្រាប់ធាតុមាន {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,សូមជ្រើសរើសកាលបរិច្ឆេទដំបូងគេបង្អស់ apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,បើកកាលបរិច្ឆេទគួរតែមានមុនកាលបរិចេ្ឆទផុតកំណត់ DocType: Leave Control Panel,Carry Forward,អនុវត្តការទៅមុខ @@ -2315,6 +2480,7 @@ apps/erpnext/erpnext/config/support.py +28,Visit report for maintenance call., DocType: Stock Entry,Update Rate and Availability,អត្រាធ្វើឱ្យទាន់សម័យនិងអាចរកបាន DocType: Stock Settings,Percentage you are allowed to receive or deliver more against the quantity ordered. For example: If you have ordered 100 units. and your Allowance is 10% then you are allowed to receive 110 units.,ចំនួនភាគរយដែលអ្នកត្រូវបានអនុញ្ញាតឱ្យទទួលបានច្រើនជាងការប្រឆាំងនឹងឬផ្តល់នូវបរិមាណបញ្ជាឱ្យ។ ឧទាហរណ៍: ប្រសិនបើអ្នកបានបញ្ជាឱ្យបាន 100 គ្រឿង។ និងអនុញ្ញាតឱ្យរបស់អ្នកគឺ 10% បន្ទាប់មកលោកអ្នកត្រូវបានអនុញ្ញាតឱ្យទទួលបាន 110 គ្រឿង។ DocType: Pricing Rule,Customer Group,ក្រុមផ្ទាល់ខ្លួន +apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +169,Expense account is mandatory for item {0},គណនីក្នុងការចំណាយជាការចាំបាច់សម្រាប់ធាតុ {0} DocType: Item,Website Description,វេបសាយការពិពណ៌នាសង្ខេប apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +40,Net Change in Equity,ការផ្លាស់ប្តូរសុទ្ធនៅសមភាព DocType: Serial No,AMC Expiry Date,កាលបរិច្ឆេទ AMC ផុតកំណត់ @@ -2339,10 +2505,11 @@ DocType: Leave Type,Is Encash,តើការ Encash DocType: Purchase Invoice,Mobile No,គ្មានទូរស័ព្ទដៃ DocType: Payment Tool,Make Journal Entry,ធ្វើឱ្យធាតុទិនានុប្បវត្តិ DocType: Leave Allocation,New Leaves Allocated,ស្លឹកថ្មីដែលបានបម្រុងទុក -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,ទិន្នន័យគម្រោងប្រាជ្ញាគឺមិនអាចប្រើបានសម្រាប់សម្រង់ +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,ទិន្នន័យគម្រោងប្រាជ្ញាគឺមិនអាចប្រើបានសម្រាប់សម្រង់ DocType: Project,Expected End Date,គេរំពឹងថានឹងកាលបរិច្ឆេទបញ្ចប់ DocType: Appraisal Template,Appraisal Template Title,ការវាយតម្លៃទំព័រគំរូចំណងជើង apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,ពាណិជ្ជ +apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.py +23,Parent Item {0} must not be a Stock Item,ធាតុមេ {0} មិនត្រូវធាតុហ៊ុនមួយ DocType: Cost Center,Distribution Id,លេខសម្គាល់ការចែកចាយ apps/erpnext/erpnext/setup/setup_wizard/data/sample_home_page.html +14,Awesome Services,សេវាសេវាល្អមែនទែន apps/erpnext/erpnext/config/manufacturing.py +29,All Products or Services.,ផលិតផលឬសេវាកម្មទាំងអស់។ @@ -2353,6 +2520,7 @@ apps/erpnext/erpnext/selling/doctype/customer/customer.py +29,Series is mandator apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +28,Financial Services,សេវាហិរញ្ញវត្ថុ DocType: Tax Rule,Sales,ការលក់ DocType: Stock Entry Detail,Basic Amount,ចំនួនទឹកប្រាក់ជាមូលដ្ឋាន +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +165,Warehouse required for stock Item {0},ឃ្លាំងដែលបានទាមទារសម្រាប់ធាតុភាគហ៊ុន {0} DocType: Leave Allocation,Unused leaves,ស្លឹកមិនប្រើ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +145,Cr,CR DocType: Customer,Default Receivable Accounts,លំនាំដើមគណនីអ្នកទទួល @@ -2361,6 +2529,7 @@ apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +607,Transf apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +640,Fetch exploded BOM (including sub-assemblies),យក Bom ផ្ទុះ (រួមបញ្ចូលទាំងសភាអនុ) DocType: Authorization Rule,Applicable To (Employee),ដែលអាចអនុវត្តទៅ (បុគ្គលិក) apps/erpnext/erpnext/controllers/accounts_controller.py +95,Due Date is mandatory,កាលបរិច្ឆេទដល់កំណត់គឺជាចាំបាច់ +apps/erpnext/erpnext/controllers/item_variant.py +52,Increment for Attribute {0} cannot be 0,ចំនួនបន្ថែមសម្រាប់គុណលក្ខណៈ {0} មិនអាចជា 0 DocType: Journal Entry,Pay To / Recd From,ចំណាយប្រាក់ដើម្បី / Recd ពី DocType: Naming Series,Setup Series,ការរៀបចំស៊េរី DocType: Payment Reconciliation,To Invoice Date,ដើម្បី invoice កាលបរិច្ឆេទ @@ -2381,7 +2550,9 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No., apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,សូមបញ្ជាក់ DocType: Offer Letter,Awaiting Response,រង់ចាំការឆ្លើយតប apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,ខាងលើ +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,ពេលវេលាកំណត់ហេតុត្រូវបានផ្សព្វផ្សាយ DocType: Salary Slip,Earning & Deduction,ការរកប្រាក់ចំណូលនិងការកាត់បនថយ +apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,គណនី {0} មិនអាចជាក្រុមមួយ apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,ស្រេចចិត្ត។ ការកំណត់នេះនឹងត្រូវបានប្រើដើម្បីត្រងនៅក្នុងប្រតិបត្តិការនានា។ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +111,Negative Valuation Rate is not allowed,អត្រាវាយតម្លៃអវិជ្ជមានមិនត្រូវបានអនុញ្ញាត DocType: Holiday List,Weekly Off,បិទប្រចាំសប្តាហ៍ @@ -2389,12 +2560,15 @@ DocType: Fiscal Year,"For e.g. 2012, 2012-13","ឧទាហរណ៍ៈឆ្ន apps/erpnext/erpnext/accounts/report/balance_sheet/balance_sheet.py +33,Provisional Profit / Loss (Credit),ប្រាក់ចំនេញជាបណ្តោះអាសន្ន / បាត់បង់ (ឥណទាន) DocType: Sales Invoice,Return Against Sales Invoice,ការវិលត្រឡប់ពីការប្រឆាំងនឹងការលក់វិក័យប័ត្រ apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +32,Item 5,ធាតុ 5 +apps/erpnext/erpnext/accounts/utils.py +278,Please set default value {0} in Company {1},សូមកំណត់តម្លៃលំនាំដើមនៅ {0} {1} ក្រុមហ៊ុន DocType: Serial No,Creation Time,ពេលវេលាបង្កើត apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +62,Total Revenue,ប្រាក់ចំណូលសរុប DocType: Sales Invoice,Product Bundle Help,កញ្ចប់ជំនួយផលិតផល ,Monthly Attendance Sheet,សន្លឹកវត្តមានប្រចាំខែ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +16,No record found,បានរកឃើញថាគ្មានកំណត់ត្រា +apps/erpnext/erpnext/controllers/stock_controller.py +175,{0} {1}: Cost Center is mandatory for Item {2},{0} {1}: មជ្ឈមណ្ឌលចំណាយគឺជាការចាំបាច់សម្រាប់ធាតុ {2} apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +468,Get Items from Product Bundle,ទទួលបានធាតុពីកញ្ចប់ផលិតផល +apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +79,Account {0} is inactive,គណនី {0} អសកម្ម DocType: GL Entry,Is Advance,តើការជាមុន apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +21,Attendance From Date and Attendance To Date is mandatory,ការចូលរួមពីកាលបរិច្ឆេទនិងចូលរួមកាលបរិច្ឆេទគឺជាចាំបាច់ apps/erpnext/erpnext/controllers/buying_controller.py +122,Please enter 'Is Subcontracted' as Yes or No,សូមបញ្ចូល <តើកិច្ចសន្យាបន្ដ 'ជាបាទឬទេ @@ -2419,9 +2593,11 @@ DocType: Offer Letter Term,Value / Description,គុណតម្លៃ / កា DocType: Tax Rule,Billing Country,វិក័យប័ត្រប្រទេស ,Customers Not Buying Since Long Time,អតិថិជនមិនទិញតាំងពីលោកឡុងពេល DocType: Production Order,Expected Delivery Date,គេរំពឹងថាការដឹកជញ្ជូនកាលបរិច្ឆេទ +apps/erpnext/erpnext/accounts/general_ledger.py +121,Debit and Credit not equal for {0} #{1}. Difference is {2}.,ឥណពន្ធនិងឥណទានមិនស្មើគ្នាសម្រាប់ {0} # {1} ។ ភាពខុសគ្នាគឺ {2} ។ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +93,Entertainment Expenses,ចំណាយកំសាន្ត apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +61,Age,ដែលមានអាយុ DocType: Time Log,Billing Amount,ចំនួនវិក័យប័ត្រ +apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +84,Invalid quantity specified for item {0}. Quantity should be greater than 0.,បរិមាណមិនត្រឹមត្រូវដែលបានបញ្ជាក់សម្រាប់ធាតុ {0} ។ បរិមាណដែលត្រូវទទួលទានគួរតែធំជាង 0 ។ apps/erpnext/erpnext/config/hr.py +18,Applications for leave.,កម្មវិធីសម្រាប់ការឈប់សម្រាក។ apps/erpnext/erpnext/accounts/doctype/account/account.py +196,Account with existing transaction can not be deleted,គណនីប្រតិបត្តិការដែលមានស្រាប់ដែលមិនអាចត្រូវបានលុប apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +99,Legal Expenses,ការចំណាយផ្នែកច្បាប់ @@ -2431,22 +2607,25 @@ DocType: Sales Order,% Amount Billed,% ចំនួន billed apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +129,Telephone Expenses,ការចំណាយតាមទូរស័ព្ទ DocType: Sales Partner,Logo,រូបសញ្ញា DocType: Naming Series,Check this if you want to force the user to select a series before saving. There will be no default if you check this.,ធីកប្រអប់នេះប្រសិនបើអ្នកចង់បង្ខំឱ្យអ្នកប្រើជ្រើសស៊េរីមុនពេលរក្សាទុក។ វានឹងជាលំនាំដើមប្រសិនបើអ្នកធីកនេះ។ +apps/erpnext/erpnext/stock/get_item_details.py +101,No Item with Serial No {0},គ្មានធាតុជាមួយសៀរៀលគ្មាន {0} apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +95,Open Notifications,ការជូនដំណឹងបើកទូលាយ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +68,Direct Expenses,ការចំណាយដោយផ្ទាល់ apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +60,New Customer Revenue,ប្រាក់ចំណូលអតិថិជនថ្មី apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +132,Travel Expenses,ការចំណាយការធ្វើដំណើរ DocType: Maintenance Visit,Breakdown,ការវិភាគ DocType: Bank Reconciliation Detail,Cheque Date,កាលបរិច្ឆេទមូលប្បទានប័ត្រ +apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent account {1} does not belong to company: {2},គណនី {0}: គណនីមាតាបិតា {1} មិនមែនជាកម្មសិទ្ធិរបស់ក្រុមហ៊ុន: {2} apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,ទទួលបានជោគជ័យក្នុងការតិបត្តិការទាំងអស់ដែលបានលុបដែលទាក់ទងទៅនឹងក្រុមហ៊ុននេះ! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,ដូចជានៅលើកាលបរិច្ឆេទ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,ការសាកល្បង -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,ឃ្លាំងលំនាំដើមគឺចាំបាច់សម្រាប់ធាតុភាគហ៊ុន។ +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,ឃ្លាំងលំនាំដើមគឺចាំបាច់សម្រាប់ធាតុភាគហ៊ុន។ +apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},ការទូទាត់នៃប្រាក់ខែសម្រាប់ខែនេះ {0} និងឆ្នាំ {1} DocType: Stock Settings,Auto insert Price List rate if missing,បញ្ចូលដោយស្វ័យប្រវត្តិប្រសិនបើអ្នកមានអត្រាតារាងតម្លៃបាត់ខ្លួន apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,ចំនួនទឹកប្រាក់ដែលបង់សរុប ,Transferred Qty,ផ្ទេរ Qty apps/erpnext/erpnext/config/learn.py +11,Navigating,ការរុករក apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,ការធ្វើផែនការ -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,ធ្វើឱ្យបាច់កំណត់ហេតុម៉ោង +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,ធ្វើឱ្យបាច់កំណត់ហេតុម៉ោង apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,ចេញផ្សាយ DocType: Project,Total Billing Amount (via Time Logs),ចំនួនវិក័យប័ត្រសរុប (តាមរយៈការពេលវេលាកំណត់ហេតុ) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,យើងលក់ធាតុនេះ @@ -2454,12 +2633,13 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,បរិមាណដែលត្រូវទទួលទានគួរជាធំជាង 0 DocType: Journal Entry,Cash Entry,ចូលជាសាច់ប្រាក់ DocType: Sales Partner,Contact Desc,ការទំនាក់ទំនង DESC -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","ប្រភេទនៃស្លឹកដូចជាការធម្មតា, ឈឺល" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","ប្រភេទនៃស្លឹកដូចជាការធម្មតា, ឈឺល" DocType: Email Digest,Send regular summary reports via Email.,ផ្ញើរបាយការណ៍សេចក្ដីសង្ខេបជាទៀងទាត់តាមរយៈអ៊ីម៉ែល។ DocType: Brand,Item Manager,កម្មវិធីគ្រប់គ្រងធាតុ DocType: Cost Center,Add rows to set annual budgets on Accounts.,បន្ថែមជួរដេកដើម្បីកំណត់ថវិកាប្រចាំឆ្នាំនៅលើគណនី។ DocType: Buying Settings,Default Supplier Type,ប្រភេទហាងទំនិញលំនាំដើម DocType: Production Order,Total Operating Cost,ថ្លៃប្រតិបត្តិការ +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +150,Note: Item {0} entered multiple times,ចំណាំ: ធាតុ {0} បានចូលច្រើនដង apps/erpnext/erpnext/config/crm.py +27,All Contacts.,ទំនាក់ទំនងទាំងអស់។ DocType: Newsletter,Test Email Id,ការធ្វើតេស្តអ៊ីម៉ែលលេខសម្គាល់ apps/erpnext/erpnext/public/js/setup_wizard.js +54,Company Abbreviation,អក្សរកាត់របស់ក្រុមហ៊ុន @@ -2467,7 +2647,8 @@ DocType: Features Setup,If you follow Quality Inspection. Enables Item QA Requir DocType: GL Entry,Party Type,ប្រភេទគណបក្ស apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,វត្ថុធាតុដើមមិនអាចជាដូចគ្នាដូចដែលធាតុដ៏សំខាន់ DocType: Item Attribute Value,Abbreviation,អក្សរកាត់ -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,ចៅហ្វាយពុម្ពប្រាក់បៀវត្ស។ +apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,មិន authroized តាំងពី {0} លើសពីដែនកំណត់ +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,ចៅហ្វាយពុម្ពប្រាក់បៀវត្ស។ DocType: Leave Type,Max Days Leave Allowed,អតិបរមាដែលបានអនុញ្ញាតទុកថ្ងៃ apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,កំណត់ច្បាប់ពន្ធសម្រាប់រទេះដើរទិញឥវ៉ាន់ DocType: Payment Tool,Set Matching Amounts,កំណត់ចំនួនផ្គូផ្គង @@ -2481,6 +2662,7 @@ DocType: Stock Settings,Role Allowed to edit frozen stock,តួនាទីដ ,Territory Target Variance Item Group-Wise,ទឹកដីរបស់ធាតុគោលដៅអថេរ Group និងក្រុមហ៊ុនដែលមានប្រាជ្ញា apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,ក្រុមអតិថិជនទាំងអស់ apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,ទំព័រគំរូពន្ធលើគឺជាចាំបាច់។ +apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,គណនី {0}: គណនីមាតាបិតា {1} មិនមាន DocType: Purchase Invoice Item,Price List Rate (Company Currency),បញ្ជីតម្លៃដែលអត្រា (ក្រុមហ៊ុនរូបិយវត្ថុ) DocType: Account,Temporary,ជាបណ្តោះអាសន្ន DocType: Address,Preferred Billing Address,វិក័យប័ត្រអាសយដ្ឋានដែលពេញចិត្ត @@ -2493,15 +2675,18 @@ apps/erpnext/erpnext/projects/doctype/time_log_batch/time_log_batch.js +24,This ,Reqd By Date,Reqd តាមកាលបរិច្ឆេទ DocType: Salary Slip Earning,Salary Slip Earning,ទទួលបានប្រាក់ខែគ្រូពេទ្យប្រហែលជា apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +161,Creditors,ម្ចាស់បំណុល +apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +91,Row # {0}: Serial No is mandatory,ជួរដេក # {0}: មិនស៊េរីគឺជាការចាំបាច់ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,ពត៌មានលំអិតពន្ធលើដែលមានប្រាជ្ញាធាតុ ,Item-wise Price List Rate,អត្រាតារាងតម្លៃធាតុប្រាជ្ញា apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,សម្រង់ក្រុមហ៊ុនផ្គត់ផ្គង់ DocType: Quotation,In Words will be visible once you save the Quotation.,នៅក្នុងពាក្យនោះនឹងត្រូវបានមើលឃើញនៅពេលដែលអ្នករក្សាទុកការសម្រង់នេះ។ +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},លេខកូដ {0} ត្រូវបានប្រើរួចហើយនៅក្នុងធាតុ {1} DocType: Lead,Add to calendar on this date,បញ្ចូលទៅក្នុងប្រតិទិនស្តីពីកាលបរិច្ឆេទនេះ apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,ក្បួនសម្រាប់ការបន្ថែមការចំណាយលើការដឹកជញ្ជូន។ apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,ព្រឹត្តិការណ៍ជិតមកដល់ apps/erpnext/erpnext/support/doctype/warranty_claim/warranty_claim.py +20,Customer is required,អតិថិជនគឺត្រូវបានទាមទារ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +27,Quick Entry,ធាតុរហ័ស +apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +20,{0} is mandatory for Return,{0} គឺជាការចាំបាច់សម្រាប់ការត្រឡប់ DocType: Purchase Order,To Receive,ដើម្បីទទួលបាន apps/erpnext/erpnext/public/js/setup_wizard.js +196,user@example.com,user@example.com DocType: Email Digest,Income / Expense,ប្រាក់ចំណូល / ចំណាយ @@ -2521,7 +2706,7 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling, apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,យ៉ាងហោចណាស់មានម្នាក់ឃ្លាំងគឺជាចាំបាច់ DocType: Serial No,Out of Warranty,ចេញពីការធានា DocType: BOM Replace Tool,Replace,ជំនួស -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,សូមបញ្ចូលលំនាំដើមវិធានការអង្គភាព +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,សូមបញ្ចូលលំនាំដើមវិធានការអង្គភាព DocType: Purchase Invoice Item,Project Name,ឈ្មោះគម្រោង DocType: Supplier,Mention if non-standard receivable account,និយាយពីការប្រសិនបើគណនីដែលមិនមែនជាស្តង់ដាទទួល DocType: Journal Entry Account,If Income or Expense,ប្រសិនបើមានប្រាក់ចំណូលឬការចំណាយ @@ -2531,6 +2716,7 @@ apps/erpnext/erpnext/config/learn.py +239,Human Resource,ធនធានមន DocType: Payment Reconciliation Payment,Payment Reconciliation Payment,ការទូទាត់ការផ្សះផ្សាការទូទាត់ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +36,Tax Assets,ការប្រមូលពន្ធលើទ្រព្យសម្បត្តិ DocType: BOM Item,BOM No,Bom គ្មាន +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +134,Journal Entry {0} does not have account {1} or already matched against other voucher,ធាតុទិនានុប្បវត្តិ {0} មិនមានគណនី {1} ឬកាតមានទឹកប្រាក់រួចហើយបានផ្គូផ្គងប្រឆាំងនឹងផ្សេងទៀត DocType: Item,Moving Average,ជាមធ្យមការផ្លាស់ប្តូរ DocType: BOM Replace Tool,The BOM which will be replaced,Bom ដែលនឹងត្រូវបានជំនួស DocType: Account,Debit,ឥណពន្ធ @@ -2542,9 +2728,10 @@ DocType: Sales Person,Set targets Item Group-wise for this Sales Person.,ធា DocType: Warranty Claim,"To assign this issue, use the ""Assign"" button in the sidebar.",ដើម្បីកំណត់ពីបញ្ហានេះប្រើប៊ូតុង "កំណត់" នៅក្នុងរបារចំហៀង។ DocType: Stock Settings,Freeze Stocks Older Than [Days],ភាគហ៊ុនបង្កកចាស់ជាង [ថ្ងៃ] apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two or more Pricing Rules are found based on the above conditions, Priority is applied. Priority is a number between 0 to 20 while default value is zero (blank). Higher number means it will take precedence if there are multiple Pricing Rules with same conditions.",បើសិនជាវិធានតម្លៃពីរឬច្រើនត្រូវបានរកឃើញដោយផ្អែកលើលក្ខខណ្ឌខាងលើអាទិភាពត្រូវបានអនុវត្ត។ អាទិភាពគឺជាលេខរវាង 0 ទៅ 20 ខណៈពេលតម្លៃលំនាំដើមគឺសូន្យ (ទទេ) ។ ចំនួនខ្ពស់មានន័យថាវានឹងយកអាទិភាពប្រសិនបើមិនមានវិធានតម្លៃច្រើនដែលមានស្ថានភាពដូចគ្នា។ +apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,ឆ្នាំសារពើពន្ធ: {0} មិនមាន DocType: Currency Exchange,To Currency,ដើម្បីរូបិយប័ណ្ណ DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,អនុញ្ញាតឱ្យអ្នកប្រើដូចខាងក្រោមដើម្បីអនុម័តកម្មវិធីសុំច្បាប់សម្រាកសម្រាប់ថ្ងៃប្លុក។ -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,ប្រភេទនៃការទាមទារសំណងថ្លៃ។ +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,ប្រភេទនៃការទាមទារសំណងថ្លៃ។ DocType: Item,Taxes,ពន្ធ apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,បង់និងការមិនផ្តល់ DocType: Project,Default Cost Center,មជ្ឈមណ្ឌលតម្លៃលំនាំដើម @@ -2555,6 +2742,7 @@ DocType: Maintenance Visit,Customer Feedback,ការឆ្លើយតបរ DocType: Account,Expense,ការចំណាយ DocType: Sales Invoice,Exhibition,ការតាំងពិព័រណ៍ DocType: Item Attribute,From Range,ពីជួរ +apps/erpnext/erpnext/stock/utils.py +89,Item {0} ignored since it is not a stock item,ធាតុ {0} មិនអើពើចាប់តាំងពីវាគឺមិនមានធាតុភាគហ៊ុន apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +29,Submit this Production Order for further processing.,ដាក់ស្នើសម្រាប់ដំណើរការបន្ថែមផលិតកម្មលំដាប់នេះ។ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +21,"To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled.",ការមិនអនុវត្តវិធានតម្លៃក្នុងប្រតិបត្តិការពិសេសមួយដែលអនុវត្តបានទាំងអស់ក្បួនតម្លៃគួរតែត្រូវបានបិទ។ DocType: Company,Domain,ដែន @@ -2570,10 +2758,14 @@ DocType: Quality Inspection,Incoming,មកដល់ DocType: BOM,Materials Required (Exploded),សំភារៈទាមទារ (ផ្ទុះ) DocType: Salary Structure Earning,Reduce Earning for Leave Without Pay (LWP),កាត់បន្ថយរកស្នើសុំការអនុញ្ញាតដោយគ្មានការបង់ (LWP) apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organization, other than yourself",បន្ថែមអ្នកប្រើប្រាស់ក្នុងអង្គការរបស់អ្នកក្រៅពីខ្លួនអ្នកផ្ទាល់ +apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},ជួរដេក # {0}: សៀរៀលគ្មាន {1} មិនផ្គូផ្គងនឹង {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,ចាកចេញធម្មតា DocType: Batch,Batch ID,លេខសម្គាល់បាច់ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},ចំណាំ: {0} ,Delivery Note Trends,និន្នាការដឹកជញ្ជូនចំណាំ apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,សប្តាហ៍នេះមានសេចក្តីសង្ខេប +apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} ត្រូវតែជាធាតុទិញឬចុះកិច្ចសន្យាជាមួយនៅក្នុងជួរដេក {1} +apps/erpnext/erpnext/accounts/general_ledger.py +106,Account: {0} can only be updated via Stock Transactions,គណនី: {0} អាចត្រូវបានធ្វើឱ្យទាន់សម័យបានតែតាមរយៈប្រតិបត្តិការហ៊ុន DocType: GL Entry,Party,គណបក្ស DocType: Sales Order,Delivery Date,ដឹកជញ្ជូនកាលបរិច្ឆេទ DocType: Opportunity,Opportunity Date,កាលបរិច្ឆេទឱកាសការងារ @@ -2589,6 +2781,7 @@ DocType: Address,Shipping,ការដឹកជញ្ជូន DocType: Stock Ledger Entry,Stock Ledger Entry,ភាគហ៊ុនធាតុសៀវភៅ DocType: Department,Leave Block List,ទុកឱ្យបញ្ជីប្លុក DocType: Customer,Tax ID,លេខសម្គាល់ការប្រមូលពន្ធលើ +apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +188,Item {0} is not setup for Serial Nos. Column must be blank,ធាតុ {0} មិនត្រូវបានដំឡើងសម្រាប់ការសៀរៀល Nos ។ ជួរឈរត្រូវទទេ DocType: Accounts Settings,Accounts Settings,ការកំណត់គណនី DocType: Customer,Sales Partner and Commission,ការលក់ដៃគូនិងគណៈកម្មការ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +53,Plant and Machinery,រោងចក្រនិងគ្រឿងម៉ាស៊ីន @@ -2607,9 +2800,12 @@ DocType: Project Task,Pending Review,ការរង់ចាំការត្ apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,សូមចុចទីនេះដើម្បីបង់ប្រាក់ DocType: Task,Total Expense Claim (via Expense Claim),ពាក្យបណ្តឹងការចំណាយសរុប (តាមរយៈបណ្តឹងទាមទារការចំណាយ) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,លេខសម្គាល់អតិថិជន +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,លោក Mark អវត្តមាន apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,ទៅពេលត្រូវតែធំជាងពីពេលវេលា DocType: Journal Entry Account,Exchange Rate,អត្រាប្តូរប្រាក់ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,ការលក់លំដាប់ {0} គឺមិនត្រូវបានដាក់ស្នើ apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +689,Add items from,បន្ថែមធាតុពី +apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +74,Warehouse {0}: Parent account {1} does not bolong to the company {2},ឃ្លាំង {0}: គណនីមាតាបិតា {1} មិន bolong ទៅក្រុមហ៊ុន {2} DocType: BOM,Last Purchase Rate,អត្រាទិញចុងក្រោយ DocType: Account,Asset,ទ្រព្យសកម្ម DocType: Project Task,Task ID,ភារកិច្ចលេខសម្គាល់ @@ -2637,6 +2833,7 @@ DocType: Item Group,Parent Item Group,ធាតុមេគ្រុប apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +96,Cost Centers,មជ្ឈមណ្ឌលការចំណាយ apps/erpnext/erpnext/config/stock.py +110,Warehouses.,ឃ្លាំង។ DocType: Purchase Receipt,Rate at which supplier's currency is converted to company's base currency,អត្រារូបិយប័ណ្ណក្រុមហ៊ុនផ្គត់ផ្គង់ដែលត្រូវបានបម្លែងទៅជារូបិយប័ណ្ណមូលដ្ឋានរបស់ក្រុមហ៊ុន +apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +36,Row #{0}: Timings conflicts with row {1},ជួរដេក # {0}: ជម្លោះពេលវេលាជាមួយនឹងជួរ {1} DocType: Opportunity,Next Contact,ទំនាក់ទំនងបន្ទាប់ apps/erpnext/erpnext/config/accounts.py +94,Setup Gateway accounts.,រៀបចំគណនីច្រកផ្លូវ។ DocType: Employee,Employment Type,ប្រភេទការងារធ្វើ @@ -2647,9 +2844,12 @@ DocType: Item Group,Default Expense Account,ចំណាយតាមគណនី DocType: Employee,Notice (days),សេចក្តីជូនដំណឹង (ថ្ងៃ) DocType: Tax Rule,Sales Tax Template,ទំព័រគំរូពន្ធលើការលក់ DocType: Employee,Encashment Date,Encashment កាលបរិច្ឆេទ -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","ប្រឆាំងនឹងប្រភេទត្រូវតែមានប័ណ្ណមួយនៃការទិញសណ្តាប់ធ្នាប់, ការទិញវិក័យប័ត្រឬធាតុទិនានុប្បវត្តិ" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","ប្រឆាំងនឹងប្រភេទត្រូវតែមានប័ណ្ណមួយនៃការទិញសណ្តាប់ធ្នាប់, ការទិញវិក័យប័ត្រឬធាតុទិនានុប្បវត្តិ" DocType: Account,Stock Adjustment,ការលៃតម្រូវភាគហ៊ុន +apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},តម្លៃលំនាំដើមមានសម្រាប់សកម្មភាពប្រភេទសកម្មភាព - {0} DocType: Production Order,Planned Operating Cost,ចំណាយប្រតិបត្តិការដែលបានគ្រោងទុក +apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +121,New {0} Name,{0} ឈ្មោះថ្មី +apps/erpnext/erpnext/controllers/recurring_document.py +130,Please find attached {0} #{1},សូមស្វែងរកការភ្ជាប់ {0} {1} # apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +42,Bank Statement balance as per General Ledger,ធនាគារតុល្យភាពសេចក្តីថ្លែងការណ៍ដូចជាក្នុងសៀវភៅធំ DocType: Job Applicant,Applicant Name,ឈ្មោះកម្មវិធី DocType: Authorization Rule,Customer / Item Name,អតិថិជន / ធាតុឈ្មោះ @@ -2660,6 +2860,7 @@ The package **Item** will have ""Is Stock Item"" as ""No"" and ""Is Sales Item"" For Example: If you are selling Laptops and Backpacks separately and have a special price if the customer buys both, then the Laptop + Backpack will be a new Product Bundle Item. Note: BOM = Bill of Materials","ក្រុមការសរុបនៃធាតុ ** ** ចូលទៅក្នុងធាតុ ** ផ្សេងទៀត ** ។ នេះមានប្រយោជន៍ប្រសិនបើអ្នកកំពុង bundling ធាតុ ** ជាក់លាក់ ** ទៅក្នុងកញ្ចប់មួយហើយអ្នករក្សាភាគហ៊ុនរបស់ packed ** ធាតុ ** និងមិនសរុប ** ធាតុ ** ។ កញ្ចប់ ** ធាតុ ** នឹងមាន«តើធាតុហ៊ុន "ជា" ទេ "ហើយ" តើធាតុលក់ "ជា" បាទ "។ ឧទាហរណ៍: ប្រសិនបើអ្នកត្រូវការលក់កុំព្យូទ័រយួរដៃនិងកាតាបស្ពាយដោយឡែកពីគ្នានិងមានតម្លៃពិសេសប្រសិនបើអតិថិជនទិញទាំងពីរ, បន្ទាប់មកភ្ញៀវទេសចរសម្ពាយកុំព្យូទ័រយួរដៃបូកនឹងមានធាតុកញ្ចប់ផលិតផលថ្មីមួយ។ ចំណាំ: Bom = លោក Bill នៃសម្ភារៈ" +apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.py +44,Serial No is mandatory for Item {0},គ្មានស៊េរីគឺជាការចាំបាច់សម្រាប់ធាតុ {0} DocType: Item Variant Attribute,Attribute,គុណលក្ខណៈ apps/erpnext/erpnext/stock/doctype/item_attribute/item_attribute.py +21,Please specify from/to range,សូមបញ្ជាក់ពី / ទៅរាប់ DocType: Serial No,Under AMC,នៅក្រោម AMC @@ -2678,6 +2879,7 @@ DocType: Company,Distribution,ចែកចាយ apps/erpnext/erpnext/public/js/pos/pos.js +431,Amount Paid,ចំនួនទឹកប្រាក់ដែលបង់ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +91,Project Manager,ប្រធានគ្រប់គ្រងគម្រោង apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +72,Dispatch,បញ្ជូន +apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +70,Max discount allowed for item: {0} is {1}%,ការបញ្ចុះតម្លៃអតិបរមាដែលបានអនុញ្ញាតសម្រាប់ធាតុ: {0} គឺ {1}% DocType: Account,Receivable,អ្នកទទួល DocType: Accounts Settings,Role that is allowed to submit transactions that exceed credit limits set.,តួនាទីដែលត្រូវបានអនុញ្ញាតឱ្យដាក់ស្នើតិបត្តិការដែលលើសពីដែនកំណត់ឥណទានបានកំណត់។ DocType: Sales Invoice,Supplier Reference,យោងក្រុមហ៊ុនផ្គត់ផ្គង់ @@ -2695,9 +2897,11 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,បិទសរសេរធាតុ DocType: BOM,Rate Of Materials Based On,អត្រានៃសម្ភារៈមូលដ្ឋាននៅលើ apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,ការគាំទ្រ Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,ដោះធីកទាំងអស់ DocType: POS Profile,Terms and Conditions,លក្ខខណ្ឌ DocType: Employee,"Here you can maintain height, weight, allergies, medical concerns etc","នៅទីនេះអ្នកអាចរក្សាកម្ពស់, ទម្ងន់, អាឡែស៊ី, មានការព្រួយបារម្ភវេជ្ជសាស្រ្តល" DocType: Leave Block List,Applies to Company,អនុវត្តទៅក្រុមហ៊ុន +apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +175,Cannot cancel because submitted Stock Entry {0} exists,មិនអាចលុបចោលដោយសារតែការដាក់ស្នើផ្សារការធាតុមាន {0} DocType: Purchase Invoice,In Words,នៅក្នុងពាក្យ DocType: Production Planning Tool,Material Request For Warehouse,សម្ភារៈស្នើសុំសម្រាប់ឃ្លាំង DocType: Sales Order Item,For Production,ចំពោះផលិតកម្ម @@ -2708,6 +2912,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +66,Your financial year begins on apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +46,Please enter Purchase Receipts,សូមបញ្ចូលបង្កាន់ដៃទិញ DocType: Sales Invoice,Get Advances Received,ទទួលបុរេប្រទានបានទទួល DocType: Email Digest,Add/Remove Recipients,បន្ថែម / យកអ្នកទទួល +apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction not allowed against stopped Production Order {0},ប្រតិបត្តិការមិនត្រូវបានអនុញ្ញាតប្រឆាំងនឹងផលិតកម្មបានឈប់លំដាប់ {0} apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'",ដើម្បីកំណត់ឆ្នាំសារពើពន្ធនេះជាលំនាំដើមសូមចុចលើ "កំណត់ជាលំនាំដើម ' apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),រៀបចំម៉ាស៊ីនបម្រើចូលមកសម្រាប់លេខសម្គាល់អ្នកគាំទ្រអ៊ីម៉ែល។ (ឧ support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,កង្វះខាត Qty @@ -2729,6 +2934,7 @@ DocType: Purchase Invoice,Recurring Id,លេខសម្គាល់កើត DocType: Customer,Sales Team Details,ពត៌មានលំអិតការលក់ក្រុមការងារ DocType: Expense Claim,Total Claimed Amount,ចំនួនទឹកប្រាក់អះអាងសរុប apps/erpnext/erpnext/config/crm.py +22,Potential opportunities for selling.,ឱកាសក្នុងការមានសក្តានុពលសម្រាប់ការលក់។ +apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +177,Invalid {0},មិនត្រឹមត្រូវ {0} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +48,Sick Leave,ស្លឹកឈឺ DocType: Email Digest,Email Digest,អ៊ីម៉ែលសង្ខេប DocType: Delivery Note,Billing Address Name,វិក័យប័ត្រឈ្មោះអាសយដ្ឋាន @@ -2754,8 +2960,11 @@ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_repo ,General Ledger,ទូទៅសៀវភៅ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,មើលតែងតែនាំឱ្យមាន DocType: Item Attribute Value,Attribute Value,តម្លៃគុណលក្ខណៈ +apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","លេខសម្គាល់អ៊ីមែលត្រូវតែមានតែមួយគត់, រួចហើយសម្រាប់ {0}" ,Itemwise Recommended Reorder Level,Itemwise ផ្ដល់អនុសាសន៍រៀបចំវគ្គ +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,សូមជ្រើស {0} ដំបូង DocType: Features Setup,To get Item Group in details table,ដើម្បីទទួលបានធាតុ Group ក្នុងតារាងពត៌មានលំអិត +apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,បាច់នៃ {0} {1} ធាតុបានផុតកំណត់។ DocType: Sales Invoice,Commission,គណៈកម្មការ DocType: Address Template,"

        Default Template

        Uses Jinja Templating and all the fields of Address (including Custom Fields if any) will be available

        @@ -2776,6 +2985,7 @@ DocType: Quality Inspection Reading,Quality Inspection Reading,កំរោង apps/erpnext/erpnext/stock/doctype/stock_settings/stock_settings.py +26,`Freeze Stocks Older Than` should be smaller than %d days.,`បង្កកដែលមានវ័យចំណាស់ Than` ភាគហ៊ុនគួរមានទំហំតូចជាងថ្ងៃ% d ។ DocType: Tax Rule,Purchase Tax Template,ទិញពន្ធលើទំព័រគំរូ ,Project wise Stock Tracking,គម្រោងផ្សារហ៊ុនដែលមានប្រាជ្ញាតាមដាន +apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +166,Maintenance Schedule {0} exists against {0},កាលវិភាគថែរក្សា {0} ដែលមានការប្រឆាំងនឹង {0} DocType: Stock Entry Detail,Actual Qty (at source/target),ជាក់ស្តែ Qty (នៅប្រភព / គោលដៅ) DocType: Item Customer Detail,Ref Code,យោងលេខកូដ apps/erpnext/erpnext/config/hr.py +13,Employee records.,កំណត់ត្រាបុគ្គលិក។ @@ -2795,9 +3005,10 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,ទទួលបានប័ណ្ណឆ្នើម DocType: Warranty Claim,Resolved By,បានដោះស្រាយដោយ DocType: Appraisal,Start Date,ថ្ងៃចាប់ផ្តើម -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,បម្រុងទុកស្លឹកសម្រាប់រយៈពេល។ +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,បម្រុងទុកស្លឹកសម្រាប់រយៈពេល។ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,មូលប្បទានប័ត្រនិងប្រាក់បញ្ញើបានជម្រះមិនត្រឹមត្រូវ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,សូមចុចទីនេះដើម្បីផ្ទៀងផ្ទាត់ +apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,គណនី {0}: អ្នកមិនអាចកំណត់ដោយខ្លួនវាជាគណនីឪពុកម្តាយ DocType: Purchase Invoice Item,Price List Rate,តម្លៃការវាយតម្លៃបញ្ជី DocType: Item,"Show ""In Stock"" or ""Not in Stock"" based on stock available in this warehouse.",បង្ហាញតែការ "នៅក្នុងផ្សារហ៊ុន»ឬ«មិនមែននៅក្នុងផ្សារ" ដោយផ្អែកលើតម្លៃភាគហ៊ុនដែលអាចរកបាននៅក្នុងឃ្លាំងនេះ។ apps/erpnext/erpnext/config/manufacturing.py +13,Bill of Materials (BOM),វិក័យប័ត្រនៃសម្ភារៈ (Bom) @@ -2812,8 +3023,10 @@ DocType: Maintenance Visit,Fully Completed,បានបញ្ចប់យ៉ា DocType: Employee,Educational Qualification,គុណវុឌ្ឍិអប់រំ DocType: Workstation,Operating Costs,ចំណាយប្រតិបត្តិការ DocType: Employee Leave Approver,Employee Leave Approver,ទុកឱ្យការអនុម័តបុគ្គលិក +apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} ត្រូវបានបន្ថែមដោយជោគជ័យទៅក្នុងបញ្ជីព្រឹត្តិបត្ររបស់យើង។ apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.",មិនអាចប្រកាសបាត់បង់នោះទេព្រោះសម្រង់ត្រូវបានធ្វើឡើង។ DocType: Purchase Taxes and Charges Template,Purchase Master Manager,ការទិញកម្មវិធីគ្រប់គ្រងអនុបណ្ឌិត +apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,ផលិតកម្មលំដាប់ {0} ត្រូវតែត្រូវបានដាក់ជូន apps/erpnext/erpnext/config/stock.py +136,Main Reports,របាយការណ៏ដ៏សំខាន់ apps/erpnext/erpnext/hr/doctype/leave_control_panel/leave_control_panel.js +16,To date cannot be before from date,ដើម្បីកាលបរិច្ឆេទមិនអាចមានមុនពេលចេញពីកាលបរិច្ឆេទ DocType: Purchase Receipt Item,Prevdoc DocType,ចង្អុលបង្ហាញ Prevdoc @@ -2830,14 +3043,16 @@ DocType: Account,Income,ប្រាក់ចំណូល DocType: Industry Type,Industry Type,ប្រភេទវិស័យឧស្សាហកម្ម apps/erpnext/erpnext/templates/includes/cart.js +136,Something went wrong!,អ្វីមួយដែលខុស! apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warning: Leave application contains following block dates,ព្រមាន & ‧;: កម្មវិធីទុកឱ្យមានកាលបរិច្ឆេទនៃការហាមឃាត់ដូចខាងក្រោម +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,ការលក់វិក័យប័ត្រ {0} ត្រូវបានដាក់ស្នើរួចទៅហើយ apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,កាលបរិច្ឆេទបញ្ចប់ DocType: Purchase Invoice Item,Amount (Company Currency),ចំនួនទឹកប្រាក់ (ក្រុមហ៊ុនរូបិយវត្ថុ) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,អង្គភាព (ក្រសួង) មេ។ +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,អង្គភាព (ក្រសួង) មេ។ apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,សូមបញ្ចូល NOS ទូរស័ព្ទដៃដែលមានសុពលភាព DocType: Budget Detail,Budget Detail,ពត៌មានថវិការ apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,សូមបញ្ចូលសារមុនពេលផ្ញើ apps/erpnext/erpnext/config/accounts.py +137,Point-of-Sale Profile,ចំណុចនៃការលក់ពត៌មានផ្ទាល់ខ្លួន apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +68,Please Update SMS Settings,សូមធ្វើឱ្យទាន់សម័យការកំណត់ការផ្ញើសារជាអក្សរ +apps/erpnext/erpnext/projects/doctype/time_log_batch/time_log_batch.py +37,Time Log {0} already billed,កំណត់ហេតុពេលវេលា {0} ផ្សព្វផ្សាយរួចហើយ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +176,Unsecured Loans,ការផ្តល់កម្ចីដោយគ្មានសុវត្ថិភាព DocType: Cost Center,Cost Center Name,ឈ្មោះមជ្ឈមណ្ឌលចំណាយអស់ DocType: Maintenance Schedule Detail,Scheduled Date,កាលបរិច្ឆេទដែលបានកំណត់ពេល @@ -2847,21 +3062,24 @@ DocType: Purchase Receipt Item,Received and Accepted,បានទទួលនិ ,Serial No Service Contract Expiry,គ្មានសេវាកិច្ចសន្យាសៀរៀលផុតកំណត់ DocType: Item,Unit of Measure Conversion,ឯកតានៃការប្រែចិត្តជឿវិធានការ apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,និយោជិតមិនអាចត្រូវបានផ្លាស់ប្តូ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,អ្នកមិនអាចឥណទាននិងឥណពន្ធគណនីដូចគ្នានៅពេលតែមួយ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,អ្នកមិនអាចឥណទាននិងឥណពន្ធគណនីដូចគ្នានៅពេលតែមួយ DocType: Naming Series,Help HTML,ជំនួយ HTML +apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},អនុញ្ញាតឱ្យមានឥទ្ធិពលមិន {0} បានឆ្លងកាត់សម្រាប់ធាតុ {1} DocType: Address,Name of person or organization that this address belongs to.,ឈ្មោះរបស់មនុស្សម្នាក់ឬអង្គការមួយដែលមានអាស័យដ្ឋានជារបស់វា។ apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,អ្នកផ្គត់ផ្គង់របស់អ្នក -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,មិនអាចបាត់បង់ដូចដែលបានកំណត់ជាលំដាប់ត្រូវបានធ្វើឱ្យការលក់រថយន្ត។ +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,មិនអាចបាត់បង់ដូចដែលបានកំណត់ជាលំដាប់ត្រូវបានធ្វើឱ្យការលក់រថយន្ត។ DocType: Purchase Invoice,Contact,ការទំនាក់ទំនង apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,ទទួលបានពី DocType: Features Setup,Exports,ការនាំចេញ DocType: Lead,Converted,ប្រែចិត្តជឿ DocType: Item,Has Serial No,គ្មានសៀរៀល DocType: Employee,Date of Issue,កាលបរិច្ឆេទនៃបញ្ហា +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},ជួរដេក # {0}: កំណត់ផ្គត់ផ្គង់សម្រាប់ធាតុ {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,គេហទំព័ររូបភាព {0} បានភ្ជាប់ទៅនឹងធាតុ {1} មិនអាចត្រូវបានរកឃើញ DocType: Issue,Content Type,ប្រភេទមាតិការ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,កុំព្យូទ័រ DocType: Item,List this Item in multiple groups on the website.,រាយធាតុនេះនៅក្នុងក្រុមជាច្រើននៅលើគេហទំព័រ។ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,សូមពិនិត្យមើលជម្រើសរូបិយវត្ថុពហុដើម្បីអនុញ្ញាតឱ្យគណនីជារូបិយប័ណ្ណផ្សេងទៀត +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,សូមពិនិត្យមើលជម្រើសរូបិយវត្ថុពហុដើម្បីអនុញ្ញាតឱ្យគណនីជារូបិយប័ណ្ណផ្សេងទៀត apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យកំណត់តម្លៃទឹកកក DocType: Payment Reconciliation,Get Unreconciled Entries,ទទួលបានធាតុ Unreconciled DocType: Payment Reconciliation,From Invoice Date,ចាប់ពីកាលបរិច្ឆេទវិក័យប័ត្រ @@ -2869,13 +3087,15 @@ DocType: Cost Center,Budgets,ថវិកា apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,តើធ្វើដូចម្ដេច? DocType: Delivery Note,To Warehouse,ដើម្បីឃ្លាំង ,Average Commission Rate,គណៈកម្មការជាមធ្យមអត្រាការ -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'មិនមានមិនសៀរៀល' មិនអាចក្លាយជា 'បាទ' សម្រាប់ធាតុដែលមិនមែនជាភាគហ៊ុន- +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'មិនមានមិនសៀរៀល' មិនអាចក្លាយជា 'បាទ' សម្រាប់ធាតុដែលមិនមែនជាភាគហ៊ុន- apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,ការចូលរួមមិនអាចត្រូវបានសម្គាល់សម្រាប់កាលបរិច្ឆេទនាពេលអនាគត DocType: Pricing Rule,Pricing Rule Help,វិធានកំណត់តម្លៃជំនួយ DocType: Purchase Taxes and Charges,Account Head,នាយកគណនី apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,ធ្វើឱ្យទាន់សម័យការចំណាយបន្ថែមទៀតដើម្បីគណនាការចំណាយចុះចតនៃធាតុ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,អគ្គិសនី DocType: Stock Entry,Total Value Difference (Out - In),ភាពខុសគ្នាតម្លៃសរុប (ចេញ - ក្នុង) +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,ជួរដេក {0}: អត្រាប្តូរប្រាក់គឺជាការចាំបាច់ +apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},លេខសម្គាល់អ្នកប្រើដែលមិនបានកំណត់សម្រាប់បុគ្គលិក {0} DocType: Stock Entry,Default Source Warehouse,លំនាំដើមឃ្លាំងប្រភព DocType: Item,Customer Code,លេខកូដអតិថិជន apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +72,Days Since Last Order,ថ្ងៃចាប់ពីលំដាប់ចុងក្រោយ @@ -2887,13 +3107,17 @@ apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +8,Import Su DocType: Target Detail,Target Qty,គោលដៅ Qty DocType: Attendance,Present,នាពេលបច្ចុប្បន្ន DocType: Notification Control,Sales Invoice Message,វិក័យប័ត្រការលក់សារ +apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,គណនី {0} បិទត្រូវតែមានប្រភេទបំណុល / សមភាព DocType: Authorization Rule,Based On,ដោយផ្អែកលើការ DocType: Sales Order Item,Ordered Qty,បានបញ្ជាឱ្យ Qty DocType: Stock Settings,Stock Frozen Upto,រីករាយជាមួយនឹងផ្សារភាគហ៊ុនទឹកកក +apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},រយៈពេលចាប់ពីនិងរយៈពេលដើម្បីកាលបរិច្ឆេទចាំបាច់សម្រាប់កើតឡើង {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,សកម្មភាពរបស់គម្រោង / ភារកិច្ច។ -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,បង្កើតប្រាក់ខែគ្រូពេទ្យប្រហែលជា +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,បង្កើតប្រាក់ខែគ្រូពេទ្យប្រហែលជា +apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}",ទិញត្រូវតែត្រូវបានធីកបើកម្មវិធីសម្រាប់ការត្រូវបានជ្រើសរើសជា {0} apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,ការបញ្ចុះតម្លៃត្រូវតែមានតិចជាង 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),បិទការសរសេរចំនួនទឹកប្រាក់ (ក្រុមហ៊ុនរូបិយវត្ថុ) +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,ជួរដេក # {0}: សូមកំណត់បរិមាណតម្រៀបឡើងវិញ DocType: Landed Cost Voucher,Landed Cost Voucher,ប័ណ្ណតម្លៃដែលបានចុះចត DocType: Purchase Invoice,Repeat on Day of Month,ធ្វើម្តងទៀតនៅថ្ងៃនៃខែ DocType: Employee,Health Details,ពត៌មានលំអិតសុខភាព @@ -2927,6 +3151,7 @@ apps/erpnext/erpnext/config/setup.py +56,Setting up Email,ការបង្ក apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +91,Please enter default currency in Company Master,សូមបញ្ចូលរូបិយប័ណ្ណលំនាំដើមនៅក្នុងក្រុមហ៊ុនអនុបណ្ឌិត DocType: Stock Entry Detail,Stock Entry Detail,ពត៌មាននៃភាគហ៊ុនចូល apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +101,Daily Reminders,ការរំលឹកជារៀងរាល់ថ្ងៃ +apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +82,Tax Rule Conflicts with {0},ការប៉ះទង្គិចវិធានពន្ធជាមួយនឹង {0} apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +210,New Account Name,ឈ្មោះគណនីថ្មី DocType: Purchase Invoice Item,Raw Materials Supplied Cost,ការចំណាយវត្ថុធាតុដើមការី DocType: Selling Settings,Settings for Selling Module,ម៉ូឌុលការកំណត់សម្រាប់លក់ @@ -2940,6 +3165,7 @@ apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +81,Total a DocType: Manufacturing Settings,Default Work In Progress Warehouse,ការងារលំនាំដើមនៅក្នុងឃ្លាំងវឌ្ឍនភាព apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,ការកំណត់លំនាំដើមសម្រាប់ប្រតិបត្តិការគណនេយ្យ។ apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,កាលបរិច្ឆេទគេរំពឹងថានឹងមិនអាចមានមុនពេលដែលកាលបរិច្ឆេទនៃសំណើសុំសម្ភារៈ +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,ធាតុ {0} ត្រូវតែជាធាតុលក់ DocType: Naming Series,Update Series Number,កម្រងឯកសារលេខធ្វើឱ្យទាន់សម័យ DocType: Account,Equity,សមធម៌ DocType: Sales Order,Printing Details,សេចក្ដីលម្អិតការបោះពុម្ព @@ -2952,6 +3178,7 @@ DocType: Purchase Taxes and Charges,Actual,ពិតប្រាកដ DocType: Authorization Rule,Customerwise Discount,Customerwise បញ្ចុះតំលៃ DocType: Purchase Invoice,Against Expense Account,ប្រឆាំងនឹងការចំណាយតាមគណនី DocType: Production Order,Production Order,ផលិតកម្មលំដាប់ +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +248,Installation Note {0} has already been submitted,ការដំឡើងចំណាំ {0} ត្រូវបានដាក់ស្នើរួចទៅហើយ DocType: Quotation Item,Against Docname,ប្រឆាំងនឹងការ Docname DocType: SMS Center,All Employee (Active),ទាំងអស់និយោជិត (សកម្ម) apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +9,View Now,មើលឥឡូវ @@ -2965,10 +3192,12 @@ DocType: Employee,Cheque,មូលប្បទានប័ត្រ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +56,Series Updated,បានបន្ទាន់សម័យស៊េរី apps/erpnext/erpnext/accounts/doctype/account/account.py +158,Report Type is mandatory,របាយការណ៏ចាំបាច់ប្រភេទ DocType: Item,Serial Number Series,កម្រងឯកសារលេខសៀរៀល +apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +69,Warehouse is mandatory for stock Item {0} in row {1},ឃ្លាំងជាការចាំបាច់សម្រាប់ធាតុភាគហ៊ុននៅ {0} {1} ជួរដេក apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +45,Retail & Wholesale,ការលក់រាយលក់ដុំនិងចែកចាយ DocType: Issue,First Responded On,ជាលើកដំបូងបានឆ្លើយតបនៅលើ DocType: Website Item Group,Cross Listing of Item in multiple groups,កាកបាទបញ្ជីដែលមានធាតុនៅក្នុងក្រុមជាច្រើនដែល apps/erpnext/erpnext/public/js/setup_wizard.js +13,The First User: You,អ្នកប្រើដំបូង: អ្នក +apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +49,Fiscal Year Start Date and Fiscal Year End Date are already set in Fiscal Year {0},ឆ្នាំចាប់ផ្តើមកាលបរិច្ឆេទសារពើពន្ធឆ្នាំសារពើពន្ធបញ្ចប់និងកាលបរិច្ឆេទត្រូវបានកំណត់រួចហើយនៅក្នុងឆ្នាំសារពើពន្ធ {0} apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +115,Successfully Reconciled,ផ្សះផ្សាដោយជោគជ័យ DocType: Production Order,Planned End Date,កាលបរិច្ឆេទបញ្ចប់ការគ្រោងទុក apps/erpnext/erpnext/config/stock.py +43,Where items are stored.,ដែលជាកន្លែងដែលធាតុត្រូវបានរក្សាទុក។ @@ -2986,7 +3215,8 @@ apps/erpnext/erpnext/config/stock.py +120,Price List master.,ចៅហ្វា DocType: Task,Review Date,ពិនិត្យឡើងវិញកាលបរិច្ឆេទ DocType: Purchase Invoice,Advance Payments,ការទូទាត់ជាមុន DocType: Purchase Taxes and Charges,On Net Total,នៅលើសុទ្ធសរុប -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,មិនមានការអនុញ្ញាតឱ្យប្រើឧបករណ៍ការទូទាត់ +apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,ឃ្លាំងគោលដៅក្នុងជួរ {0} ត្រូវតែមានដូចគ្នាដូចដែលបញ្ជាទិញផលិតផល +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,មិនមានការអនុញ្ញាតឱ្យប្រើឧបករណ៍ការទូទាត់ apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,"ការជូនដំណឹងអាសយដ្ឋានអ៊ីមែល 'មិនត្រូវបានបញ្ជាក់សម្រាប់% s ដែលកើតឡើង apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,រូបិយប័ណ្ណមិនអាចត្រូវបានផ្លាស់ប្តូរបន្ទាប់ពីធ្វើការធាតុប្រើប្រាស់រូបិយប័ណ្ណផ្សេងទៀតមួយចំនួន DocType: Company,Round Off Account,បិទការប្រកួតជុំទីគណនី @@ -3032,15 +3262,16 @@ DocType: Lead,Blog Subscriber,អតិថិជនកំណត់ហេតុ apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,បង្កើតច្បាប់ដើម្បីរឹតបន្តឹងការធ្វើប្រតិបត្តិការដោយផ្អែកលើតម្លៃ។ DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","ប្រសិនបើបានធីកនោះទេសរុប។ នៃថ្ងៃធ្វើការនឹងរួមបញ្ចូលទាំងថ្ងៃឈប់សម្រាក, ហើយនេះនឹងកាត់បន្ថយតម្លៃនៃប្រាក់ខែក្នុងមួយថ្ងៃនោះ" DocType: Purchase Invoice,Total Advance,ជាមុនសរុប -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,ដំណើរការសេវាបើកប្រាក់បៀវត្ស +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,ដំណើរការសេវាបើកប្រាក់បៀវត្ស DocType: Opportunity Item,Basic Rate,អត្រាជាមូលដ្ឋាន DocType: GL Entry,Credit Amount,ចំនួនឥណទាន -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,ដែលបានកំណត់ជាបាត់បង់ +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,ដែលបានកំណត់ជាបាត់បង់ apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,ការទូទាត់វិក័យប័ត្រចំណាំ DocType: Supplier,Credit Days Based On,ថ្ងៃដោយផ្អែកលើការផ្តល់ឥណទាន DocType: Tax Rule,Tax Rule,ច្បាប់ពន្ធ DocType: Selling Settings,Maintain Same Rate Throughout Sales Cycle,រក្សាអត្រាការវដ្តនៃការលក់ពេញមួយដូចគ្នា DocType: Manufacturing Settings,Plan time logs outside Workstation Working Hours.,គម្រោងការកំណត់ហេតុពេលវេលាដែលនៅក្រៅម៉ោងស្ថានីយការងារការងារ។ +apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +95,{0} {1} has already been submitted,{0} {1} ត្រូវបានដាក់ស្នើរួចទៅហើយ ,Items To Be Requested,ធាតុដែលនឹងត្រូវបានស្នើ DocType: Purchase Order,Get Last Purchase Rate,ទទួលបានអត្រាការទិញចុងក្រោយ DocType: Time Log,Billing Rate based on Activity Type (per hour),អត្រាការប្រាក់វិក័យប័ត្រដែលមានមូលដ្ឋានលើប្រភេទសកម្មភាព (ក្នុងមួយម៉ោង) @@ -3057,10 +3288,12 @@ DocType: Purchase Common,Purchase Common,ទិញទូទៅ DocType: Leave Block List,Stop users from making Leave Applications on following days.,បញ្ឈប់ការរបស់អ្នកប្រើពីការធ្វើឱ្យកម្មវិធីដែលបានចាកចេញនៅថ្ងៃបន្ទាប់។ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +166,Employee Benefits,អត្ថប្រយោជន៍បុគ្គលិក DocType: Sales Invoice,Is POS,តើមានម៉ាស៊ីនឆូតកាត +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +230,Packed quantity must equal quantity for Item {0} in row {1},បរិមាណបរិមាណស្មើនឹងត្រូវ packed សម្រាប់ធាតុ {0} នៅក្នុងជួរដេក {1} DocType: Production Order,Manufactured Qty,បានផលិត Qty DocType: Purchase Receipt Item,Accepted Quantity,បរិមាណដែលត្រូវទទួលយក apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,វិក័យប័ត្របានលើកឡើងដល់អតិថិជន។ apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,លេខសម្គាល់របស់គម្រោង +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},ជួរដេកគ្មាន {0}: ចំនួនទឹកប្រាក់មិនអាចមានចំនួនច្រើនជាងការរង់ចាំការប្រឆាំងនឹងពាក្យបណ្តឹងការចំណាយទឹកប្រាក់ {1} ។ ចំនួនទឹកប្រាក់ដែលមិនទាន់សម្រេចគឺ {2} DocType: Maintenance Schedule,Schedule,កាលវិភាគ DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""",កំណត់ថវិកាសម្រាប់មជ្ឈមណ្ឌលតម្លៃនេះ។ ដើម្បីកំណត់សកម្មភាពជាថវិកាបានមើលឃើញថា "ក្រុមហ៊ុនបញ្ជី" DocType: Account,Parent Account,គណនីមាតាឬបិតា @@ -3070,6 +3303,7 @@ DocType: GL Entry,Voucher Type,ប្រភេទកាតមានទឹកប apps/erpnext/erpnext/public/js/pos/pos.js +99,Price List not found or disabled,រកមិនឃើញបញ្ជីថ្លៃឬជនពិការ DocType: Expense Claim,Approved,បានអនុម័ត DocType: Pricing Rule,Price,តំលៃលក់ +apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +99,Employee relieved on {0} must be set as 'Left',បុគ្គលិកធូរស្រាលនៅលើ {0} ត្រូវតែត្រូវបានកំណត់ជា "ឆ្វេង" DocType: Item,"Selecting ""Yes"" will give a unique identity to each entity of this item which can be viewed in the Serial No master.",ជ្រើស "បាទ" នឹងផ្តល់ឱ្យអត្តសញ្ញាណតែមួយគត់ដើម្បីឱ្យអង្គភាពគ្នានៃធាតុដែលអាចត្រូវបានមើលនៅក្នុងស៊េរីចៅហ្វាយគ្មាននេះ។ DocType: Employee,Education,ការអប់រំ DocType: Selling Settings,Campaign Naming By,ដាក់ឈ្មោះការឃោសនាដោយ @@ -3099,6 +3333,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +93, apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +177,For Quantity (Manufactured Qty) is mandatory,ចប់ (ផលិត Qty) គឺជាចាំបាច់ DocType: Stock Entry,Default Target Warehouse,ឃ្លាំងគោលដៅលំនាំដើម DocType: Purchase Invoice,Net Total (Company Currency),សរុប (ក្រុមហ៊ុនរូបិយវត្ថុ) +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +79,Row {0}: Party Type and Party is only applicable against Receivable / Payable account,ជួរដេក {0}: គណបក្សនិងគណបក្សគឺប្រភេទអនុវត្តត្រឹមតែប្រឆាំងនឹងអ្នកទទួលគណនី / ដែលត្រូវបង់ DocType: Notification Control,Purchase Receipt Message,សារបង្កាន់ដៃទិញ DocType: Production Order,Actual Start Date,កាលបរិច្ឆេទពិតប្រាកដចាប់ផ្តើម DocType: Sales Order,% of materials delivered against this Sales Order,សមា្ភារៈបានបញ្ជូន% នៃការលក់នេះបានប្រឆាំងទៅនឹងសណ្តាប់ធ្នាប់ @@ -3116,16 +3351,17 @@ DocType: POS Profile,POS Profile,ម៉ាស៊ីនឆូតកាតពត DocType: Payment Gateway Account,Payment URL Message,សាររបស់ URL ដែលការទូទាត់ apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.",រដូវកាលសម្រាប់ការកំណត់ថវិកាគោលដៅល apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,សរុបគ្មានប្រាក់ខែ -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,កំណត់ហេតុពេលវេលាគឺមិន billable +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,កំណត់ហេតុពេលវេលាគឺមិន billable apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,អ្នកទិញ apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,ប្រាក់ខែសុទ្ធមិនអាចជាអវិជ្ជមាន -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,សូមបញ្ចូលប័ណ្ណដោយដៃប្រឆាំងនឹង +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,សូមបញ្ចូលប័ណ្ណដោយដៃប្រឆាំងនឹង DocType: SMS Settings,Static Parameters,ប៉ារ៉ាម៉ែត្រឋិតិវន្ត DocType: Purchase Order,Advance Paid,មុនបង់ប្រាក់ DocType: Item,Item Tax,ការប្រមូលពន្ធលើធាតុ apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,សម្ភារៈដើម្បីផ្គត់ផ្គង់ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,រដ្ឋាករវិក័យប័ត្រ DocType: Expense Claim,Employees Email Id,និយោជិអ៊ីម៉ែលលេខសម្គាល់ +DocType: Employee Attendance Tool,Marked Attendance,វត្តមានដែលបានសម្គាល់ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,បំណុលនាពេលបច្ចុប្បន្ន apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,ផ្ញើសារជាអក្សរដ៏ធំមួយដើម្បីទំនាក់ទំនងរបស់អ្នក DocType: Purchase Taxes and Charges,Consider Tax or Charge for,សូមពិចារណាឬបន្ទុកសម្រាប់ពន្ធលើ @@ -3148,7 +3384,7 @@ DocType: Item Attribute,Numeric Values,តម្លៃជាលេខ apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,ភ្ជាប់រូបសញ្ញា DocType: Customer,Commission Rate,អត្រាប្រាក់កំរៃ apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,ធ្វើឱ្យវ៉ារ្យង់ -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,កម្មវិធីដែលបានឈប់សម្រាកប្លុកដោយនាយកដ្ឋាន។ +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,កម្មវិធីដែលបានឈប់សម្រាកប្លុកដោយនាយកដ្ឋាន។ apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,រទេះទទេ DocType: Production Order,Actual Operating Cost,ការចំណាយប្រតិបត្តិការបានពិតប្រាកដ apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,ជា root មិនអាចត្រូវបានកែសម្រួល។ @@ -3166,7 +3402,7 @@ DocType: Serial No,Delivery Details,ពត៌មានលំអិតដឹក DocType: Item,Automatically create Material Request if quantity falls below this level,បង្កើតសម្ភារៈស្នើសុំដោយស្វ័យប្រវត្តិបើបរិមាណធ្លាក់នៅក្រោមកម្រិតនេះ ,Item-wise Purchase Register,ចុះឈ្មោះទិញធាតុប្រាជ្ញា DocType: Batch,Expiry Date,កាលបរិច្ឆេទផុតកំណត់ -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item",ដើម្បីកំណត់កម្រិតការរៀបចំធាតុត្រូវតែជាធាតុទិញឬធាតុកម្មន្តសាល +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item",ដើម្បីកំណត់កម្រិតការរៀបចំធាតុត្រូវតែជាធាតុទិញឬធាតុកម្មន្តសាល ,Supplier Addresses and Contacts,អាសយដ្ឋានក្រុមហ៊ុនផ្គត់ផ្គង់និងទំនាក់ទំនង apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,សូមជ្រើសប្រភេទជាលើកដំបូង apps/erpnext/erpnext/config/projects.py +18,Project master.,ចៅហ្វាយគម្រោង។ @@ -3181,5 +3417,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Employee,Reason for Leaving,ហេតុផលសម្រាប់ការចាកចេញ DocType: Expense Claim Detail,Sanctioned Amount,ចំនួនទឹកប្រាក់ដែលបានអនុញ្ញាត DocType: GL Entry,Is Opening,តើការបើក +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +170,Row {0}: Debit entry can not be linked with a {1},ជួរដេក {0}: ធាតុឥណពន្ធមិនអាចត្រូវបានផ្សារភ្ជាប់ទៅនឹងការ {1} DocType: Account,Cash,ជាសាច់ប្រាក់ DocType: Employee,Short biography for website and other publications.,ប្រវត្ដិរូបខ្លីសម្រាប់គេហទំព័រនិងសៀវភៅផ្សេងទៀត។ diff --git a/erpnext/translations/kn.csv b/erpnext/translations/kn.csv index 3b66115a8d..2e4360909b 100644 --- a/erpnext/translations/kn.csv +++ b/erpnext/translations/kn.csv @@ -164,14 +164,14 @@ DocType: Journal Entry Account,Credit in Company Currency,ಕಂಪನಿ ಕರ DocType: Delivery Note,Installation Status,ಅನುಸ್ಥಾಪನ ಸ್ಥಿತಿಯನ್ನು apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},ಅಕ್ಸೆಪ್ಟೆಡ್ + ತಿರಸ್ಕರಿಸಲಾಗಿದೆ ಪ್ರಮಾಣ ಐಟಂ ಸ್ವೀಕರಿಸಲಾಗಿದೆ ಪ್ರಮಾಣಕ್ಕೆ ಸಮ ಇರಬೇಕು {0} DocType: Item,Supply Raw Materials for Purchase,ಪೂರೈಕೆ ಕಚ್ಚಾ ವಸ್ತುಗಳ ಖರೀದಿ -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,ಐಟಂ {0} ಖರೀದಿಸಿ ಐಟಂ ಇರಬೇಕು +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,ಐಟಂ {0} ಖರೀದಿಸಿ ಐಟಂ ಇರಬೇಕು DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records",", ಟೆಂಪ್ಲೇಟು ಸೂಕ್ತ ಮಾಹಿತಿ ತುಂಬಲು ಮತ್ತು ಬದಲಾಯಿಸಲಾಗಿತ್ತು ಕಡತ ಲಗತ್ತಿಸಬಹುದು. ಆಯ್ಕೆ ಅವಧಿಯಲ್ಲಿ ಎಲ್ಲ ದಿನಾಂಕಗಳು ಮತ್ತು ನೌಕರ ಸಂಯೋಜನೆಯನ್ನು ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಹಾಜರಾತಿ ದಾಖಲೆಗಳು, ಟೆಂಪ್ಲೇಟ್ ಬರುತ್ತದೆ" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,ಐಟಂ {0} ಸಕ್ರಿಯವಾಗಿಲ್ಲ ಅಥವಾ ಜೀವನದ ಕೊನೆಯಲ್ಲಿ ತಲುಪಿತು ಮಾಡಲಾಗಿದೆ DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,ಮಾರಾಟದ ಸರಕುಪಟ್ಟಿ ಸಲ್ಲಿಸಿದ ನಂತರ ನವೀಕರಿಸಲಾಗುತ್ತದೆ. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","ಸತತವಾಗಿ ತೆರಿಗೆ ಸೇರಿಸಲು {0} ಐಟಂ ಪ್ರಮಾಣದಲ್ಲಿ , ಸಾಲುಗಳಲ್ಲಿ ತೆರಿಗೆ {1} , ಎಂದು ಸೇರಿಸಲೇಬೇಕು" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,ಮಾನವ ಸಂಪನ್ಮೂಲ ಮಾಡ್ಯೂಲ್ ಸೆಟ್ಟಿಂಗ್ಗಳು +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","ಸತತವಾಗಿ ತೆರಿಗೆ ಸೇರಿಸಲು {0} ಐಟಂ ಪ್ರಮಾಣದಲ್ಲಿ , ಸಾಲುಗಳಲ್ಲಿ ತೆರಿಗೆ {1} , ಎಂದು ಸೇರಿಸಲೇಬೇಕು" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,ಮಾನವ ಸಂಪನ್ಮೂಲ ಮಾಡ್ಯೂಲ್ ಸೆಟ್ಟಿಂಗ್ಗಳು DocType: SMS Center,SMS Center,ಸಂಚಿಕೆ ಸೆಂಟರ್ DocType: BOM Replace Tool,New BOM,ಹೊಸ BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,ಬ್ಯಾಚ್ ಬಿಲ್ಲಿಂಗ್ ಟೈಮ್ ದಾಖಲೆಗಳು. @@ -199,7 +199,7 @@ DocType: Offer Letter,Select Terms and Conditions,ಆಯ್ಕೆ ನಿಯಮ DocType: Production Planning Tool,Sales Orders,ಮಾರಾಟ ಆದೇಶಗಳಿಗೆ DocType: Purchase Taxes and Charges,Valuation,ಬೆಲೆಕಟ್ಟುವಿಕೆ ,Purchase Order Trends,ಆರ್ಡರ್ ಟ್ರೆಂಡ್ಸ್ ಖರೀದಿಸಿ -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,ವರ್ಷದ ಎಲೆಗಳು ನಿಯೋಜಿಸಿ. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,ವರ್ಷದ ಎಲೆಗಳು ನಿಯೋಜಿಸಿ. DocType: Earning Type,Earning Type,ಪ್ರಕಾರ ದುಡಿಯುತ್ತಿದ್ದ DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ ಸಾಮರ್ಥ್ಯವನ್ನು ಯೋಜನೆ ಮತ್ತು ಟೈಮ್ ಟ್ರಾಕಿಂಗ್ DocType: Bank Reconciliation,Bank Account,ಠೇವಣಿ ವಿವರ @@ -237,7 +237,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,ವಸ್ತು ವಿಶೇಷತೆಗಳು ವೆಬ್ಸೈಟ್ DocType: Payment Tool,Reference No,ಉಲ್ಲೇಖ ಯಾವುದೇ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,ಬಿಡಿ ನಿರ್ಬಂಧಿಸಿದ -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},ಐಟಂ {0} ಜೀವನದ ತನ್ನ ಕೊನೆಯಲ್ಲಿ ತಲುಪಿದೆ {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},ಐಟಂ {0} ಜೀವನದ ತನ್ನ ಕೊನೆಯಲ್ಲಿ ತಲುಪಿದೆ {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,ವಾರ್ಷಿಕ DocType: Stock Reconciliation Item,Stock Reconciliation Item,ಸ್ಟಾಕ್ ಸಾಮರಸ್ಯ ಐಟಂ DocType: Stock Entry,Sales Invoice No,ಮಾರಾಟದ ಸರಕುಪಟ್ಟಿ ನಂ @@ -249,7 +249,7 @@ DocType: Item,Minimum Order Qty,ಕನಿಷ್ಠ ಪ್ರಮಾಣ ಆದೆ DocType: Pricing Rule,Supplier Type,ಸರಬರಾಜುದಾರ ಪ್ರಕಾರ DocType: Item,Publish in Hub,ಹಬ್ ಪ್ರಕಟಿಸಿ ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,ಐಟಂ {0} ರದ್ದು +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,ಐಟಂ {0} ರದ್ದು apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,ಮೆಟೀರಿಯಲ್ ವಿನಂತಿ DocType: Bank Reconciliation,Update Clearance Date,ಅಪ್ಡೇಟ್ ಕ್ಲಿಯರೆನ್ಸ್ ದಿನಾಂಕ DocType: Item,Purchase Details,ಖರೀದಿ ವಿವರಗಳು @@ -261,11 +261,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,ತಿರಸ್ಕರಿಸಲ DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","ಡೆಲಿವರಿ ನೋಟ್, ಉದ್ಧರಣ , ಮಾರಾಟದ ಸರಕುಪಟ್ಟಿ , ಮಾರಾಟದ ಆರ್ಡರ್ ಲಭ್ಯವಿದೆ ಫೀಲ್ಡ್" DocType: SMS Settings,SMS Sender Name,ಎಸ್ಎಂಎಸ್ ಕಳುಹಿಸಿದವರ ಹೆಸರು DocType: Contact,Is Primary Contact,ಪ್ರಾಥಮಿಕ ಸಂಪರ್ಕ +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,ದಾಖಲೆ ಬಿಲ್ಲಿಂಗ್ ಬ್ಯಾಚ್ ಮಾಡಿರುವ ಮಾಡಲಾಗಿದೆ DocType: Notification Control,Notification Control,ಅಧಿಸೂಚನೆ ಕಂಟ್ರೋಲ್ DocType: Lead,Suggestions,ಸಲಹೆಗಳು DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,ಈ ಪ್ರದೇಶ ಮೇಲೆ ಐಟಂ ಗುಂಪು ಬಲ್ಲ ಬಜೆಟ್ ಹೊಂದಿಸಲು . ನೀವು ಆದ್ದರಿಂದ ವಿತರಣೆ ಹೊಂದಿಸುವ ಮೂಲಕ ಋತುಗಳು ಒಳಗೊಳ್ಳಬಹುದು. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},ಗೋದಾಮಿನ ಪೋಷಕ ಖಾತೆಯನ್ನು ಗುಂಪು ನಮೂದಿಸಿ {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},ವಿರುದ್ಧ ಪಾವತಿ {0} {1} ಬಾಕಿ ಮೊತ್ತದ ಹೆಚ್ಚಿನ ಸಾಧ್ಯವಿಲ್ಲ {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},ವಿರುದ್ಧ ಪಾವತಿ {0} {1} ಬಾಕಿ ಮೊತ್ತದ ಹೆಚ್ಚಿನ ಸಾಧ್ಯವಿಲ್ಲ {2} DocType: Supplier,Address HTML,ವಿಳಾಸ ಎಚ್ಟಿಎಮ್ಎಲ್ DocType: Lead,Mobile No.,ಮೊಬೈಲ್ ಸಂಖ್ಯೆ DocType: Maintenance Schedule,Generate Schedule,ವೇಳಾಪಟ್ಟಿ ರಚಿಸಿ @@ -282,7 +283,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,ಹಬ್ ಸಿಂಕ್ apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,ತಪ್ಪು ಪಾಸ್ವರ್ಡ್ DocType: Item,Variant Of,ಭಿನ್ನ -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,ಐಟಂ {0} ಸೇವೆ ಐಟಂ ಇರಬೇಕು apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',ಹೆಚ್ಚು 'ಪ್ರಮಾಣ ತಯಾರಿಸಲು' ಮುಗಿದಿದೆ ಪ್ರಮಾಣ ಹೆಚ್ಚಾಗಿರುವುದು ಸಾಧ್ಯವಿಲ್ಲ DocType: Period Closing Voucher,Closing Account Head,ಖಾತೆ ಮುಚ್ಚುವಿಕೆಗೆ ಹೆಡ್ DocType: Employee,External Work History,ಬಾಹ್ಯ ಕೆಲಸ ಇತಿಹಾಸ @@ -294,10 +294,10 @@ DocType: Newsletter,Newsletter,ಸುದ್ದಿಪತ್ರ DocType: Stock Settings,Notify by Email on creation of automatic Material Request,ಸ್ವಯಂಚಾಲಿತ ವಸ್ತು ವಿನಂತಿಯನ್ನು ಸೃಷ್ಟಿ ಮೇಲೆ ಈಮೇಲ್ ಸೂಚಿಸಿ DocType: Journal Entry,Multi Currency,ಮಲ್ಟಿ ಕರೆನ್ಸಿ DocType: Payment Reconciliation Invoice,Invoice Type,ಸರಕುಪಟ್ಟಿ ಪ್ರಕಾರ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,ಡೆಲಿವರಿ ಗಮನಿಸಿ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,ಡೆಲಿವರಿ ಗಮನಿಸಿ apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,ತೆರಿಗೆಗಳು ಹೊಂದಿಸಲಾಗುತ್ತಿದೆ apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,ನೀವು ಹೊರಹಾಕಿದ ನಂತರ ಪಾವತಿ ಎಂಟ್ರಿ ಮಾರ್ಪಡಿಸಲಾಗಿದೆ. ಮತ್ತೆ ಎಳೆಯಲು ದಯವಿಟ್ಟು. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} ಐಟಂ ತೆರಿಗೆ ಎರಡು ಬಾರಿ ಪ್ರವೇಶಿಸಿತು +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} ಐಟಂ ತೆರಿಗೆ ಎರಡು ಬಾರಿ ಪ್ರವೇಶಿಸಿತು apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,ಈ ವಾರ ಬಾಕಿ ಚಟುವಟಿಕೆಗಳಿಗೆ ಸಾರಾಂಶ DocType: Workstation,Rent Cost,ಬಾಡಿಗೆ ವೆಚ್ಚ apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,ತಿಂಗಳು ವರ್ಷದ ಆಯ್ಕೆಮಾಡಿ @@ -308,7 +308,7 @@ DocType: Shipping Rule,Valid for Countries,ದೇಶಗಳಿಗೆ ಅನ್ DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","ಕರೆನ್ಸಿ , ಪರಿವರ್ತನೆ ದರ , ಒಟ್ಟು ಆಮದು , ಆಮದು grandtotal ಇತ್ಯಾದಿ ಎಲ್ಲಾ ಆಮದು ಸಂಬಂಧಿಸಿದ ಜಾಗ ಇತ್ಯಾದಿ ಖರೀದಿ ರಸೀತಿ , ಸರಬರಾಜುದಾರ ಉದ್ಧರಣ , ಖರೀದಿ ಸರಕುಪಟ್ಟಿ , ಪರ್ಚೇಸ್ ಆರ್ಡರ್ ಲಭ್ಯವಿದೆ" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,ಈ ಐಟಂ ಒಂದು ಟೆಂಪ್ಲೇಟು ಮತ್ತು ವ್ಯವಹಾರಗಳಲ್ಲಿ ಬಳಸಲಾಗುವುದಿಲ್ಲ. 'ಯಾವುದೇ ನಕಲಿಸಿ' ಸೆಟ್ ಹೊರತು ಐಟಂ ಲಕ್ಷಣಗಳು ವೇರಿಯಂಟುಗಳನ್ನು ನಕಲು ಮಾಡಲಾಗುತ್ತದೆ apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,ಪರಿಗಣಿಸಲಾದ ಒಟ್ಟು ಆರ್ಡರ್ -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","ನೌಕರರ ಹುದ್ದೆ ( ಇ ಜಿ ಸಿಇಒ , ನಿರ್ದೇಶಕ , ಇತ್ಯಾದಿ ) ." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","ನೌಕರರ ಹುದ್ದೆ ( ಇ ಜಿ ಸಿಇಒ , ನಿರ್ದೇಶಕ , ಇತ್ಯಾದಿ ) ." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,ನಮೂದಿಸಿ fieldValue ' ತಿಂಗಳಿನ ದಿನ ಪುನರಾವರ್ತಿಸಿ ' DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,ಗ್ರಾಹಕ ಕರೆನ್ಸಿ ದರ ಗ್ರಾಹಕ ಬೇಸ್ ಕರೆನ್ಸಿ ಪರಿವರ್ತನೆ DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","BOM , ಡೆಲಿವರಿ ನೋಟ್, ಖರೀದಿ ಸರಕುಪಟ್ಟಿ , ಉತ್ಪಾದನೆ ಆರ್ಡರ್ , ಆರ್ಡರ್ ಖರೀದಿಸಿ , ಖರೀದಿ ರಸೀತಿ , ಮಾರಾಟದ ಸರಕುಪಟ್ಟಿ , ಮಾರಾಟದ ಆರ್ಡರ್ , ಸ್ಟಾಕ್ ಎಂಟ್ರಿ , timesheet ಲಭ್ಯವಿದೆ" @@ -357,7 +357,7 @@ DocType: Workstation,Consumable Cost,ಉಪಭೋಗ್ಯ ವೆಚ್ಚ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) ಪಾತ್ರ ಹೊಂದಿರಬೇಕು 'ಬಿಡಿ ಅನುಮೋದಕ' DocType: Purchase Receipt,Vehicle Date,ವಾಹನ ದಿನಾಂಕ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,ವೈದ್ಯಕೀಯ -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,ಸೋತ ಕಾರಣ +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,ಸೋತ ಕಾರಣ apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},ಕಾರ್ಯಸ್ಥಳ ಹಾಲಿಡೇ ಪಟ್ಟಿ ಪ್ರಕಾರ ಕೆಳಗಿನ ದಿನಾಂಕಗಳಂದು ಮುಚ್ಚಲಾಗಿದೆ: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,ಅವಕಾಶಗಳು DocType: Employee,Single,ಏಕೈಕ @@ -385,14 +385,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,ಚಾನೆಲ್ ಸಂಗಾತಿ DocType: Account,Old Parent,ಓಲ್ಡ್ ಪೋಷಕ DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,ಮಾಡಿದರು ಇಮೇಲ್ ಒಂದು ಭಾಗವಾಗಿ ಹೋಗುತ್ತದೆ ಪರಿಚಯಾತ್ಮಕ ಪಠ್ಯ ಕಸ್ಟಮೈಸ್ . ಪ್ರತಿ ವ್ಯವಹಾರ ಪ್ರತ್ಯೇಕ ಪರಿಚಯಾತ್ಮಕ ಪಠ್ಯ ಹೊಂದಿದೆ . +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),ಚಿಹ್ನೆಗಳು ಸೇರಿಸಬೇಡಿ (ಉದಾ. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,ಮಾರಾಟ ಮಾಸ್ಟರ್ ಮ್ಯಾನೇಜರ್ apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,ಎಲ್ಲಾ ಉತ್ಪಾದನಾ ಪ್ರಕ್ರಿಯೆಗಳು ಜಾಗತಿಕ ಸೆಟ್ಟಿಂಗ್ಗಳು. DocType: Accounts Settings,Accounts Frozen Upto,ಘನೀಕೃತ ವರೆಗೆ ಖಾತೆಗಳು DocType: SMS Log,Sent On,ಕಳುಹಿಸಲಾಗಿದೆ -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,ಗುಣಲಕ್ಷಣ {0} ಗುಣಲಕ್ಷಣಗಳು ಟೇಬಲ್ ಅನೇಕ ಬಾರಿ ಆಯ್ಕೆ +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,ಗುಣಲಕ್ಷಣ {0} ಗುಣಲಕ್ಷಣಗಳು ಟೇಬಲ್ ಅನೇಕ ಬಾರಿ ಆಯ್ಕೆ DocType: HR Settings,Employee record is created using selected field. , DocType: Sales Order,Not Applicable,ಅನ್ವಯಿಸುವುದಿಲ್ಲ -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,ಹಾಲಿಡೇ ಮಾಸ್ಟರ್ . +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,ಹಾಲಿಡೇ ಮಾಸ್ಟರ್ . DocType: Material Request Item,Required Date,ಅಗತ್ಯವಿರುವ ದಿನಾಂಕ DocType: Delivery Note,Billing Address,ಬಿಲ್ಲಿಂಗ್ ವಿಳಾಸ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,ಐಟಂ ಕೋಡ್ ನಮೂದಿಸಿ. @@ -428,7 +429,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,ವೇರ್ಹೌಸ್ ವಸ್ತು ವಿನಂತಿಯನ್ನು ಏರಿಸಲಾಗುತ್ತದೆ ಇದಕ್ಕಾಗಿ ನಮೂದಿಸಿ DocType: Production Order,Additional Operating Cost,ಹೆಚ್ಚುವರಿ ವೆಚ್ಚವನ್ನು apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,ಕಾಸ್ಮೆಟಿಕ್ಸ್ -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","ವಿಲೀನಗೊಳ್ಳಲು , ನಂತರ ಲಕ್ಷಣಗಳು ಐಟಂಗಳನ್ನು ಸಾಮಾನ್ಯ ಇರಬೇಕು" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","ವಿಲೀನಗೊಳ್ಳಲು , ನಂತರ ಲಕ್ಷಣಗಳು ಐಟಂಗಳನ್ನು ಸಾಮಾನ್ಯ ಇರಬೇಕು" DocType: Shipping Rule,Net Weight,ನೆಟ್ ತೂಕ DocType: Employee,Emergency Phone,ತುರ್ತು ದೂರವಾಣಿ ,Serial No Warranty Expiry,ಸೀರಿಯಲ್ ಭರವಸೆಯಿಲ್ಲ ಅಂತ್ಯ @@ -486,17 +487,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,ಬಿಲ್ಲಿಂಗ್ ಮತ್ತು ಡೆಲಿವರಿ ಸ್ಥಿತಿ apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,ಮತ್ತೆ ಗ್ರಾಹಕರ DocType: Leave Control Panel,Allocate,ಗೊತ್ತುಪಡಿಸು -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,ಮಾರಾಟದ ರಿಟರ್ನ್ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,ಮಾರಾಟದ ರಿಟರ್ನ್ DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,ನೀವು ಉತ್ಪಾದನೆ ಆದೇಶಗಳನ್ನು ರಚಿಸಲು ಬಯಸುವ ಆಯ್ಕೆ ಮಾರಾಟ ಆದೇಶಗಳನ್ನು . DocType: Item,Delivered by Supplier (Drop Ship),ಸರಬರಾಜುದಾರ ವಿತರಣೆ (ಡ್ರಾಪ್ ಹಡಗು) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,ಸಂಬಳ ಘಟಕಗಳನ್ನು . +apps/erpnext/erpnext/config/hr.py +128,Salary components.,ಸಂಬಳ ಘಟಕಗಳನ್ನು . apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,ಸಂಭಾವ್ಯ ಗ್ರಾಹಕರು ಡೇಟಾಬೇಸ್ . DocType: Authorization Rule,Customer or Item,ಗ್ರಾಹಕ ಅಥವಾ ಐಟಂ apps/erpnext/erpnext/config/crm.py +17,Customer database.,ಗ್ರಾಹಕ ಡೇಟಾಬೇಸ್ . DocType: Quotation,Quotation To,ಉದ್ಧರಣಾ DocType: Lead,Middle Income,ಮಧ್ಯಮ apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),ತೆರೆಯುತ್ತಿದೆ ( ಸಿಆರ್) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,ನೀವು ಈಗಾಗಲೇ ಮತ್ತೊಂದು ಮೈಸೂರು ವಿಶ್ವವಿದ್ಯಾನಿಲದ ಕೆಲವು ವ್ಯವಹಾರ (ರು) ಮಾಡಿರುವ ಕಾರಣ ಐಟಂ ಚಟುವಟಿಕೆ ಡೀಫಾಲ್ಟ್ ಘಟಕ {0} ನೇರವಾಗಿ ಬದಲಾಯಿಸಲಾಗುವುದಿಲ್ಲ. ನೀವು ಬೇರೆ ಡೀಫಾಲ್ಟ್ ಮೈಸೂರು ವಿಶ್ವವಿದ್ಯಾನಿಲದ ಬಳಸಲು ಹೊಸ ಐಟಂ ರಚಿಸಬೇಕಾಗಿದೆ. +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,ನೀವು ಈಗಾಗಲೇ ಮತ್ತೊಂದು ಮೈಸೂರು ವಿಶ್ವವಿದ್ಯಾನಿಲದ ಕೆಲವು ವ್ಯವಹಾರ (ರು) ಮಾಡಿರುವ ಕಾರಣ ಐಟಂ ಚಟುವಟಿಕೆ ಡೀಫಾಲ್ಟ್ ಘಟಕ {0} ನೇರವಾಗಿ ಬದಲಾಯಿಸಲಾಗುವುದಿಲ್ಲ. ನೀವು ಬೇರೆ ಡೀಫಾಲ್ಟ್ ಮೈಸೂರು ವಿಶ್ವವಿದ್ಯಾನಿಲದ ಬಳಸಲು ಹೊಸ ಐಟಂ ರಚಿಸಬೇಕಾಗಿದೆ. apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,ಹಂಚಿಕೆ ಪ್ರಮಾಣವನ್ನು ಋಣಾತ್ಮಕ ಇರುವಂತಿಲ್ಲ DocType: Purchase Order Item,Billed Amt,ಖ್ಯಾತವಾದ ಕಚೇರಿ DocType: Warehouse,A logical Warehouse against which stock entries are made.,ಸ್ಟಾಕ್ ನಮೂದುಗಳನ್ನು ಮಾಡಲಾಗುತ್ತದೆ ಇದು ವಿರುದ್ಧ ತಾರ್ಕಿಕ ವೇರ್ಹೌಸ್. @@ -515,14 +516,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,ಮಾರಾಟ ತೆರಿಗ DocType: Employee,Organization Profile,ಸಂಸ್ಥೆ ಪ್ರೊಫೈಲ್ಗಳು apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,ಸೆಟಪ್ > ನಂಬರಿಂಗ್ ಸರಣಿ ಮೂಲಕ ಅಟೆಂಡೆನ್ಸ್ ದಯವಿಟ್ಟು ಸೆಟಪ್ ಸಂಖ್ಯಾ ಸರಣಿ DocType: Employee,Reason for Resignation,ರಾಜೀನಾಮೆಗೆ ಕಾರಣ -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,ಪ್ರದರ್ಶನ ಅಂದಾಜಿಸುವಿಕೆಯು ಟೆಂಪ್ಲೇಟ್. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,ಪ್ರದರ್ಶನ ಅಂದಾಜಿಸುವಿಕೆಯು ಟೆಂಪ್ಲೇಟ್. DocType: Payment Reconciliation,Invoice/Journal Entry Details,ಸರಕುಪಟ್ಟಿ / ಜರ್ನಲ್ ಎಂಟ್ರಿ ವಿವರಗಳು apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} ' {1} ' ಅಲ್ಲ ವರ್ಷದಲ್ಲಿ {2} DocType: Buying Settings,Settings for Buying Module,ಮಾಡ್ಯೂಲ್ ಬೈಯಿಂಗ್ ಸೆಟ್ಟಿಂಗ್ಗಳು apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,ಮೊದಲ ಖರೀದಿ ರಿಸೀಟ್ನ್ನು ನಮೂದಿಸಿ DocType: Buying Settings,Supplier Naming By,ಸರಬರಾಜುದಾರ ಹೆಸರಿಸುವ ಮೂಲಕ DocType: Activity Type,Default Costing Rate,ಡೀಫಾಲ್ಟ್ ಕಾಸ್ಟಿಂಗ್ ದರ -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,ನಿರ್ವಹಣೆ ವೇಳಾಪಟ್ಟಿ +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,ನಿರ್ವಹಣೆ ವೇಳಾಪಟ್ಟಿ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","ನಂತರ ಬೆಲೆ ನಿಯಮಗಳಲ್ಲಿ ಗ್ರಾಹಕ ಆಧಾರಿತ ಸೋಸುತ್ತವೆ, ಗ್ರಾಹಕ ಗುಂಪಿನ, ಪ್ರದೇಶ, ಸರಬರಾಜುದಾರ, ಸರಬರಾಜುದಾರ ಪ್ರಕಾರ, ಪ್ರಚಾರ, ಮಾರಾಟದ ಸಂಗಾತಿ ಇತ್ಯಾದಿ" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,ಇನ್ವೆಂಟರಿ ನಿವ್ವಳ ವ್ಯತ್ಯಾಸದ DocType: Employee,Passport Number,ಪಾಸ್ಪೋರ್ಟ್ ಸಂಖ್ಯೆ @@ -561,7 +562,7 @@ DocType: Purchase Invoice,Quarterly,ತ್ರೈಮಾಸಿಕ DocType: Selling Settings,Delivery Note Required,ಡೆಲಿವರಿ ಗಮನಿಸಿ ಅಗತ್ಯ DocType: Sales Order Item,Basic Rate (Company Currency),ಮೂಲ ದರದ ( ಕಂಪನಿ ಕರೆನ್ಸಿ ) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush ಕಚ್ಚಾ ವಸ್ತುಗಳ ಆಧರಿಸಿದ -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,ಐಟಂ ವಿವರಗಳು ನಮೂದಿಸಿ +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,ಐಟಂ ವಿವರಗಳು ನಮೂದಿಸಿ DocType: Purchase Receipt,Other Details,ಇತರೆ ವಿವರಗಳು DocType: Account,Accounts,ಅಕೌಂಟ್ಸ್ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,ಮಾರ್ಕೆಟಿಂಗ್ @@ -574,7 +575,7 @@ DocType: Employee,Provide email id registered in company,ಕಂಪನಿಗಳ DocType: Hub Settings,Seller City,ಮಾರಾಟಗಾರ ಸಿಟಿ DocType: Email Digest,Next email will be sent on:,ಮುಂದೆ ಇಮೇಲ್ ಮೇಲೆ ಕಳುಹಿಸಲಾಗುವುದು : DocType: Offer Letter Term,Offer Letter Term,ಪತ್ರ ಟರ್ಮ್ ಆಫರ್ -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,ಐಟಂ ವೇರಿಯಂಟ್. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,ಐಟಂ ವೇರಿಯಂಟ್. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,ಐಟಂ {0} ಕಂಡುಬಂದಿಲ್ಲ DocType: Bin,Stock Value,ಸ್ಟಾಕ್ ಮೌಲ್ಯ apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,ಟ್ರೀ ಕೌಟುಂಬಿಕತೆ @@ -582,7 +583,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,ಪ್ರಮಾಣ ಘಟಕ DocType: Serial No,Warranty Expiry Date,ಖಾತರಿ ಅಂತ್ಯ ದಿನಾಂಕ DocType: Material Request Item,Quantity and Warehouse,ಪ್ರಮಾಣ ಮತ್ತು ವೇರ್ಹೌಸ್ DocType: Sales Invoice,Commission Rate (%),ಕಮಿಷನ್ ದರ ( % ) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","ಚೀಟಿ ವಿರುದ್ಧ ಕೌಟುಂಬಿಕತೆ ಮಾರಾಟದ ಆರ್ಡರ್ ಒಂದು, ಮಾರಾಟದ ಸರಕುಪಟ್ಟಿ ಅಥವಾ ಜರ್ನಲ್ ಎಂಟ್ರಿ ಇರಬೇಕು" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","ಚೀಟಿ ವಿರುದ್ಧ ಕೌಟುಂಬಿಕತೆ ಮಾರಾಟದ ಆರ್ಡರ್ ಒಂದು, ಮಾರಾಟದ ಸರಕುಪಟ್ಟಿ ಅಥವಾ ಜರ್ನಲ್ ಎಂಟ್ರಿ ಇರಬೇಕು" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,ಏರೋಸ್ಪೇಸ್ DocType: Journal Entry,Credit Card Entry,ಕ್ರೆಡಿಟ್ ಕಾರ್ಡ್ ಎಂಟ್ರಿ apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,ಕೆಲಸವನ್ನು ವಿಷಯ @@ -669,10 +670,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,ಹೊಣೆಗಾರಿಕೆ apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,ಮಂಜೂರು ಪ್ರಮಾಣ ರೋನಲ್ಲಿ ಹಕ್ಕು ಪ್ರಮಾಣವನ್ನು ಹೆಚ್ಚು ಸಾಧ್ಯವಿಲ್ಲ {0}. DocType: Company,Default Cost of Goods Sold Account,ಸರಕುಗಳು ಮಾರಾಟ ಖಾತೆ ಡೀಫಾಲ್ಟ್ ವೆಚ್ಚ -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,ಬೆಲೆ ಪಟ್ಟಿಯನ್ನು ಅಲ್ಲ +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,ಬೆಲೆ ಪಟ್ಟಿಯನ್ನು ಅಲ್ಲ DocType: Employee,Family Background,ಕೌಟುಂಬಿಕ ಹಿನ್ನೆಲೆ DocType: Process Payroll,Send Email,ಇಮೇಲ್ ಕಳುಹಿಸಿ -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},ಎಚ್ಚರಿಕೆ: ಅಮಾನ್ಯ ಲಗತ್ತು {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},ಎಚ್ಚರಿಕೆ: ಅಮಾನ್ಯ ಲಗತ್ತು {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,ಯಾವುದೇ ಅನುಮತಿ DocType: Company,Default Bank Account,ಡೀಫಾಲ್ಟ್ ಬ್ಯಾಂಕ್ ಖಾತೆ apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first",ಪಕ್ಷದ ಆಧಾರದ ಮೇಲೆ ಫಿಲ್ಟರ್ ಆರಿಸಿ ಪಕ್ಷದ ಮೊದಲ ನೀಡಿರಿ @@ -700,7 +701,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,ಗ DocType: Features Setup,"To enable ""Point of Sale"" features","ಮಾರಾಟದ" ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ಶಕ್ತಗೊಳಿಸಲು DocType: Bin,Moving Average Rate,ಮೂವಿಂಗ್ ಸರಾಸರಿ ದರ DocType: Production Planning Tool,Select Items,ಐಟಂಗಳನ್ನು ಆಯ್ಕೆಮಾಡಿ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} ಬಿಲ್ ವಿರುದ್ಧ {1} ರ {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} ಬಿಲ್ ವಿರುದ್ಧ {1} ರ {2} DocType: Maintenance Visit,Completion Status,ಪೂರ್ಣಗೊಂಡ ಸ್ಥಿತಿ DocType: Sales Invoice Item,Target Warehouse,ಟಾರ್ಗೆಟ್ ವೇರ್ಹೌಸ್ DocType: Item,Allow over delivery or receipt upto this percent,ಈ ಶೇಕಡಾ ವರೆಗೆ ವಿತರಣೆ ಅಥವಾ ರಶೀದಿ ಮೇಲೆ ಅವಕಾಶ @@ -760,7 +761,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,ಕ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},ಆಪರೇಷನ್ ಮುಂದಿನ {0} ದಿನಗಳಲ್ಲಿ ಟೈಮ್ ಸ್ಲಾಟ್ ಕಾಣಬರಲಿಲ್ಲ {1} DocType: Production Order,Plan material for sub-assemblies,ಉಪ ಜೋಡಣೆಗಳಿಗೆ ಯೋಜನೆ ವಸ್ತು apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,ಬಿಒಎಮ್ {0} ಸಕ್ರಿಯ ಇರಬೇಕು -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,ಮೊದಲ ದಾಖಲೆ ಪ್ರಕಾರ ಆಯ್ಕೆ ಮಾಡಿ +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,ಮೊದಲ ದಾಖಲೆ ಪ್ರಕಾರ ಆಯ್ಕೆ ಮಾಡಿ apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,ಗೊಟೊ ಕಾರ್ಟ್ apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,ಈ ನಿರ್ವಹಣೆ ಭೇಟಿ ರದ್ದು ಮೊದಲು ವಸ್ತು ಭೇಟಿ {0} ರದ್ದು DocType: Salary Slip,Leave Encashment Amount,ನಗದೀಕರಣ ಪ್ರಮಾಣ ಬಿಡಿ @@ -778,7 +779,7 @@ DocType: Purchase Receipt,Range,ಶ್ರೇಣಿ DocType: Supplier,Default Payable Accounts,ಡೀಫಾಲ್ಟ್ ಪಾವತಿಸಲಾಗುವುದು ಖಾತೆಗಳು apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,ನೌಕರರ {0} ಸಕ್ರಿಯವಾಗಿಲ್ಲ ಅಥವಾ ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ DocType: Features Setup,Item Barcode,ಐಟಂ ಬಾರ್ಕೋಡ್ -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,ಐಟಂ ಮಾರ್ಪಾಟುಗಳು {0} ಅಪ್ಡೇಟ್ಗೊಳಿಸಲಾಗಿದೆ +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,ಐಟಂ ಮಾರ್ಪಾಟುಗಳು {0} ಅಪ್ಡೇಟ್ಗೊಳಿಸಲಾಗಿದೆ DocType: Quality Inspection Reading,Reading 6,6 ಓದುವಿಕೆ DocType: Purchase Invoice Advance,Purchase Invoice Advance,ಸರಕುಪಟ್ಟಿ ಮುಂಗಡ ಖರೀದಿ DocType: Address,Shop,ಅಂಗಡಿ @@ -801,7 +802,7 @@ DocType: Salary Slip,Total in words,ಪದಗಳನ್ನು ಒಟ್ಟು DocType: Material Request Item,Lead Time Date,ಲೀಡ್ ಟೈಮ್ ದಿನಾಂಕ apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,ಕಡ್ಡಾಯ. ಬಹುಶಃ ಕರೆನ್ಸಿ ವಿನಿಮಯ ದಾಖಲೆ ರಚಿಸಲಾಗಲಿಲ್ಲ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},ರೋ # {0}: ಐಟಂ ಯಾವುದೇ ಸೀರಿಯಲ್ ಸೂಚಿಸಲು ದಯವಿಟ್ಟು {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","'ಉತ್ಪನ್ನ ಕಟ್ಟು' ಐಟಂಗಳನ್ನು, ವೇರ್ಹೌಸ್, ಸೀರಿಯಲ್ ಯಾವುದೇ ಮತ್ತು ಬ್ಯಾಚ್ ಯಾವುದೇ 'ಪ್ಯಾಕಿಂಗ್ ಪಟ್ಟಿ ಮೇಜಿನಿಂದ ಪರಿಗಣಿಸಲಾಗುವುದು. ವೇರ್ಹೌಸ್ ಮತ್ತು ಬ್ಯಾಚ್ ಯಾವುದೇ ಯಾವುದೇ 'ಉತ್ಪನ್ನ ಕಟ್ಟು' ಐಟಂ ಎಲ್ಲಾ ಪ್ಯಾಕಿಂಗ್ ವಸ್ತುಗಳನ್ನು ಅದೇ ಇದ್ದರೆ, ಆ ಮೌಲ್ಯಗಳು ಮುಖ್ಯ ಐಟಂ ಕೋಷ್ಟಕದಲ್ಲಿ ಪ್ರವೇಶಿಸಬಹುದಾದ, ಮೌಲ್ಯಗಳನ್ನು ಟೇಬಲ್ 'ಪ್ಯಾಕಿಂಗ್ ಪಟ್ಟಿ' ನಕಲು ನಡೆಯಲಿದೆ." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","'ಉತ್ಪನ್ನ ಕಟ್ಟು' ಐಟಂಗಳನ್ನು, ವೇರ್ಹೌಸ್, ಸೀರಿಯಲ್ ಯಾವುದೇ ಮತ್ತು ಬ್ಯಾಚ್ ಯಾವುದೇ 'ಪ್ಯಾಕಿಂಗ್ ಪಟ್ಟಿ ಮೇಜಿನಿಂದ ಪರಿಗಣಿಸಲಾಗುವುದು. ವೇರ್ಹೌಸ್ ಮತ್ತು ಬ್ಯಾಚ್ ಯಾವುದೇ ಯಾವುದೇ 'ಉತ್ಪನ್ನ ಕಟ್ಟು' ಐಟಂ ಎಲ್ಲಾ ಪ್ಯಾಕಿಂಗ್ ವಸ್ತುಗಳನ್ನು ಅದೇ ಇದ್ದರೆ, ಆ ಮೌಲ್ಯಗಳು ಮುಖ್ಯ ಐಟಂ ಕೋಷ್ಟಕದಲ್ಲಿ ಪ್ರವೇಶಿಸಬಹುದಾದ, ಮೌಲ್ಯಗಳನ್ನು ಟೇಬಲ್ 'ಪ್ಯಾಕಿಂಗ್ ಪಟ್ಟಿ' ನಕಲು ನಡೆಯಲಿದೆ." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,ಗ್ರಾಹಕರಿಗೆ ರವಾನಿಸಲಾಯಿತು . DocType: Purchase Invoice Item,Purchase Order Item,ಪರ್ಚೇಸ್ ಆರ್ಡರ್ ಐಟಂ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,ಪರೋಕ್ಷ ಆದಾಯ @@ -822,6 +823,7 @@ DocType: Process Payroll,Select Payroll Year and Month,ವೇತನದಾರ apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",ಸೂಕ್ತ ಗುಂಪು (ಸಾಮಾನ್ಯವಾಗಿ ಫಂಡ್ಸ್ ಅಪ್ಲಿಕೇಶನ್> ಪ್ರಸಕ್ತ ಆಸ್ತಿಪಾಸ್ತಿಗಳು> ಬ್ಯಾಂಕ್ ಖಾತೆಗಳ ಹೋಗಿ ರೀತಿಯ) ಮಕ್ಕಳ ಸೇರಿಸಿ ಕ್ಲಿಕ್ಕಿಸಿ (ಒಂದು ಹೊಸ ಖಾತೆ ರಚಿಸಿ "ಬ್ಯಾಂಕ್" DocType: Workstation,Electricity Cost,ವಿದ್ಯುತ್ ಬೆಲೆ DocType: HR Settings,Don't send Employee Birthday Reminders,ನೌಕರರ ಜನ್ಮದಿನ ಜ್ಞಾಪನೆಗಳನ್ನು ಕಳುಹಿಸಬೇಡಿ +,Employee Holiday Attendance,ನೌಕರರ ಹಾಲಿಡೇ ಅಟೆಂಡೆನ್ಸ್ DocType: Opportunity,Walk In,ವಲ್ಕ್ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,ಸ್ಟಾಕ್ ನಮೂದುಗಳು DocType: Item,Inspection Criteria,ಇನ್ಸ್ಪೆಕ್ಷನ್ ಮಾನದಂಡ @@ -844,7 +846,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options, DocType: Journal Entry Account,Expense Claim,ಖರ್ಚು ಹಕ್ಕು apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},ಫಾರ್ ಪ್ರಮಾಣ {0} DocType: Leave Application,Leave Application,ಅಪ್ಲಿಕೇಶನ್ ಬಿಡಿ -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,ಅಲೋಕೇಶನ್ ಉಪಕರಣ ಬಿಡಿ +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,ಅಲೋಕೇಶನ್ ಉಪಕರಣ ಬಿಡಿ DocType: Leave Block List,Leave Block List Dates,ಖಂಡ ದಿನಾಂಕ ಬಿಡಿ DocType: Company,If Monthly Budget Exceeded (for expense account),ಮಾಸಿಕ ಬಜೆಟ್ (ವೆಚ್ಚದಲ್ಲಿ ಖಾತೆಗೆ) ಮೀರಿದ್ದಲ್ಲಿ DocType: Workstation,Net Hour Rate,ನೆಟ್ ಅವರ್ ದರ @@ -854,7 +856,7 @@ DocType: Packing Slip Item,Packing Slip Item,ಪ್ಯಾಕಿಂಗ್ ಸ್ DocType: POS Profile,Cash/Bank Account,ನಗದು / ಬ್ಯಾಂಕ್ ಖಾತೆ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,ಪ್ರಮಾಣ ಅಥವಾ ಮೌಲ್ಯವನ್ನು ಯಾವುದೇ ಬದಲಾವಣೆ ತೆಗೆದುಹಾಕಲಾಗಿದೆ ಐಟಂಗಳನ್ನು. DocType: Delivery Note,Delivery To,ವಿತರಣಾ -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,ಗುಣಲಕ್ಷಣ ಟೇಬಲ್ ಕಡ್ಡಾಯ +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,ಗುಣಲಕ್ಷಣ ಟೇಬಲ್ ಕಡ್ಡಾಯ DocType: Production Planning Tool,Get Sales Orders,ಮಾರಾಟದ ಆರ್ಡರ್ಸ್ ಪಡೆಯಿರಿ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} ಋಣಾತ್ಮಕ ಇರುವಂತಿಲ್ಲ apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,ರಿಯಾಯಿತಿ @@ -918,7 +920,7 @@ DocType: SMS Center,Total Characters,ಒಟ್ಟು ಪಾತ್ರಗಳು apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},ಐಟಂ ಬಿಒಎಮ್ ಕ್ಷೇತ್ರದಲ್ಲಿ ಬಿಒಎಮ್ ಆಯ್ಕೆಮಾಡಿ {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,ಸಿ ಆಕಾರ ಸರಕುಪಟ್ಟಿ ವಿವರ DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,ಪಾವತಿ ಸಾಮರಸ್ಯ ಸರಕುಪಟ್ಟಿ -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,ಕೊಡುಗೆ% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,ಕೊಡುಗೆ% DocType: Item,website page link,ವೆಬ್ಸೈಟ್ ಪುಟ ಲಿಂಕ್ DocType: Company,Company registration numbers for your reference. Tax numbers etc.,ನಿಮ್ಮ ಉಲ್ಲೇಖ ಕಂಪನಿ ನೋಂದಣಿ ಸಂಖ್ಯೆಗಳು . ತೆರಿಗೆ ಸಂಖ್ಯೆಗಳನ್ನು ಇತ್ಯಾದಿ DocType: Sales Partner,Distributor,ವಿತರಕ @@ -960,10 +962,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM ಪರಿವರ್ತಿ DocType: Stock Settings,Default Item Group,ಡೀಫಾಲ್ಟ್ ಐಟಂ ಗುಂಪು apps/erpnext/erpnext/config/buying.py +13,Supplier database.,ಸರಬರಾಜುದಾರ ಡೇಟಾಬೇಸ್ . DocType: Account,Balance Sheet,ಬ್ಯಾಲೆನ್ಸ್ ಶೀಟ್ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ','ಐಟಂ ಕೋಡ್ನೊಂದಿಗೆ ಐಟಂ ಸೆಂಟರ್ ವೆಚ್ಚ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ','ಐಟಂ ಕೋಡ್ನೊಂದಿಗೆ ಐಟಂ ಸೆಂಟರ್ ವೆಚ್ಚ DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,ನಿಮ್ಮ ಮಾರಾಟಗಾರ ಗ್ರಾಹಕ ಸಂಪರ್ಕಿಸಿ ಈ ದಿನಾಂಕದಂದು ನೆನಪಿಸುವ ಪಡೆಯುತ್ತಾನೆ apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","ಮತ್ತಷ್ಟು ಖಾತೆಗಳನ್ನು ಗುಂಪುಗಳು ಅಡಿಯಲ್ಲಿ ಮಾಡಬಹುದು, ಆದರೆ ನಮೂದುಗಳನ್ನು ಅಲ್ಲದ ಗುಂಪುಗಳ ವಿರುದ್ಧ ಮಾಡಬಹುದು" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,ತೆರಿಗೆ ಮತ್ತು ಇತರ ಸಂಬಳ ನಿರ್ಣಯಗಳಿಂದ . +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,ತೆರಿಗೆ ಮತ್ತು ಇತರ ಸಂಬಳ ನಿರ್ಣಯಗಳಿಂದ . DocType: Lead,Lead,ಲೀಡ್ DocType: Email Digest,Payables,ಸಂದಾಯಗಳು DocType: Account,Warehouse,ಮಳಿಗೆ @@ -980,10 +982,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,ರಾಜಿಯಾ DocType: Global Defaults,Current Fiscal Year,ಪ್ರಸಕ್ತ ಆರ್ಥಿಕ ವರ್ಷದ DocType: Global Defaults,Disable Rounded Total,ದುಂಡಾದ ಒಟ್ಟು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ DocType: Lead,Call,ಕರೆ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,' ನಮೂದುಗಳು ' ಖಾಲಿ ಇರುವಂತಿಲ್ಲ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,' ನಮೂದುಗಳು ' ಖಾಲಿ ಇರುವಂತಿಲ್ಲ apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},ನಕಲು ಸಾಲು {0} {1} ಒಂದೇ ಜೊತೆ ,Trial Balance,ಟ್ರಯಲ್ ಬ್ಯಾಲೆನ್ಸ್ -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,ನೌಕರರು ಹೊಂದಿಸಲಾಗುತ್ತಿದೆ +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,ನೌಕರರು ಹೊಂದಿಸಲಾಗುತ್ತಿದೆ apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","ಗ್ರಿಡ್ """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,ಮೊದಲ ಪೂರ್ವಪ್ರತ್ಯಯ ಆಯ್ಕೆ ಮಾಡಿ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,ರಿಸರ್ಚ್ @@ -992,7 +994,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,ಬಳಕೆದಾರ ID apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,ವೀಕ್ಷಿಸು ಲೆಡ್ಜರ್ apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,ಮುಂಚಿನ -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","ಐಟಂ ಗುಂಪು ಅದೇ ಹೆಸರಿನಲ್ಲಿ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ , ಐಟಂ ಹೆಸರನ್ನು ಬದಲಾಯಿಸಲು ಅಥವಾ ಐಟಂ ಗುಂಪು ಹೆಸರನ್ನು ದಯವಿಟ್ಟು" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","ಐಟಂ ಗುಂಪು ಅದೇ ಹೆಸರಿನಲ್ಲಿ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ , ಐಟಂ ಹೆಸರನ್ನು ಬದಲಾಯಿಸಲು ಅಥವಾ ಐಟಂ ಗುಂಪು ಹೆಸರನ್ನು ದಯವಿಟ್ಟು" DocType: Production Order,Manufacture against Sales Order,ಮಾರಾಟದ ಆರ್ಡರ್ ವಿರುದ್ಧ ತಯಾರಿಸಲು apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,ವಿಶ್ವದ ಉಳಿದ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,ಐಟಂ {0} ಬ್ಯಾಚ್ ಹೊಂದುವಂತಿಲ್ಲ @@ -1017,7 +1019,7 @@ DocType: Purchase Receipt,Rejected Warehouse,ತಿರಸ್ಕರಿಸಲಾ DocType: GL Entry,Against Voucher,ಚೀಟಿ ವಿರುದ್ಧ DocType: Item,Default Buying Cost Center,ಡೀಫಾಲ್ಟ್ ಖರೀದಿ ವೆಚ್ಚ ಸೆಂಟರ್ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","ERPNext ಅತ್ಯುತ್ತಮ ಔಟ್ ಪಡೆಯಲು, ನೀವು ಸ್ವಲ್ಪ ಸಮಯ ತೆಗೆದುಕೊಳ್ಳುತ್ತದೆ ಮತ್ತು ಈ ಸಹಾಯ ವೀಡಿಯೊಗಳನ್ನು ವೀಕ್ಷಿಸಲು ಶಿಫಾರಸು." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,ಐಟಂ {0} ಮಾರಾಟದ ಐಟಂ ಇರಬೇಕು +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,ಐಟಂ {0} ಮಾರಾಟದ ಐಟಂ ಇರಬೇಕು apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,ಗೆ DocType: Item,Lead Time in days,ದಿನಗಳಲ್ಲಿ ಪ್ರಮುಖ ಸಮಯ ,Accounts Payable Summary,ಪಾವತಿಸಲಾಗುವುದು ಖಾತೆಗಳು ಸಾರಾಂಶ @@ -1043,7 +1045,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,ವ್ಯವಸಾಯ apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,ನಿಮ್ಮ ಉತ್ಪನ್ನಗಳನ್ನು ಅಥವಾ ಸೇವೆಗಳನ್ನು DocType: Mode of Payment,Mode of Payment,ಪಾವತಿಯ ಮಾದರಿಯು -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,ವೆಬ್ಸೈಟ್ ಚಿತ್ರ ಸಾರ್ವಜನಿಕ ಕಡತ ಅಥವಾ ವೆಬ್ಸೈಟ್ URL ಇರಬೇಕು +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,ವೆಬ್ಸೈಟ್ ಚಿತ್ರ ಸಾರ್ವಜನಿಕ ಕಡತ ಅಥವಾ ವೆಬ್ಸೈಟ್ URL ಇರಬೇಕು apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,ಈ ಒಂದು ಮೂಲ ಐಟಂ ಗುಂಪು ಮತ್ತು ಸಂಪಾದಿತವಾಗಿಲ್ಲ . DocType: Journal Entry Account,Purchase Order,ಪರ್ಚೇಸ್ ಆರ್ಡರ್ DocType: Warehouse,Warehouse Contact Info,ವೇರ್ಹೌಸ್ ಸಂಪರ್ಕ ಮಾಹಿತಿ @@ -1054,7 +1056,7 @@ DocType: Serial No,Serial No Details,ಯಾವುದೇ ಸೀರಿಯಲ DocType: Purchase Invoice Item,Item Tax Rate,ಐಟಂ ತೆರಿಗೆ ದರ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","{0}, ಮಾತ್ರ ಕ್ರೆಡಿಟ್ ಖಾತೆಗಳನ್ನು ಮತ್ತೊಂದು ಡೆಬಿಟ್ ಪ್ರವೇಶ ವಿರುದ್ಧ ಲಿಂಕ್ ಮಾಡಬಹುದು ಫಾರ್" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,ಡೆಲಿವರಿ ಗಮನಿಸಿ {0} ಸಲ್ಲಿಸದಿದ್ದರೆ -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,ಐಟಂ {0} ಒಂದು ಉಪ ಒಪ್ಪಂದ ಐಟಂ ಇರಬೇಕು +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,ಐಟಂ {0} ಒಂದು ಉಪ ಒಪ್ಪಂದ ಐಟಂ ಇರಬೇಕು apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,ಸಲಕರಣಾ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","ಬೆಲೆ ರೂಲ್ ಮೊದಲ ಐಟಂ, ಐಟಂ ಗುಂಪು ಅಥವಾ ಬ್ರಾಂಡ್ ಆಗಿರಬಹುದು, ಕ್ಷೇತ್ರದಲ್ಲಿ 'ರಂದು ಅನ್ವಯಿಸು' ಆಧಾರದ ಮೇಲೆ ಆಯ್ಕೆ." DocType: Hub Settings,Seller Website,ಮಾರಾಟಗಾರ ವೆಬ್ಸೈಟ್ @@ -1063,7 +1065,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,ಗುರಿ DocType: Sales Invoice Item,Edit Description,ಸಂಪಾದಿಸಿ ವಿವರಣೆ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,ನಿರೀಕ್ಷಿತ ಡೆಲಿವರಿ ದಿನಾಂಕ ಪ್ಲಾನ್ಡ್ ಪ್ರಾರಂಭ ದಿನಾಂಕ ಗಿಂತ ಕಡಿಮೆಯಾಗಿದೆ. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,ಸರಬರಾಜುದಾರನ +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,ಸರಬರಾಜುದಾರನ DocType: Account,Setting Account Type helps in selecting this Account in transactions.,ಹೊಂದಿಸಲಾಗುತ್ತಿದೆ AccountType ವ್ಯವಹಾರಗಳಲ್ಲಿ ಈ ಖಾತೆಯನ್ನು ಆಯ್ಕೆ ಮಾಡುತ್ತದೆ . DocType: Purchase Invoice,Grand Total (Company Currency),ಗ್ರ್ಯಾಂಡ್ ಒಟ್ಟು ( ಕಂಪನಿ ಕರೆನ್ಸಿ ) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,ಒಟ್ಟು ಹೊರಹೋಗುವ @@ -1115,7 +1117,6 @@ DocType: Authorization Rule,Average Discount,ಸರಾಸರಿ ರಿಯಾಯ DocType: Address,Utilities,ಉಪಯುಕ್ತತೆಗಳನ್ನು DocType: Purchase Invoice Item,Accounting,ಲೆಕ್ಕಪರಿಶೋಧಕ DocType: Features Setup,Features Setup,ವೈಶಿಷ್ಟ್ಯಗಳು ಸೆಟಪ್ -DocType: Item,Is Service Item,ಸೇವೆ ಐಟಂ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,ಅಪ್ಲಿಕೇಶನ್ ಅವಧಿಯಲ್ಲಿ ಹೊರಗೆ ರಜೆ ಹಂಚಿಕೆ ಅವಧಿಯಲ್ಲಿ ಸಾಧ್ಯವಿಲ್ಲ DocType: Activity Cost,Projects,ಯೋಜನೆಗಳು apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,ಹಣಕಾಸಿನ ವರ್ಷ ಆಯ್ಕೆಮಾಡಿ @@ -1136,7 +1137,7 @@ DocType: Item,Maintain Stock,ಸ್ಟಾಕ್ ನಿರ್ವಹಿಸುವ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,ಈಗಾಗಲೇ ಉತ್ಪಾದನೆ ಆರ್ಡರ್ ದಾಖಲಿಸಿದವರು ಸ್ಟಾಕ್ ನಮೂದುಗಳು apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,ಸ್ಥಿರ ಸಂಪತ್ತಾದ ನಿವ್ವಳ ವ್ಯತ್ಯಾಸದ DocType: Leave Control Panel,Leave blank if considered for all designations,ಎಲ್ಲಾ ಅಂಕಿತಗಳು ಪರಿಗಣಿಸಲ್ಪಡುವ ವೇಳೆ ಖಾಲಿ ಬಿಡಿ -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,ಮಾದರಿ ಸಾಲು {0} ನಲ್ಲಿ 'ವಾಸ್ತವಿಕ' ಉಸ್ತುವಾರಿ ಐಟಂ ದರದಲ್ಲಿ ಸೇರಿಸಲಾಗಿದೆ ಸಾಧ್ಯವಿಲ್ಲ +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,ಮಾದರಿ ಸಾಲು {0} ನಲ್ಲಿ 'ವಾಸ್ತವಿಕ' ಉಸ್ತುವಾರಿ ಐಟಂ ದರದಲ್ಲಿ ಸೇರಿಸಲಾಗಿದೆ ಸಾಧ್ಯವಿಲ್ಲ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},ಮ್ಯಾಕ್ಸ್: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Datetime ಗೆ DocType: Email Digest,For Company,ಕಂಪನಿ @@ -1145,8 +1146,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,ಶಿಪ್ಪಿಂಗ್ ವಿಳಾಸ ಹೆಸರು apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,ಖಾತೆಗಳ ಚಾರ್ಟ್ DocType: Material Request,Terms and Conditions Content,ನಿಯಮಗಳು ಮತ್ತು ನಿಯಮಗಳು ವಿಷಯ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,100 ಹೆಚ್ಚು ಸಾಧ್ಯವಿಲ್ಲ -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,ಐಟಂ {0} ಸ್ಟಾಕ್ ಐಟಂ ಅಲ್ಲ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,100 ಹೆಚ್ಚು ಸಾಧ್ಯವಿಲ್ಲ +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,ಐಟಂ {0} ಸ್ಟಾಕ್ ಐಟಂ ಅಲ್ಲ DocType: Maintenance Visit,Unscheduled,ಅನಿಗದಿತ DocType: Employee,Owned,ಸ್ವಾಮ್ಯದ DocType: Salary Slip Deduction,Depends on Leave Without Pay,ಸಂಬಳ ಇಲ್ಲದೆ ಬಿಟ್ಟು ಅವಲಂಬಿಸಿರುತ್ತದೆ @@ -1168,7 +1169,7 @@ Used for Taxes and Charges","ಸ್ಟ್ರಿಂಗ್ ಐಟಂ ಮಾಸ್ apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,ನೌಕರರ ಸ್ವತಃ ವರದಿ ಸಾಧ್ಯವಿಲ್ಲ. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","ಖಾತೆ ಹೆಪ್ಪುಗಟ್ಟಿರುವ ವೇಳೆ , ನಮೂದುಗಳನ್ನು ನಿರ್ಬಂಧಿತ ಬಳಕೆದಾರರಿಗೆ ಅವಕಾಶವಿರುತ್ತದೆ ." DocType: Email Digest,Bank Balance,ಬ್ಯಾಂಕ್ ಬ್ಯಾಲೆನ್ಸ್ -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},{1} ಮಾತ್ರ ಕರೆನ್ಸಿ ಮಾಡಬಹುದು: {0} ಲೆಕ್ಕಪರಿಶೋಧಕ ಎಂಟ್ರಿ {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},{1} ಮಾತ್ರ ಕರೆನ್ಸಿ ಮಾಡಬಹುದು: {0} ಲೆಕ್ಕಪರಿಶೋಧಕ ಎಂಟ್ರಿ {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,ಉದ್ಯೋಗಿ {0} ಮತ್ತು ತಿಂಗಳ ಕಂಡುಬಂದಿಲ್ಲ ಸಕ್ರಿಯ ಸಂಬಳ ರಚನೆ DocType: Job Opening,"Job profile, qualifications required etc.","ಜಾಬ್ ಪ್ರೊಫೈಲ್ಗಳು , ಅಗತ್ಯ ವಿದ್ಯಾರ್ಹತೆಗಳು , ಇತ್ಯಾದಿ" DocType: Journal Entry Account,Account Balance,ಖಾತೆ ಬ್ಯಾಲೆನ್ಸ್ @@ -1185,7 +1186,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,ಉಪ ಅಸ DocType: Shipping Rule Condition,To Value,ಮೌಲ್ಯ DocType: Supplier,Stock Manager,ಸ್ಟಾಕ್ ಮ್ಯಾನೇಜರ್ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},ಮೂಲ ಗೋದಾಮಿನ ಸಾಲು ಕಡ್ಡಾಯ {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,ಪ್ಯಾಕಿಂಗ್ ಸ್ಲಿಪ್ +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,ಪ್ಯಾಕಿಂಗ್ ಸ್ಲಿಪ್ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,ಕಚೇರಿ ಬಾಡಿಗೆ apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,ಸೆಟಪ್ SMS ಗೇಟ್ವೇ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,ಆಮದು ವಿಫಲವಾಗಿದೆ! @@ -1229,7 +1230,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM ವಿವರ ಯಾವ DocType: Purchase Invoice,Additional Discount Amount (Company Currency),ಹೆಚ್ಚುವರಿ ರಿಯಾಯಿತಿ ಪ್ರಮಾಣ (ಕಂಪನಿ ಕರೆನ್ಸಿ) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},ದೋಷ : {0} > {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,ಖಾತೆಗಳ ಚಾರ್ಟ್ ಹೊಸ ಖಾತೆಯನ್ನು ರಚಿಸಿ. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,ನಿರ್ವಹಣೆ ಭೇಟಿ +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,ನಿರ್ವಹಣೆ ಭೇಟಿ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,ಗ್ರಾಹಕ> ಗ್ರಾಹಕ ಗುಂಪಿನ> ಪ್ರದೇಶ DocType: Sales Invoice Item,Available Batch Qty at Warehouse,ವೇರ್ಹೌಸ್ ಲಭ್ಯವಿದೆ ಬ್ಯಾಚ್ ಪ್ರಮಾಣ DocType: Time Log Batch Detail,Time Log Batch Detail,ಟೈಮ್ ಲಾಗ್ ಬ್ಯಾಚ್ ವಿವರ @@ -1238,7 +1239,7 @@ DocType: Leave Block List,Block Holidays on important days.,ಪ್ರಮುಖ ,Accounts Receivable Summary,ಸ್ವೀಕರಿಸುವಂತಹ ಖಾತೆಗಳು ಸಾರಾಂಶ apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,ನೌಕರರ ಪಾತ್ರ ಸೆಟ್ ಒಂದು ನೌಕರರ ದಾಖಲೆಯಲ್ಲಿ ಬಳಕೆದಾರ ID ಕ್ಷೇತ್ರದಲ್ಲಿ ಸೆಟ್ ಮಾಡಿ DocType: UOM,UOM Name,UOM ಹೆಸರು -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,ಕೊಡುಗೆ ಪ್ರಮಾಣ +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,ಕೊಡುಗೆ ಪ್ರಮಾಣ DocType: Sales Invoice,Shipping Address,ಶಿಪ್ಪಿಂಗ್ ವಿಳಾಸ DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,ಈ ಉಪಕರಣವನ್ನು ಅಪ್ಡೇಟ್ ಅಥವಾ ವ್ಯವಸ್ಥೆಯಲ್ಲಿ ಸ್ಟಾಕ್ ಪ್ರಮಾಣ ಮತ್ತು ಮೌಲ್ಯಮಾಪನ ಸರಿಪಡಿಸಲು ಸಹಾಯ. ಇದು ಸಾಮಾನ್ಯವಾಗಿ ವ್ಯವಸ್ಥೆಯ ಮೌಲ್ಯಗಳು ಮತ್ತು ವಾಸ್ತವವಾಗಿ ನಿಮ್ಮ ಗೋದಾಮುಗಳು ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ ಸಿಂಕ್ರೊನೈಸ್ ಬಳಸಲಾಗುತ್ತದೆ. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,ನೀವು ವಿತರಣಾ ಸೂಚನೆ ಉಳಿಸಲು ಒಮ್ಮೆ ವರ್ಡ್ಸ್ ಗೋಚರಿಸುತ್ತದೆ. @@ -1279,7 +1280,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,ಬಾರ್ಕೋಡ್ ಐಟಂಗಳನ್ನು ಟ್ರ್ಯಾಕ್ . ನೀವು ಐಟಂ ಬಾರ್ಸಂಕೇತವನ್ನು ಸ್ಕ್ಯಾನ್ ಮೂಲಕ ಡೆಲಿವರಿ ಗಮನಿಸಿ ಮತ್ತು ಮಾರಾಟದ ಸರಕುಪಟ್ಟಿ ಐಟಂಗಳನ್ನು ನಮೂದಿಸಿ ಸಾಧ್ಯವಾಗುತ್ತದೆ . apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,ಪಾವತಿ ಇಮೇಲ್ ಅನ್ನು ಮತ್ತೆ ಕಳುಹಿಸಿ DocType: Dependent Task,Dependent Task,ಅವಲಂಬಿತ ಟಾಸ್ಕ್ -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},ಅಳತೆ ಡೀಫಾಲ್ಟ್ ಘಟಕ ಪರಿವರ್ತಿಸುವುದರ ಸತತವಾಗಿ 1 ಇರಬೇಕು {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},ಅಳತೆ ಡೀಫಾಲ್ಟ್ ಘಟಕ ಪರಿವರ್ತಿಸುವುದರ ಸತತವಾಗಿ 1 ಇರಬೇಕು {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},ರೀತಿಯ ಲೀವ್ {0} ಹೆಚ್ಚು ಸಾಧ್ಯವಿಲ್ಲ {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,ಮುಂಚಿತವಾಗಿ ಎಕ್ಸ್ ದಿನಗಳ ಕಾರ್ಯಾಚರಣೆ ಯೋಜನೆ ಪ್ರಯತ್ನಿಸಿ. DocType: HR Settings,Stop Birthday Reminders,ನಿಲ್ಲಿಸಿ ಜನ್ಮದಿನ ಜ್ಞಾಪನೆಗಳು @@ -1289,7 +1290,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} ವೀಕ್ಷಿಸಿ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,ನಗದು ನಿವ್ವಳ ವ್ಯತ್ಯಾಸದ DocType: Salary Structure Deduction,Salary Structure Deduction,ಸಂಬಳ ರಚನೆ ಕಳೆಯುವುದು -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,ಅಳತೆಯ ಘಟಕ {0} ಹೆಚ್ಚು ಪರಿವರ್ತಿಸುವುದರ ಟೇಬಲ್ ಒಮ್ಮೆ ಹೆಚ್ಚು ನಮೂದಿಸಲಾದ +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,ಅಳತೆಯ ಘಟಕ {0} ಹೆಚ್ಚು ಪರಿವರ್ತಿಸುವುದರ ಟೇಬಲ್ ಒಮ್ಮೆ ಹೆಚ್ಚು ನಮೂದಿಸಲಾದ apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},ಪಾವತಿ ವಿನಂತಿ ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,ನೀಡಲಾಗಿದೆ ಐಟಂಗಳು ವೆಚ್ಚ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},ಪ್ರಮಾಣ ಹೆಚ್ಚು ಇರಬಾರದು {0} @@ -1318,7 +1319,7 @@ DocType: BOM Item,BOM Item,BOM ಐಟಂ DocType: Appraisal,For Employee,ಉದ್ಯೋಗಿಗಳಿಗಾಗಿ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,ಸಾಲು {0}: ಸರಬರಾಜುದಾರ ವಿರುದ್ಧ ಅಡ್ವಾನ್ಸ್ ಡೆಬಿಟ್ ಮಾಡಬೇಕು DocType: Company,Default Values,ಡೀಫಾಲ್ಟ್ ಮೌಲ್ಯಗಳು -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,ಸಾಲು {0}: ಪಾವತಿ ಪ್ರಮಾಣವನ್ನು ನಕಾರಾತ್ಮಕವಾಗಿರಬಾರದು +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,ಸಾಲು {0}: ಪಾವತಿ ಪ್ರಮಾಣವನ್ನು ನಕಾರಾತ್ಮಕವಾಗಿರಬಾರದು DocType: Expense Claim,Total Amount Reimbursed,ಒಟ್ಟು ಪ್ರಮಾಣ ಮತ್ತೆ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},ಸರಬರಾಜುದಾರ ವಿರುದ್ಧ ಸರಕುಪಟ್ಟಿ {0} ರ {1} DocType: Customer,Default Price List,ಡೀಫಾಲ್ಟ್ ಬೆಲೆ ಪಟ್ಟಿ @@ -1346,8 +1347,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,ಸ DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","ಇದು ಬಳಸಲಾಗುತ್ತದೆ ಅಲ್ಲಿ ಎಲ್ಲಾ ಇತರ BOMs ನಿರ್ದಿಷ್ಟ ಬಿಒಎಮ್ ಬದಲಾಯಿಸಿ. ಇದು, ಹಳೆಯ ಬಿಒಎಮ್ ಲಿಂಕ್ ಬದಲಿಗೆ ವೆಚ್ಚ ಅಪ್ಡೇಟ್ ಮತ್ತು ಹೊಸ ಬಿಒಎಮ್ ಪ್ರಕಾರ ""ಬಿಒಎಮ್ ಸ್ಫೋಟ ಐಟಂ"" ಟೇಬಲ್ ಮತ್ತೆ ಕಾಣಿಸುತ್ತದೆ" DocType: Shopping Cart Settings,Enable Shopping Cart,ಶಾಪಿಂಗ್ ಕಾರ್ಟ್ ಸಕ್ರಿಯಗೊಳಿಸಿ DocType: Employee,Permanent Address,ಖಾಯಂ ವಿಳಾಸ -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,ಐಟಂ {0} ಒಂದು ಸೇವೆ ಐಟಂ ಇರಬೇಕು . -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",ಗ್ರ್ಯಾಂಡ್ ಒಟ್ಟು ಹೆಚ್ಚು \ {0} {1} ಹೆಚ್ಚಾಗಿರುವುದು ಸಾಧ್ಯವಿಲ್ಲ ವಿರುದ್ಧ ಹಣ ಅಡ್ವಾನ್ಸ್ {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,ಐಟಂ ಕೋಡ್ ಆಯ್ಕೆ ಮಾಡಿ DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),ಪೇ ಇಲ್ಲದೆ ಬಿಡಿ ಕಡಿತಗೊಳಿಸು ಕಡಿಮೆ ( LWP ) @@ -1403,12 +1403,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,ಮುಖ್ಯ apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,ಭಿನ್ನ DocType: Naming Series,Set prefix for numbering series on your transactions,ನಿಮ್ಮ ವ್ಯವಹಾರಗಳ ಮೇಲೆ ಸರಣಿ ಸಂಖ್ಯೆಗಳನ್ನು ಹೊಂದಿಸಿ ಪೂರ್ವಪ್ರತ್ಯಯ +DocType: Employee Attendance Tool,Employees HTML,ನೌಕರರು ಎಚ್ಟಿಎಮ್ಎಲ್ apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,ನಿಲ್ಲಿಸಿತು ಆದೇಶವನ್ನು ರದ್ದು ಸಾಧ್ಯವಿಲ್ಲ . ರದ್ದು ಅಡ್ಡಿಯಾಗಿರುವುದನ್ನು ಬಿಡಿಸು . -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,ಡೀಫಾಲ್ಟ್ BOM ({0}) ಈ ಐಟಂ ಅಥವಾ ಅದರ ಟೆಂಪ್ಲೇಟ್ ಸಕ್ರಿಯ ಇರಬೇಕು +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,ಡೀಫಾಲ್ಟ್ BOM ({0}) ಈ ಐಟಂ ಅಥವಾ ಅದರ ಟೆಂಪ್ಲೇಟ್ ಸಕ್ರಿಯ ಇರಬೇಕು DocType: Employee,Leave Encashed?,Encashed ಬಿಡಿ ? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,ಕ್ಷೇತ್ರದ ಅವಕಾಶ ಕಡ್ಡಾಯ DocType: Item,Variants,ರೂಪಾಂತರಗಳು -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,ಮಾಡಿ ಪರ್ಚೇಸ್ ಆರ್ಡರ್ +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,ಮಾಡಿ ಪರ್ಚೇಸ್ ಆರ್ಡರ್ DocType: SMS Center,Send To,ಕಳಿಸಿ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},ಲೀವ್ ಪ್ರಕಾರ ಸಾಕಷ್ಟು ರಜೆ ಸಮತೋಲನ ಇಲ್ಲ {0} DocType: Payment Reconciliation Payment,Allocated amount,ಹಂಚಿಕೆ ಪ್ರಮಾಣವನ್ನು @@ -1509,7 +1510,7 @@ DocType: Sales Person,Name and Employee ID,ಹೆಸರು ಮತ್ತು ಉ apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,ಕಾರಣ ದಿನಾಂಕ ದಿನಾಂಕ ಪೋಸ್ಟ್ ಮುನ್ನ ಸಾಧ್ಯವಿಲ್ಲ DocType: Website Item Group,Website Item Group,ಐಟಂ ಗ್ರೂಪ್ ವೆಬ್ಸೈಟ್ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,ಕರ್ತವ್ಯಗಳು ಮತ್ತು ತೆರಿಗೆಗಳು -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,ರೆಫರೆನ್ಸ್ ದಿನಾಂಕ ನಮೂದಿಸಿ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,ರೆಫರೆನ್ಸ್ ದಿನಾಂಕ ನಮೂದಿಸಿ apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,ಪಾವತಿ ಗೇಟ್ವೇ ಖಾತೆ ಕಾನ್ಫಿಗರ್ apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} ಪಾವತಿ ನಮೂದುಗಳನ್ನು ಫಿಲ್ಟರ್ ಸಾಧ್ಯವಿಲ್ಲ {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,ವೆಬ್ ಸೈಟ್ ತೋರಿಸಲಾಗುತ್ತದೆ ಎಂದು ಐಟಂ ಟೇಬಲ್ @@ -1530,7 +1531,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,ರೆಸಲ್ಯೂಶನ್ ವಿವರಗಳು DocType: Quality Inspection Reading,Acceptance Criteria,ಒಪ್ಪಿಕೊಳ್ಳುವ ಅಳತೆಗೋಲುಗಳನ್ನು DocType: Item Attribute,Attribute Name,ಹೆಸರು ಕಾರಣವಾಗಿದ್ದು -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},ಐಟಂ {0} ನಲ್ಲಿ ಮಾರಾಟ ಅಥವಾ ಸೇವೆ ಐಟಂ ಇರಬೇಕು {1} DocType: Item Group,Show In Website,ವೆಬ್ಸೈಟ್ ಹೋಗಿ apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,ಗುಂಪು DocType: Task,Expected Time (in hours),(ಗಂಟೆಗಳಲ್ಲಿ) ನಿರೀಕ್ಷಿತ ಸಮಯ @@ -1562,7 +1562,7 @@ DocType: Shipping Rule Condition,Shipping Amount,ಶಿಪ್ಪಿಂಗ್ ಪ ,Pending Amount,ಬಾಕಿ ಪ್ರಮಾಣ DocType: Purchase Invoice Item,Conversion Factor,ಪರಿವರ್ತಿಸುವುದರ DocType: Purchase Order,Delivered,ತಲುಪಿಸಲಾಗಿದೆ -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),ಉದ್ಯೋಗಗಳು ಇಮೇಲ್ ಐಡಿ ಸೆಟಪ್ ಒಳಬರುವ ಸರ್ವರ್ . ( ಇ ಜಿ jobs@example.com ) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),ಉದ್ಯೋಗಗಳು ಇಮೇಲ್ ಐಡಿ ಸೆಟಪ್ ಒಳಬರುವ ಸರ್ವರ್ . ( ಇ ಜಿ jobs@example.com ) DocType: Purchase Receipt,Vehicle Number,ವಾಹನ ಸಂಖ್ಯೆ DocType: Purchase Invoice,The date on which recurring invoice will be stop,ಮರುಕಳಿಸುವ ಸರಕುಪಟ್ಟಿ ಸ್ಟಾಪ್ ಯಾವ ದಿನಾಂಕ apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,ಒಟ್ಟು ಹಂಚಿಕೆ ಎಲೆಗಳು {0} ಕಡಿಮೆ ಸಾಧ್ಯವಿಲ್ಲ ಕಾಲ ಈಗಾಗಲೇ ಅನುಮೋದನೆ ಎಲೆಗಳು {1} ಹೆಚ್ಚು @@ -1579,7 +1579,7 @@ DocType: HR Settings,HR Settings,ಮಾನವ ಸಂಪನ್ಮೂಲ ಸೆಟ apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,ಖರ್ಚು ಹಕ್ಕು ಅನುಮೋದನೆ ಬಾಕಿ ಇದೆ . ಮಾತ್ರ ಖರ್ಚು ಅನುಮೋದಕ ಡೇಟ್ ಮಾಡಬಹುದು . DocType: Purchase Invoice,Additional Discount Amount,ಹೆಚ್ಚುವರಿ ರಿಯಾಯಿತಿ ಪ್ರಮಾಣ DocType: Leave Block List Allow,Leave Block List Allow,ಬ್ಲಾಕ್ ಲಿಸ್ಟ್ ಅನುಮತಿಸಿ ಬಿಡಿ -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abbr ಖಾಲಿ ಅಥವಾ ಜಾಗವನ್ನು ಇರುವಂತಿಲ್ಲ +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abbr ಖಾಲಿ ಅಥವಾ ಜಾಗವನ್ನು ಇರುವಂತಿಲ್ಲ apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,ಅಲ್ಲದ ಗ್ರೂಪ್ ಗ್ರೂಪ್ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,ಕ್ರೀಡೆ apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,ನಿಜವಾದ ಒಟ್ಟು @@ -1603,7 +1603,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},UOM ಪರಿವರ್ತಿಸುವುದರ ಸತತವಾಗಿ ಅಗತ್ಯವಿದೆ {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},ಕ್ಲಿಯರೆನ್ಸ್ ದಿನಾಂಕ ದಿನಾಂಕ ಸತತವಾಗಿ ಚೆಕ್ ಮೊದಲು ಸಾಧ್ಯವಿಲ್ಲ {0} DocType: Salary Slip,Deduction,ವ್ಯವಕಲನ -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},ಐಟಂ ಬೆಲೆ ಸೇರ್ಪಡೆ {0} ದರ ಪಟ್ಟಿ ರಲ್ಲಿ {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},ಐಟಂ ಬೆಲೆ ಸೇರ್ಪಡೆ {0} ದರ ಪಟ್ಟಿ ರಲ್ಲಿ {1} DocType: Address Template,Address Template,ವಿಳಾಸ ಟೆಂಪ್ಲೇಟು apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,ಈ ಮಾರಾಟಗಾರನ ಉದ್ಯೋಗಿ ಅನ್ನು ನಮೂದಿಸಿ DocType: Territory,Classification of Customers by region,ಪ್ರದೇಶವಾರು ಗ್ರಾಹಕರು ವರ್ಗೀಕರಣ @@ -1620,7 +1620,7 @@ DocType: Employee,Date of Birth,ಜನ್ಮ ದಿನಾಂಕ apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,ಐಟಂ {0} ಈಗಾಗಲೇ ಮರಳಿದರು DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** ಹಣಕಾಸಿನ ವರ್ಷ ** ಒಂದು ಹಣಕಾಸು ವರ್ಷದ ಪ್ರತಿನಿಧಿಸುತ್ತದೆ. ಎಲ್ಲಾ ಲೆಕ್ಕ ನಮೂದುಗಳನ್ನು ಮತ್ತು ಇತರ ಪ್ರಮುಖ ವ್ಯವಹಾರಗಳ ** ** ಹಣಕಾಸಿನ ವರ್ಷ ವಿರುದ್ಧ ಕಂಡುಕೊಳ್ಳಲಾಯಿತು. DocType: Opportunity,Customer / Lead Address,ಗ್ರಾಹಕ / ಲೀಡ್ ವಿಳಾಸ -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},ಎಚ್ಚರಿಕೆ: ಬಾಂಧವ್ಯ ಅಮಾನ್ಯ SSL ಪ್ರಮಾಣಪತ್ರ {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},ಎಚ್ಚರಿಕೆ: ಬಾಂಧವ್ಯ ಅಮಾನ್ಯ SSL ಪ್ರಮಾಣಪತ್ರ {0} DocType: Production Order Operation,Actual Operation Time,ನಿಜವಾದ ಕಾರ್ಯಾಚರಣೆ ಟೈಮ್ DocType: Authorization Rule,Applicable To (User),ಅನ್ವಯವಾಗುತ್ತದೆ ( ಬಳಕೆದಾರ ) DocType: Purchase Taxes and Charges,Deduct,ಕಳೆ @@ -1637,7 +1637,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,ಪ್ರವಾಸ ಒಳಗೆ ಡೆಲಿವರಿ ಗಮನಿಸಿ ಸ್ಪ್ಲಿಟ್ . apps/erpnext/erpnext/hooks.py +69,Shipments,ಸಾಗಣೆಗಳು DocType: Purchase Order Item,To be delivered to customer,ಗ್ರಾಹಕನಿಗೆ ನೀಡಬೇಕಾಗಿದೆ -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,ಟೈಮ್ ಲಾಗ್ ಸ್ಥಿತಿ ಸಲ್ಲಿಸಬೇಕು. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,ಟೈಮ್ ಲಾಗ್ ಸ್ಥಿತಿ ಸಲ್ಲಿಸಬೇಕು. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,ಸೀರಿಯಲ್ ಯಾವುದೇ {0} ಯಾವುದೇ ವೇರ್ಹೌಸ್ ಸೇರುವುದಿಲ್ಲ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,ರೋ # DocType: Purchase Invoice,In Words (Company Currency),ವರ್ಡ್ಸ್ ( ಕಂಪನಿ ಕರೆನ್ಸಿ ) ರಲ್ಲಿ @@ -1654,7 +1654,7 @@ DocType: Leave Application,Total Leave Days,ಒಟ್ಟು ರಜೆಯ ದಿ DocType: Email Digest,Note: Email will not be sent to disabled users,ಗಮನಿಸಿ : ಇಮೇಲ್ ಅಂಗವಿಕಲ ಬಳಕೆದಾರರಿಗೆ ಕಳುಹಿಸಲಾಗುವುದಿಲ್ಲ apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,ಕಂಪನಿ ಆಯ್ಕೆ ... DocType: Leave Control Panel,Leave blank if considered for all departments,ಎಲ್ಲಾ ವಿಭಾಗಗಳು ಪರಿಗಣಿಸಲ್ಪಡುವ ವೇಳೆ ಖಾಲಿ ಬಿಡಿ -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","ಉದ್ಯೋಗ ವಿಧಗಳು ( ಶಾಶ್ವತ , ಒಪ್ಪಂದ , ಇಂಟರ್ನ್ , ಇತ್ಯಾದಿ ) ." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","ಉದ್ಯೋಗ ವಿಧಗಳು ( ಶಾಶ್ವತ , ಒಪ್ಪಂದ , ಇಂಟರ್ನ್ , ಇತ್ಯಾದಿ ) ." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} ಐಟಂ ಕಡ್ಡಾಯ {1} DocType: Currency Exchange,From Currency,ಚಲಾವಣೆಯ apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","ಕನಿಷ್ಠ ಒಂದು ಸತತವಾಗಿ ನಿಗದಿ ಪ್ರಮಾಣ, ಸರಕುಪಟ್ಟಿ ಕೌಟುಂಬಿಕತೆ ಮತ್ತು ಸರಕುಪಟ್ಟಿ ಸಂಖ್ಯೆ ಆಯ್ಕೆಮಾಡಿ" @@ -1673,7 +1673,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,ಪ್ರಕ್ರಿಯೆಯಲ್ಲಿ DocType: Authorization Rule,Itemwise Discount,Itemwise ಡಿಸ್ಕೌಂಟ್ DocType: Purchase Order Item,Reference Document Type,ರೆಫರೆನ್ಸ್ ಡಾಕ್ಯುಮೆಂಟ್ ಕೌಟುಂಬಿಕತೆ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} ಮಾರಾಟದ ಆರ್ಡರ್ ವಿರುದ್ಧ {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} ಮಾರಾಟದ ಆರ್ಡರ್ ವಿರುದ್ಧ {1} DocType: Account,Fixed Asset,ಸ್ಥಿರಾಸ್ತಿ apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,ಧಾರಾವಾಹಿಯಾಗಿ ಇನ್ವೆಂಟರಿ DocType: Activity Type,Default Billing Rate,ಡೀಫಾಲ್ಟ್ ಬಿಲ್ಲಿಂಗ್ ದರ @@ -1683,7 +1683,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,ಪಾವತಿ ಮಾರಾಟ ಆರ್ಡರ್ DocType: Expense Claim Detail,Expense Claim Detail,ಖರ್ಚು ಹಕ್ಕು ವಿವರ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,ಟೈಮ್ ದಾಖಲೆಗಳು ದಾಖಲಿಸಿದವರು: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,ಸರಿಯಾದ ಖಾತೆಯನ್ನು ಆಯ್ಕೆಮಾಡಿ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,ಸರಿಯಾದ ಖಾತೆಯನ್ನು ಆಯ್ಕೆಮಾಡಿ DocType: Item,Weight UOM,ತೂಕ UOM DocType: Employee,Blood Group,ರಕ್ತ ಗುಂಪು DocType: Purchase Invoice Item,Page Break,ಪುಟ ಬ್ರೇಕ್ @@ -1718,7 +1718,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM ಪುನರಾವರ್ತನ : {0} ಪೋಷಕರು ಅಥವಾ ಮಗು ಸಾಧ್ಯವಿಲ್ಲ {2} DocType: Production Order Operation,Completed Qty,ಪೂರ್ಣಗೊಂಡಿದೆ ಪ್ರಮಾಣ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","{0}, ಮಾತ್ರ ಡೆಬಿಟ್ ಖಾತೆಗಳನ್ನು ಇನ್ನೊಂದು ಕ್ರೆಡಿಟ್ ಪ್ರವೇಶ ವಿರುದ್ಧ ಲಿಂಕ್ ಮಾಡಬಹುದು ಫಾರ್" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,ಬೆಲೆ ಪಟ್ಟಿ {0} ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,ಬೆಲೆ ಪಟ್ಟಿ {0} ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ DocType: Manufacturing Settings,Allow Overtime,ಓವರ್ಟೈಮ್ ಅವಕಾಶ apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} ಐಟಂ ಬೇಕಾದ ಸೀರಿಯಲ್ ಸಂಖ್ಯೆಗಳು {1}. ನೀವು ಒದಗಿಸಿದ {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,ಪ್ರಸ್ತುತ ಮೌಲ್ಯಮಾಪನ ದರ @@ -1769,7 +1769,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},ಬ apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,ಪ್ರಕರಣ ಸಂಖ್ಯೆ 0 ಸಾಧ್ಯವಿಲ್ಲ DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,ನೀವು ಮಾರಾಟ ತಂಡವನ್ನು ಮತ್ತು ಮಾರಾಟಕ್ಕೆ ಪಾರ್ಟ್ನರ್ಸ್ ( ಚಾನೆಲ್ ಪಾರ್ಟ್ನರ್ಸ್ ) ಹೊಂದಿದ್ದರೆ ಅವರು ಟ್ಯಾಗ್ ಮತ್ತು ಮಾರಾಟ ಚಟುವಟಿಕೆಯಲ್ಲಿ ಅವರ ಕೊಡುಗೆ ನಿರ್ವಹಿಸಲು ಮಾಡಬಹುದು DocType: Item,Show a slideshow at the top of the page,ಪುಟದ ಮೇಲಿರುವ ಒಂದು ಸ್ಲೈಡ್ಶೋ ತೋರಿಸು -DocType: Item,"Allow in Sales Order of type ""Service""",ಮಾದರಿ "ಸೇವೆ" ಮಾರಾಟ ಆರ್ಡರ್ ಅನುಮತಿಸು apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,ಸ್ಟೋರ್ಸ್ DocType: Time Log,Projects Manager,ಯೋಜನೆಗಳು ನಿರ್ವಾಹಕ DocType: Serial No,Delivery Time,ಡೆಲಿವರಿ ಟೈಮ್ @@ -1784,6 +1783,7 @@ DocType: Rename Tool,Rename Tool,ಟೂಲ್ ಮರುಹೆಸರಿಸು apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,ನವೀಕರಣ ವೆಚ್ಚ DocType: Item Reorder,Item Reorder,ಐಟಂ ಮರುಕ್ರಮಗೊಳಿಸಿ apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,ಟ್ರಾನ್ಸ್ಫರ್ ವಸ್ತು +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},ಐಟಂ {0} ಒಂದು ಮಾರಾಟದ ಐಟಂ ಇರಬೇಕು {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","ಕಾರ್ಯಾಚರಣೆಗಳು , ನಿರ್ವಹಣಾ ವೆಚ್ಚ ನಿರ್ದಿಷ್ಟಪಡಿಸಲು ಮತ್ತು ಕಾರ್ಯಾಚರಣೆಗಳು ಒಂದು ಅನನ್ಯ ಕಾರ್ಯಾಚರಣೆ ಯಾವುದೇ ನೀಡಿ ." DocType: Purchase Invoice,Price List Currency,ಬೆಲೆ ಪಟ್ಟಿ ಕರೆನ್ಸಿ DocType: Naming Series,User must always select,ಬಳಕೆದಾರ ಯಾವಾಗಲೂ ಆಯ್ಕೆ ಮಾಡಬೇಕು @@ -1804,7 +1804,7 @@ DocType: Appraisal,Employee,ನೌಕರರ apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,ಆಮದು ಇಮೇಲ್ apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,ಬಳಕೆದಾರ ಎಂದು ಆಹ್ವಾನಿಸಿ DocType: Features Setup,After Sale Installations,ಮಾರಾಟಕ್ಕೆ ಅನುಸ್ಥಾಪನೆಗಳು ನಂತರ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} ಸಂಪೂರ್ಣವಾಗಿ ವಿಧಿಸಲಾಗುತ್ತದೆ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} ಸಂಪೂರ್ಣವಾಗಿ ವಿಧಿಸಲಾಗುತ್ತದೆ DocType: Workstation Working Hour,End Time,ಎಂಡ್ ಟೈಮ್ apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,ಮಾರಾಟದ ಅಥವಾ ಖರೀದಿಗಾಗಿ ಸ್ಟ್ಯಾಂಡರ್ಡ್ ಒಪ್ಪಂದದ ವಿಚಾರದಲ್ಲಿ . apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,ಚೀಟಿ ಮೂಲಕ ಗುಂಪು @@ -1830,7 +1830,7 @@ DocType: Upload Attendance,Attendance To Date,ದಿನಾಂಕ ಹಾಜರಿ apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),ಮಾರಾಟ ಇಮೇಲ್ ಐಡಿ ಸೆಟಪ್ ಒಳಬರುವ ಸರ್ವರ್ . ( ಇ ಜಿ sales@example.com ) DocType: Warranty Claim,Raised By,ಬೆಳೆಸಿದರು DocType: Payment Gateway Account,Payment Account,ಪಾವತಿ ಖಾತೆ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,ಮುಂದುವರೆಯಲು ಕಂಪನಿ ನಮೂದಿಸಿ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,ಮುಂದುವರೆಯಲು ಕಂಪನಿ ನಮೂದಿಸಿ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,ಸ್ವೀಕರಿಸುವಂತಹ ಖಾತೆಗಳು ನಿವ್ವಳ ವ್ಯತ್ಯಾಸದ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,ಪರಿಹಾರ ಆಫ್ DocType: Quality Inspection Reading,Accepted,Accepted @@ -1842,14 +1842,14 @@ DocType: Shipping Rule,Shipping Rule Label,ಶಿಪ್ಪಿಂಗ್ ಲೇ apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,ರಾ ಮೆಟೀರಿಯಲ್ಸ್ ಖಾಲಿ ಇರುವಂತಿಲ್ಲ. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","ಸ್ಟಾಕ್ ನವೀಕರಣಗೊಳ್ಳುವುದಿಲ್ಲ, ಸರಕುಪಟ್ಟಿ ಡ್ರಾಪ್ ಹಡಗು ಐಟಂ ಹೊಂದಿದೆ." DocType: Newsletter,Test,ಟೆಸ್ಟ್ -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಸ್ಟಾಕ್ ವ್ಯವಹಾರ ನಿಮಗೆ ಮೌಲ್ಯಗಳನ್ನು ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ \ ಈ ಐಟಂ, ಇವೆ ಎಂದು 'ಸೀರಿಯಲ್ ಯಾವುದೇ ಹೊಂದಿದೆ', 'ಬ್ಯಾಚ್ ಹೊಂದಿದೆ ಇಲ್ಲ', 'ಸ್ಟಾಕ್ ಐಟಂ' ಮತ್ತು 'ಮೌಲ್ಯಮಾಪನ ವಿಧಾನ'" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,ತ್ವರಿತ ಜರ್ನಲ್ ಎಂಟ್ರಿ apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,BOM ಯಾವುದೇ ಐಟಂ agianst ಪ್ರಸ್ತಾಪಿಸಿದ್ದಾರೆ ವೇಳೆ ನೀವು ದರ ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ DocType: Employee,Previous Work Experience,ಹಿಂದಿನ ಅನುಭವ DocType: Stock Entry,For Quantity,ಪ್ರಮಾಣ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},ಐಟಂ ಯೋಜಿಸಿದ ಪ್ರಮಾಣ ನಮೂದಿಸಿ {0} ಸಾಲು {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} ಸಲ್ಲಿಸದಿದ್ದರೆ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} ಸಲ್ಲಿಸದಿದ್ದರೆ apps/erpnext/erpnext/config/stock.py +18,Requests for items.,ಐಟಂಗಳನ್ನು ವಿನಂತಿಗಳು . DocType: Production Planning Tool,Separate production order will be created for each finished good item.,ಪ್ರತ್ಯೇಕ ಉತ್ಪಾದನಾ ಸಲುವಾಗಿ ಪ್ರತಿ ಸಿದ್ಧಪಡಿಸಿದ ಉತ್ತಮ ಐಟಂ ನಿರ್ಮಿಸಲಾಗುತ್ತದೆ . DocType: Purchase Invoice,Terms and Conditions1,ನಿಯಮಗಳು ಮತ್ತು Conditions1 @@ -1874,6 +1874,7 @@ DocType: Notification Control,Expense Claim Approved Message,ಖರ್ಚು ಹ DocType: Email Digest,How frequently?,ಹೇಗೆ ಆಗಾಗ್ಗೆ ? DocType: Purchase Receipt,Get Current Stock,ಪ್ರಸ್ತುತ ಸ್ಟಾಕ್ ಪಡೆಯಿರಿ apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,ವಸ್ತುಗಳ ಬಿಲ್ ಟ್ರೀ +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,ಮಾರ್ಕ್ ಪ್ರೆಸೆಂಟ್ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},ನಿರ್ವಹಣೆ ಆರಂಭ ದಿನಾಂಕ ಯಾವುದೇ ಸೀರಿಯಲ್ ವಿತರಣಾ ದಿನಾಂಕದ ಮೊದಲು ಸಾಧ್ಯವಿಲ್ಲ {0} DocType: Production Order,Actual End Date,ನಿಜವಾದ ಅಂತಿಮ ದಿನಾಂಕ DocType: Authorization Rule,Applicable To (Role),ಅನ್ವಯವಾಗುತ್ತದೆ ( ಪಾತ್ರ ) @@ -1888,7 +1889,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,ಕಾಂಟ್ರಾಕ್ಟ್ ಎಂಡ್ ದಿನಾಂಕ ಸೇರುವ ದಿನಾಂಕ ಹೆಚ್ಚಿನ ಇರಬೇಕು DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,ನಿಯೋಜನೆಗಾಗಿ ಕಂಪನಿಗಳು ಉತ್ಪನ್ನಗಳನ್ನು ಮಾರುತ್ತದೆ ಒಬ್ಬ ಮೂರನೇ ವ್ಯಕ್ತಿಯ ವಿತರಕ / ಡೀಲರ್ / ಆಯೋಗದ ಏಜೆಂಟ್ / ಅಂಗ / ಮರುಮಾರಾಟಗಾರರ. DocType: Customer Group,Has Child Node,ಮಗುವಿನ ನೋಡ್ ಹೊಂದಿದೆ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} ಪರ್ಚೇಸ್ ಆರ್ಡರ್ ವಿರುದ್ಧ {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} ಪರ್ಚೇಸ್ ಆರ್ಡರ್ ವಿರುದ್ಧ {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","ಇಲ್ಲಿ ಸ್ಥಿರ URL ನಿಯತಾಂಕಗಳನ್ನು ನಮೂದಿಸಲು ( ಉದಾ. ಕಳುಹಿಸುವವರ = ERPNext , ಬಳಕೆದಾರಹೆಸರು = ERPNext , ಪಾಸ್ವರ್ಡ್ = 1234 , ಇತ್ಯಾದಿ )" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} ಯಾವುದೇ ಸಕ್ರಿಯ ವರ್ಷದಲ್ಲಿ. ಹೆಚ್ಚಿನ ವಿವರಗಳಿಗಾಗಿ ಚೆಕ್ {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,ಈ ERPNext ನಿಂದ ಸ್ವಯಂ ರಚಿತವಾದ ಒಂದು ಉದಾಹರಣೆ ವೆಬ್ಸೈಟ್ @@ -1936,7 +1937,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. ಸೇರಿಸಿ ಅಥವಾ ಕಡಿತಗೊಳಿಸದಿರುವುದರ: ನೀವು ಸೇರಿಸಲು ಅಥವಾ ತೆರಿಗೆ ಕಡಿತಗೊಳಿಸುವ ಬಯಸುವ ಎಂದು." DocType: Purchase Receipt Item,Recd Quantity,Recd ಪ್ರಮಾಣ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},ಹೆಚ್ಚು ಐಟಂ ಉತ್ಪಾದಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ {0} ಹೆಚ್ಚು ಮಾರಾಟದ ಆರ್ಡರ್ ಪ್ರಮಾಣ {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,ಸ್ಟಾಕ್ ಎಂಟ್ರಿ {0} ಸಲ್ಲಿಸದಿದ್ದರೆ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,ಸ್ಟಾಕ್ ಎಂಟ್ರಿ {0} ಸಲ್ಲಿಸದಿದ್ದರೆ DocType: Payment Reconciliation,Bank / Cash Account,ಬ್ಯಾಂಕ್ / ನಗದು ಖಾತೆ DocType: Tax Rule,Billing City,ಬಿಲ್ಲಿಂಗ್ ನಗರ DocType: Global Defaults,Hide Currency Symbol,ಕರೆನ್ಸಿ ಸಂಕೇತ ಮರೆಮಾಡಿ @@ -1962,7 +1963,7 @@ DocType: Salary Structure,Total Earning,ಒಟ್ಟು ದುಡಿಯುತ್ DocType: Purchase Receipt,Time at which materials were received,ವಸ್ತುಗಳನ್ನು ಸ್ವೀಕರಿಸಿದ ಯಾವ ಸಮಯದಲ್ಲಿ apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,ನನ್ನ ವಿಳಾಸಗಳು DocType: Stock Ledger Entry,Outgoing Rate,ಹೊರಹೋಗುವ ದರ -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,ಸಂಸ್ಥೆ ಶಾಖೆ ಮಾಸ್ಟರ್ . +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,ಸಂಸ್ಥೆ ಶಾಖೆ ಮಾಸ್ಟರ್ . apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,ಅಥವಾ DocType: Sales Order,Billing Status,ಬಿಲ್ಲಿಂಗ್ ಸ್ಥಿತಿ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,ಯುಟಿಲಿಟಿ ವೆಚ್ಚಗಳು @@ -2000,7 +2001,7 @@ DocType: Bin,Reserved Quantity,ರಿಸರ್ವ್ಡ್ ಪ್ರಮಾಣ DocType: Landed Cost Voucher,Purchase Receipt Items,ಖರೀದಿ ರಸೀತಿ ಐಟಂಗಳು apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,ಇಚ್ಛೆಗೆ ತಕ್ಕಂತೆ ಫಾರ್ಮ್ಸ್ DocType: Account,Income Account,ಆದಾಯ ಖಾತೆ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,ಡೆಲಿವರಿ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,ಡೆಲಿವರಿ DocType: Stock Reconciliation Item,Current Qty,ಪ್ರಸ್ತುತ ಪ್ರಮಾಣ DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section","ವಿಭಾಗ ಕಾಸ್ಟಿಂಗ್ ರಲ್ಲಿ ""ಆಧರಿಸಿ ವಸ್ತುಗಳ ದರ "" ನೋಡಿ" DocType: Appraisal Goal,Key Responsibility Area,ಪ್ರಮುಖ ಜವಾಬ್ದಾರಿ ಪ್ರದೇಶ @@ -2012,9 +2013,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,ಚ DocType: Notification Control,Purchase Order Message,ಖರೀದಿ ಆದೇಶವನ್ನು ಸಂದೇಶವನ್ನು DocType: Tax Rule,Shipping Country,ಶಿಪ್ಪಿಂಗ್ ಕಂಟ್ರಿ DocType: Upload Attendance,Upload HTML,ಅಪ್ಲೋಡ್ ಎಚ್ಟಿಎಮ್ಎಲ್ -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","ಒಟ್ಟು ಮುಂಚಿತವಾಗಿ ({0}) ಆರ್ಡರ್ ವಿರುದ್ಧ {1} \ - ಹೆಚ್ಚಾಗಿರುವುದು ಸಾಧ್ಯವಿಲ್ಲ ಗ್ರ್ಯಾಂಡ್ ಒಟ್ಟು ಹೆಚ್ಚು ({2})" DocType: Employee,Relieving Date,ದಿನಾಂಕ ನಿವಾರಿಸುವ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","ಬೆಲೆ ರೂಲ್ ಕೆಲವು ಮಾನದಂಡಗಳನ್ನು ಆಧರಿಸಿ, ಬೆಲೆ ಪಟ್ಟಿ / ರಿಯಾಯಿತಿ ಶೇಕಡಾವಾರು ವ್ಯಾಖ್ಯಾನಿಸಲು ಬದಲಿಸಿ ತಯಾರಿಸಲಾಗುತ್ತದೆ." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,ವೇರ್ಹೌಸ್ ಮಾತ್ರ ಸ್ಟಾಕ್ ಎಂಟ್ರಿ / ಡೆಲಿವರಿ ಸೂಚನೆ / ರಸೀತಿ ಖರೀದಿ ಮೂಲಕ ಬದಲಾಯಿಸಬಹುದು @@ -2024,8 +2022,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,ವ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","ಆಯ್ಕೆ ಬೆಲೆ ರೂಲ್ 'ಬೆಲೆ' ತಯಾರಿಸಲಾಗುತ್ತದೆ, ಅದು ಬೆಲೆ ಪಟ್ಟಿ ಬದಲಿಸಿ. ಬೆಲೆ ರೂಲ್ ಬೆಲೆ ಅಂತಿಮ ಬೆಲೆ, ಆದ್ದರಿಂದ ಯಾವುದೇ ರಿಯಾಯಿತಿ ಅನ್ವಯಿಸಬಹುದಾಗಿದೆ. ಆದ್ದರಿಂದ, ಇತ್ಯಾದಿ ಮಾರಾಟದ ಆರ್ಡರ್, ಆರ್ಡರ್ ಖರೀದಿಸಿ ರೀತಿಯ ವ್ಯವಹಾರಗಳಲ್ಲಿ, ಇದು ಬದಲಿಗೆ 'ಬೆಲೆ ಪಟ್ಟಿ ದರ' ಕ್ಷೇತ್ರದಲ್ಲಿ ಹೆಚ್ಚು, 'ದರ' ಕ್ಷೇತ್ರದಲ್ಲಿ ತರಲಾಗಿದೆ ನಡೆಯಲಿದೆ." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,ಟ್ರ್ಯಾಕ್ ಇಂಡಸ್ಟ್ರಿ ಪ್ರಕಾರ ಕಾರಣವಾಗುತ್ತದೆ. DocType: Item Supplier,Item Supplier,ಐಟಂ ಸರಬರಾಜುದಾರ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,ಯಾವುದೇ ಐಟಂ ಬ್ಯಾಚ್ ಪಡೆಯಲು ಕೋಡ್ ನಮೂದಿಸಿ -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},{0} {1} quotation_to ಒಂದು ಮೌಲ್ಯವನ್ನು ಆಯ್ಕೆ ಮಾಡಿ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,ಯಾವುದೇ ಐಟಂ ಬ್ಯಾಚ್ ಪಡೆಯಲು ಕೋಡ್ ನಮೂದಿಸಿ +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},{0} {1} quotation_to ಒಂದು ಮೌಲ್ಯವನ್ನು ಆಯ್ಕೆ ಮಾಡಿ apps/erpnext/erpnext/config/selling.py +33,All Addresses.,ಎಲ್ಲಾ ವಿಳಾಸಗಳನ್ನು . DocType: Company,Stock Settings,ಸ್ಟಾಕ್ ಸೆಟ್ಟಿಂಗ್ಗಳು apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","ಕೆಳಗಿನ ಲಕ್ಷಣಗಳು ದಾಖಲೆಗಳಲ್ಲಿ ಅದೇ ವೇಳೆ ಮರ್ಜಿಂಗ್ ಮಾತ್ರ ಸಾಧ್ಯ. ಗ್ರೂಪ್, ರೂಟ್ ಕೌಟುಂಬಿಕತೆ, ಕಂಪನಿ" @@ -2048,7 +2046,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,ಚೆಕ್ ಸಂಖ್ಯ DocType: Payment Tool Detail,Payment Tool Detail,ಪಾವತಿ ಉಪಕರಣ ವಿವರ ,Sales Browser,ಮಾರಾಟದ ಬ್ರೌಸರ್ DocType: Journal Entry,Total Credit,ಒಟ್ಟು ಕ್ರೆಡಿಟ್ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},ಎಚ್ಚರಿಕೆ: ಮತ್ತೊಂದು {0} # {1} ಸ್ಟಾಕ್ ಪ್ರವೇಶ ವಿರುದ್ಧ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},ಎಚ್ಚರಿಕೆ: ಮತ್ತೊಂದು {0} # {1} ಸ್ಟಾಕ್ ಪ್ರವೇಶ ವಿರುದ್ಧ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,ಸ್ಥಳೀಯ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),ಸಾಲ ಮತ್ತು ಅಡ್ವಾನ್ಸಸ್ ( ಆಸ್ತಿಗಳು ) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,ಸಾಲಗಾರರು @@ -2068,8 +2066,8 @@ DocType: Price List,Price List Master,ದರ ಪಟ್ಟಿ ಮಾಸ್ಟರ DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,ನೀವು ಸೆಟ್ ಮತ್ತು ಗುರಿಗಳನ್ನು ಮೇಲ್ವಿಚಾರಣೆ ಆ ಎಲ್ಲಾ ಮಾರಾಟದ ಟ್ರಾನ್ಸಾಕ್ಷನ್ಸ್ ಅನೇಕ ** ಮಾರಾಟದ ವ್ಯಕ್ತಿಗಳು ** ವಿರುದ್ಧ ಟ್ಯಾಗ್ ಮಾಡಬಹುದು. ,S.O. No.,S.O. ನಂ DocType: Production Order Operation,Make Time Log,ದಾಖಲೆ ಮಾಡಿ -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,ಮರುಕ್ರಮಗೊಳಿಸಿ ಪ್ರಮಾಣ ಹೊಂದಿಸಿ -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},{0} ನಿಂದ ಗ್ರಾಹಕ ಲೀಡ್ ರಚಿಸಲು ದಯವಿಟ್ಟು +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,ಮರುಕ್ರಮಗೊಳಿಸಿ ಪ್ರಮಾಣ ಹೊಂದಿಸಿ +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},{0} ನಿಂದ ಗ್ರಾಹಕ ಲೀಡ್ ರಚಿಸಲು ದಯವಿಟ್ಟು DocType: Price List,Applicable for Countries,ದೇಶಗಳು ಅನ್ವಯಿಸುವುದಿಲ್ಲ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,ಕಂಪ್ಯೂಟರ್ apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,ಈ ಗ್ರಾಹಕ ಗುಂಪಿನ ಮೂಲ ಮತ್ತು ಸಂಪಾದಿತವಾಗಿಲ್ಲ . @@ -2117,7 +2115,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),ಬಿ DocType: Payment Reconciliation Invoice,Outstanding Amount,ಮಹೋನ್ನತ ಪ್ರಮಾಣ DocType: Project Task,Working,ಕೆಲಸ DocType: Stock Ledger Entry,Stock Queue (FIFO),ಸ್ಟಾಕ್ ಸರದಿಗೆ ( FIFO ) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,ಟೈಮ್ ದಾಖಲೆಗಳು ಆಯ್ಕೆ ಮಾಡಿ. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,ಟೈಮ್ ದಾಖಲೆಗಳು ಆಯ್ಕೆ ಮಾಡಿ. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} ಕಂಪನಿ ಸೇರುವುದಿಲ್ಲ {1} DocType: Account,Round Off,ಆಫ್ ಸುತ್ತ ,Requested Qty,ವಿನಂತಿಸಲಾಗಿದೆ ಪ್ರಮಾಣ @@ -2155,7 +2153,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,ಸಂಬಂಧಿತ ನಮೂದುಗಳು ಪಡೆಯಿರಿ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,ಸ್ಟಾಕ್ ಲೆಕ್ಕಪರಿಶೋಧಕ ಎಂಟ್ರಿ DocType: Sales Invoice,Sales Team1,ಮಾರಾಟದ team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,ಐಟಂ {0} ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,ಐಟಂ {0} ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ DocType: Sales Invoice,Customer Address,ಗ್ರಾಹಕ ವಿಳಾಸ DocType: Payment Request,Recipient and Message,ಸ್ವೀಕರಿಸುವವರ ಮತ್ತು ಸಂದೇಶ DocType: Purchase Invoice,Apply Additional Discount On,ಹೆಚ್ಚುವರಿ ರಿಯಾಯತಿ ಅನ್ವಯಿಸು @@ -2174,7 +2172,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,ಮ್ಯೂಟ್ ಇಮೇಲ್ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","ಆಹಾರ , ಪಾನೀಯ ಮತ್ತು ತಂಬಾಕು" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,ಪಿಎಲ್ ಅಥವಾ ಬಿಎಸ್ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},ಮಾತ್ರ ವಿರುದ್ಧ ಪಾವತಿ ಮಾಡಬಹುದು unbilled {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},ಮಾತ್ರ ವಿರುದ್ಧ ಪಾವತಿ ಮಾಡಬಹುದು unbilled {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,ಕಮಿಷನ್ ದರ 100 ಹೆಚ್ಚು ಸಾಧ್ಯವಿಲ್ಲ apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,ಕನಿಷ್ಠ ಇನ್ವೆಂಟರಿ ಮಟ್ಟ DocType: Stock Entry,Subcontract,subcontract @@ -2192,9 +2190,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,ತಂತ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,ಬಣ್ಣದ DocType: Maintenance Visit,Scheduled,ಪರಿಶಿಷ್ಟ apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","ಇಲ್ಲ" ಮತ್ತು "ಮಾರಾಟ ಐಟಂ" "ಸ್ಟಾಕ್ ಐಟಂ" ಅಲ್ಲಿ "ಹೌದು" ಐಟಂ ಆಯ್ಕೆ ಮತ್ತು ಯಾವುದೇ ಉತ್ಪನ್ನ ಕಟ್ಟು ಇಲ್ಲ ದಯವಿಟ್ಟು +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),ಒಟ್ಟು ಮುಂಚಿತವಾಗಿ ({0}) ಆರ್ಡರ್ ವಿರುದ್ಧ {1} ಗ್ರ್ಯಾಂಡ್ ಒಟ್ಟು ಅಧಿಕವಾಗಿರುತ್ತದೆ ಸಾಧ್ಯವಿಲ್ಲ ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,ಅಸಮಾನವಾಗಿ ತಿಂಗಳ ಅಡ್ಡಲಾಗಿ ಗುರಿಗಳನ್ನು ವಿತರಿಸಲು ಮಾಸಿಕ ವಿತರಣೆ ಆಯ್ಕೆ. DocType: Purchase Invoice Item,Valuation Rate,ಮೌಲ್ಯಾಂಕನ ದರ -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,ಬೆಲೆ ಪಟ್ಟಿ ಕರೆನ್ಸಿ ಆಯ್ಕೆ ಇಲ್ಲ +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,ಬೆಲೆ ಪಟ್ಟಿ ಕರೆನ್ಸಿ ಆಯ್ಕೆ ಇಲ್ಲ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,ಐಟಂ ಸಾಲು {0}: {1} ಮೇಲೆ 'ಖರೀದಿ ರಸೀದಿಗಳನ್ನು' ಟೇಬಲ್ ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ ಖರೀದಿ ರಿಸೀಟ್ನ್ನು apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},ನೌಕರರ {0} ಈಗಾಗಲೇ {1} {2} ಮತ್ತು ನಡುವೆ ಅನ್ವಯಿಸಿದ್ದಾರೆ {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,ಪ್ರಾಜೆಕ್ಟ್ ಪ್ರಾರಂಭ ದಿನಾಂಕ @@ -2206,6 +2205,7 @@ DocType: Quality Inspection,Inspection Type,ಇನ್ಸ್ಪೆಕ್ಷನ್ apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},ಆಯ್ಕೆಮಾಡಿ {0} DocType: C-Form,C-Form No,ಸಿ ಫಾರ್ಮ್ ನಂ DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,ಗುರುತು ಅಟೆಂಡೆನ್ಸ್ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,ಸಂಶೋಧಕ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,ಕಳುಹಿಸುವ ಮೊದಲು ಸುದ್ದಿಪತ್ರವನ್ನು ಉಳಿಸಲು ದಯವಿಟ್ಟು apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,ಹೆಸರು ಅಥವಾ ಇಮೇಲ್ ಕಡ್ಡಾಯ @@ -2231,7 +2231,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,ದೃ DocType: Payment Gateway,Gateway,ಗೇಟ್ವೇ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,ಸರಬರಾಜುದಾರ> ಸರಬರಾಜುದಾರ ಪ್ರಕಾರ apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,ದಿನಾಂಕ ನಿವಾರಿಸುವ ನಮೂದಿಸಿ. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,ಮೊತ್ತ +apps/erpnext/erpnext/controllers/trends.py +138,Amt,ಮೊತ್ತ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,ಮಾತ್ರ ಸಲ್ಲಿಸಿದ ಮಾಡಬಹುದು 'ಅಂಗೀಕಾರವಾದ' ಸ್ಥಿತಿಯನ್ನು ಅನ್ವಯಗಳಲ್ಲಿ ಬಿಡಿ apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,ವಿಳಾಸ ಶೀರ್ಷಿಕೆ ಕಡ್ಡಾಯ. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,ವಿಚಾರಣೆಯ ಮೂಲ ಪ್ರಚಾರ ವೇಳೆ ಪ್ರಚಾರ ಹೆಸರನ್ನು ನಮೂದಿಸಿ @@ -2246,10 +2246,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,ಅಕ್ಸೆಪ್ಟೆಡ DocType: Bank Reconciliation Detail,Posting Date,ದಿನಾಂಕ ಪೋಸ್ಟ್ DocType: Item,Valuation Method,ಮೌಲ್ಯಮಾಪನ ವಿಧಾನ apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},{0} ಗೆ ವಿನಿಮಯ ದರದ ಹುಡುಕಲು ಸಾಧ್ಯವಾಗುವುದಿಲ್ಲ {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,ಮಾರ್ಕ್ ಅರ್ಧ ದಿನ DocType: Sales Invoice,Sales Team,ಮಾರಾಟದ ತಂಡ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,ಪ್ರವೇಶ ನಕಲು DocType: Serial No,Under Warranty,ವಾರಂಟಿ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[ದೋಷ] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[ದೋಷ] DocType: Sales Order,In Words will be visible once you save the Sales Order.,ನೀವು ಮಾರಾಟದ ಆರ್ಡರ್ ಉಳಿಸಲು ಒಮ್ಮೆ ವರ್ಡ್ಸ್ ಗೋಚರಿಸುತ್ತದೆ. ,Employee Birthday,ನೌಕರರ ಜನ್ಮದಿನ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,ಸಾಹಸೋದ್ಯಮ ಬಂಡವಾಳ @@ -2272,6 +2273,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ವ್ಯವಹಾರಗಳು ವೆಚ್ಚ ಸೆಂಟರ್ ಗುಂಪು ಪರಿವರ್ತನೆ ಸಾಧ್ಯವಿಲ್ಲ DocType: Account,Depreciation,ಸವಕಳಿ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),ಪೂರೈಕೆದಾರ (ರು) +DocType: Employee Attendance Tool,Employee Attendance Tool,ನೌಕರರ ಅಟೆಂಡೆನ್ಸ್ ಉಪಕರಣ DocType: Supplier,Credit Limit,ಕ್ರೆಡಿಟ್ ಮಿತಿಯನ್ನು apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,ವ್ಯವಹಾರದ ಪ್ರಕಾರವನ್ನುಆರಿಸಿ DocType: GL Entry,Voucher No,ಚೀಟಿ ಸಂಖ್ಯೆ @@ -2298,7 +2300,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,ಮೂಲ ಖಾತೆಯನ್ನು ಅಳಿಸಲಾಗಿದೆ ಸಾಧ್ಯವಿಲ್ಲ ,Is Primary Address,ಪ್ರಾಥಮಿಕ ವಿಳಾಸ DocType: Production Order,Work-in-Progress Warehouse,ಕೆಲಸ ಪ್ರಗತಿಯಲ್ಲಿರುವ ವೇರ್ಹೌಸ್ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},ರೆಫರೆನ್ಸ್ # {0} {1} ರ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},ರೆಫರೆನ್ಸ್ # {0} {1} ರ apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,ವಿಳಾಸಗಳನ್ನು ನಿರ್ವಹಿಸಿ DocType: Pricing Rule,Item Code,ಐಟಂ ಕೋಡ್ DocType: Production Planning Tool,Create Production Orders,ಪ್ರೊಡಕ್ಷನ್ ಆದೇಶಗಳನ್ನು ರಚಿಸಲು @@ -2325,7 +2327,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,ಬ್ಯಾಂಕ್ ಸಾಮ apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,ಅಪ್ಡೇಟ್ಗಳು ಪಡೆಯಿರಿ apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,ಮೆಟೀರಿಯಲ್ ವಿನಂತಿ {0} ರದ್ದು ಅಥವಾ ನಿಲ್ಲಿಸಿದಾಗ apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,ಕೆಲವು ಸ್ಯಾಂಪಲ್ ದಾಖಲೆಗಳನ್ನು ಸೇರಿಸಿ -apps/erpnext/erpnext/config/hr.py +210,Leave Management,ಮ್ಯಾನೇಜ್ಮೆಂಟ್ ಬಿಡಿ +apps/erpnext/erpnext/config/hr.py +225,Leave Management,ಮ್ಯಾನೇಜ್ಮೆಂಟ್ ಬಿಡಿ apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,ಖಾತೆ ಗುಂಪು DocType: Sales Order,Fully Delivered,ಸಂಪೂರ್ಣವಾಗಿ ತಲುಪಿಸಲಾಗಿದೆ DocType: Lead,Lower Income,ಕಡಿಮೆ ವರಮಾನ @@ -2340,6 +2342,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',' ದಿನಾಂಕದಿಂದ ' ' ದಿನಾಂಕ ' ನಂತರ ಇರಬೇಕು ,Stock Projected Qty,ಸ್ಟಾಕ್ ಪ್ರಮಾಣ ಯೋಜಿತ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},ಗ್ರಾಹಕ {0} ಅಭಿವ್ಯಕ್ತಗೊಳಿಸಲು ಸೇರಿಲ್ಲ {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,ಗುರುತು ಅಟೆಂಡೆನ್ಸ್ ಎಚ್ಟಿಎಮ್ಎಲ್ DocType: Sales Order,Customer's Purchase Order,ಗ್ರಾಹಕರ ಆರ್ಡರ್ ಖರೀದಿಸಿ DocType: Warranty Claim,From Company,ಕಂಪನಿ apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,ಮೌಲ್ಯ ಅಥವಾ ಪ್ರಮಾಣ @@ -2404,6 +2407,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,ವೈರ್ ಟ್ರಾನ್ಸ್ಫರ್ apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,ಬ್ಯಾಂಕ್ ಖಾತೆ ಆಯ್ಕೆಮಾಡಿ DocType: Newsletter,Create and Send Newsletters,ರಚಿಸಿ ಮತ್ತು ಕಳುಹಿಸಿ ಸುದ್ದಿಪತ್ರಗಳು +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,ಎಲ್ಲಾ ಪರಿಶೀಲಿಸಿ DocType: Sales Order,Recurring Order,ಮರುಕಳಿಸುವ ಆರ್ಡರ್ DocType: Company,Default Income Account,ಡೀಫಾಲ್ಟ್ ಆದಾಯ ಖಾತೆ apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,ಗ್ರಾಹಕ ಗುಂಪಿನ / ಗ್ರಾಹಕ @@ -2435,6 +2439,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,ವಿರುದ್ಧ DocType: Item,Warranty Period (in days),( ದಿನಗಳಲ್ಲಿ ) ಖಾತರಿ ಅವಧಿಯ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,ಕಾರ್ಯಾಚರಣೆ ನಿವ್ವಳ ನಗದು apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,ಇ ಜಿ ವ್ಯಾಟ್ +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,ದೊಡ್ಡ ಮಾರ್ಕ್ ನೌಕರರ ಹಾಜರಾತಿ apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,ಐಟಂ 4 DocType: Journal Entry Account,Journal Entry Account,ಜರ್ನಲ್ ಎಂಟ್ರಿ ಖಾತೆ DocType: Shopping Cart Settings,Quotation Series,ಉದ್ಧರಣ ಸರಣಿ @@ -2580,14 +2585,14 @@ DocType: Task,Actual Start Date (via Time Logs),ನಿಜವಾದ ಪ್ರಾ DocType: Stock Reconciliation Item,Before reconciliation,ಸಮನ್ವಯ ಮೊದಲು apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},ಗೆ {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),ಸೇರಿಸಲಾಗಿದೆ ತೆರಿಗೆಗಳು ಮತ್ತು ಶುಲ್ಕಗಳು ( ಕಂಪನಿ ಕರೆನ್ಸಿ ) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,ಐಟಂ ತೆರಿಗೆ ರೋ {0} ಬಗೆಯ ತೆರಿಗೆ ಅಥವಾ ಆದಾಯ ಅಥವಾ ಖರ್ಚು ಅಥವಾ ಶುಲ್ಕಕ್ಕೆ ಖಾತೆಯನ್ನು ಹೊಂದಿರಬೇಕು +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,ಐಟಂ ತೆರಿಗೆ ರೋ {0} ಬಗೆಯ ತೆರಿಗೆ ಅಥವಾ ಆದಾಯ ಅಥವಾ ಖರ್ಚು ಅಥವಾ ಶುಲ್ಕಕ್ಕೆ ಖಾತೆಯನ್ನು ಹೊಂದಿರಬೇಕು DocType: Sales Order,Partly Billed,ಹೆಚ್ಚಾಗಿ ಖ್ಯಾತವಾದ DocType: Item,Default BOM,ಡೀಫಾಲ್ಟ್ BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,ಮರು ಮಾದರಿ ಕಂಪನಿ ಹೆಸರು ದೃಢೀಕರಿಸಿ ದಯವಿಟ್ಟು apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,ಒಟ್ಟು ಅತ್ಯುತ್ತಮ ಆಮ್ಟ್ DocType: Time Log Batch,Total Hours,ಒಟ್ಟು ಅವರ್ಸ್ DocType: Journal Entry,Printing Settings,ಮುದ್ರಣ ಸೆಟ್ಟಿಂಗ್ಗಳು -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},ಒಟ್ಟು ಡೆಬಿಟ್ ಒಟ್ಟು ಕ್ರೆಡಿಟ್ ಸಮಾನವಾಗಿರಬೇಕು . ವ್ಯತ್ಯಾಸ {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},ಒಟ್ಟು ಡೆಬಿಟ್ ಒಟ್ಟು ಕ್ರೆಡಿಟ್ ಸಮಾನವಾಗಿರಬೇಕು . ವ್ಯತ್ಯಾಸ {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,ಆಟೋಮೋಟಿವ್ apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,ಡೆಲಿವರಿ ಗಮನಿಸಿ DocType: Time Log,From Time,ಸಮಯದಿಂದ @@ -2634,7 +2639,7 @@ DocType: Purchase Invoice Item,Image View,ImageView DocType: Issue,Opening Time,ಆರಂಭಿಕ ಸಮಯ apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,ಅಗತ್ಯವಿದೆ ದಿನಾಂಕ ಮತ್ತು ಮಾಡಲು apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,ಸೆಕ್ಯುರಿಟೀಸ್ ಮತ್ತು ಸರಕು ವಿನಿಮಯ -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',ಭಿನ್ನ ಚಟುವಟಿಕೆ ಡೀಫಾಲ್ಟ್ ಘಟಕ '{0}' ಟೆಂಪ್ಲೇಟು ಅದೇ ಇರಬೇಕು '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',ಭಿನ್ನ ಚಟುವಟಿಕೆ ಡೀಫಾಲ್ಟ್ ಘಟಕ '{0}' ಟೆಂಪ್ಲೇಟು ಅದೇ ಇರಬೇಕು '{1}' DocType: Shipping Rule,Calculate Based On,ಆಧರಿಸಿದ ಲೆಕ್ಕ DocType: Delivery Note Item,From Warehouse,ಗೋದಾಮಿನ DocType: Purchase Taxes and Charges,Valuation and Total,ಮೌಲ್ಯಾಂಕನ ಮತ್ತು ಒಟ್ಟು @@ -2656,7 +2661,7 @@ DocType: Leave Application,Follow via Email,ಇಮೇಲ್ ಮೂಲಕ ಅ DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,ಡಿಸ್ಕೌಂಟ್ ಪ್ರಮಾಣ ನಂತರ ತೆರಿಗೆ ಪ್ರಮಾಣ apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,ಮಗುವಿನ ಖಾತೆಗೆ ಈ ಖಾತೆಗಾಗಿ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ . ನೀವು ಈ ಖಾತೆಯನ್ನು ಅಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ . apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,ಗುರಿ ಪ್ರಮಾಣ ಅಥವಾ ಗುರಿ ಪ್ರಮಾಣವನ್ನು ಒಂದೋ ಕಡ್ಡಾಯ -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},ಯಾವುದೇ ಡೀಫಾಲ್ಟ್ BOM ಐಟಂ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},ಯಾವುದೇ ಡೀಫಾಲ್ಟ್ BOM ಐಟಂ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,ಮೊದಲ ಪೋಸ್ಟಿಂಗ್ ದಿನಾಂಕ ಆಯ್ಕೆಮಾಡಿ apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,ದಿನಾಂಕ ತೆರೆಯುವ ದಿನಾಂಕ ಮುಚ್ಚುವ ಮೊದಲು ಇರಬೇಕು DocType: Leave Control Panel,Carry Forward,ಮುಂದಕ್ಕೆ ಸಾಗಿಸುವ @@ -2734,7 +2739,7 @@ DocType: Leave Type,Is Encash,ಮುರಿಸು ಇದೆ DocType: Purchase Invoice,Mobile No,ಮೊಬೈಲ್ ಸಂಖ್ಯೆ DocType: Payment Tool,Make Journal Entry,ಜರ್ನಲ್ ಎಂಟ್ರಿ ಮಾಡಿ DocType: Leave Allocation,New Leaves Allocated,ನಿಗದಿ ಹೊಸ ಎಲೆಗಳು -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,ಪ್ರಾಜೆಕ್ಟ್ ಬಲ್ಲ ದಶಮಾಂಶ ಉದ್ಧರಣ ಲಭ್ಯವಿಲ್ಲ +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,ಪ್ರಾಜೆಕ್ಟ್ ಬಲ್ಲ ದಶಮಾಂಶ ಉದ್ಧರಣ ಲಭ್ಯವಿಲ್ಲ DocType: Project,Expected End Date,ನಿರೀಕ್ಷಿತ ಅಂತಿಮ ದಿನಾಂಕ DocType: Appraisal Template,Appraisal Template Title,ಅಪ್ರೇಸಲ್ ಟೆಂಪ್ಲೇಟು ಶೀರ್ಷಿಕೆ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,ವ್ಯಾಪಾರದ @@ -2782,6 +2787,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No., apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,ಒಂದು ಸೂಚಿಸಲು ದಯವಿಟ್ಟು DocType: Offer Letter,Awaiting Response,ಪ್ರತಿಕ್ರಿಯೆ ಕಾಯುತ್ತಿದ್ದ apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,ಮೇಲೆ +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,ಟೈಮ್ ಲಾಗ್ ಖ್ಯಾತವಾದ ಮಾಡಲಾಗಿದೆ DocType: Salary Slip,Earning & Deduction,ದುಡಿಯುತ್ತಿದ್ದ & ಡಿಡಕ್ಷನ್ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,ಖಾತೆ {0} ಒಂದು ಗುಂಪು ಸಾಧ್ಯವಿಲ್ಲ apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,ಐಚ್ಛಿಕ . ಈ ಸೆಟ್ಟಿಂಗ್ ವಿವಿಧ ವ್ಯವಹಾರಗಳಲ್ಲಿ ಫಿಲ್ಟರ್ ಬಳಸಲಾಗುತ್ತದೆ. @@ -2852,14 +2858,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,ಯಶಸ್ವಿಯಾಗಿ ಈ ಕಂಪನಿಗೆ ಸಂಬಂಧಿಸಿದ ಎಲ್ಲಾ ವ್ಯವಹಾರಗಳನ್ನು ಅಳಿಸಲಾಗಿದೆ! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,ದಿನಾಂಕದಂದು apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,ಪರೀಕ್ಷಣೆ -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,ಡೀಫಾಲ್ಟ್ ವೇರ್ಹೌಸ್ ಸ್ಟಾಕ್ ಐಟಂ ಕಡ್ಡಾಯ. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,ಡೀಫಾಲ್ಟ್ ವೇರ್ಹೌಸ್ ಸ್ಟಾಕ್ ಐಟಂ ಕಡ್ಡಾಯ. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},ತಿಂಗಳು ಮತ್ತು ವರ್ಷದ ಸಂಬಳ ಪಾವತಿ {0} {1} DocType: Stock Settings,Auto insert Price List rate if missing,ಆಟೋ ಇನ್ಸರ್ಟ್ ದರ ಪಟ್ಟಿ ದರ ಕಾಣೆಯಾಗಿದೆ ವೇಳೆ apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,ಒಟ್ಟು ಗಳಿಸುವ ಪ್ರಮಾಣ ,Transferred Qty,ಪ್ರಮಾಣ ವರ್ಗಾಯಿಸಲಾಯಿತು apps/erpnext/erpnext/config/learn.py +11,Navigating,ನ್ಯಾವಿಗೇಟ್ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,ಯೋಜನೆ -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,ಟೈಮ್ ಲಾಗ್ ಬ್ಯಾಚ್ ಮಾಡಿ +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,ಟೈಮ್ ಲಾಗ್ ಬ್ಯಾಚ್ ಮಾಡಿ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,ಬಿಡುಗಡೆ DocType: Project,Total Billing Amount (via Time Logs),ಒಟ್ಟು ಬಿಲ್ಲಿಂಗ್ ಪ್ರಮಾಣ (ಸಮಯ ದಾಖಲೆಗಳು ಮೂಲಕ) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,ನಾವು ಈ ಐಟಂ ಮಾರಾಟ @@ -2867,7 +2873,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,ಪ್ರಮಾಣ 0 ಹೆಚ್ಚು ಇರಬೇಕು DocType: Journal Entry,Cash Entry,ನಗದು ಎಂಟ್ರಿ DocType: Sales Partner,Contact Desc,ಸಂಪರ್ಕಿಸಿ DESC -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","ಪ್ರಾಸಂಗಿಕ , ಅನಾರೋಗ್ಯ , ಇತ್ಯಾದಿ ಎಲೆಗಳ ಪ್ರಕಾರ" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","ಪ್ರಾಸಂಗಿಕ , ಅನಾರೋಗ್ಯ , ಇತ್ಯಾದಿ ಎಲೆಗಳ ಪ್ರಕಾರ" DocType: Email Digest,Send regular summary reports via Email.,ಇಮೇಲ್ ಮೂಲಕ ಸಾಮಾನ್ಯ ಸಾರಾಂಶ ವರದಿ ಕಳುಹಿಸಿ. DocType: Brand,Item Manager,ಐಟಂ ಮ್ಯಾನೇಜರ್ DocType: Cost Center,Add rows to set annual budgets on Accounts.,ಖಾತೆಗಳ ವಾರ್ಷಿಕ ಬಜೆಟ್ ಹೊಂದಿಸಲು ಸಾಲುಗಳನ್ನು ಸೇರಿಸಿ . @@ -2882,7 +2888,7 @@ DocType: GL Entry,Party Type,ಪಕ್ಷದ ಪ್ರಕಾರ apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,ಕಚ್ಚಾ ವಸ್ತು ಮುಖ್ಯ ಐಟಂ ಅದೇ ಸಾಧ್ಯವಿಲ್ಲ DocType: Item Attribute Value,Abbreviation,ಸಂಕ್ಷೇಪಣ apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,{0} ಮಿತಿಗಳನ್ನು ಮೀರಿದೆ ರಿಂದ authroized ಮಾಡಿರುವುದಿಲ್ಲ -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,ಸಂಬಳ ಮಾಸ್ಟರ್ ಟೆಂಪ್ಲೆಟ್ . +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,ಸಂಬಳ ಮಾಸ್ಟರ್ ಟೆಂಪ್ಲೆಟ್ . DocType: Leave Type,Max Days Leave Allowed,ಮ್ಯಾಕ್ಸ್ ಡೇಸ್ ಹೊರಹೋಗಲು ಆಸ್ಪದ apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,ಶಾಪಿಂಗ್ ಕಾರ್ಟ್ ತೆರಿಗೆಯ ರೂಲ್ DocType: Payment Tool,Set Matching Amounts,ಹೊಂದಿಸಿ ಬರೆಯುವುದು ಪ್ರಮಾಣದಲ್ಲಿ @@ -2895,7 +2901,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,ಪಾ DocType: Stock Settings,Role Allowed to edit frozen stock,ಪಾತ್ರ ಹೆಪ್ಪುಗಟ್ಟಿದ ಸ್ಟಾಕ್ ಸಂಪಾದಿಸಲು ಅನುಮತಿಸಲಾಗಿದೆ ,Territory Target Variance Item Group-Wise,ಪ್ರದೇಶ ಟಾರ್ಗೆಟ್ ವೈಷಮ್ಯವನ್ನು ಐಟಂ ಗ್ರೂಪ್ ವೈಸ್ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,ಎಲ್ಲಾ ಗ್ರಾಹಕ ಗುಂಪುಗಳು -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} ಕಡ್ಡಾಯ. ಬಹುಶಃ ಕರೆನ್ಸಿ ವಿನಿಮಯ ದಾಖಲೆ {2} ಗೆ {1} ದಾಖಲಿಸಿದವರು ಇದೆ. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} ಕಡ್ಡಾಯ. ಬಹುಶಃ ಕರೆನ್ಸಿ ವಿನಿಮಯ ದಾಖಲೆ {2} ಗೆ {1} ದಾಖಲಿಸಿದವರು ಇದೆ. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,ತೆರಿಗೆ ಟೆಂಪ್ಲೇಟು ಕಡ್ಡಾಯವಾಗಿದೆ. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,ಖಾತೆ {0}: ಪೋಷಕರ ಖಾತೆಯ {1} ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ DocType: Purchase Invoice Item,Price List Rate (Company Currency),ಬೆಲೆ ಪಟ್ಟಿ ದರ ( ಕಂಪನಿ ಕರೆನ್ಸಿ ) @@ -2915,8 +2921,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,ಐಟಂ ವೈಸ ,Item-wise Price List Rate,ಐಟಂ ಬಲ್ಲ ಬೆಲೆ ಪಟ್ಟಿ ದರ apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,ಸರಬರಾಜುದಾರ ನುಡಿಮುತ್ತುಗಳು DocType: Quotation,In Words will be visible once you save the Quotation.,ನೀವು ಉದ್ಧರಣ ಉಳಿಸಲು ಒಮ್ಮೆ ವರ್ಡ್ಸ್ ಗೋಚರಿಸುತ್ತದೆ. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} ನಿಲ್ಲಿಸಿದಾಗ -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},ಬಾರ್ಕೋಡ್ {0} ಈಗಾಗಲೇ ಐಟಂ ಬಳಸಲಾಗುತ್ತದೆ {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} ನಿಲ್ಲಿಸಿದಾಗ +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},ಬಾರ್ಕೋಡ್ {0} ಈಗಾಗಲೇ ಐಟಂ ಬಳಸಲಾಗುತ್ತದೆ {1} DocType: Lead,Add to calendar on this date,ಈ ದಿನಾಂಕದಂದು ಕ್ಯಾಲೆಂಡರ್ಗೆ ಸೇರಿಸು apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,ಹಡಗು ವೆಚ್ಚ ಸೇರಿಸುವ ನಿಯಮಗಳು . apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,ಮುಂಬರುವ ಕಾರ್ಯಕ್ರಮಗಳು @@ -2943,8 +2949,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling, apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,ಕನಿಷ್ಠ ಒಂದು ಗೋದಾಮಿನ ಕಡ್ಡಾಯ DocType: Serial No,Out of Warranty,ಖಾತರಿ ಹೊರಗೆ DocType: BOM Replace Tool,Replace,ಬದಲಾಯಿಸಿ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} ಮಾರಾಟದ ಸರಕುಪಟ್ಟಿ ವಿರುದ್ಧ {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,ಅಳತೆ ಡೀಫಾಲ್ಟ್ ಘಟಕ ನಮೂದಿಸಿ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} ಮಾರಾಟದ ಸರಕುಪಟ್ಟಿ ವಿರುದ್ಧ {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,ಅಳತೆ ಡೀಫಾಲ್ಟ್ ಘಟಕ ನಮೂದಿಸಿ DocType: Purchase Invoice Item,Project Name,ಪ್ರಾಜೆಕ್ಟ್ ಹೆಸರು DocType: Supplier,Mention if non-standard receivable account,ಬಗ್ಗೆ ಸ್ಟಾಂಡರ್ಡ್ ಅಲ್ಲದ ಸ್ವೀಕೃತಿ ಖಾತೆಯನ್ನು ವೇಳೆ DocType: Journal Entry Account,If Income or Expense,ವೇಳೆ ಆದಾಯ ಅಥವಾ ಖರ್ಚು @@ -2969,7 +2975,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,ಹಣಕಾಸಿನ ವರ್ಷ: {0} ಮಾಡುವುದಿಲ್ಲ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ DocType: Currency Exchange,To Currency,ಕರೆನ್ಸಿ DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,ಕೆಳಗಿನ ಬಳಕೆದಾರರಿಗೆ ಬ್ಲಾಕ್ ದಿನಗಳ ಬಿಟ್ಟು ಅನ್ವಯಗಳು ಅನುಮೋದಿಸಲು ಅನುಮತಿಸಿ . -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,ಖರ್ಚು ಹಕ್ಕು ವಿಧಗಳು . +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,ಖರ್ಚು ಹಕ್ಕು ವಿಧಗಳು . DocType: Item,Taxes,ತೆರಿಗೆಗಳು apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,ಹಣ ಮತ್ತು ವಿತರಣೆ DocType: Project,Default Cost Center,ಡೀಫಾಲ್ಟ್ ವೆಚ್ಚ ಸೆಂಟರ್ @@ -2999,7 +3005,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},ರೋ # {0}: ಸೀರಿಯಲ್ ಯಾವುದೇ {1} ಹೊಂದಿಕೆಯಾಗುವುದಿಲ್ಲ {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,ರಜೆ DocType: Batch,Batch ID,ಬ್ಯಾಚ್ ID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},ರೇಟಿಂಗ್ : {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},ರೇಟಿಂಗ್ : {0} ,Delivery Note Trends,ಡೆಲಿವರಿ ಗಮನಿಸಿ ಪ್ರವೃತ್ತಿಗಳು apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,ಈ ವಾರದ ಸಾರಾಂಶ apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} ಸತತವಾಗಿ ಖರೀದಿಸಲಾದ ಅಥವಾ ಉಪ ಒಪ್ಪಂದ ಐಟಂ ಇರಬೇಕು {1} @@ -3039,6 +3045,7 @@ DocType: Project Task,Pending Review,ಬಾಕಿ ರಿವ್ಯೂ apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,ಪಾವತಿ ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ DocType: Task,Total Expense Claim (via Expense Claim),(ಖರ್ಚು ಹಕ್ಕು ಮೂಲಕ) ಒಟ್ಟು ಖರ್ಚು ಹಕ್ಕು apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,ಗ್ರಾಹಕ ಗುರುತು +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,ಮಾರ್ಕ್ ಆಬ್ಸೆಂಟ್ apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,ಟೈಮ್ ಟೈಮ್ ಗೆ ಹೆಚ್ಚು ಇರಬೇಕು ಗೆ DocType: Journal Entry Account,Exchange Rate,ವಿನಿಮಯ ದರ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,ಮಾರಾಟದ ಆರ್ಡರ್ {0} ಸಲ್ಲಿಸದಿದ್ದರೆ @@ -3086,7 +3093,7 @@ DocType: Item Group,Default Expense Account,ಡೀಫಾಲ್ಟ್ ಖರ DocType: Employee,Notice (days),ಎಚ್ಚರಿಕೆ ( ದಿನಗಳು) DocType: Tax Rule,Sales Tax Template,ಮಾರಾಟ ತೆರಿಗೆ ಟೆಂಪ್ಲೇಟು DocType: Employee,Encashment Date,ನಗದೀಕರಣ ದಿನಾಂಕ -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","ಚೀಟಿ ವಿರುದ್ಧ ಕೌಟುಂಬಿಕತೆ ಪರ್ಚೇಸ್ ಆರ್ಡರ್ ಒಂದು, ಖರೀದಿ ಸರಕುಪಟ್ಟಿ ಅಥವಾ ಜರ್ನಲ್ ಎಂಟ್ರಿ ಇರಬೇಕು" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","ಚೀಟಿ ವಿರುದ್ಧ ಕೌಟುಂಬಿಕತೆ ಪರ್ಚೇಸ್ ಆರ್ಡರ್ ಒಂದು, ಖರೀದಿ ಸರಕುಪಟ್ಟಿ ಅಥವಾ ಜರ್ನಲ್ ಎಂಟ್ರಿ ಇರಬೇಕು" DocType: Account,Stock Adjustment,ಸ್ಟಾಕ್ ಹೊಂದಾಣಿಕೆ apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},ಡೀಫಾಲ್ಟ್ ಚಟುವಟಿಕೆ ವೆಚ್ಚ ಚಟುವಟಿಕೆ ಕೌಟುಂಬಿಕತೆ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ - {0} DocType: Production Order,Planned Operating Cost,ಯೋಜನೆ ವೆಚ್ಚವನ್ನು @@ -3140,6 +3147,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,ಎಂಟ್ರಿ ಆಫ್ ಬರೆಯಿರಿ DocType: BOM,Rate Of Materials Based On,ಮೆಟೀರಿಯಲ್ಸ್ ಆಧರಿಸಿದ ದರ apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,ಬೆಂಬಲ Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,ಎಲ್ಲವನ್ನೂ apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},ಕಂಪನಿ ಗೋದಾಮುಗಳು ಕಾಣೆಯಾಗಿದೆ {0} DocType: POS Profile,Terms and Conditions,ನಿಯಮಗಳು ಮತ್ತು ನಿಯಮಗಳು apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},ದಿನಾಂಕ ಹಣಕಾಸಿನ ವರ್ಷದ ಒಳಗೆ ಇರಬೇಕು. ದಿನಾಂಕ ಭಾವಿಸಿಕೊಂಡು = {0} @@ -3161,7 +3169,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","ಡೀಫಾಲ್ಟ್ ಎಂದು ಈ ಆರ್ಥಿಕ ವರ್ಷ ಹೊಂದಿಸಲು, ' ಪೂರ್ವನಿಯೋಜಿತವಾಗಿನಿಗದಿಪಡಿಸು ' ಕ್ಲಿಕ್" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),ಬೆಂಬಲ ಇಮೇಲ್ ಐಡಿ ಸೆಟಪ್ ಒಳಬರುವ ಸರ್ವರ್ . ( ಇ ಜಿ support@example.com ) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,ಕೊರತೆ ಪ್ರಮಾಣ -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,ಐಟಂ ಭಿನ್ನ {0} ಅದೇ ಲಕ್ಷಣಗಳು ಅಸ್ತಿತ್ವದಲ್ಲಿದ್ದರೆ +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,ಐಟಂ ಭಿನ್ನ {0} ಅದೇ ಲಕ್ಷಣಗಳು ಅಸ್ತಿತ್ವದಲ್ಲಿದ್ದರೆ DocType: Salary Slip,Salary Slip,ಸಂಬಳದ ಸ್ಲಿಪ್ apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,' ದಿನಾಂಕ ' ಅಗತ್ಯವಿದೆ DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","ಪ್ರವಾಸ ತಲುಪಬೇಕಾದರೆ ಚೂರುಗಳನ್ನು ಪ್ಯಾಕಿಂಗ್ ರಚಿಸಿ. ಪ್ಯಾಕೇಜ್ ಸಂಖ್ಯೆ, ಪ್ಯಾಕೇಜ್ ್ಷೀಸಿ ಮತ್ತು ಅದರ ತೂಕ ತಿಳಿಸಲು ಬಳಸಲಾಗುತ್ತದೆ." @@ -3209,7 +3217,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,ವಿ DocType: Item Attribute Value,Attribute Value,ಮೌಲ್ಯ ಲಕ್ಷಣ apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","ಇಮೇಲ್ ಐಡಿ ಅನನ್ಯ ಇರಬೇಕು , ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ {0}" ,Itemwise Recommended Reorder Level,Itemwise ಮರುಕ್ರಮಗೊಳಿಸಿ ಮಟ್ಟ ಶಿಫಾರಸು -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,ಮೊದಲ {0} ಆಯ್ಕೆ ಮಾಡಿ +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,ಮೊದಲ {0} ಆಯ್ಕೆ ಮಾಡಿ DocType: Features Setup,To get Item Group in details table,ವಿವರಗಳು ಕೋಷ್ಟಕದಲ್ಲಿ ಐಟಂ ಗುಂಪು ಪಡೆಯಲು apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,ಐಟಂ ಬ್ಯಾಚ್ {0} {1} ಮುಗಿದಿದೆ. DocType: Sales Invoice,Commission,ಆಯೋಗ @@ -3264,7 +3272,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,ಅತ್ಯುತ್ತಮ ರಶೀದಿ ಪಡೆಯಲು DocType: Warranty Claim,Resolved By,ಪರಿಹರಿಸಲಾಗುವುದು DocType: Appraisal,Start Date,ಪ್ರಾರಂಭ ದಿನಾಂಕ -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,ಕಾಲ ಎಲೆಗಳು ನಿಯೋಜಿಸಿ. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,ಕಾಲ ಎಲೆಗಳು ನಿಯೋಜಿಸಿ. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,ಚೆಕ್ ಮತ್ತು ಠೇವಣಿಗಳ ತಪ್ಪಾಗಿ ತೆರವುಗೊಳಿಸಲಾಗಿದೆ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,ಪರಿಶೀಲಿಸಲು ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,ಖಾತೆ {0}: ನೀವು ಪೋಷಕರ ಖಾತೆಯ ಎಂದು ಸ್ವತಃ ನಿಯೋಜಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ @@ -3284,7 +3292,7 @@ DocType: Employee,Educational Qualification,ಶೈಕ್ಷಣಿಕ ಅರ DocType: Workstation,Operating Costs,ವೆಚ್ಚದ DocType: Employee Leave Approver,Employee Leave Approver,ನೌಕರರ ಲೀವ್ ಅನುಮೋದಕ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} ಯಶಸ್ವಿಯಾಗಿ ನಮ್ಮ ಸುದ್ದಿಪತ್ರ ಪಟ್ಟಿಗೆ ಸೇರಿಸಲಾಗಿದೆ. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},ಸಾಲು {0}: ಒಂದು ಮರುಕ್ರಮಗೊಳಿಸಿ ಪ್ರವೇಶ ಈಗಾಗಲೇ ಈ ಗೋದಾಮಿನ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},ಸಾಲು {0}: ಒಂದು ಮರುಕ್ರಮಗೊಳಿಸಿ ಪ್ರವೇಶ ಈಗಾಗಲೇ ಈ ಗೋದಾಮಿನ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","ಸೋತು ಉದ್ಧರಣ ಮಾಡಲಾಗಿದೆ ಏಕೆಂದರೆ , ಘೋಷಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,ಖರೀದಿ ಮಾಸ್ಟರ್ ಮ್ಯಾನೇಜರ್ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,ಪ್ರೊಡಕ್ಷನ್ ಆರ್ಡರ್ {0} ಸಲ್ಲಿಸಬೇಕು @@ -3308,7 +3316,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,ಮಾರಾಟದ ಸರಕುಪಟ್ಟಿ {0} ಈಗಾಗಲೇ ಸಲ್ಲಿಸಲಾಗಿದೆ apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,ಪೂರ್ಣಗೊಳ್ಳುವ ದಿನಾಂಕ DocType: Purchase Invoice Item,Amount (Company Currency),ಪ್ರಮಾಣ ( ಕರೆನ್ಸಿ ಕಂಪನಿ ) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,ಸಂಸ್ಥೆ ಘಟಕ ( ಇಲಾಖೆ ) ಮಾಸ್ಟರ್ . +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,ಸಂಸ್ಥೆ ಘಟಕ ( ಇಲಾಖೆ ) ಮಾಸ್ಟರ್ . apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,ಮಾನ್ಯ ಮೊಬೈಲ್ ಸೂಲ ನಮೂದಿಸಿ DocType: Budget Detail,Budget Detail,ಬಜೆಟ್ ವಿವರ apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,ಕಳುಹಿಸುವ ಮೊದಲು ಸಂದೇಶವನ್ನು ನಮೂದಿಸಿ @@ -3324,13 +3332,13 @@ DocType: Purchase Receipt Item,Received and Accepted,ಸ್ವೀಕರಿಸ ,Serial No Service Contract Expiry,ಯಾವುದೇ ಸೀರಿಯಲ್ ಸೇವೆ ಕಾಂಟ್ರಾಕ್ಟ್ ಅಂತ್ಯ DocType: Item,Unit of Measure Conversion,ಅಳತೆ ಮತಾಂತರದ ಘಟಕ apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,ನೌಕರರ ಬದಲಾವಣೆ ಸಾಧ್ಯವಿಲ್ಲ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,ನೀವು ಕ್ರೆಡಿಟ್ ಮತ್ತು sametime ನಲ್ಲಿ ಅದೇ ಖಾತೆಯನ್ನು ಡೆಬಿಟ್ ಸಾಧ್ಯವಿಲ್ಲ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,ನೀವು ಕ್ರೆಡಿಟ್ ಮತ್ತು sametime ನಲ್ಲಿ ಅದೇ ಖಾತೆಯನ್ನು ಡೆಬಿಟ್ ಸಾಧ್ಯವಿಲ್ಲ DocType: Naming Series,Help HTML,HTML ಸಹಾಯ apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},ನಿಯೋಜಿಸಲಾಗಿದೆ ಒಟ್ಟು ಪ್ರಾಮುಖ್ಯತೆಯನ್ನು 100% ಇರಬೇಕು. ಇದು {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},ಸೇವನೆ ಮೇಲೆ {0} ಐಟಂ ದಾಟಿದೆ ಫಾರ್ {1} DocType: Address,Name of person or organization that this address belongs to.,ವ್ಯಕ್ತಿ ಅಥವಾ ಸಂಸ್ಥೆಯ ಹೆಸರು ಈ ವಿಳಾಸಕ್ಕೆ ಸೇರುತ್ತದೆ . apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,ನಿಮ್ಮ ಪೂರೈಕೆದಾರರು -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,ಮಾರಾಟದ ಆರ್ಡರ್ ಮಾಡಿದ ಎಂದು ಕಳೆದು ಹೊಂದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ . +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,ಮಾರಾಟದ ಆರ್ಡರ್ ಮಾಡಿದ ಎಂದು ಕಳೆದು ಹೊಂದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ . apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,ಮತ್ತೊಂದು ಸಂಬಳ ರಚನೆ {0} ನೌಕರ ಸಕ್ರಿಯವಾಗಿದೆ {1}. ಅದರ ಸ್ಥಿತಿ 'ನಿಷ್ಕ್ರಿಯ' ಮುಂದುವರೆಯಲು ಮಾಡಿ. DocType: Purchase Invoice,Contact,ಸಂಪರ್ಕಿಸಿ apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,ಸ್ವೀಕರಿಸಿದ @@ -3340,11 +3348,11 @@ DocType: Item,Has Serial No,ಅನುಕ್ರಮ ಸಂಖ್ಯೆ ಹೊ DocType: Employee,Date of Issue,ಸಂಚಿಕೆ ದಿನಾಂಕ apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: ಗೆ {0} ಫಾರ್ {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},ರೋ # {0}: ಐಟಂ ಹೊಂದಿಸಿ ಸರಬರಾಜುದಾರ {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,ಐಟಂ {1} ಜೋಡಿಸಲಾದ ವೆಬ್ಸೈಟ್ ಚಿತ್ರ {0} ದೊರೆಯುತ್ತಿಲ್ಲ +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,ಐಟಂ {1} ಜೋಡಿಸಲಾದ ವೆಬ್ಸೈಟ್ ಚಿತ್ರ {0} ದೊರೆಯುತ್ತಿಲ್ಲ DocType: Issue,Content Type,ವಿಷಯ ಪ್ರಕಾರ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,ಗಣಕಯಂತ್ರ DocType: Item,List this Item in multiple groups on the website.,ವೆಬ್ಸೈಟ್ನಲ್ಲಿ ಅನೇಕ ಗುಂಪುಗಳಲ್ಲಿ ಈ ಐಟಂ ಪಟ್ಟಿ . -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,ಇತರ ಕರೆನ್ಸಿ ಖಾತೆಗಳನ್ನು ಅವಕಾಶ ಮಲ್ಟಿ ಕರೆನ್ಸಿ ಆಯ್ಕೆಯನ್ನು ಪರಿಶೀಲಿಸಿ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,ಇತರ ಕರೆನ್ಸಿ ಖಾತೆಗಳನ್ನು ಅವಕಾಶ ಮಲ್ಟಿ ಕರೆನ್ಸಿ ಆಯ್ಕೆಯನ್ನು ಪರಿಶೀಲಿಸಿ apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,ಐಟಂ: {0} ವ್ಯವಸ್ಥೆಯ ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,ನೀವು ಫ್ರೋಜನ್ ಮೌಲ್ಯವನ್ನು ಅಧಿಕಾರ DocType: Payment Reconciliation,Get Unreconciled Entries,ರಾಜಿಯಾಗದ ನಮೂದುಗಳು ಪಡೆಯಿರಿ @@ -3354,14 +3362,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,ಇದು DocType: Delivery Note,To Warehouse,ಗೋದಾಮಿನ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},ಖಾತೆ {0} ಹೆಚ್ಚು ಹಣಕಾಸಿನ ವರ್ಷ ಒಂದಕ್ಕಿಂತ ನಮೂದಿಸಲಾದ {1} ,Average Commission Rate,ಸರಾಸರಿ ಆಯೋಗದ ದರ -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,' ಸೀರಿಯಲ್ ನಂ ಹ್ಯಾಸ್ ' ನಾನ್ ಸ್ಟಾಕ್ ಐಟಂ ' ಹೌದು ' ಸಾಧ್ಯವಿಲ್ಲ +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,' ಸೀರಿಯಲ್ ನಂ ಹ್ಯಾಸ್ ' ನಾನ್ ಸ್ಟಾಕ್ ಐಟಂ ' ಹೌದು ' ಸಾಧ್ಯವಿಲ್ಲ apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,ಅಟೆಂಡೆನ್ಸ್ ಭವಿಷ್ಯದ ದಿನಾಂಕ ಗುರುತಿಸಲಾಗಿದೆ ಸಾಧ್ಯವಿಲ್ಲ DocType: Pricing Rule,Pricing Rule Help,ಬೆಲೆ ನಿಯಮ ಸಹಾಯ DocType: Purchase Taxes and Charges,Account Head,ಖಾತೆ ಹೆಡ್ apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,ಐಟಂಗಳ ಬಂದಿಳಿದ ವೆಚ್ಚ ಲೆಕ್ಕ ಹೆಚ್ಚುವರಿ ವೆಚ್ಚ ನವೀಕರಿಸಿ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,ವಿದ್ಯುತ್ತಿನ DocType: Stock Entry,Total Value Difference (Out - In),ಒಟ್ಟು ಮೌಲ್ಯ ವ್ಯತ್ಯಾಸ (ಔಟ್ - ರಲ್ಲಿ) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,ಸಾಲು {0}: ವಿನಿಮಯ ದರ ಕಡ್ಡಾಯ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,ಸಾಲು {0}: ವಿನಿಮಯ ದರ ಕಡ್ಡಾಯ apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},ಬಳಕೆದಾರ ID ನೌಕರ ಸೆಟ್ {0} DocType: Stock Entry,Default Source Warehouse,ಡೀಫಾಲ್ಟ್ ಮೂಲ ವೇರ್ಹೌಸ್ DocType: Item,Customer Code,ಗ್ರಾಹಕ ಕೋಡ್ @@ -3380,15 +3388,15 @@ DocType: Notification Control,Sales Invoice Message,ಮಾರಾಟದ ಸರಕ apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,ಖಾತೆ {0} ಮುಚ್ಚುವ ರೀತಿಯ ಹೊಣೆಗಾರಿಕೆ / ಇಕ್ವಿಟಿ ಇರಬೇಕು DocType: Authorization Rule,Based On,ಆಧರಿಸಿದೆ DocType: Sales Order Item,Ordered Qty,ಪ್ರಮಾಣ ಆದೇಶ -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,ಐಟಂ {0} ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,ಐಟಂ {0} ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ DocType: Stock Settings,Stock Frozen Upto,ಸ್ಟಾಕ್ ಘನೀಕೃತ ವರೆಗೆ apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},ಗೆ ಅವಧಿಯ ಮರುಕಳಿಸುವ ಕಡ್ಡಾಯವಾಗಿ ದಿನಾಂಕಗಳನ್ನು ಅವಧಿಯಲ್ಲಿ {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,ಪ್ರಾಜೆಕ್ಟ್ ಚಟುವಟಿಕೆ / ಕೆಲಸ . -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,ಸಂಬಳ ಚೂರುಗಳನ್ನು ರಚಿಸಿ +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,ಸಂಬಳ ಚೂರುಗಳನ್ನು ರಚಿಸಿ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","ಅನ್ವಯಿಸುವ ಹಾಗೆ ಆರಿಸಿದರೆ ಖರೀದಿ, ಪರೀಕ್ಷಿಸಬೇಕು {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,ರಿಯಾಯಿತಿ ಕಡಿಮೆ 100 ಇರಬೇಕು DocType: Purchase Invoice,Write Off Amount (Company Currency),ಪ್ರಮಾಣದ ಆಫ್ ಬರೆಯಿರಿ (ಕಂಪನಿ ಕರೆನ್ಸಿ) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,ರೋ # {0}: ಮರುಕ್ರಮಗೊಳಿಸಿ ಪ್ರಮಾಣ ಹೊಂದಿಸಿ +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,ರೋ # {0}: ಮರುಕ್ರಮಗೊಳಿಸಿ ಪ್ರಮಾಣ ಹೊಂದಿಸಿ DocType: Landed Cost Voucher,Landed Cost Voucher,ಇಳಿಯಿತು ವೆಚ್ಚ ಚೀಟಿ apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},ಸೆಟ್ ದಯವಿಟ್ಟು {0} DocType: Purchase Invoice,Repeat on Day of Month,ತಿಂಗಳಿನ ದಿನ ಪುನರಾವರ್ತಿಸಿ @@ -3441,7 +3449,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,ಪ್ರೋಗ್ರೆಸ್ ಉಗ್ರಾಣದಲ್ಲಿ ಡೀಫಾಲ್ಟ್ ಕೆಲಸ apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,ಅಕೌಂಟಿಂಗ್ ವ್ಯವಹಾರ ಡೀಫಾಲ್ಟ್ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು . apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,ನಿರೀಕ್ಷಿತ ದಿನಾಂಕ ಮೆಟೀರಿಯಲ್ ವಿನಂತಿ ದಿನಾಂಕ ಮೊದಲು ಸಾಧ್ಯವಿಲ್ಲ -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,ಐಟಂ {0} ಸೇಲ್ಸ್ ಐಟಂ ಇರಬೇಕು +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,ಐಟಂ {0} ಸೇಲ್ಸ್ ಐಟಂ ಇರಬೇಕು DocType: Naming Series,Update Series Number,ಅಪ್ಡೇಟ್ ಸರಣಿ ಸಂಖ್ಯೆ DocType: Account,Equity,ಇಕ್ವಿಟಿ DocType: Sales Order,Printing Details,ಮುದ್ರಣ ವಿವರಗಳು @@ -3493,7 +3501,7 @@ DocType: Task,Review Date,ರಿವ್ಯೂ ದಿನಾಂಕ DocType: Purchase Invoice,Advance Payments,ಅಡ್ವಾನ್ಸ್ ಪಾವತಿಗಳು DocType: Purchase Taxes and Charges,On Net Total,ನೆಟ್ ಒಟ್ಟು ರಂದು apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,ಸತತವಾಗಿ ಟಾರ್ಗೆಟ್ ಗೋದಾಮಿನ {0} ಅದೇ ಇರಬೇಕು ಉತ್ಪಾದನೆ ಆರ್ಡರ್ -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,ಯಾವುದೇ ಅನುಮತಿ ಪಾವತಿ ಉಪಕರಣವನ್ನು ಬಳಸಲು +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,ಯಾವುದೇ ಅನುಮತಿ ಪಾವತಿ ಉಪಕರಣವನ್ನು ಬಳಸಲು apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,% ರು ಪುನರಾವರ್ತಿತ ನಿರ್ದಿಷ್ಟಪಡಿಸಲಾಗಿಲ್ಲ 'ಅಧಿಸೂಚನೆ ಇಮೇಲ್ ವಿಳಾಸಗಳು' apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,ಕರೆನ್ಸಿ ಕೆಲವು ಇತರ ಕರೆನ್ಸಿ ಬಳಸಿಕೊಂಡು ನಮೂದುಗಳನ್ನು ಮಾಡಿದ ನಂತರ ಬದಲಾಯಿಸಲಾಗುವುದಿಲ್ಲ DocType: Company,Round Off Account,ಖಾತೆ ಆಫ್ ಸುತ್ತ @@ -3516,7 +3524,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,ಕಚ್ಚಾ ವಸ್ತುಗಳ givenName ಪ್ರಮಾಣದಲ್ಲಿ repacking / ತಯಾರಿಕಾ ನಂತರ ಪಡೆದುಕೊಂಡು ಐಟಂ ಪ್ರಮಾಣ DocType: Payment Reconciliation,Receivable / Payable Account,ಸ್ವೀಕರಿಸುವಂತಹ / ಪಾವತಿಸಲಾಗುವುದು ಖಾತೆ DocType: Delivery Note Item,Against Sales Order Item,ಮಾರಾಟದ ಆರ್ಡರ್ ಐಟಂ ವಿರುದ್ಧ -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},ಗುಣಲಕ್ಷಣ ಮೌಲ್ಯ ಗುಣಲಕ್ಷಣ ಸೂಚಿಸಿ {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},ಗುಣಲಕ್ಷಣ ಮೌಲ್ಯ ಗುಣಲಕ್ಷಣ ಸೂಚಿಸಿ {0} DocType: Item,Default Warehouse,ಡೀಫಾಲ್ಟ್ ವೇರ್ಹೌಸ್ DocType: Task,Actual End Date (via Time Logs),ನಿಜವಾದ ಅಂತಿಮ ದಿನಾಂಕ (ಸಮಯ ದಾಖಲೆಗಳು ಮೂಲಕ) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},ಬಜೆಟ್ ಗ್ರೂಪ್ ಖಾತೆ ವಿರುದ್ಧ ನಿಯೋಜಿಸಲಾಗುವುದು ಸಾಧ್ಯವಿಲ್ಲ {0} @@ -3541,10 +3549,10 @@ DocType: Lead,Blog Subscriber,ಬ್ಲಾಗ್ ಚಂದಾದಾರರ apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,ಮೌಲ್ಯಗಳ ಆಧಾರದ ವ್ಯವಹಾರ ನಿರ್ಬಂಧಿಸಲು ನಿಯಮಗಳನ್ನು ರಚಿಸಿ . DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","ಪರಿಶೀಲಿಸಿದರೆ, ಕೆಲಸ ದಿನಗಳ ಒಟ್ಟು ಯಾವುದೇ ರಜಾದಿನಗಳು ಸೇರಿವೆ , ಮತ್ತು ಈ ಸಂಬಳ ದಿನಕ್ಕೆ ಮೌಲ್ಯವನ್ನು ಕಡಿಮೆಗೊಳಿಸುತ್ತದೆ" DocType: Purchase Invoice,Total Advance,ಒಟ್ಟು ಅಡ್ವಾನ್ಸ್ -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,ಸಂಸ್ಕರಣ ವೇತನದಾರರ +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,ಸಂಸ್ಕರಣ ವೇತನದಾರರ DocType: Opportunity Item,Basic Rate,ಮೂಲ ದರದ DocType: GL Entry,Credit Amount,ಕ್ರೆಡಿಟ್ ಪ್ರಮಾಣ -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,ಲಾಸ್ಟ್ ಹೊಂದಿಸಿ +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,ಲಾಸ್ಟ್ ಹೊಂದಿಸಿ apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,ಪಾವತಿ ರಸೀತಿ ಗಮನಿಸಿ DocType: Supplier,Credit Days Based On,ಕ್ರೆಡಿಟ್ ಡೇಸ್ ರಂದು ಆಧರಿಸಿ DocType: Tax Rule,Tax Rule,ತೆರಿಗೆ ನಿಯಮ @@ -3574,7 +3582,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Accepted ಪ್ರಮಾಣ apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} ಮಾಡುವುದಿಲ್ಲ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,ಗ್ರಾಹಕರು ಬೆಳೆದ ಬಿಲ್ಲುಗಳನ್ನು . apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,ಪ್ರಾಜೆಕ್ಟ್ ಐಡಿ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},ರೋ ಯಾವುದೇ {0}: ಪ್ರಮಾಣ ಖರ್ಚು ಹಕ್ಕು {1} ವಿರುದ್ಧ ಪ್ರಮಾಣ ಬಾಕಿ ಹೆಚ್ಚು ಸಾಧ್ಯವಿಲ್ಲ. ಬಾಕಿ ಪ್ರಮಾಣ {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},ರೋ ಯಾವುದೇ {0}: ಪ್ರಮಾಣ ಖರ್ಚು ಹಕ್ಕು {1} ವಿರುದ್ಧ ಪ್ರಮಾಣ ಬಾಕಿ ಹೆಚ್ಚು ಸಾಧ್ಯವಿಲ್ಲ. ಬಾಕಿ ಪ್ರಮಾಣ {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} ಗ್ರಾಹಕರನ್ನು ಸೇರ್ಪಡೆ DocType: Maintenance Schedule,Schedule,ಕಾರ್ಯಕ್ರಮ DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","ಈ ವೆಚ್ಚ ಕೇಂದ್ರ ಬಜೆಟ್ ವಿವರಿಸಿ. ವೆಚ್ಚದ ಸೆಟ್, ನೋಡಿ "ಕಂಪನಿ ಪಟ್ಟಿ"" @@ -3635,19 +3643,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,ಪಿಓಎಸ್ ವಿವರ DocType: Payment Gateway Account,Payment URL Message,ಪಾವತಿ URL ಸಂದೇಶ apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","ಸ್ಥಾಪನೆಗೆ ಬಜೆಟ್, ಗುರಿಗಳನ್ನು ಇತ್ಯಾದಿ ಋತುಮಾನ" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,ಸಾಲು {0}: ಪಾವತಿ ಪ್ರಮಾಣವನ್ನು ಬಾಕಿ ಮೊತ್ತದ ಹೆಚ್ಚಿನ ಸಾಧ್ಯವಿಲ್ಲ +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,ಸಾಲು {0}: ಪಾವತಿ ಪ್ರಮಾಣವನ್ನು ಬಾಕಿ ಮೊತ್ತದ ಹೆಚ್ಚಿನ ಸಾಧ್ಯವಿಲ್ಲ apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,ಪೇಯ್ಡ್ ಒಟ್ಟು -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,ಟೈಮ್ ಲಾಗ್ ಬಿಲ್ ಮಾಡಬಹುದಾದ ಅಲ್ಲ -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","{0} ಐಟಂ ಒಂದು ಟೆಂಪ್ಲೇಟ್ ಆಗಿದೆ, ಅದರ ರೂಪಾಂತರಗಳು ಒಂದಾಗಿದೆ ಆಯ್ಕೆ ಮಾಡಿ" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,ಟೈಮ್ ಲಾಗ್ ಬಿಲ್ ಮಾಡಬಹುದಾದ ಅಲ್ಲ +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","{0} ಐಟಂ ಒಂದು ಟೆಂಪ್ಲೇಟ್ ಆಗಿದೆ, ಅದರ ರೂಪಾಂತರಗಳು ಒಂದಾಗಿದೆ ಆಯ್ಕೆ ಮಾಡಿ" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,ಖರೀದಿದಾರ apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,ನಿವ್ವಳ ವೇತನ ಋಣಾತ್ಮಕ ಇರುವಂತಿಲ್ಲ -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,ಕೈಯಾರೆ ವಿರುದ್ಧ ರಶೀದಿ ನಮೂದಿಸಿ +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,ಕೈಯಾರೆ ವಿರುದ್ಧ ರಶೀದಿ ನಮೂದಿಸಿ DocType: SMS Settings,Static Parameters,ಸ್ಥಾಯೀ ನಿಯತಾಂಕಗಳನ್ನು DocType: Purchase Order,Advance Paid,ಅಡ್ವಾನ್ಸ್ ಪಾವತಿಸಿದ DocType: Item,Item Tax,ಐಟಂ ತೆರಿಗೆ apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,ಸರಬರಾಜುದಾರ ವಸ್ತು apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,ಅಬಕಾರಿ ಸರಕುಪಟ್ಟಿ DocType: Expense Claim,Employees Email Id,ನೌಕರರು ಇಮೇಲ್ ಐಡಿ +DocType: Employee Attendance Tool,Marked Attendance,ಗುರುತು ಅಟೆಂಡೆನ್ಸ್ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,ಪ್ರಸಕ್ತ ಹಣಕಾಸಿನ ಹೊಣೆಗಾರಿಕೆಗಳು apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,ನಿಮ್ಮ ಸಂಪರ್ಕಗಳಿಗೆ ಸಾಮೂಹಿಕ SMS ಕಳುಹಿಸಿ DocType: Purchase Taxes and Charges,Consider Tax or Charge for,ತೆರಿಗೆ ಅಥವಾ ಶುಲ್ಕ ಪರಿಗಣಿಸಿ @@ -3670,7 +3679,7 @@ DocType: Item Attribute,Numeric Values,ಸಂಖ್ಯೆಯ ಮೌಲ್ಯಗ apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,ಲೋಗೋ ಲಗತ್ತಿಸಿ DocType: Customer,Commission Rate,ಕಮಿಷನ್ ದರ apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,ಭಿನ್ನ ಮಾಡಿ -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,ಇಲಾಖೆ ರಜೆ ಅನ್ವಯಗಳನ್ನು ನಿರ್ಬಂಧಿಸಿ . +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,ಇಲಾಖೆ ರಜೆ ಅನ್ವಯಗಳನ್ನು ನಿರ್ಬಂಧಿಸಿ . apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,ಕಾರ್ಟ್ ಖಾಲಿಯಾಗಿದೆ DocType: Production Order,Actual Operating Cost,ನಿಜವಾದ ವೆಚ್ಚವನ್ನು apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,ರೂಟ್ ಸಂಪಾದಿತವಾಗಿಲ್ಲ . @@ -3689,7 +3698,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,ಪ್ರಮಾಣ ಈ ಮಟ್ಟಕ್ಕಿಂತಲೂ ಕಳಗೆ ಬಿದ್ದಲ್ಲಿ ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಮೆಟೀರಿಯಲ್ ವಿನಂತಿ ರಚಿಸಲು ,Item-wise Purchase Register,ಐಟಂ ಬುದ್ಧಿವಂತ ಖರೀದಿ ನೋಂದಣಿ DocType: Batch,Expiry Date,ಅಂತ್ಯ ದಿನಾಂಕ -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","ಮರುಕ್ರಮಗೊಳಿಸಿ ಮಟ್ಟದ ಹೊಂದಿಸಲು, ಐಟಂ ಖರೀದಿ ಐಟಂ ಅಥವಾ ಮ್ಯಾನುಫ್ಯಾಕ್ಚರಿಂಗ್ ಐಟಂ ಇರಬೇಕು" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","ಮರುಕ್ರಮಗೊಳಿಸಿ ಮಟ್ಟದ ಹೊಂದಿಸಲು, ಐಟಂ ಖರೀದಿ ಐಟಂ ಅಥವಾ ಮ್ಯಾನುಫ್ಯಾಕ್ಚರಿಂಗ್ ಐಟಂ ಇರಬೇಕು" ,Supplier Addresses and Contacts,ಸರಬರಾಜುದಾರ ವಿಳಾಸಗಳು ಮತ್ತು ಸಂಪರ್ಕಗಳು apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,ಮೊದಲ ವರ್ಗ ಆಯ್ಕೆ ಮಾಡಿ apps/erpnext/erpnext/config/projects.py +18,Project master.,ಪ್ರಾಜೆಕ್ಟ್ ಮಾಸ್ಟರ್ . diff --git a/erpnext/translations/ko.csv b/erpnext/translations/ko.csv index 0a830b9b62..e106b22647 100644 --- a/erpnext/translations/ko.csv +++ b/erpnext/translations/ko.csv @@ -164,14 +164,14 @@ DocType: Journal Entry Account,Credit in Company Currency,회사 통화 신용 DocType: Delivery Note,Installation Status,설치 상태 apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},수락 + 거부 수량이 항목에 대한 수신 수량이 동일해야합니다 {0} DocType: Item,Supply Raw Materials for Purchase,공급 원료 구매 -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,{0} 항목을 구매 상품이어야합니다 +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,{0} 항목을 구매 상품이어야합니다 DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records",", 템플릿을 다운로드 적절한 데이터를 입력하고 수정 된 파일을 첨부합니다. 선택한 기간의 모든 날짜와 직원 조합은 기존의 출석 기록과 함께, 템플릿에 올 것이다" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,{0} 항목을 활성화하지 않거나 수명이 도달했습니다 DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,견적서를 제출 한 후 업데이트됩니다. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","행에있는 세금을 포함하려면 {0} 항목의 요금에, 행의 세금은 {1}도 포함되어야한다" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,HR 모듈에 대한 설정 +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","행에있는 세금을 포함하려면 {0} 항목의 요금에, 행의 세금은 {1}도 포함되어야한다" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,HR 모듈에 대한 설정 DocType: SMS Center,SMS Center,SMS 센터 DocType: BOM Replace Tool,New BOM,새로운 BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,일괄 결제를위한 시간 로그. @@ -199,7 +199,7 @@ DocType: Offer Letter,Select Terms and Conditions,이용 약관 선택 DocType: Production Planning Tool,Sales Orders,판매 주문 DocType: Purchase Taxes and Charges,Valuation,평가 ,Purchase Order Trends,주문 동향을 구매 -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,올해 잎을 할당합니다. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,올해 잎을 할당합니다. DocType: Earning Type,Earning Type,당기순이익 유형 DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,사용 안 함 용량 계획 및 시간 추적 DocType: Bank Reconciliation,Bank Account,은행 계좌 @@ -237,7 +237,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,항목 웹 사이트 사양 DocType: Payment Tool,Reference No,참조 번호 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,남겨 차단 -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},항목 {0}에 수명이 다한 {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},항목 {0}에 수명이 다한 {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,연간 DocType: Stock Reconciliation Item,Stock Reconciliation Item,재고 조정 항목 DocType: Stock Entry,Sales Invoice No,판매 송장 번호 @@ -249,7 +249,7 @@ DocType: Item,Minimum Order Qty,최소 주문 수량 DocType: Pricing Rule,Supplier Type,공급 업체 유형 DocType: Item,Publish in Hub,허브에 게시 ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,{0} 항목 취소 +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,{0} 항목 취소 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,자료 요청 DocType: Bank Reconciliation,Update Clearance Date,업데이트 통관 날짜 DocType: Item,Purchase Details,구매 상세 정보 @@ -261,11 +261,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,거부 수량 DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","배달 참고, 견적, 판매 송장, 판매 주문에서 사용할 수있는 필드" DocType: SMS Settings,SMS Sender Name,SMS 보낸 사람 이름 DocType: Contact,Is Primary Contact,기본 연락처는 +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,시간 로그 청구에 대한 일괄 처리되었습니다 DocType: Notification Control,Notification Control,알림 제어 DocType: Lead,Suggestions,제안 DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,이 지역에 상품 그룹 현명한 예산을 설정합니다.또한 배포를 설정하여 계절성을 포함 할 수 있습니다. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},웨어 하우스의 부모 계정 그룹을 입력하세요 {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},에 대한 지불은 {0} {1} 뛰어난 금액보다 클 수 없습니다 {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},에 대한 지불은 {0} {1} 뛰어난 금액보다 클 수 없습니다 {2} DocType: Supplier,Address HTML,주소 HTML DocType: Lead,Mobile No.,모바일 번호 DocType: Maintenance Schedule,Generate Schedule,일정을 생성 @@ -282,7 +283,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,허브와 동기화 apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,잘못된 비밀번호 DocType: Item,Variant Of,의 변형 -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,항목 {0} 서비스 상품이어야합니다 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',보다 '수량 제조하는'완료 수량은 클 수 없습니다 DocType: Period Closing Voucher,Closing Account Head,마감 계정 헤드 DocType: Employee,External Work History,외부 작업의 역사 @@ -294,10 +294,10 @@ DocType: Newsletter,Newsletter,뉴스레터 DocType: Stock Settings,Notify by Email on creation of automatic Material Request,자동 자료 요청의 생성에 이메일로 통보 DocType: Journal Entry,Multi Currency,멀티 통화 DocType: Payment Reconciliation Invoice,Invoice Type,송장 유형 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,상품 수령증 +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,상품 수령증 apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,세금 설정 apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,당신이 그것을 끌어 후 결제 항목이 수정되었습니다.다시 당깁니다. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} 항목의 세금에 두 번 입력 +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} 항목의 세금에 두 번 입력 apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,이번 주 보류중인 활동에 대한 요약 DocType: Workstation,Rent Cost,임대 비용 apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,월 및 연도를 선택하세요 @@ -308,7 +308,7 @@ DocType: Shipping Rule,Valid for Countries,나라 유효한 DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","통화, 전환율, 수입 총 수입 총계 등과 같은 모든 수입 관련 분야는 구매 영수증, 공급 업체 견적, 구매 송장, 구매 주문 등을 사용할 수 있습니다" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,이 항목은 템플릿과 거래에 사용할 수 없습니다.'카피'가 설정되어 있지 않는 항목 속성은 변형에 복사합니다 apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,고려 총 주문 -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","직원 지정 (예 : CEO, 이사 등)." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","직원 지정 (예 : CEO, 이사 등)." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,필드 값을 '이달의 날 반복'을 입력하십시오 DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,고객 통화는 고객의 기본 통화로 변환하는 속도에 DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","BOM, 배달 참고, 구매 송장, 생산 주문, 구매 주문, 구입 영수증, 견적서, 판매 주문, 재고 항목, 작업 표에서 사용 가능" @@ -357,7 +357,7 @@ DocType: Workstation,Consumable Cost,소모품 비용 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) 역할이 있어야합니다 '휴가 승인' DocType: Purchase Receipt,Vehicle Date,차량 날짜 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,의료 -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,잃는 이유 +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,잃는 이유 apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},워크 스테이션 홀리데이 목록에 따라 다음과 같은 날짜에 닫혀 : {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,기회 DocType: Employee,Single,미혼 @@ -385,14 +385,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,채널 파트너 DocType: Account,Old Parent,이전 부모 DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,해당 이메일의 일부로가는 소개 텍스트를 사용자 정의 할 수 있습니다.각 트랜잭션은 별도의 소개 텍스트가 있습니다. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),기호를 포함하지 마십시오 (예. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,판매 마스터 관리자 apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,모든 제조 공정에 대한 글로벌 설정. DocType: Accounts Settings,Accounts Frozen Upto,까지에게 동결계정 DocType: SMS Log,Sent On,에 전송 -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,속성 {0} 속성 테이블에서 여러 번 선택 +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,속성 {0} 속성 테이블에서 여러 번 선택 DocType: HR Settings,Employee record is created using selected field. , DocType: Sales Order,Not Applicable,적용 할 수 없음 -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,휴일 마스터. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,휴일 마스터. DocType: Material Request Item,Required Date,필요한 날짜 DocType: Delivery Note,Billing Address,청구 주소 apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,상품 코드를 입력 해 주시기 바랍니다. @@ -428,7 +429,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,자료 요청이 발생합니다있는 창고를 입력 해주십시오 DocType: Production Order,Additional Operating Cost,추가 운영 비용 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,화장품 -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items",병합하려면 다음과 같은 속성이 두 항목에 대해 동일해야합니다 +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items",병합하려면 다음과 같은 속성이 두 항목에 대해 동일해야합니다 DocType: Shipping Rule,Net Weight,순중량 DocType: Employee,Emergency Phone,긴급 전화 ,Serial No Warranty Expiry,일련 번호 보증 만료 @@ -486,17 +487,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,결제 및 배송 상태 apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,반복 고객 DocType: Leave Control Panel,Allocate,할당 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,판매로 돌아 가기 +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,판매로 돌아 가기 DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,당신이 생산 오더를 생성하려는 선택 판매 주문. DocType: Item,Delivered by Supplier (Drop Ship),공급 업체에 의해 전달 (드롭 선박) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,급여항목 +apps/erpnext/erpnext/config/hr.py +128,Salary components.,급여항목 apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,잠재 고객의 데이터베이스. DocType: Authorization Rule,Customer or Item,고객 또는 상품 apps/erpnext/erpnext/config/crm.py +17,Customer database.,고객 데이터베이스입니다. DocType: Quotation,Quotation To,에 견적 DocType: Lead,Middle Income,중간 소득 apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),오프닝 (CR) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,이미 다른 UOM 일부 거래 (들)을 만들었 때문에 항목에 대한 측정의 기본 단위는 {0} 직접 변경할 수 없습니다. 당신은 다른 기본 UOM을 사용하여 새 항목을 작성해야합니다. +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,이미 다른 UOM 일부 거래 (들)을 만들었 때문에 항목에 대한 측정의 기본 단위는 {0} 직접 변경할 수 없습니다. 당신은 다른 기본 UOM을 사용하여 새 항목을 작성해야합니다. apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,할당 된 금액은 음수 일 수 없습니다 DocType: Purchase Order Item,Billed Amt,청구 AMT 사의 DocType: Warehouse,A logical Warehouse against which stock entries are made.,재고 항목이 만들어지는에 대해 논리적 창고. @@ -515,14 +516,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,판매 세금 및 요금 DocType: Employee,Organization Profile,기업 프로필 apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,설정> 번호 매기기 Series를 통해 출석 해주세요 설정 번호 지정 시리즈 DocType: Employee,Reason for Resignation,사임 이유 -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,성과 평가를위한 템플릿. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,성과 평가를위한 템플릿. DocType: Payment Reconciliation,Invoice/Journal Entry Details,송장 / 분개 세부 사항 apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}'하지 회계 연도에 {2} DocType: Buying Settings,Settings for Buying Module,모듈 구매에 대한 설정 apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,첫 구매 영수증을 입력하세요 DocType: Buying Settings,Supplier Naming By,공급 업체 이름 지정으로 DocType: Activity Type,Default Costing Rate,기본 원가 계산 속도 -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,유지 보수 일정 +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,유지 보수 일정 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","그런 가격 설정 규칙은 고객에 따라 필터링됩니다, 고객 그룹, 지역, 공급 업체, 공급 업체 유형, 캠페인, 판매 파트너 등" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,재고의 순 변화 DocType: Employee,Passport Number,여권 번호 @@ -561,7 +562,7 @@ DocType: Purchase Invoice,Quarterly,분기 별 DocType: Selling Settings,Delivery Note Required,배송 참고 필요한 DocType: Sales Order Item,Basic Rate (Company Currency),기본 요금 (회사 통화) DocType: Manufacturing Settings,Backflush Raw Materials Based On,백 플러시 원료 기반에 -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,항목의 세부 사항을 입력하십시오 +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,항목의 세부 사항을 입력하십시오 DocType: Purchase Receipt,Other Details,기타 세부 사항 DocType: Account,Accounts,회계 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,마케팅 @@ -574,7 +575,7 @@ DocType: Employee,Provide email id registered in company,이메일 ID는 회사 DocType: Hub Settings,Seller City,판매자 도시 DocType: Email Digest,Next email will be sent on:,다음 이메일에 전송됩니다 : DocType: Offer Letter Term,Offer Letter Term,편지 기간을 제공 -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,항목 변종이있다. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,항목 변종이있다. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,{0} 항목을 찾을 수 없습니다 DocType: Bin,Stock Value,재고 가치 apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,나무의 종류 @@ -582,7 +583,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,수량 단위 시간당 소비 DocType: Serial No,Warranty Expiry Date,보증 유효 기간 DocType: Material Request Item,Quantity and Warehouse,수량 및 창고 DocType: Sales Invoice,Commission Rate (%),위원회 비율 (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","바우처를 피해 유형은 판매 주문의 하나, 견적서 또는 분개해야합니다" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","바우처를 피해 유형은 판매 주문의 하나, 견적서 또는 분개해야합니다" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,항공 우주 DocType: Journal Entry,Credit Card Entry,신용 카드 입력 apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,태스크 주제 @@ -669,10 +670,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,부채 apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,제재 금액 행에 청구 금액보다 클 수 없습니다 {0}. DocType: Company,Default Cost of Goods Sold Account,제품 판매 계정의 기본 비용 -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,가격 목록을 선택하지 +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,가격 목록을 선택하지 DocType: Employee,Family Background,가족 배경 DocType: Process Payroll,Send Email,이메일 보내기 -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},경고 : 잘못된 첨부 파일 {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},경고 : 잘못된 첨부 파일 {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,아무 권한이 없습니다 DocType: Company,Default Bank Account,기본 은행 계좌 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first",파티를 기반으로 필터링하려면 선택 파티 첫 번째 유형 @@ -700,7 +701,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,고 DocType: Features Setup,"To enable ""Point of Sale"" features","판매 시점"기능을 사용하려면 DocType: Bin,Moving Average Rate,이동 평균 속도 DocType: Production Planning Tool,Select Items,항목 선택 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} 빌에 대해 {1} 일자 {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} 빌에 대해 {1} 일자 {2} DocType: Maintenance Visit,Completion Status,완료 상태 DocType: Sales Invoice Item,Target Warehouse,목표웨어 하우스 DocType: Item,Allow over delivery or receipt upto this percent,이 퍼센트 개까지 배달 또는 영수증을 통해 허용 @@ -760,7 +761,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,통 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},작업에 대한 다음 {0} 일 시간 슬롯을 찾을 수 없습니다 {1} DocType: Production Order,Plan material for sub-assemblies,서브 어셈블리 계획 물질 apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0}이 활성화되어 있어야합니다 -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,첫 번째 문서 유형을 선택하세요 +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,첫 번째 문서 유형을 선택하세요 apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,고토 장바구니 apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,"이 유지 보수 방문을 취소하기 전, 재질 방문 {0} 취소" DocType: Salary Slip,Leave Encashment Amount,현금화 금액을 남겨주 @@ -778,7 +779,7 @@ DocType: Purchase Receipt,Range,범위 DocType: Supplier,Default Payable Accounts,기본 미지급금 apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,직원 {0} 활성화되지 않거나 존재하지 않습니다 DocType: Features Setup,Item Barcode,상품의 바코드 -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,항목 변형 {0} 업데이트 +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,항목 변형 {0} 업데이트 DocType: Quality Inspection Reading,Reading 6,6 읽기 DocType: Purchase Invoice Advance,Purchase Invoice Advance,송장 전진에게 구입 DocType: Address,Shop,상점 @@ -801,7 +802,7 @@ DocType: Salary Slip,Total in words,즉 전체 DocType: Material Request Item,Lead Time Date,리드 타임 날짜 apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,필수입니다. 아마 환전 레코드가 만들어지지 않습니다 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},행 번호는 {0} 항목에 대한 일련 번호를 지정하십시오 {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","'제품 번들'항목, 창고, 일련 번호 및 배치에 대해 아니오 '포장 목록'테이블에서 고려 될 것이다. 창고 및 배치 없음 어떤 '제품 번들'항목에 대한 모든 포장 항목에 대해 동일한 경우, 그 값이 주요 항목 테이블에 입력 할 수는 값이 테이블 '목록 포장'을 복사됩니다." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","'제품 번들'항목, 창고, 일련 번호 및 배치에 대해 아니오 '포장 목록'테이블에서 고려 될 것이다. 창고 및 배치 없음 어떤 '제품 번들'항목에 대한 모든 포장 항목에 대해 동일한 경우, 그 값이 주요 항목 테이블에 입력 할 수는 값이 테이블 '목록 포장'을 복사됩니다." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,고객에게 선적. DocType: Purchase Invoice Item,Purchase Order Item,구매 주문 상품 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,간접 소득 @@ -822,6 +823,7 @@ DocType: Process Payroll,Select Payroll Year and Month,급여 연도와 월을 apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",해당 그룹 (일반적으로 펀드의 응용 프로그램> 현재 자산> 은행 계좌로 이동 유형) 자녀 추가 클릭하여 (새 계정 만들기 "은행" DocType: Workstation,Electricity Cost,전기 비용 DocType: HR Settings,Don't send Employee Birthday Reminders,직원 생일 알림을 보내지 마십시오 +,Employee Holiday Attendance,직원 휴일 출석 DocType: Opportunity,Walk In,걷다 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,재고 항목 DocType: Item,Inspection Criteria,검사 기준 @@ -844,7 +846,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options, DocType: Journal Entry Account,Expense Claim,비용 청구 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},대한 수량 {0} DocType: Leave Application,Leave Application,휴가 신청 -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,할당 도구를 남겨 +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,할당 도구를 남겨 DocType: Leave Block List,Leave Block List Dates,차단 목록 날짜를 남겨 DocType: Company,If Monthly Budget Exceeded (for expense account),월별 예산 (비용 계정) 초과하는 경우 DocType: Workstation,Net Hour Rate,인터넷 시간 비율 @@ -854,7 +856,7 @@ DocType: Packing Slip Item,Packing Slip Item,패킹 슬립 상품 DocType: POS Profile,Cash/Bank Account,현금 / 은행 계좌 apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,양 또는 값의 변화없이 제거 항목. DocType: Delivery Note,Delivery To,에 배달 -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,속성 테이블은 필수입니다 +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,속성 테이블은 필수입니다 DocType: Production Planning Tool,Get Sales Orders,판매 주문을 받아보세요 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} 음수가 될 수 없습니다 apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,할인 @@ -918,7 +920,7 @@ DocType: SMS Center,Total Characters,전체 문자 apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},상품에 대한 BOM 필드에서 BOM을 선택하세요 {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-양식 송장 세부 정보 DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,결제 조정 송장 -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,공헌 % +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,공헌 % DocType: Item,website page link,웹 사이트 페이지 링크 DocType: Company,Company registration numbers for your reference. Tax numbers etc.,당신의 참고를위한 회사의 등록 번호.세금 번호 등 DocType: Sales Partner,Distributor,분배 자 @@ -960,10 +962,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM 변환 계수 DocType: Stock Settings,Default Item Group,기본 항목 그룹 apps/erpnext/erpnext/config/buying.py +13,Supplier database.,공급 업체 데이터베이스. DocType: Account,Balance Sheet,대차 대조표 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ','상품 코드와 항목에 대한 센터 비용 +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ','상품 코드와 항목에 대한 센터 비용 DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,귀하의 영업 사원은 고객에게 연락이 날짜에 알림을 얻을 것이다 apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","또한 계정의 그룹에서 제조 될 수 있지만, 항목은 비 - 그룹에 대해 만들어 질 수있다" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,세금 및 기타 급여 공제. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,세금 및 기타 급여 공제. DocType: Lead,Lead,리드 고객 DocType: Email Digest,Payables,채무 DocType: Account,Warehouse,창고 @@ -980,10 +982,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,비 조정 지불 DocType: Global Defaults,Current Fiscal Year,당해 사업 연도 DocType: Global Defaults,Disable Rounded Total,둥근 전체에게 사용 안 함 DocType: Lead,Call,전화 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'항목은'비워 둘 수 없습니다 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'항목은'비워 둘 수 없습니다 apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},중복 행 {0}과 같은 {1} ,Trial Balance,시산표 -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,직원 설정 +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,직원 설정 apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","그리드 """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,첫 번째 접두사를 선택하세요 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,연구 @@ -992,7 +994,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,사용자 ID apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,보기 원장 apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,처음 -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group",항목 그룹이 동일한 이름을 가진 항목의 이름을 변경하거나 항목 그룹의 이름을 바꾸십시오 +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group",항목 그룹이 동일한 이름을 가진 항목의 이름을 변경하거나 항목 그룹의 이름을 바꾸십시오 DocType: Production Order,Manufacture against Sales Order,판매 주문에 대해 제조 apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,세계의 나머지 apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,항목 {0} 배치를 가질 수 없습니다 @@ -1017,7 +1019,7 @@ DocType: Purchase Receipt,Rejected Warehouse,거부 창고 DocType: GL Entry,Against Voucher,바우처에 대한 DocType: Item,Default Buying Cost Center,기본 구매 비용 센터 apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","ERPNext 중 최고를 얻으려면, 우리는 당신이 약간의 시간이 걸릴 이러한 도움 비디오를 시청할 것을 권장합니다." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,{0} 항목 판매 상품이어야합니다 +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,{0} 항목 판매 상품이어야합니다 apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,에 DocType: Item,Lead Time in days,일 리드 타임 ,Accounts Payable Summary,미지급금 합계 @@ -1043,7 +1045,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,농업 apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,귀하의 제품이나 서비스 DocType: Mode of Payment,Mode of Payment,결제 방식 -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,웹 사이트의 이미지가 공개 파일 또는 웹 사이트 URL이어야합니다 +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,웹 사이트의 이미지가 공개 파일 또는 웹 사이트 URL이어야합니다 apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,이 루트 항목 그룹 및 편집 할 수 없습니다. DocType: Journal Entry Account,Purchase Order,구매 주문 DocType: Warehouse,Warehouse Contact Info,창고 연락처 정보 @@ -1054,7 +1056,7 @@ DocType: Serial No,Serial No Details,일련 번호 세부 사항 DocType: Purchase Invoice Item,Item Tax Rate,항목 세율 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry",{0} 만 신용 계정은 자동 이체 항목에 링크 할 수 있습니다 들어 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,배송 참고 {0} 제출되지 -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,{0} 항목 하위 계약 품목이어야합니다 +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,{0} 항목 하위 계약 품목이어야합니다 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,자본 장비 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","가격 규칙은 첫 번째 항목, 항목 그룹 또는 브랜드가 될 수있는 필드 '에 적용'에 따라 선택됩니다." DocType: Hub Settings,Seller Website,판매자 웹 사이트 @@ -1063,7 +1065,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,골 DocType: Sales Invoice Item,Edit Description,편집 설명 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,예상 배달 날짜는 계획 시작 날짜보다 적은이다. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,공급 업체 +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,공급 업체 DocType: Account,Setting Account Type helps in selecting this Account in transactions.,계정 유형을 설정하면 트랜잭션이 계정을 선택하는 데 도움이됩니다. DocType: Purchase Invoice,Grand Total (Company Currency),총계 (회사 통화) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,총 발신 @@ -1115,7 +1117,6 @@ DocType: Authorization Rule,Average Discount,평균 할인 DocType: Address,Utilities,"공공요금(전기세, 상/하 수도세, 가스세, 쓰레기세 등)" DocType: Purchase Invoice Item,Accounting,회계 DocType: Features Setup,Features Setup,기능 설정 -DocType: Item,Is Service Item,서비스 항목은 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,신청 기간은 외부 휴가 할당 기간이 될 수 없습니다 DocType: Activity Cost,Projects,프로젝트 apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,회계 연도를 선택하십시오 @@ -1136,7 +1137,7 @@ DocType: Item,Maintain Stock,재고 유지 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,이미 생산 오더에 대 한 만든 항목 apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,고정 자산의 순 변화 DocType: Leave Control Panel,Leave blank if considered for all designations,모든 지정을 고려하는 경우 비워 둡니다 -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,유형 행 {0}에있는 '실제'의 책임은 상품 요금에 포함 할 수 없습니다 +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,유형 행 {0}에있는 '실제'의 책임은 상품 요금에 포함 할 수 없습니다 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},최대 : {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,날짜 시간에서 DocType: Email Digest,For Company,회사 @@ -1145,8 +1146,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,배송 주소 이름 apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,계정 차트 DocType: Material Request,Terms and Conditions Content,약관 내용 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,100보다 큰 수 없습니다 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,{0} 항목을 재고 항목이 없습니다 +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,100보다 큰 수 없습니다 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,{0} 항목을 재고 항목이 없습니다 DocType: Maintenance Visit,Unscheduled,예약되지 않은 DocType: Employee,Owned,소유 DocType: Salary Slip Deduction,Depends on Leave Without Pay,무급 휴가에 따라 다름 @@ -1168,7 +1169,7 @@ Used for Taxes and Charges","문자열로 품목 마스터에서 가져온이 apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,직원은 자신에게보고 할 수 없습니다. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","계정이 동결 된 경우, 항목은 제한된 사용자에게 허용됩니다." DocType: Email Digest,Bank Balance,은행 잔액 -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},{1} 만 통화 할 수있다 : {0}에 대한 회계 항목 {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},{1} 만 통화 할 수있다 : {0}에 대한 회계 항목 {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,직원 {0}과 달를 찾지 활성 급여 구조 없다 DocType: Job Opening,"Job profile, qualifications required etc.","필요한 작업 프로필, 자격 등" DocType: Journal Entry Account,Account Balance,계정 잔액 @@ -1185,7 +1186,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,서브 어셈 DocType: Shipping Rule Condition,To Value,값 DocType: Supplier,Stock Manager,재고 관리자 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},소스웨어 하우스는 행에 대해 필수입니다 {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,포장 명세서 +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,포장 명세서 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,사무실 임대 apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,설치 SMS 게이트웨이 설정 apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,가져 오기 실패! @@ -1229,7 +1230,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM 세부 사항 없음 DocType: Purchase Invoice,Additional Discount Amount (Company Currency),추가 할인 금액 (회사 통화) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},오류 : {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,계정 차트에서 새로운 계정을 생성 해주세요. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,유지 보수 방문 +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,유지 보수 방문 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,고객 지원> 고객 그룹> 지역 DocType: Sales Invoice Item,Available Batch Qty at Warehouse,창고에서 사용 가능한 배치 수량 DocType: Time Log Batch Detail,Time Log Batch Detail,시간 로그 일괄 처리 정보 @@ -1238,7 +1239,7 @@ DocType: Leave Block List,Block Holidays on important days.,중요한 일에 블 ,Accounts Receivable Summary,미수금 요약 apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,직원 역할을 설정하는 직원 레코드에 사용자 ID 필드를 설정하십시오 DocType: UOM,UOM Name,UOM 이름 -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,기부액 +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,기부액 DocType: Sales Invoice,Shipping Address,배송 주소 DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,이 도구를 업데이트하거나 시스템에 재고의 수량 및 평가를 해결하는 데 도움이됩니다.이것은 전형적으로 시스템 값 것과 실제로 존재 창고를 동기화하는 데 사용된다. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,당신은 배달 주를 저장 한 단어에서 볼 수 있습니다. @@ -1279,7 +1280,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,바코드를 사용하여 항목을 추적 할 수 있습니다.당신은 상품의 바코드를 스캔하여 납품서 및 판매 송장에서 항목을 입력 할 수 있습니다. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,지불 이메일을 다시 보내 DocType: Dependent Task,Dependent Task,종속 작업 -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},측정의 기본 단위에 대한 변환 계수는 행에 반드시 1이 {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},측정의 기본 단위에 대한 변환 계수는 행에 반드시 1이 {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},유형의 휴가는 {0}을 넘을 수 없습니다 {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,사전에 X 일에 대한 작업을 계획 해보십시오. DocType: HR Settings,Stop Birthday Reminders,정지 생일 알림 @@ -1289,7 +1290,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0}보기 apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,현금의 순 변화 DocType: Salary Structure Deduction,Salary Structure Deduction,급여 구조 공제 -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,측정 단위는 {0}보다 변환 계수 표에 두 번 이상 입력 한 +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,측정 단위는 {0}보다 변환 계수 표에 두 번 이상 입력 한 apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},지불 요청이 이미 존재 {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,발행 항목의 비용 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},수량 이하이어야한다 {0} @@ -1318,7 +1319,7 @@ DocType: BOM Item,BOM Item,BOM 상품 DocType: Appraisal,For Employee,직원에 대한 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,행 {0} : 공급 업체에 대한 사전 직불해야 DocType: Company,Default Values,기본값 -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,행 {0} : 지불 금액은 음수가 될 수 없습니다 +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,행 {0} : 지불 금액은 음수가 될 수 없습니다 DocType: Expense Claim,Total Amount Reimbursed,총 금액 상환 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},공급 업체 청구서를 {0} 일자 {1} DocType: Customer,Default Price List,기본 가격리스트 @@ -1346,8 +1347,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,일 DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","그것을 사용하는 다른 모든 BOM을의 특정 BOM을 교체합니다.또한, 기존의 BOM 링크를 교체 비용을 업데이트하고 새로운 BOM에 따라 ""BOM 폭발 항목""테이블을 다시 생성" DocType: Shopping Cart Settings,Enable Shopping Cart,장바구니 사용 DocType: Employee,Permanent Address,영구 주소 -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,항목 {0} 서비스 상품이어야합니다. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",총계보다 \ {0} {1} 초과 할 수 없습니다에 대해 지불 사전 {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,품목 코드를 선택하세요 DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),무급 휴직 공제를 줄 (LWP) @@ -1403,12 +1403,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,주요 기능 apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,변체 DocType: Naming Series,Set prefix for numbering series on your transactions,트랜잭션에 일련 번호에 대한 설정 접두사 +DocType: Employee Attendance Tool,Employees HTML,직원 HTML을 apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,정지 순서는 취소 할 수 없습니다.취소 멈추지. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,기본 BOM은 ({0})이 항목 또는 템플릿에 대한 활성화되어 있어야합니다 +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,기본 BOM은 ({0})이 항목 또는 템플릿에 대한 활성화되어 있어야합니다 DocType: Employee,Leave Encashed?,Encashed 남겨? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,필드에서 기회는 필수입니다 DocType: Item,Variants,변종 -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,확인 구매 주문 +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,확인 구매 주문 DocType: SMS Center,Send To,보내기 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},허가 유형에 대한 충분한 휴가 밸런스가 없습니다 {0} DocType: Payment Reconciliation Payment,Allocated amount,할당 된 양 @@ -1509,7 +1510,7 @@ DocType: Sales Person,Name and Employee ID,이름 및 직원 ID apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,기한 날짜를 게시하기 전에 할 수 없습니다 DocType: Website Item Group,Website Item Group,웹 사이트 상품 그룹 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,관세 및 세금 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,참고 날짜를 입력 해주세요 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,참고 날짜를 입력 해주세요 apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,지불 게이트웨이 계정이 구성되어 있지 않습니다 apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} 지급 항목으로 필터링 할 수 없습니다 {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,웹 사이트에 표시됩니다 항목 표 @@ -1530,7 +1531,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,해상도 세부 사항 DocType: Quality Inspection Reading,Acceptance Criteria,허용 기준 DocType: Item Attribute,Attribute Name,속성 이름 -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},{0} 항목을 판매하거나 서비스 상품이어야 {1} DocType: Item Group,Show In Website,웹 사이트에 표시 apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,그릅 DocType: Task,Expected Time (in hours),(시간) 예상 시간 @@ -1562,7 +1562,7 @@ DocType: Shipping Rule Condition,Shipping Amount,배송 금액 ,Pending Amount,대기중인 금액 DocType: Purchase Invoice Item,Conversion Factor,변환 계수 DocType: Purchase Order,Delivered,배달 -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),작업 메일 ID의 설정받는 서버. (예를 들어 jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),작업 메일 ID의 설정받는 서버. (예를 들어 jobs@example.com) DocType: Purchase Receipt,Vehicle Number,차량 번호 DocType: Purchase Invoice,The date on which recurring invoice will be stop,반복 송장이 중단 될 일자 apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,총 할당 된 잎 {0} 작을 수 없습니다 기간 동안 이미 승인 된 잎 {1}보다 @@ -1579,7 +1579,7 @@ DocType: HR Settings,HR Settings,HR 설정 apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,비용 청구가 승인 대기 중입니다.만 비용 승인자 상태를 업데이트 할 수 있습니다. DocType: Purchase Invoice,Additional Discount Amount,추가 할인 금액 DocType: Leave Block List Allow,Leave Block List Allow,차단 목록은 허용 남겨 -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,약어는 비워둘수 없습니다 +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,약어는 비워둘수 없습니다 apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,비 그룹에 그룹 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,스포츠 apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,실제 총 @@ -1603,7 +1603,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},UOM 변환 계수는 행에 필요한 {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},통관 날짜 행 체크인 날짜 이전 할 수 없습니다 {0} DocType: Salary Slip,Deduction,공제 -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},상품 가격은 추가 {0} 가격 목록에서 {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},상품 가격은 추가 {0} 가격 목록에서 {1} DocType: Address Template,Address Template,주소 템플릿 apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,이 영업 사원의 직원 ID를 입력하십시오 DocType: Territory,Classification of Customers by region,지역별 고객의 분류 @@ -1620,7 +1620,7 @@ DocType: Employee,Date of Birth,생일 apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,항목 {0}이 (가) 이미 반환 된 DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** 회계 연도는 ** 금융 년도 나타냅니다.모든 회계 항목 및 기타 주요 거래는 ** ** 회계 연도에 대해 추적됩니다. DocType: Opportunity,Customer / Lead Address,고객 / 리드 주소 -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},경고 : 첨부 파일에 잘못된 SSL 인증서 {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},경고 : 첨부 파일에 잘못된 SSL 인증서 {0} DocType: Production Order Operation,Actual Operation Time,실제 작업 시간 DocType: Authorization Rule,Applicable To (User),에 적용 (사용자) DocType: Purchase Taxes and Charges,Deduct,공제 @@ -1637,7 +1637,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,패키지로 배달 주를 분할합니다. apps/erpnext/erpnext/hooks.py +69,Shipments,선적 DocType: Purchase Order Item,To be delivered to customer,고객에게 전달 될 -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,소요시간 로그 상태는 제출해야합니다. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,소요시간 로그 상태는 제출해야합니다. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,일련 번호 {0} 어떤 창고에 속하지 않는 apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,행 # DocType: Purchase Invoice,In Words (Company Currency),단어 (회사 통화)에서 @@ -1654,7 +1654,7 @@ DocType: Leave Application,Total Leave Days,총 허가 일 DocType: Email Digest,Note: Email will not be sent to disabled users,참고 : 전자 메일을 사용할 사용자에게 전송되지 않습니다 apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,회사를 선택 ... DocType: Leave Control Panel,Leave blank if considered for all departments,모든 부서가 있다고 간주 될 경우 비워 둡니다 -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","고용 (영구, 계약, 인턴 등)의 종류." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","고용 (영구, 계약, 인턴 등)의 종류." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} 항목에 대한 필수입니다 {1} DocType: Currency Exchange,From Currency,통화와 apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","이어야 한 행에 할당 된 금액, 송장 유형 및 송장 번호를 선택하세요" @@ -1673,7 +1673,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,처리 중 DocType: Authorization Rule,Itemwise Discount,Itemwise 할인 DocType: Purchase Order Item,Reference Document Type,참조 문서 유형 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} 판매 주문에 대한 {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} 판매 주문에 대한 {1} DocType: Account,Fixed Asset,고정 자산 apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,직렬화 된 재고 DocType: Activity Type,Default Billing Rate,기본 결제 요금 @@ -1683,7 +1683,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,지불에 판매 주문 DocType: Expense Claim Detail,Expense Claim Detail,비용 청구 상세 정보 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,시간 로그 생성 : -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,올바른 계정을 선택하세요 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,올바른 계정을 선택하세요 DocType: Item,Weight UOM,무게 UOM DocType: Employee,Blood Group,혈액 그룹 DocType: Purchase Invoice Item,Page Break,페이지 나누기 @@ -1718,7 +1718,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM 재귀 : {0} 부모 또는 자녀가 될 수 없습니다 {2} DocType: Production Order Operation,Completed Qty,완료 수량 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry",{0} 만 직불 계정은 다른 신용 항목에 링크 할 수 있습니다 들어 -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,가격 목록 {0} 비활성화 +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,가격 목록 {0} 비활성화 DocType: Manufacturing Settings,Allow Overtime,초과 근무 허용 apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} 항목에 필요한 일련 번호 {1}. 당신이 제공 한 {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,현재 평가 비율 @@ -1769,7 +1769,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},바 apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,케이스 번호는 0이 될 수 없습니다 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,당신이 판매 팀 및 판매 파트너 (채널 파트너)가있는 경우 그들은 태그 및 영업 활동에 기여를 유지 할 수 있습니다 DocType: Item,Show a slideshow at the top of the page,페이지의 상단에 슬라이드 쇼보기 -DocType: Item,"Allow in Sales Order of type ""Service""",유형 "서비스"의 판매 주문에 허용 apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,상점 DocType: Time Log,Projects Manager,프로젝트 관리자 DocType: Serial No,Delivery Time,배달 시간 @@ -1784,6 +1783,7 @@ DocType: Rename Tool,Rename Tool,이름바꾸기 툴 apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,업데이트 비용 DocType: Item Reorder,Item Reorder,항목 순서 바꾸기 apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,전송 자료 +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},항목 {0}에서 판매 항목이어야합니다 {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","운영, 운영 비용을 지정하고 작업에 고유 한 작업에게 더를 제공합니다." DocType: Purchase Invoice,Price List Currency,가격리스트 통화 DocType: Naming Series,User must always select,사용자는 항상 선택해야합니다 @@ -1804,7 +1804,7 @@ DocType: Appraisal,Employee,종업원 apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,가져 오기 이메일 apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,사용자로 초대하기 DocType: Features Setup,After Sale Installations,판매 설치 후 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} 전액 청구됩니다 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} 전액 청구됩니다 DocType: Workstation Working Hour,End Time,종료 시간 apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,판매 또는 구매를위한 표준 계약 조건. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,바우처 그룹 @@ -1830,7 +1830,7 @@ DocType: Upload Attendance,Attendance To Date,날짜 출석 apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),판매 이메일 ID에 대한 설정받는 서버. (예를 들어 sales@example.com) DocType: Warranty Claim,Raised By,에 의해 제기 DocType: Payment Gateway Account,Payment Account,결제 계정 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,진행하는 회사를 지정하십시오 +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,진행하는 회사를 지정하십시오 apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,채권에 순 변경 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,보상 오프 DocType: Quality Inspection Reading,Accepted,허용 @@ -1842,14 +1842,14 @@ DocType: Shipping Rule,Shipping Rule Label,배송 규칙 라벨 apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,원료는 비워 둘 수 없습니다. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","주식을 업데이트 할 수 없습니다, 송장은 하락 선박 항목이 포함되어 있습니다." DocType: Newsletter,Test,미리 보기 -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","기존의 주식 거래는의 값을 변경할 수 없습니다 \이 항목에 대한 있기 때문에 '일련 번호를 가지고', '배치를 가지고 없음', '주식 항목으로'와 '평가 방법'" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,빠른 분개 apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,BOM 어떤 항목 agianst 언급 한 경우는 속도를 변경할 수 없습니다 DocType: Employee,Previous Work Experience,이전 작업 경험 DocType: Stock Entry,For Quantity,수량 apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},항목에 대한 계획 수량을 입력하십시오 {0} 행에서 {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} 제출되지 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} 제출되지 apps/erpnext/erpnext/config/stock.py +18,Requests for items.,상품에 대한 요청. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,별도의 생산 순서는 각 완제품 항목에 대해 작성됩니다. DocType: Purchase Invoice,Terms and Conditions1,약관 및 상태 인 경우 1 @@ -1874,6 +1874,7 @@ DocType: Notification Control,Expense Claim Approved Message,경비 청구서 DocType: Email Digest,How frequently?,얼마나 자주? DocType: Purchase Receipt,Get Current Stock,현재 재고을보세요 apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,재료 명세서 (BOM)의 나무 +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,마크 선물 apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},유지 보수 시작 날짜 일련 번호에 대한 배달 날짜 이전 할 수 없습니다 {0} DocType: Production Order,Actual End Date,실제 종료 날짜 DocType: Authorization Rule,Applicable To (Role),에 적용 (역할) @@ -1888,7 +1889,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,계약 종료 날짜는 가입 날짜보다 커야합니다 DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,수수료에 대한 회사의 제품을 판매하는 타사 대리점 / 딜러 /위원회 에이전트 / 제휴 / 대리점. DocType: Customer Group,Has Child Node,아이 노드에게 있습니다 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} 구매 주문에 대한 {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} 구매 주문에 대한 {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","여기에 정적 URL 매개 변수를 입력합니다 (예 : 보낸 사람 = ERPNext, 사용자 이름 = ERPNext, 암호 = 1234 등)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1}되지 않은 활성 회계 연도에. 자세한 내용 확인은 {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,이 ERPNext에서 자동으로 생성 예를 들어 웹 사이트입니다 @@ -1936,7 +1937,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10.추가 공제 : 추가하거나 세금을 공제할지 여부를 선택합니다." DocType: Purchase Receipt Item,Recd Quantity,Recd 수량 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},더 많은 항목을 생성 할 수 없습니다 {0}보다 판매 주문 수량 {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,재고 항목 {0} 제출되지 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,재고 항목 {0} 제출되지 DocType: Payment Reconciliation,Bank / Cash Account,은행 / 현금 계정 DocType: Tax Rule,Billing City,결제시 DocType: Global Defaults,Hide Currency Symbol,통화 기호에게 숨기기 @@ -1962,7 +1963,7 @@ DocType: Salary Structure,Total Earning,총 적립 DocType: Purchase Receipt,Time at which materials were received,재료가 수신 된 시간입니다 apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,내 주소 DocType: Stock Ledger Entry,Outgoing Rate,보내는 속도 -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,조직 분기의 마스터. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,조직 분기의 마스터. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,또는 DocType: Sales Order,Billing Status,결제 상태 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,광열비 @@ -2000,7 +2001,7 @@ DocType: Bin,Reserved Quantity,예약 주문 DocType: Landed Cost Voucher,Purchase Receipt Items,구매 영수증 항목 apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,사용자 정의 양식 DocType: Account,Income Account,수익 계정 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,배달 +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,배달 DocType: Stock Reconciliation Item,Current Qty,현재 수량 DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section","절 원가 계산의 ""에 근거를 자료의 평가""를 참조하십시오" DocType: Appraisal Goal,Key Responsibility Area,주요 책임 지역 @@ -2012,9 +2013,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,상 DocType: Notification Control,Purchase Order Message,구매 주문 메시지 DocType: Tax Rule,Shipping Country,배송 국가 DocType: Upload Attendance,Upload HTML,업로드 HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","총 선수금 ({0})은 {1} \ 주문에 대하여 - 총합계 ({2})보다 클 수 없습니다" DocType: Employee,Relieving Date,날짜를 덜어 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","가격 규칙은 몇 가지 기준에 따라, 가격 목록 / 할인 비율을 정의 덮어 쓰기를한다." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,창고 재고 만 입력 / 배달 주 / 구매 영수증을 통해 변경 될 수 있습니다 @@ -2024,8 +2022,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,소 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","선택 가격 규칙은 '가격'을 위해 만든 경우, 가격 목록을 덮어 쓰게됩니다.가격 규칙 가격이 최종 가격이기 때문에 더 이상의 할인은 적용되지해야합니다.따라서, 등 판매 주문, 구매 주문 등의 거래에있어서, 그것은 오히려 '가격 목록 평가'분야보다 '속도'필드에서 가져온 것입니다." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,트랙은 산업 유형에 의해 리드. DocType: Item Supplier,Item Supplier,부품 공급 업체 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,더 배치를 얻을 수 상품 코드를 입력하시기 바랍니다 -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},값을 선택하세요 {0} quotation_to {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,더 배치를 얻을 수 상품 코드를 입력하시기 바랍니다 +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},값을 선택하세요 {0} quotation_to {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,모든 주소. DocType: Company,Stock Settings,스톡 설정 apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","다음과 같은 속성이 모두 기록에 같은 경우 병합에만 가능합니다. 그룹, 루트 유형, 회사는" @@ -2048,7 +2046,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,수표 번호 DocType: Payment Tool Detail,Payment Tool Detail,지불 도구 세부 정보 ,Sales Browser,판매 브라우저 DocType: Journal Entry,Total Credit,총 크레딧 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},경고 : 또 다른 {0} # {1} 재고 항목에 대해 존재 {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},경고 : 또 다른 {0} # {1} 재고 항목에 대해 존재 {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,지역정보 검색 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),대출 및 선수금 (자산) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,외상매출금 @@ -2068,8 +2066,8 @@ DocType: Price List,Price List Master,가격 목록 마스터 DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,당신이 설정 한 목표를 모니터링 할 수 있도록 모든 판매 트랜잭션은 여러 ** 판매 사람 **에 태그 할 수 있습니다. ,S.O. No.,SO 번호 DocType: Production Order Operation,Make Time Log,시간 로그를 확인하십시오 -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,재주문 수량을 설정하세요 -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},리드에서 고객을 생성 해주세요 {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,재주문 수량을 설정하세요 +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},리드에서 고객을 생성 해주세요 {0} DocType: Price List,Applicable for Countries,국가에 대한 적용 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,컴퓨터 apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,이 루트 고객 그룹 및 편집 할 수 없습니다. @@ -2117,7 +2115,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),결제 DocType: Payment Reconciliation Invoice,Outstanding Amount,잔액 DocType: Project Task,Working,인식 중 DocType: Stock Ledger Entry,Stock Queue (FIFO),재고 큐 (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,시간 로그를 선택하십시오. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,시간 로그를 선택하십시오. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} 회사에 속하지 않는 {1} DocType: Account,Round Off,에누리 ,Requested Qty,요청 수량 @@ -2155,7 +2153,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,관련 항목을보세요 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,재고에 대한 회계 항목 DocType: Sales Invoice,Sales Team1,판매 Team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,{0} 항목이 존재하지 않습니다 +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,{0} 항목이 존재하지 않습니다 DocType: Sales Invoice,Customer Address,고객 주소 DocType: Payment Request,Recipient and Message,받는 사람 및 메시지 DocType: Purchase Invoice,Apply Additional Discount On,추가 할인에 적용 @@ -2174,7 +2172,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,음소거 이메일 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","음식, 음료 및 담배" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL 또는 BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},단지에 대한 지불을 할 수 미 청구 {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},단지에 대한 지불을 할 수 미 청구 {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,수수료율은 100보다 큰 수 없습니다 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,최소 재고 수준 DocType: Stock Entry,Subcontract,하청 @@ -2192,9 +2190,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,소프트 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,컬러 DocType: Maintenance Visit,Scheduled,예약된 apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","아니오"와 "판매 상품은" "주식의 항목으로"여기서 "예"인 항목을 선택하고 다른 제품 번들이없는하세요 +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),전체 사전 ({0})의 순서에 대하여 {1} 총합계보다 클 수 없습니다 ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,고르지 개월에 걸쳐 목표를 배포하는 월별 분포를 선택합니다. DocType: Purchase Invoice Item,Valuation Rate,평가 평가 -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,가격리스트 통화 선택하지 +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,가격리스트 통화 선택하지 apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,항목 행 {0} : {1} 위 '구매 영수증'테이블에 존재하지 않는 구매 영수증 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},직원 {0}이 (가) 이미 사이에 {1}를 신청했다 {2}와 {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,프로젝트 시작 날짜 @@ -2206,6 +2205,7 @@ DocType: Quality Inspection,Inspection Type,검사 유형 apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},선택하세요 {0} DocType: C-Form,C-Form No,C-양식 없음 DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,표시되지 않은 출석 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,연구원 apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,전송하기 전에 뉴스를 저장하십시오 apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,이름이나 이메일은 필수입니다 @@ -2231,7 +2231,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,확인 DocType: Payment Gateway,Gateway,게이트웨이 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,공급 업체> 공급 업체 유형 apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,날짜를 덜어 입력 해 주시기 바랍니다. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,AMT +apps/erpnext/erpnext/controllers/trends.py +138,Amt,AMT apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,휴가신청은 '승인'상태로 제출 될 수있다 apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,주소 제목은 필수입니다. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,메시지의 소스 캠페인 경우 캠페인의 이름을 입력 @@ -2246,10 +2246,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,허용 창고 DocType: Bank Reconciliation Detail,Posting Date,등록일자 DocType: Item,Valuation Method,평가 방법 apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},{0}에 대한 환율을 찾을 수 없습니다 {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,마크 반나절 DocType: Sales Invoice,Sales Team,판매 팀 apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,항목을 중복 DocType: Serial No,Under Warranty,보증에 따른 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[오류] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[오류] DocType: Sales Order,In Words will be visible once you save the Sales Order.,당신이 판매 주문을 저장하면 단어에서 볼 수 있습니다. ,Employee Birthday,직원 생일 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,벤처 캐피탈 @@ -2272,6 +2273,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,기존의 트랜잭션 비용 센터는 그룹으로 변환 할 수 없습니다 DocType: Account,Depreciation,감가 상각 apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),공급 업체 (들) +DocType: Employee Attendance Tool,Employee Attendance Tool,직원의 출석 도구 DocType: Supplier,Credit Limit,신용 한도 apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,거래 종류 선택 DocType: GL Entry,Voucher No,바우처 없음 @@ -2298,7 +2300,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,루트 계정은 삭제할 수 없습니다 ,Is Primary Address,기본 주소는 DocType: Production Order,Work-in-Progress Warehouse,작업중인 창고 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},참고 # {0} 년 {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},참고 # {0} 년 {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,주소를 관리 DocType: Pricing Rule,Item Code,상품 코드 DocType: Production Planning Tool,Create Production Orders,생산 오더를 생성 @@ -2325,7 +2327,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,은행 계정 조정 apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,업데이트 받기 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,자료 요청 {0} 취소 또는 정지 apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,몇 가지 샘플 레코드 추가 -apps/erpnext/erpnext/config/hr.py +210,Leave Management,관리를 남겨주세요 +apps/erpnext/erpnext/config/hr.py +225,Leave Management,관리를 남겨주세요 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,계정별 그룹 DocType: Sales Order,Fully Delivered,완전 배달 DocType: Lead,Lower Income,낮은 소득 @@ -2340,6 +2342,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','시작일자'는 '마감일자'이후이 여야합니다 ,Stock Projected Qty,재고 수량을 예상 apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},고객 {0} 프로젝트에 속하지 않는 {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,표시된 출석 HTML DocType: Sales Order,Customer's Purchase Order,고객의 구매 주문 DocType: Warranty Claim,From Company,회사에서 apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,값 또는 수량 @@ -2404,6 +2407,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,송금 apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,은행 계좌를 선택하세요 DocType: Newsletter,Create and Send Newsletters,작성 및 보내기 뉴스 레터 +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,모두 확인 DocType: Sales Order,Recurring Order,반복 주문 DocType: Company,Default Income Account,기본 수입 계정 apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,고객 그룹 / 고객 @@ -2435,6 +2439,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,에 대하여 구매 DocType: Item,Warranty Period (in days),(일) 보증 기간 apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,조작에서 순 현금 apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,예) VAT +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,대량의 마크 직원의 출석 apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,항목 4 DocType: Journal Entry Account,Journal Entry Account,분개 계정 DocType: Shopping Cart Settings,Quotation Series,견적 시리즈 @@ -2580,14 +2585,14 @@ DocType: Task,Actual Start Date (via Time Logs),실제 시작 날짜 (시간 로 DocType: Stock Reconciliation Item,Before reconciliation,계정조정전 apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},에 {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),추가 세금 및 수수료 (회사 통화) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,상품 세금 행 {0} 유형의 세금 또는 수입 비용 또는 청구의 계정이 있어야합니다 +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,상품 세금 행 {0} 유형의 세금 또는 수입 비용 또는 청구의 계정이 있어야합니다 DocType: Sales Order,Partly Billed,일부 청구 DocType: Item,Default BOM,기본 BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,다시 입력 회사 이름은 확인하시기 바랍니다 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,총 발행 AMT 사의 DocType: Time Log Batch,Total Hours,총 시간 DocType: Journal Entry,Printing Settings,인쇄 설정 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},총 직불 카드는 전체 신용 동일해야합니다.차이는 {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},총 직불 카드는 전체 신용 동일해야합니다.차이는 {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,자동차 apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,배달 주에서 DocType: Time Log,From Time,시간에서 @@ -2634,7 +2639,7 @@ DocType: Purchase Invoice Item,Image View,이미지보기 DocType: Issue,Opening Time,영업 시간 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,일자 및 끝 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,증권 및 상품 교환 -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',변형에 대한 측정의 기본 단위는 '{0}'템플릿에서와 동일해야합니다 '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',변형에 대한 측정의 기본 단위는 '{0}'템플릿에서와 동일해야합니다 '{1}' DocType: Shipping Rule,Calculate Based On,에 의거에게 계산 DocType: Delivery Note Item,From Warehouse,창고에서 DocType: Purchase Taxes and Charges,Valuation and Total,평가 및 총 @@ -2656,7 +2661,7 @@ DocType: Leave Application,Follow via Email,이메일을 통해 수행 DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,할인 금액 후 세액 apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,이 계정에 하위계정이 존재합니다.이 계정을 삭제할 수 없습니다. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,목표 수량 또는 목표량 하나는 필수입니다 -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},기본의 BOM은 존재하지 않습니다 항목에 대한 {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},기본의 BOM은 존재하지 않습니다 항목에 대한 {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,첫 번째 게시 날짜를 선택하세요 apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,날짜를 열기 날짜를 닫기 전에해야 DocType: Leave Control Panel,Carry Forward,이월하다 @@ -2734,7 +2739,7 @@ DocType: Leave Type,Is Encash,현금화는 DocType: Purchase Invoice,Mobile No,모바일 없음 DocType: Payment Tool,Make Journal Entry,저널 항목을 만듭니다 DocType: Leave Allocation,New Leaves Allocated,할당 된 새로운 잎 -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,프로젝트 와이즈 데이터는 견적을 사용할 수 없습니다 +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,프로젝트 와이즈 데이터는 견적을 사용할 수 없습니다 DocType: Project,Expected End Date,예상 종료 날짜 DocType: Appraisal Template,Appraisal Template Title,평가 템플릿 제목 apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,광고 방송 @@ -2782,6 +2787,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No., apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,를 지정하십시오 DocType: Offer Letter,Awaiting Response,응답을 기다리는 중 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,위 +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,시간 로그 청구되었습니다 DocType: Salary Slip,Earning & Deduction,당기순이익/손실 apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,계정 {0} 그룹이 될 수 없습니다 apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,선택.이 설정은 다양한 거래를 필터링하는 데 사용됩니다. @@ -2852,14 +2858,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,성공적으로이 회사에 관련된 모든 트랜잭션을 삭제! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,날짜에로 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,근신 -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,기본 창고 재고 상품에 대한 필수입니다. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,기본 창고 재고 상품에 대한 필수입니다. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},달의 급여의 지급 {0}과 연도 {1} DocType: Stock Settings,Auto insert Price List rate if missing,자동 삽입 가격표 속도없는 경우 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,총 지불 금액 ,Transferred Qty,수량에게 전송 apps/erpnext/erpnext/config/learn.py +11,Navigating,탐색 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,계획 -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,시간 로그 일괄 확인 +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,시간 로그 일괄 확인 apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,발행 된 DocType: Project,Total Billing Amount (via Time Logs),총 결제 금액 (시간 로그를 통해) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,우리는이 품목을 @@ -2867,7 +2873,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,수량이 0보다 커야합니다 DocType: Journal Entry,Cash Entry,현금 항목 DocType: Sales Partner,Contact Desc,연락처 제품 설명 -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","캐주얼, 병 등과 같은 잎의 종류" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","캐주얼, 병 등과 같은 잎의 종류" DocType: Email Digest,Send regular summary reports via Email.,이메일을 통해 정기적으로 요약 보고서를 보냅니다. DocType: Brand,Item Manager,항목 관리자 DocType: Cost Center,Add rows to set annual budgets on Accounts.,계정에 연간 예산을 설정하는 행을 추가합니다. @@ -2882,7 +2888,7 @@ DocType: GL Entry,Party Type,파티 형 apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,원료의 주요 항목과 동일 할 수 없습니다 DocType: Item Attribute Value,Abbreviation,약어 apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,{0} 한도를 초과 한 authroized Not -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,급여 템플릿 마스터. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,급여 템플릿 마스터. DocType: Leave Type,Max Days Leave Allowed,최대 일 허가 허용 apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,쇼핑 카트에 설정 세금 규칙 DocType: Payment Tool,Set Matching Amounts,설정 매칭 금액 @@ -2895,7 +2901,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,리드 DocType: Stock Settings,Role Allowed to edit frozen stock,동결 재고을 편집 할 수 있는 역할 ,Territory Target Variance Item Group-Wise,지역 대상 분산 상품 그룹 와이즈 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,모든 고객 그룹 -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} 필수입니다.아마 통화 기록은 {2}로 {1}에 만들어지지 않습니다. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} 필수입니다.아마 통화 기록은 {2}로 {1}에 만들어지지 않습니다. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,세금 템플릿은 필수입니다. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,계정 {0} : 부모 계정 {1}이 (가) 없습니다 DocType: Purchase Invoice Item,Price List Rate (Company Currency),가격 목록 비율 (회사 통화) @@ -2915,8 +2921,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,항목 와이즈 세금 ,Item-wise Price List Rate,상품이 많다는 가격리스트 평가 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,공급 업체 견적 DocType: Quotation,In Words will be visible once you save the Quotation.,당신은 견적을 저장 한 단어에서 볼 수 있습니다. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1}이 정지 될 -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},바코드 {0}이 (가) 이미 상품에 사용되는 {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1}이 정지 될 +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},바코드 {0}이 (가) 이미 상품에 사용되는 {1} DocType: Lead,Add to calendar on this date,이 날짜에 캘린더에 추가 apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,비용을 추가하는 규칙. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,다가오는 이벤트 @@ -2942,8 +2948,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling, apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,이어야 한 창고는 필수입니다 DocType: Serial No,Out of Warranty,보증 기간 만료 DocType: BOM Replace Tool,Replace,교체 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} 견적서에 대한 {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,측정의 기본 단위를 입력하십시오 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} 견적서에 대한 {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,측정의 기본 단위를 입력하십시오 DocType: Purchase Invoice Item,Project Name,프로젝트 이름 DocType: Supplier,Mention if non-standard receivable account,언급 표준이 아닌 채권 계정의 경우 DocType: Journal Entry Account,If Income or Expense,만약 소득 또는 비용 @@ -2968,7 +2974,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,회계 연도 : {0} 수행하지 존재 DocType: Currency Exchange,To Currency,통화로 DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,다음 사용자가 블록 일에 대한 허가 신청을 승인 할 수 있습니다. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,비용 청구의 유형. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,비용 청구의 유형. DocType: Item,Taxes,세금 apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,유료 및 전달되지 않음 DocType: Project,Default Cost Center,기본 비용 센터 @@ -2998,7 +3004,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},행 번호 {0} : 일련 번호 {1}과 일치하지 않는 {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,캐주얼 허가 DocType: Batch,Batch ID,일괄 처리 ID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},참고 : {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},참고 : {0} ,Delivery Note Trends,배송 참고 동향 apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,이번 주 요약 apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} 행의 구입 또는 하위 계약 품목이어야 {1} @@ -3038,6 +3044,7 @@ DocType: Project Task,Pending Review,검토 중 apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,지불하려면 여기를 클릭하십시오 DocType: Task,Total Expense Claim (via Expense Claim),(비용 청구를 통해) 총 경비 요청 apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,고객 아이디 +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,마크 결석 apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,시간은 시간보다는 커야하는 방법 DocType: Journal Entry Account,Exchange Rate,환율 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,판매 주문 {0} 제출되지 않았습니다. @@ -3085,7 +3092,7 @@ DocType: Item Group,Default Expense Account,기본 비용 계정 DocType: Employee,Notice (days),공지 사항 (일) DocType: Tax Rule,Sales Tax Template,판매 세 템플릿 DocType: Employee,Encashment Date,현금화 날짜 -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","바우처를 피해 유형은 구매 주문의 하나, 구매 송장 또는 분개해야합니다" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","바우처를 피해 유형은 구매 주문의 하나, 구매 송장 또는 분개해야합니다" DocType: Account,Stock Adjustment,재고 조정 apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},기본 활동 비용은 활동 유형에 대해 존재 - {0} DocType: Production Order,Planned Operating Cost,계획 운영 비용 @@ -3139,6 +3146,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,항목 오프 쓰기 DocType: BOM,Rate Of Materials Based On,자료에 의거 한 속도 apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,지원 Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,모두 선택 취소 apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},회사는 창고에없는 {0} DocType: POS Profile,Terms and Conditions,이용약관 apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},현재까지의 회계 연도 내에 있어야합니다.날짜에 가정 = {0} @@ -3160,7 +3168,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'",기본값으로이 회계 연도 설정하려면 '기본값으로 설정'을 클릭 apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),지원 전자 우편 ID의 설정받는 서버. (예를 들어 support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,부족 수량 -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,항목 변형 {0} 같은 속성을 가진 존재 +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,항목 변형 {0} 같은 속성을 가진 존재 DocType: Salary Slip,Salary Slip,급여 전표 apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,'마감일자'필요 DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","패키지가 제공하는 슬립 포장 생성합니다.패키지 번호, 패키지 내용과 그 무게를 통보하는 데 사용됩니다." @@ -3208,7 +3216,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,보기 DocType: Item Attribute Value,Attribute Value,속성 값 apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","이메일 ID가 고유해야합니다, 이미 존재 {0}" ,Itemwise Recommended Reorder Level,Itemwise는 재주문 수준에게 추천 -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,먼저 {0}를 선택하세요 +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,먼저 {0}를 선택하세요 DocType: Features Setup,To get Item Group in details table,자세한 내용은 테이블에 항목 그룹을 얻으려면 apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,항목의 일괄 {0} {1} 만료되었습니다. DocType: Sales Invoice,Commission,위원회 @@ -3263,7 +3271,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,뛰어난 쿠폰 받기 DocType: Warranty Claim,Resolved By,에 의해 해결 DocType: Appraisal,Start Date,시작 날짜 -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,기간 동안 잎을 할당합니다. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,기간 동안 잎을 할당합니다. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,수표와 예금 잘못 삭제 apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,확인하려면 여기를 클릭하십시오 apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,계정 {0} : 당신은 부모 계정 자체를 할당 할 수 없습니다 @@ -3283,7 +3291,7 @@ DocType: Employee,Educational Qualification,교육 자격 DocType: Workstation,Operating Costs,운영 비용 DocType: Employee Leave Approver,Employee Leave Approver,직원 허가 승인자 apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} 성공적으로 우리의 뉴스 레터 목록에 추가되었습니다. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},행 {0} : 재주문 항목이 이미이웨어 하우스 존재 {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},행 {0} : 재주문 항목이 이미이웨어 하우스 존재 {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","손실로 견적이되었습니다 때문에, 선언 할 수 없습니다." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,구매 마스터 관리자 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,생산 오더 {0} 제출해야합니다 @@ -3307,7 +3315,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,판매 송장 {0}이 (가) 이미 제출되었습니다 apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,완료일 DocType: Purchase Invoice Item,Amount (Company Currency),금액 (회사 통화) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,조직 단위 (현)의 마스터. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,조직 단위 (현)의 마스터. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,유효 모바일 NOS를 입력 해주십시오 DocType: Budget Detail,Budget Detail,예산 세부 정보 apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,전송하기 전에 메시지를 입력 해주세요 @@ -3323,13 +3331,13 @@ DocType: Purchase Receipt Item,Received and Accepted,접수 및 승인 ,Serial No Service Contract Expiry,일련 번호 서비스 계약 유효 DocType: Item,Unit of Measure Conversion,측정 단위 변환 apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,직원은 변경할 수 없다 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,당신은 신용과 같은 시간에 같은 계좌에서 금액을 인출 할 수 없습니다 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,당신은 신용과 같은 시간에 같은 계좌에서 금액을 인출 할 수 없습니다 DocType: Naming Series,Help HTML,도움말 HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},할당 된 총 weightage 100 %이어야한다.그것은 {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},수당에 {0} 항목에 대한 교차에 대한 {1} DocType: Address,Name of person or organization that this address belongs to.,이 주소가 속해있는 개인이나 조직의 이름입니다. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,공급 업체 -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,판매 주문이 이루어질으로 분실로 설정할 수 없습니다. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,판매 주문이 이루어질으로 분실로 설정할 수 없습니다. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,또 다른 급여 구조 {0} 직원에 대한 활성화 {1}.상태 '비활성'이 진행하시기 바랍니다. DocType: Purchase Invoice,Contact,연락처 apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,에서 수신 @@ -3339,11 +3347,11 @@ DocType: Item,Has Serial No,시리얼 No에게 있습니다 DocType: Employee,Date of Issue,발행일 apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}에서 {0}에 대한 {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},행 번호 {0} 항목에 대한 설정 공급 업체 {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,부품 {1}에 연결된 웹 사이트 콘텐츠 {0}를 찾을 수없는 +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,부품 {1}에 연결된 웹 사이트 콘텐츠 {0}를 찾을 수없는 DocType: Issue,Content Type,컨텐츠 유형 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,컴퓨터 DocType: Item,List this Item in multiple groups on the website.,웹 사이트에 여러 그룹에이 항목을 나열합니다. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,다른 통화와 계정을 허용하는 다중 통화 옵션을 확인하시기 바랍니다 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,다른 통화와 계정을 허용하는 다중 통화 옵션을 확인하시기 바랍니다 apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,상품 : {0} 시스템에 존재하지 않을 apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,당신은 고정 된 값을 설정할 수있는 권한이 없습니다 DocType: Payment Reconciliation,Get Unreconciled Entries,비 조정 항목을보세요 @@ -3353,14 +3361,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,그것은 DocType: Delivery Note,To Warehouse,창고 apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},계정 {0} 더 많은 회계 연도 번 이상 입력 한 {1} ,Average Commission Rate,평균위원회 평가 -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'시리얼 번호를 가지고'재고 항목에 대해 '예'일 수 없습니다 +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'시리얼 번호를 가지고'재고 항목에 대해 '예'일 수 없습니다 apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,출석은 미래의 날짜에 표시 할 수 없습니다 DocType: Pricing Rule,Pricing Rule Help,가격 규칙 도움말 DocType: Purchase Taxes and Charges,Account Head,계정 헤드 apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,상품의 도착 비용을 계산하기 위해 추가적인 비용을 업데이트 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,전기의 DocType: Stock Entry,Total Value Difference (Out - In),총 가치 차이 (아웃 -에서) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,행 {0} : 환율은 필수입니다 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,행 {0} : 환율은 필수입니다 apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},사용자 ID 직원에 대한 설정하지 {0} DocType: Stock Entry,Default Source Warehouse,기본 소스 창고 DocType: Item,Customer Code,고객 코드 @@ -3379,15 +3387,15 @@ DocType: Notification Control,Sales Invoice Message,판매 송장 메시지 apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,계정 {0}을 닫으면 형 책임 / 주식이어야합니다 DocType: Authorization Rule,Based On,에 근거 DocType: Sales Order Item,Ordered Qty,수량 주문 -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,항목 {0} 사용할 수 없습니다 +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,항목 {0} 사용할 수 없습니다 DocType: Stock Settings,Stock Frozen Upto,재고 동결 개까지 apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},에서와 기간 반복 필수 날짜로 기간 {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,프로젝트 활동 / 작업. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,급여 전표 생성 +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,급여 전표 생성 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}",해당 법령에가로 선택된 경우 구매 확인해야합니다 {0} apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,할인 100 미만이어야합니다 DocType: Purchase Invoice,Write Off Amount (Company Currency),금액을 상각 (회사 통화) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,행 번호 {0} : 재주문 수량을 설정하세요 +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,행 번호 {0} : 재주문 수량을 설정하세요 DocType: Landed Cost Voucher,Landed Cost Voucher,착륙 비용 바우처 apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},설정하십시오 {0} DocType: Purchase Invoice,Repeat on Day of Month,이달의 날 반복 @@ -3440,7 +3448,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,진행웨어 하우스의 기본 작업 apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,회계 거래의 기본 설정. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,예상 날짜 자료 요청 날짜 이전 할 수 없습니다 -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,항목 {0} 판매 품목이어야합니다 +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,항목 {0} 판매 품목이어야합니다 DocType: Naming Series,Update Series Number,업데이트 시리즈 번호 DocType: Account,Equity,공평 DocType: Sales Order,Printing Details,인쇄 세부 사항 @@ -3492,7 +3500,7 @@ DocType: Task,Review Date,검토 날짜 DocType: Purchase Invoice,Advance Payments,사전 지불 DocType: Purchase Taxes and Charges,On Net Total,인터넷 전체에 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,행의 목표웨어 하우스가 {0}과 동일해야합니다 생산 주문 -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,권한이 없습니다 지불 도구를 사용하지합니다 +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,권한이 없습니다 지불 도구를 사용하지합니다 apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,% s을 (를) 반복되는 지정되지 않은 '알림 이메일 주소' apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,환율이 다른 통화를 사용하여 항목을 한 후 변경할 수 없습니다 DocType: Company,Round Off Account,반올림 @@ -3515,7 +3523,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,원료의 부여 수량에서 재 포장 / 제조 후의 아이템의 수량 DocType: Payment Reconciliation,Receivable / Payable Account,채권 / 채무 계정 DocType: Delivery Note Item,Against Sales Order Item,판매 주문 항목에 대하여 -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},속성에 대한 속성 값을 지정하십시오 {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},속성에 대한 속성 값을 지정하십시오 {0} DocType: Item,Default Warehouse,기본 창고 DocType: Task,Actual End Date (via Time Logs),실제 종료 날짜 (시간 로그를 통해) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},예산은 그룹 계정에 할당 할 수 없습니다 {0} @@ -3540,10 +3548,10 @@ DocType: Lead,Blog Subscriber,블로그 구독자 apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,값을 기준으로 거래를 제한하는 규칙을 만듭니다. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","이 옵션을 선택하면 총 없음. 작업 일의 휴일을 포함하며,이 급여 당 일의 가치를 감소시킬 것이다" DocType: Purchase Invoice,Total Advance,전체 사전 -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,가공 급여 +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,가공 급여 DocType: Opportunity Item,Basic Rate,기본 요금 DocType: GL Entry,Credit Amount,신용 금액 -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,분실로 설정 +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,분실로 설정 apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,지불 영수증 참고 DocType: Supplier,Credit Days Based On,신용 일을 기준으로 DocType: Tax Rule,Tax Rule,세금 규칙 @@ -3573,7 +3581,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,허용 수량 apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0} : {1} 수행하지 존재 apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,고객에게 제기 지폐입니다. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,프로젝트 ID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},행 번호 {0} : 금액 경비 요청 {1}에 대해 금액을 보류보다 클 수 없습니다. 등록되지 않은 금액은 {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},행 번호 {0} : 금액 경비 요청 {1}에 대해 금액을 보류보다 클 수 없습니다. 등록되지 않은 금액은 {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} 가입자는 추가 DocType: Maintenance Schedule,Schedule,일정 DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""",이 코스트 센터에 대한 예산을 정의합니다. 예산 작업을 설정하려면 다음을 참조 "회사 목록" @@ -3634,19 +3642,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS 프로필 DocType: Payment Gateway Account,Payment URL Message,지불 URL 메시지 apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","설정 예산, 목표 등 계절성" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,행 {0} : 결제 금액 잔액보다 클 수 없습니다 +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,행 {0} : 결제 금액 잔액보다 클 수 없습니다 apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,무급 총 -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,소요시간 로그는 청구되지 않습니다 -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","{0} 항목 템플릿이며, 그 변종 중 하나를 선택하십시오" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,소요시간 로그는 청구되지 않습니다 +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","{0} 항목 템플릿이며, 그 변종 중 하나를 선택하십시오" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,구매자 apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,순 임금은 부정 할 수 없습니다 -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,수동에 대해 바우처를 입력하세요 +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,수동에 대해 바우처를 입력하세요 DocType: SMS Settings,Static Parameters,정적 매개 변수 DocType: Purchase Order,Advance Paid,사전 유료 DocType: Item,Item Tax,상품의 세금 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,공급 업체에 소재 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,소비세 송장 DocType: Expense Claim,Employees Email Id,직원 이드 이메일 +DocType: Employee Attendance Tool,Marked Attendance,표시된 출석 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,유동 부채 apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,상대에게 대량 SMS를 보내기 DocType: Purchase Taxes and Charges,Consider Tax or Charge for,세금이나 요금에 대한 고려 @@ -3669,7 +3678,7 @@ DocType: Item Attribute,Numeric Values,숫자 값 apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,로고 첨부 DocType: Customer,Commission Rate,위원회 평가 apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,변형을 확인 -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,부서에서 허가 응용 프로그램을 차단합니다. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,부서에서 허가 응용 프로그램을 차단합니다. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,바구니가 비어 있습니다 DocType: Production Order,Actual Operating Cost,실제 운영 비용 apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,루트는 편집 할 수 없습니다. @@ -3688,7 +3697,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,수량이 수준 이하로 떨어질 경우 자동으로 자료 요청을 만들 ,Item-wise Purchase Register,상품 현명한 구매 등록 DocType: Batch,Expiry Date,유효 기간 -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item",재주문 수준을 설정하려면 항목은 구매 상품 또는 제조 품목이어야합니다 +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item",재주문 수준을 설정하려면 항목은 구매 상품 또는 제조 품목이어야합니다 ,Supplier Addresses and Contacts,공급 업체 주소 및 연락처 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,첫 번째 범주를 선택하십시오 apps/erpnext/erpnext/config/projects.py +18,Project master.,프로젝트 마스터. diff --git a/erpnext/translations/lv.csv b/erpnext/translations/lv.csv index acf4cf1fe6..0693f15dc5 100644 --- a/erpnext/translations/lv.csv +++ b/erpnext/translations/lv.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,Kredītu uzņēmumā V DocType: Delivery Note,Installation Status,Instalācijas statuss apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Pieņemts + Noraidīts Daudz ir jābūt vienādam ar Saņemts daudzumu postenī {0} DocType: Item,Supply Raw Materials for Purchase,Piegādes izejvielas iegādei -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Postenis {0} jābūt iegāde punkts +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Postenis {0} jābūt iegāde punkts DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Lejupielādēt veidni, aizpildīt atbilstošus datus un pievienot modificētu failu. Visi datumi un darbinieku saspēles izvēlēto periodu nāks veidnē, ar esošajiem apmeklējuma reģistru" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,Postenis {0} nav aktīvs vai ir sasniegts nolietoto DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Atjauninās pēc pārdošanas rēķinu iesniegšanas. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Lai iekļautu nodokli rindā {0} vienības likmes, nodokļi rindās {1} ir jāiekļauj arī" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Iestatījumi HR moduļa +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Lai iekļautu nodokli rindā {0} vienības likmes, nodokļi rindās {1} ir jāiekļauj arī" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Iestatījumi HR moduļa DocType: SMS Center,SMS Center,SMS Center DocType: BOM Replace Tool,New BOM,Jaunais BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Partijas Time Baļķi uz rēķinu. @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,Izvēlieties Noteikumi un nosa DocType: Production Planning Tool,Sales Orders,Pārdošanas pasūtījumu DocType: Purchase Taxes and Charges,Valuation,Vērtējums ,Purchase Order Trends,Pirkuma pasūtījuma tendences -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Piešķirt lapas par gadu. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Piešķirt lapas par gadu. DocType: Earning Type,Earning Type,Nopelnot Type DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Atslēgt Capacity plānošana un laika uzskaites DocType: Bank Reconciliation,Bank Account,Bankas konts @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Postenis Website Specifikācija DocType: Payment Tool,Reference No,Atsauces Nr apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Atstājiet Bloķēts -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Postenis {0} ir sasniedzis beigas dzīves uz {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Postenis {0} ir sasniedzis beigas dzīves uz {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Gada DocType: Stock Reconciliation Item,Stock Reconciliation Item,Stock Samierināšanās postenis DocType: Stock Entry,Sales Invoice No,Pārdošanas rēķins Nr @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,Minimālais Order Daudz DocType: Pricing Rule,Supplier Type,Piegādātājs Type DocType: Item,Publish in Hub,Publicē Hub ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Postenis {0} ir atcelts +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Postenis {0} ir atcelts apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Materiāls Pieprasījums DocType: Bank Reconciliation,Update Clearance Date,Update Klīrenss Datums DocType: Item,Purchase Details,Pirkuma Details @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Noraidīts daudzums DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Lauks pieejams piegāde piezīmē, citāts, pārdošanas rēķinu, Sales Order" DocType: SMS Settings,SMS Sender Name,SMS Sūtītājs Vārds DocType: Contact,Is Primary Contact,Vai Primārā Contact +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Laiks Log ir batched par Norēķinu DocType: Notification Control,Notification Control,Paziņošana Control DocType: Lead,Suggestions,Ieteikumi DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,"Komplekta Grupa gudrs budžetu šajā teritorijā. Jūs varat arī sezonalitāti, iestatot Distribution." apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},"Ievadiet mātes kontu grupu, par noliktavu {0}" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Maksājumu pret {0} {1} nevar būt lielāks par izcilu Summu {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Maksājumu pret {0} {1} nevar būt lielāks par izcilu Summu {2} DocType: Supplier,Address HTML,Adrese HTML DocType: Lead,Mobile No.,Mobile No. DocType: Maintenance Schedule,Generate Schedule,Izveidot Kalendārs @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Sinhronizēts ar Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Nepareiza Parole DocType: Item,Variant Of,Variants -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,{0} postenis jābūt Service postenis apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',"Pabeigts Daudz nevar būt lielāks par ""Daudz, lai ražotu""" DocType: Period Closing Voucher,Closing Account Head,Noslēguma konta vadītājs DocType: Employee,External Work History,Ārējā Work Vēsture @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,Biļetens DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Paziņot pa e-pastu uz izveidojot automātisku Material pieprasījuma DocType: Journal Entry,Multi Currency,Multi Valūtas DocType: Payment Reconciliation Invoice,Invoice Type,Rēķins Type -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Piegāde Note +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Piegāde Note apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Iestatīšana Nodokļi apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,"Maksājums Entry ir modificēts pēc velk to. Lūdzu, velciet to vēlreiz." -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} ieraksta divreiz Vienības nodokli +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} ieraksta divreiz Vienības nodokli apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Kopsavilkums par šo nedēļu un izskatāmo darbību DocType: Workstation,Rent Cost,Rent izmaksas apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,"Lūdzu, izvēlieties mēnesi un gadu" @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,Derīgs valstīm DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Visus importa saistītās jomās, piemēram, valūtas maiņas kursa, importa kopapjoma importa grand kopējo utt ir pieejami pirkuma čeka, piegādātājs Citāts, pirkuma rēķina, pirkuma pasūtījuma uc" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"Šis postenis ir Template un nevar tikt izmantoti darījumos. Postenis atribūti tiks pārkopēti uz variantiem, ja ""Nē Copy"" ir iestatīts" apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Kopā Order Uzskata -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Darbinieku apzīmējums (piemēram, CEO, direktors uc)." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Darbinieku apzīmējums (piemēram, CEO, direktors uc)." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,"Ievadiet ""Atkārtot mēneša diena"" lauka vērtību" DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,"Ātrums, kādā Klients Valūtu pārvērsts klienta bāzes valūtā" DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Pieejams BOM, pavadzīme, pirkuma rēķina, ražošanas kārtību, pirkuma pasūtījuma, pirkuma čeka, pārdošanas rēķinu, pārdošanas rīkojumu, Fondu Entry, laika kontrolsaraksts" @@ -355,7 +355,7 @@ DocType: Workstation,Consumable Cost,Patērējamās izmaksas apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) ir jābūt lomu 'Leave apstiprinātājs' DocType: Purchase Receipt,Vehicle Date,Transportlīdzekļu Datums apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Medicīnisks -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Iemesls zaudēt +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Iemesls zaudēt apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},"Darbstacija ir slēgta šādos datumos, kā par Holiday saraksts: {0}" apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Iespējas DocType: Employee,Single,Viens @@ -383,14 +383,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Kanālu Partner DocType: Account,Old Parent,Old Parent DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,"Pielāgot ievada tekstu, kas iet kā daļu no šīs e-pastu. Katrs darījums ir atsevišķa ievada tekstu." +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Neietver simbolus (ex. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Sales Master vadītājs apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Globālie uzstādījumi visām ražošanas procesiem. DocType: Accounts Settings,Accounts Frozen Upto,Konti Frozen Līdz pat DocType: SMS Log,Sent On,Nosūtīts -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Prasme {0} izvēlēts vairākas reizes atribūtos tabulā +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Prasme {0} izvēlēts vairākas reizes atribūtos tabulā DocType: HR Settings,Employee record is created using selected field. ,"Darbinieku ieraksts tiek izveidota, izmantojot izvēlēto laukumu." DocType: Sales Order,Not Applicable,Nav piemērojams -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Holiday meistars. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Holiday meistars. DocType: Material Request Item,Required Date,Nepieciešamais Datums DocType: Delivery Note,Billing Address,Norēķinu adrese apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,Ievadiet Preces kods. @@ -426,7 +427,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,"Ievadiet noliktava, par kuru Materiāls Pieprasījums tiks izvirzīts" DocType: Production Order,Additional Operating Cost,Papildus ekspluatācijas izmaksas apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Kosmētika -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Apvienoties, šādi īpašībām jābūt vienādam abiem posteņiem" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Apvienoties, šādi īpašībām jābūt vienādam abiem posteņiem" DocType: Shipping Rule,Net Weight,Neto svars DocType: Employee,Emergency Phone,Avārijas Phone ,Serial No Warranty Expiry,Sērijas Nr Garantija derīguma @@ -481,17 +482,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Norēķini un piegāde statuss apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Atkārtojiet Klienti DocType: Leave Control Panel,Allocate,Piešķirt -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Sales Return +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Sales Return DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,"Izvēlieties klientu pasūtījumu, no kuriem vēlaties izveidot pasūtījumu." DocType: Item,Delivered by Supplier (Drop Ship),Pasludināts ar piegādātāja (Drop Ship) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Algu sastāvdaļas. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Algu sastāvdaļas. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Database potenciālo klientu. DocType: Authorization Rule,Customer or Item,Klients vai postenis apps/erpnext/erpnext/config/crm.py +17,Customer database.,Klientu datu bāzi. DocType: Quotation,Quotation To,Citāts Lai DocType: Lead,Middle Income,Middle Ienākumi apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Atvere (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Default mērvienība postenī {0} nevar mainīt tieši tāpēc, ka jums jau ir zināma darījuma (-us) ar citu UOM. Jums būs nepieciešams, lai izveidotu jaunu posteni, lai izmantotu citu Default UOM." +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Default mērvienība postenī {0} nevar mainīt tieši tāpēc, ka jums jau ir zināma darījuma (-us) ar citu UOM. Jums būs nepieciešams, lai izveidotu jaunu posteni, lai izmantotu citu Default UOM." apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Piešķirtā summa nevar būt negatīvs DocType: Purchase Order Item,Billed Amt,Billed Amt DocType: Warehouse,A logical Warehouse against which stock entries are made.,Loģisks Noliktava pret kuru noliktavas ierakstu veikšanas. @@ -510,14 +511,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Pārdošanas nodokļi un maksāju DocType: Employee,Organization Profile,Organizācija Profile apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,Lūdzu uzstādīšana numerācijas sēriju apmeklējums ar Setup> Numbering Series DocType: Employee,Reason for Resignation,Iemesls atkāpšanās no amata -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Šablons darbības novērtējumus. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Šablons darbības novērtējumus. DocType: Payment Reconciliation,Invoice/Journal Entry Details,Rēķins / Journal Entry Details apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' nav fiskālajā gadā {2} DocType: Buying Settings,Settings for Buying Module,Iestatījumi Buying modulis apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,Ievadiet pirkuma čeka pirmais DocType: Buying Settings,Supplier Naming By,Piegādātājs nosaukšana Līdz DocType: Activity Type,Default Costing Rate,Default Izmaksu Rate -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Uzturēšana grafiks +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Uzturēšana grafiks apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Tad Cenu Noteikumi tiek filtrētas, balstoties uz klientu, klientu grupā, teritorija, piegādātājs, piegādātāju veida, kampaņas, pārdošanas partneris uc" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Neto Izmaiņas sarakstā DocType: Employee,Passport Number,Pases numurs @@ -556,7 +557,7 @@ DocType: Purchase Invoice,Quarterly,Ceturkšņa DocType: Selling Settings,Delivery Note Required,Nepieciešamais Piegāde Note DocType: Sales Order Item,Basic Rate (Company Currency),Basic Rate (Company valūta) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush izejvielas Based On -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,Ievadiet Papildus informācija +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,Ievadiet Papildus informācija DocType: Purchase Receipt,Other Details,Cita informācija DocType: Account,Accounts,Konti apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Mārketings @@ -569,7 +570,7 @@ DocType: Employee,Provide email id registered in company,Nodrošināt e-pasta id DocType: Hub Settings,Seller City,Pārdevējs City DocType: Email Digest,Next email will be sent on:,Nākamais e-pastu tiks nosūtīts uz: DocType: Offer Letter Term,Offer Letter Term,Akcija vēstule termins -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Prece ir varianti. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Prece ir varianti. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,{0} prece nav atrasta DocType: Bin,Stock Value,Stock Value apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Tree Type @@ -577,7 +578,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Daudz Patērētā Vienības DocType: Serial No,Warranty Expiry Date,Garantijas Derīguma termiņš DocType: Material Request Item,Quantity and Warehouse,Daudzums un Noliktavas DocType: Sales Invoice,Commission Rate (%),Komisijas likme (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Pret kuponu Type jābūt vienam no pārdošanas rīkojumu, pārdošanas rēķinu vai Journal Entry" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Pret kuponu Type jābūt vienam no pārdošanas rīkojumu, pārdošanas rēķinu vai Journal Entry" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Aerospace DocType: Journal Entry,Credit Card Entry,Kredītkarte Entry apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Uzdevums Subject @@ -645,10 +646,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Atbildība apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Sodīt Summa nevar būt lielāka par prasības summas rindā {0}. DocType: Company,Default Cost of Goods Sold Account,Default pārdotās produkcijas ražošanas izmaksas konta -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Cenrādis nav izvēlēts +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Cenrādis nav izvēlēts DocType: Employee,Family Background,Ģimene Background DocType: Process Payroll,Send Email,Sūtīt e-pastu -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Brīdinājums: Invalid Pielikums {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Brīdinājums: Invalid Pielikums {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Nē Atļauja DocType: Company,Default Bank Account,Default bankas kontu apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Lai filtrētu pamatojoties uz partijas, izvēlieties Party Type pirmais" @@ -676,7 +677,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Atbal DocType: Features Setup,"To enable ""Point of Sale"" features",Lai aktivizētu "tirdzniecības vieta" funkcijas DocType: Bin,Moving Average Rate,Moving vidējā likme DocType: Production Planning Tool,Select Items,Izvēlieties preces -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} pret likumprojektu {1} datēts {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} pret likumprojektu {1} datēts {2} DocType: Maintenance Visit,Completion Status,Pabeigšana statuss DocType: Sales Invoice Item,Target Warehouse,Mērķa Noliktava DocType: Item,Allow over delivery or receipt upto this percent,Atļaut pār piegādi vai saņemšanu līdz pat šim procentiem @@ -736,7 +737,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Val apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Nevar atrast laika nišu nākamajos {0} dienas ekspluatācijai {1} DocType: Production Order,Plan material for sub-assemblies,Plāns materiāls mezgliem apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} jābūt aktīvam -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,"Lūdzu, izvēlieties dokumenta veidu pirmais" +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,"Lūdzu, izvēlieties dokumenta veidu pirmais" apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Goto Grozs apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Atcelt Materiāls Vizītes {0} pirms lauzt šo apkopes vizīte DocType: Salary Slip,Leave Encashment Amount,Atstājiet inkasācijas summu @@ -754,7 +755,7 @@ DocType: Purchase Receipt,Range,Diapazons DocType: Supplier,Default Payable Accounts,Noklusējuma samaksu konti apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Darbinieku {0} nav aktīvs vai neeksistē DocType: Features Setup,Item Barcode,Postenis Barcode -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Postenis Variants {0} atjaunināta +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Postenis Variants {0} atjaunināta DocType: Quality Inspection Reading,Reading 6,Lasīšana 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Pirkuma rēķins Advance DocType: Address,Shop,Veikals @@ -777,7 +778,7 @@ DocType: Salary Slip,Total in words,Kopā ar vārdiem DocType: Material Request Item,Lead Time Date,Izpildes laiks Datums apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,ir obligāta. Varbūt Valūtas ieraksts nav izveidots apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},"Row # {0}: Lūdzu, norādiet Sērijas Nr postenī {1}" -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Par "produkts saišķis" vienību, noliktavu, Serial Nr un partijas Nr tiks uzskatīta no "iepakojumu sarakstu" tabulā. Ja Noliktavu un partijas Nr ir vienādas visiem iepakojuma vienības par jebkuru "produkts saišķis" posteni, šīs vērtības var ievadīt galvenajā postenis tabulas vērtības tiks kopēts "iepakojumu sarakstu galda." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Par "produkts saišķis" vienību, noliktavu, Serial Nr un partijas Nr tiks uzskatīta no "iepakojumu sarakstu" tabulā. Ja Noliktavu un partijas Nr ir vienādas visiem iepakojuma vienības par jebkuru "produkts saišķis" posteni, šīs vērtības var ievadīt galvenajā postenis tabulas vērtības tiks kopēts "iepakojumu sarakstu galda." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Sūtījumiem uz klientiem. DocType: Purchase Invoice Item,Purchase Order Item,Pasūtījuma postenis apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Netieša Ienākumi @@ -798,6 +799,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Izvēlieties Algas gads u apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Iet uz atbilstošo grupā (parasti piemērošana fondu> apgrozāmo līdzekļu> bankas kontos un izveidot jaunu kontu (noklikšķinot uz Pievienot Child) tipa "Banka" DocType: Workstation,Electricity Cost,Elektroenerģijas izmaksas DocType: HR Settings,Don't send Employee Birthday Reminders,Nesūtiet darbinieku dzimšanas dienu atgādinājumus +,Employee Holiday Attendance,Darbinieku Holiday apmeklējums DocType: Opportunity,Walk In,Walk In apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Krājumu DocType: Item,Inspection Criteria,Pārbaudes kritēriji @@ -820,7 +822,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,A DocType: Journal Entry Account,Expense Claim,Izdevumu Pretenzija apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Daudz par {0} DocType: Leave Application,Leave Application,Atvaļinājuma pieteikums -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Atstājiet Allocation rīks +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Atstājiet Allocation rīks DocType: Leave Block List,Leave Block List Dates,Atstājiet Block List Datumi DocType: Company,If Monthly Budget Exceeded (for expense account),Ja Mēneša budžets pārsniedza (par izdevumu kontu) DocType: Workstation,Net Hour Rate,Neto stundu likme @@ -830,7 +832,7 @@ DocType: Packing Slip Item,Packing Slip Item,Iepakošanas Slip postenis DocType: POS Profile,Cash/Bank Account,Naudas / bankas kontu apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Noņemts preces bez izmaiņām daudzumā vai vērtībā. DocType: Delivery Note,Delivery To,Piegāde uz -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Atribūts tabula ir obligāta +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Atribūts tabula ir obligāta DocType: Production Planning Tool,Get Sales Orders,Saņemt klientu pasūtījumu apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} nevar būt negatīvs apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Atlaide @@ -894,7 +896,7 @@ DocType: SMS Center,Total Characters,Kopā rakstzīmes apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},"Lūdzu, izvēlieties BOM BOM jomā postenim {0}" DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-Form rēķinu Detail DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Maksājumu Samierināšanās rēķins -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Ieguldījums% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Ieguldījums% DocType: Item,website page link,vietnes lapa saite DocType: Company,Company registration numbers for your reference. Tax numbers etc.,Uzņēmuma reģistrācijas numuri jūsu atsauci. Nodokļu numurus uc DocType: Sales Partner,Distributor,Izplatītājs @@ -936,10 +938,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM Conversion Factor DocType: Stock Settings,Default Item Group,Default Prece Group apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Piegādātājs datu bāze. DocType: Account,Balance Sheet,Bilance -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',"Izmaksās Center postenī ar Preces kods """ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',"Izmaksās Center postenī ar Preces kods """ DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,"Jūsu pārdošanas persona saņems atgādinājumu par šo datumu, lai sazināties ar klientu" apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Turpmākas kontus var veikt saskaņā grupās, bet ierakstus var izdarīt pret nepilsoņu grupām" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Nodokļu un citu algas atskaitījumi. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Nodokļu un citu algas atskaitījumi. DocType: Lead,Lead,Potenciālie klienti DocType: Email Digest,Payables,Piegādātājiem un darbuzņēmējiem DocType: Account,Warehouse,Noliktava @@ -956,10 +958,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Unreconciled maksā DocType: Global Defaults,Current Fiscal Year,Kārtējā fiskālajā gadā DocType: Global Defaults,Disable Rounded Total,Atslēgt noapaļotiem Kopā DocType: Lead,Call,Izsaukums -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,"""Ieraksti"" nevar būt tukšs" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,"""Ieraksti"" nevar būt tukšs" apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Dublikāts rinda {0} ar pašu {1} ,Trial Balance,Trial Balance -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Iestatīšana Darbinieki +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Iestatīšana Darbinieki apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","Grid """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,"Lūdzu, izvēlieties kodu pirmais" apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Pētniecība @@ -968,7 +970,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,Lietotāja ID apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,View Ledger apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Senākās -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Prece Group pastāv ar tādu pašu nosaukumu, lūdzu mainīt rindas nosaukumu vai pārdēvēt objektu grupu" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Prece Group pastāv ar tādu pašu nosaukumu, lūdzu mainīt rindas nosaukumu vai pārdēvēt objektu grupu" DocType: Production Order,Manufacture against Sales Order,Izgatavojam pret pārdošanas rīkojumu apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Pārējā pasaule apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,{0} postenis nevar būt partijas @@ -993,7 +995,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Noraidīts Noliktava DocType: GL Entry,Against Voucher,Pret kuponu DocType: Item,Default Buying Cost Center,Default Pirkšana Izmaksu centrs apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Lai iegūtu labāko no ERPNext, mēs iesakām veikt kādu laiku, un skatīties šos palīdzības video." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,{0} postenis jābūt Pārdošanas punkts +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,{0} postenis jābūt Pārdošanas punkts apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,līdz DocType: Item,Lead Time in days,Izpildes laiks dienās ,Accounts Payable Summary,Kreditoru kopsavilkums @@ -1019,7 +1021,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Lauksaimniecība apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Savus produktus vai pakalpojumus DocType: Mode of Payment,Mode of Payment,Maksājuma veidu -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Website Image vajadzētu būt publiski failu vai tīmekļa URL +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Website Image vajadzētu būt publiski failu vai tīmekļa URL apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,Tas ir sakne posteni grupas un to nevar rediģēt. DocType: Journal Entry Account,Purchase Order,Pasūtījuma DocType: Warehouse,Warehouse Contact Info,Noliktava Kontaktinformācija @@ -1030,7 +1032,7 @@ DocType: Serial No,Serial No Details,Sērijas Nr Details DocType: Purchase Invoice Item,Item Tax Rate,Postenis Nodokļu likme apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","Par {0}, tikai kredīta kontus var saistīt pret citu debeta ierakstu" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Piegāde piezīme {0} nav iesniegta -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Postenis {0} jābūt Apakšuzņēmēju postenis +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Postenis {0} jābūt Apakšuzņēmēju postenis apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Kapitāla Ekipējums apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Cenu noteikums vispirms izvēlas, pamatojoties uz ""Apply On 'jomā, kas var būt punkts, punkts Koncerns vai Brand." DocType: Hub Settings,Seller Website,Pārdevējs Website @@ -1039,7 +1041,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Mērķis DocType: Sales Invoice Item,Edit Description,Edit Apraksts apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,"Paredzams, piegāde datums ir mazāks nekā plānotais sākuma datums." -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,Piegādātājam +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,Piegādātājam DocType: Account,Setting Account Type helps in selecting this Account in transactions.,"Iestatīšana konta veidu palīdz, izvēloties šo kontu darījumos." DocType: Purchase Invoice,Grand Total (Company Currency),Pavisam kopā (Company valūta) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Kopā Izejošais @@ -1091,7 +1093,6 @@ DocType: Authorization Rule,Average Discount,Vidēji Atlaide DocType: Address,Utilities,Utilities DocType: Purchase Invoice Item,Accounting,Grāmatvedība DocType: Features Setup,Features Setup,Features Setup -DocType: Item,Is Service Item,Vai Service postenis apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Pieteikumu iesniegšanas termiņš nevar būt ārpus atvaļinājuma piešķiršana periods DocType: Activity Cost,Projects,Projekti apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,"Lūdzu, izvēlieties saimnieciskais gads" @@ -1112,7 +1113,7 @@ DocType: Item,Maintain Stock,Uzturēt Noliktava apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Krājumu jau radīti Ražošanas Pasūtīt apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Neto izmaiņas pamatlīdzekļa DocType: Leave Control Panel,Leave blank if considered for all designations,"Atstāt tukšu, ja to uzskata par visiem apzīmējumiem" -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,"Lādiņš tips ""Faktiskais"" rindā {0} nevar iekļaut postenī Rate" +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,"Lādiņš tips ""Faktiskais"" rindā {0} nevar iekļaut postenī Rate" apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,No DATETIME DocType: Email Digest,For Company,Par Company @@ -1121,8 +1122,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Piegāde Adrese Nosaukums apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Kontu DocType: Material Request,Terms and Conditions Content,Noteikumi un nosacījumi saturs -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,nevar būt lielāks par 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Postenis {0} nav krājums punkts +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,nevar būt lielāks par 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Postenis {0} nav krājums punkts DocType: Maintenance Visit,Unscheduled,Neplānotā DocType: Employee,Owned,Pieder DocType: Salary Slip Deduction,Depends on Leave Without Pay,Atkarīgs Bezalgas atvaļinājums @@ -1143,7 +1144,7 @@ Used for Taxes and Charges",Nodokļu detaļa galda paņemti no postenis kapteiņ apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Darbinieks nevar ziņot sev. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Ja konts ir sasalusi, ieraksti ir atļauts ierobežotas lietotājiem." DocType: Email Digest,Bank Balance,Bankas bilance -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Grāmatvedības ieraksts par {0}: {1} var veikt tikai valūtā: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Grāmatvedības ieraksts par {0}: {1} var veikt tikai valūtā: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Nav aktīvas Algu struktūra atrasts darbiniekam {0} un mēneša DocType: Job Opening,"Job profile, qualifications required etc.","Darba profils, nepieciešams kvalifikācija uc" DocType: Journal Entry Account,Account Balance,Konta atlikuma @@ -1160,7 +1161,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Sub Kompleksi DocType: Shipping Rule Condition,To Value,Vērtēt DocType: Supplier,Stock Manager,Krājumu pārvaldnieks apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Source noliktava ir obligāta rindā {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Iepakošanas Slip +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Iepakošanas Slip apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Office Rent apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Setup SMS vārti iestatījumi apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Import neizdevās! @@ -1204,7 +1205,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM Detail Nr DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Papildu Atlaide Summa (Uzņēmējdarbības valūta) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Kļūda: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,"Lūdzu, izveidojiet jaunu kontu no kontu plāna." -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Uzturēšana Apmeklēt +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Uzturēšana Apmeklēt apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Klientu> Klientu Group> Teritorija DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Pieejams Partijas Daudz at Noliktava DocType: Time Log Batch Detail,Time Log Batch Detail,Time Log Partijas Detail @@ -1213,7 +1214,7 @@ DocType: Leave Block List,Block Holidays on important days.,Bloķēt Holidays pa ,Accounts Receivable Summary,Debitoru kopsavilkums apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,Lūdzu noteikt lietotāja ID lauku darbinieks ierakstā noteikt darbinieku lomu DocType: UOM,UOM Name,UOM Name -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Ieguldījums Summa +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Ieguldījums Summa DocType: Sales Invoice,Shipping Address,Piegādes adrese DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,"Šis rīks palīdz jums, lai atjauninātu vai noteikt daudzumu un novērtēšanu krājumu sistēmā. To parasti izmanto, lai sinhronizētu sistēmas vērtības un to, kas patiesībā pastāv jūsu noliktavās." DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,"Vārdos būs redzami, kad ietaupāt pavadzīmi." @@ -1254,7 +1255,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,"Izsekot objektus, izmantojot svītrkodu. Jums būs iespēja ievadīt objektus piegāde piezīmi un pārdošanas rēķinu, skenējot svītrkodu posteņa." apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Atkārtoti nosūtīt maksājumu E-pasts DocType: Dependent Task,Dependent Task,Atkarīgs Task -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Konversijas faktors noklusējuma mērvienība ir 1 kārtas {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Konversijas faktors noklusējuma mērvienība ir 1 kārtas {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Atvaļinājums tipa {0} nevar būt ilgāks par {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Mēģiniet plānojot operācijas X dienas iepriekš. DocType: HR Settings,Stop Birthday Reminders,Stop Birthday atgādinājumi @@ -1264,7 +1265,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} View apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Neto izmaiņas naudas DocType: Salary Structure Deduction,Salary Structure Deduction,Algu struktūra atskaitīšana -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Mērvienība {0} ir ievadīts vairāk nekā vienu reizi Conversion Factor tabulā +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Mērvienība {0} ir ievadīts vairāk nekā vienu reizi Conversion Factor tabulā apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Maksājuma pieprasījums jau eksistē {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Izmaksas Izdoti preces apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Daudzums nedrīkst būt lielāks par {0} @@ -1293,7 +1294,7 @@ DocType: BOM Item,BOM Item,BOM postenis DocType: Appraisal,For Employee,Vajadzīgi apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Row {0}: Advance pret Piegādātāju ir norakstīt DocType: Company,Default Values,Noklusējuma vērtības -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Rinda {0}: Maksājuma summa nevar būt negatīvs +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Rinda {0}: Maksājuma summa nevar būt negatīvs DocType: Expense Claim,Total Amount Reimbursed,Atmaksāto līdzekļu kopsummas apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Pret Piegādātāju rēķinu {0} datēts {1} DocType: Customer,Default Price List,Default Cenrādis @@ -1321,8 +1322,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Gar DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Aizstāt īpašu BOM visos citos BOMs kur tas tiek lietots. Tas aizstās veco BOM saiti, atjaunināt izmaksas un reģenerēt ""BOM Explosion Vienība"" galda, kā par jaunu BOM" DocType: Shopping Cart Settings,Enable Shopping Cart,Ieslēgt Grozs DocType: Employee,Permanent Address,Pastāvīga adrese -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Postenis {0} jābūt Service punkts. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Izmaksāto avansu pret {0} {1} nevar būt lielāks \ nekā Kopsumma {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Lūdzu izvēlieties kodu DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Samazināt atvieglojumus par Bezalgas atvaļinājums (LWP) @@ -1378,12 +1378,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Galvenais apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Variants DocType: Naming Series,Set prefix for numbering series on your transactions,Uzstādīt tituls numerāciju sērijas par jūsu darījumiem +DocType: Employee Attendance Tool,Employees HTML,darbinieki HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Apturēts rīkojumu nevar atcelt. Unstop lai atceltu. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Default BOM ({0}) ir jābūt aktīvam par šo priekšmetu vai tās veidni +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Default BOM ({0}) ir jābūt aktīvam par šo priekšmetu vai tās veidni DocType: Employee,Leave Encashed?,Atvaļinājums inkasēta? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Iespēja No jomā ir obligāta DocType: Item,Variants,Varianti -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Padarīt pirkuma pasūtījuma +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Padarīt pirkuma pasūtījuma DocType: SMS Center,Send To,Sūtīt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Nav pietiekami daudz atvaļinājums bilance Atstāt tipa {0} DocType: Payment Reconciliation Payment,Allocated amount,Piešķirtā summa @@ -1483,7 +1484,7 @@ DocType: Sales Person,Name and Employee ID,Nosaukums un darbinieku ID apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,Due Date nevar būt pirms nosūtīšanas datums DocType: Website Item Group,Website Item Group,Mājas lapa Prece Group apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Nodevas un nodokļi -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,Ievadiet Atsauces datums +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,Ievadiet Atsauces datums apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Maksājumu Gateway konts nav konfigurēts apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} maksājumu ierakstus nevar filtrēt pēc {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,"Tabula postenī, kas tiks parādīts Web Site" @@ -1504,7 +1505,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Izšķirtspēja Details DocType: Quality Inspection Reading,Acceptance Criteria,Pieņemšanas kritēriji DocType: Item Attribute,Attribute Name,Atribūta nosaukums -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Postenis {0} ir pārdošanas vai pakalpojumu prece {1} DocType: Item Group,Show In Website,Show In Website apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Grupa DocType: Task,Expected Time (in hours),Sagaidāmais laiks (stundās) @@ -1536,7 +1536,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Piegāde Summa ,Pending Amount,Kamēr Summa DocType: Purchase Invoice Item,Conversion Factor,Conversion Factor DocType: Purchase Order,Delivered,Pasludināts -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Setup ienākošā servera darba vietas e-pasta id. (Piem jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Setup ienākošā servera darba vietas e-pasta id. (Piem jobs@example.com) DocType: Purchase Receipt,Vehicle Number,Transportlīdzekļu skaits DocType: Purchase Invoice,The date on which recurring invoice will be stop,"Datums, kurā atkārtojas rēķins tiks apstāties" apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Kopā piešķirtie lapas {0} nevar būt mazāka par jau apstiprināto lapām {1} par periodu @@ -1553,7 +1553,7 @@ DocType: HR Settings,HR Settings,HR iestatījumi apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Izdevumu Prasība tiek gaidīts apstiprinājums. Tikai Izdevumu apstiprinātājs var atjaunināt statusu. DocType: Purchase Invoice,Additional Discount Amount,Papildus Atlaides summa DocType: Leave Block List Allow,Leave Block List Allow,Atstājiet Block Latviešu Atļaut -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abbr nevar būt tukšs vai telpa +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abbr nevar būt tukšs vai telpa apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Group Non-Group apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Sporta apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Kopā Faktiskais @@ -1577,7 +1577,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},UOM pārrēķināšanas koeficients ir nepieciešams rindā {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Klīrenss datums nevar būt pirms reģistrācijas datuma pēc kārtas {0} DocType: Salary Slip,Deduction,Atskaitīšana -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Prece Cena pievienots {0} Cenrādī {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Prece Cena pievienots {0} Cenrādī {1} DocType: Address Template,Address Template,Adrese Template apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,Ievadiet Darbinieku Id šīs pārdošanas persona DocType: Territory,Classification of Customers by region,Klasifikācija klientiem pa reģioniem @@ -1594,7 +1594,7 @@ DocType: Employee,Date of Birth,Dzimšanas datums apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Postenis {0} jau ir atgriezies DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** Saimnieciskais gads ** pārstāv finanšu gads. Visus grāmatvedības ierakstus un citi lielākie darījumi kāpurķēžu pret ** fiskālā gada **. DocType: Opportunity,Customer / Lead Address,Klients / Lead adrese -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Brīdinājums: Invalid SSL sertifikātu par arestu {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Brīdinājums: Invalid SSL sertifikātu par arestu {0} DocType: Production Order Operation,Actual Operation Time,Faktiskais Darbības laiks DocType: Authorization Rule,Applicable To (User),Piemērojamais Lai (lietotājs) DocType: Purchase Taxes and Charges,Deduct,Atskaitīt @@ -1611,7 +1611,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Split Piegāde piezīme paketēs. apps/erpnext/erpnext/hooks.py +69,Shipments,Sūtījumi DocType: Purchase Order Item,To be delivered to customer,Jāpiegādā klientam -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Laiks Log Status jāiesniedz. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Laiks Log Status jāiesniedz. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,Sērijas Nr {0} nepieder nevienai noliktavā apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Row # DocType: Purchase Invoice,In Words (Company Currency),Vārdos (Company valūta) @@ -1628,7 +1628,7 @@ DocType: Leave Application,Total Leave Days,Kopā atvaļinājuma dienām DocType: Email Digest,Note: Email will not be sent to disabled users,Piezīme: e-pasts netiks nosūtīts invalīdiem apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Izvēlieties Company ... DocType: Leave Control Panel,Leave blank if considered for all departments,"Atstāt tukšu, ja to uzskata par visu departamentu" -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Nodarbinātības veidi (pastāvīgs, līgums, intern uc)." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Nodarbinātības veidi (pastāvīgs, līgums, intern uc)." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} ir obligāta postenī {1} DocType: Currency Exchange,From Currency,No Valūta apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Lūdzu, izvēlieties piešķirtā summa, rēķina veidu un rēķina numura atleast vienā rindā" @@ -1647,7 +1647,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,In process DocType: Authorization Rule,Itemwise Discount,Itemwise Atlaide DocType: Purchase Order Item,Reference Document Type,Atsauces dokuments Type -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} pret pārdošanas ordeņa {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} pret pārdošanas ordeņa {1} DocType: Account,Fixed Asset,Pamatlīdzeklis apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Serializēja inventarizācija DocType: Activity Type,Default Billing Rate,Default Norēķinu Rate @@ -1657,7 +1657,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Sales Order to Apmaksa DocType: Expense Claim Detail,Expense Claim Detail,Izdevumu Pretenzija Detail apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Laiks Baļķi izveidots: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,"Lūdzu, izvēlieties pareizo kontu" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,"Lūdzu, izvēlieties pareizo kontu" DocType: Item,Weight UOM,Svars UOM DocType: Employee,Blood Group,Asins Group DocType: Purchase Invoice Item,Page Break,Page Break @@ -1692,7 +1692,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM rekursijas: {0} nevar būt vecāks vai bērns {2} DocType: Production Order Operation,Completed Qty,Pabeigts Daudz apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","Par {0}, tikai debeta kontus var saistīt pret citu kredīta ierakstu" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Cenrādis {0} ir invalīds +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Cenrādis {0} ir invalīds DocType: Manufacturing Settings,Allow Overtime,Atļaut Virsstundas apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,"{0} kārtas numurus, kas nepieciešami postenī {1}. Jums ir sniegušas {2}." DocType: Stock Reconciliation Item,Current Valuation Rate,Pašreizējais Vērtēšanas Rate @@ -1743,7 +1743,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Poz apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Case No. nevar būt 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,"Ja jums ir pārdošanas komandas un Sale Partneri (kanāla partneri), tās var iezīmētas un saglabāt savu ieguldījumu pārdošanas aktivitātes" DocType: Item,Show a slideshow at the top of the page,Parādiet slaidrādi augšpusē lapas -DocType: Item,"Allow in Sales Order of type ""Service""",Atļaut pārdošanas rīkojumu tipa "Service" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Veikali DocType: Time Log,Projects Manager,Projektu vadītāja DocType: Serial No,Delivery Time,Piegādes laiks @@ -1758,6 +1757,7 @@ DocType: Rename Tool,Rename Tool,Pārdēvēt rīks apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Update izmaksas DocType: Item Reorder,Item Reorder,Postenis Pārkārtot apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Transfer Materiāls +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Prece {0} ir jābūt Sales Ir {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Norādiet operācijas, ekspluatācijas izmaksas un sniegt unikālu ekspluatācijā ne jūsu darbībām." DocType: Purchase Invoice,Price List Currency,Cenrādis Currency DocType: Naming Series,User must always select,Lietotājam ir vienmēr izvēlēties @@ -1778,7 +1778,7 @@ DocType: Appraisal,Employee,Darbinieks apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Importēt e-pastu no apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Uzaicināt kā lietotājs DocType: Features Setup,After Sale Installations,Pēc Pārdod Iekārtas -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0}{1} ir pilnībā jāmaksā +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0}{1} ir pilnībā jāmaksā DocType: Workstation Working Hour,End Time,Beigu laiks apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Standarta līguma noteikumi par pārdošanu vai pirkšanu. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Grupa ar kuponu @@ -1804,7 +1804,7 @@ DocType: Upload Attendance,Attendance To Date,Apmeklējumu Lai datums apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Setup ienākošā servera pārdošanas e-pasta id. (Piem sales@example.com) DocType: Warranty Claim,Raised By,Paaugstināts Līdz DocType: Payment Gateway Account,Payment Account,Maksājumu konts -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,"Lūdzu, norādiet Company, lai turpinātu" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,"Lūdzu, norādiet Company, lai turpinātu" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Neto izmaiņas debitoru apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Kompensējošs Off DocType: Quality Inspection Reading,Accepted,Pieņemts @@ -1816,14 +1816,14 @@ DocType: Shipping Rule,Shipping Rule Label,Piegāde noteikums Label apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Izejvielas nevar būt tukšs. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Nevarēja atjaunināt sastāvu, rēķins ir piliens kuģniecības objektu." DocType: Newsletter,Test,Pārbaude -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Tā kā ir esošās akciju darījumi par šo priekšmetu, \ jūs nevarat mainīt vērtības "Has Sērijas nē", "Vai partijas Nē", "Vai Stock Vienība" un "vērtēšanas metode"" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Quick Journal Entry apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,"Jūs nevarat mainīt likmi, ja BOM minēja agianst jebkuru posteni" DocType: Employee,Previous Work Experience,Iepriekšējā darba pieredze DocType: Stock Entry,For Quantity,Par Daudzums apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},Ievadiet Plānotais Daudzums postenī {0} pēc kārtas {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0}{1} nav iesniegta +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0}{1} nav iesniegta apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Lūgumus par. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Atsevišķa produkcija pasūtījums tiks izveidots katrā gatavā labu posteni. DocType: Purchase Invoice,Terms and Conditions1,Noteikumi un Conditions1 @@ -1848,6 +1848,7 @@ DocType: Notification Control,Expense Claim Approved Message,Izdevumu Pretenzija DocType: Email Digest,How frequently?,Cik bieži? DocType: Purchase Receipt,Get Current Stock,Saņemt krājumam apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Tree of Bill Materiālu +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Mark Present apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Uzturēšana sākuma datums nevar būt pirms piegādes datuma Serial Nr {0} DocType: Production Order,Actual End Date,Faktiskais beigu datums DocType: Authorization Rule,Applicable To (Role),Piemērojamais Lai (loma) @@ -1862,7 +1863,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Līguma beigu datums ir jābūt lielākam nekā datums savienošana DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,"Trešā persona izplatītājs / tirgotājs / komisijas pārstāvis / filiāli / izplatītāja, kurš pārdod uzņēmumiem produktus komisija." DocType: Customer Group,Has Child Node,Ir Bērnu Mezgls -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} pret Pirkuma pasūtījums {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} pret Pirkuma pasūtījums {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Ievadiet statiskās url parametrus šeit (Piem. Sūtītājs = ERPNext, lietotājvārds = ERPNext, parole = 1234 uc)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,"{0} {1} nekādā aktīvā fiskālajā gadā. Lai saņemtu sīkāku informāciju, pārbaudiet {2}." apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Šis ir piemērs mājas lapā automātiski ģenerēts no ERPNext @@ -1890,7 +1891,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Add or Deduct: Whether you want to add or deduct the tax.","Standarts nodokļu veidni, ko var attiecināt uz visiem pirkuma darījumiem. Šī veidne var saturēt sarakstu nodokļu galvas un arī citu izdevumu vadītāji, piemēram, ""Shipping"", ""apdrošināšanu"", ""Handling"" uc #### Piezīme nodokļa likmi jūs definētu šeit būs standarta nodokļa likme visiem ** preces * *. Ja ir ** Preces **, kas ir atšķirīgas cenas, tie ir jāiekļauj tajā ** Vienības nodokli ** tabulu ** Vienības ** meistars. #### Apraksts kolonnas 1. Aprēķins tips: - Tas var būt ** Neto Kopā ** (tas ir no pamatsummas summa). - ** On iepriekšējā rindā Total / Summa ** (kumulatīvais nodokļiem un nodevām). Ja izvēlaties šo opciju, nodoklis tiks piemērots kā procentus no iepriekšējās rindas (jo nodokļa tabulas) summu vai kopā. - ** Faktiskais ** (kā minēts). 2. Konta vadītājs: Account grāmata, saskaņā ar kuru šis nodoklis tiks rezervēts 3. Izmaksu Center: Ja nodoklis / maksa ir ienākumi (piemēram, kuģošanas) vai izdevumu tai jārezervē pret izmaksām centra. 4. Apraksts: apraksts nodokļa (kas tiks drukāts faktūrrēķinu / pēdiņām). 5. Rate: Nodokļa likme. 6. Summa: nodokļu summa. 7. Kopējais: kumulatīvais kopējais šo punktu. 8. Ievadiet rinda: ja, pamatojoties uz ""Iepriekšējā Row Total"", jūs varat izvēlēties rindas numuru, kas tiks ņemta par pamatu šim aprēķinam (noklusējums ir iepriekšējā rinda). 9. uzskata nodokļu vai maksājumu par: Šajā sadaļā jūs varat norādīt, vai nodoklis / maksa ir tikai novērtēšanas (nevis daļa no kopējā apjoma), vai tikai kopā (nepievieno vērtību vienība), vai abiem. 10. Pievienot vai atņem: Vai jūs vēlaties, lai pievienotu vai atskaitīt nodokli." DocType: Purchase Receipt Item,Recd Quantity,Recd daudzums apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Nevar ražot vairāk Vienību {0} nekā Pasūtījumu daudzums {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Stock Entry {0} nav iesniegts +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Stock Entry {0} nav iesniegts DocType: Payment Reconciliation,Bank / Cash Account,Bankas / Naudas konts DocType: Tax Rule,Billing City,Norēķinu City DocType: Global Defaults,Hide Currency Symbol,Slēpt valūtas simbols @@ -1916,7 +1917,7 @@ DocType: Salary Structure,Total Earning,Kopā krāšana DocType: Purchase Receipt,Time at which materials were received,"Laiks, kurā materiāli tika saņemti" apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Mani adreses DocType: Stock Ledger Entry,Outgoing Rate,Izejošais Rate -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Organizācija filiāle meistars. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Organizācija filiāle meistars. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,vai DocType: Sales Order,Billing Status,Norēķinu statuss apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Utility Izdevumi @@ -1954,7 +1955,7 @@ DocType: Bin,Reserved Quantity,Rezervēts daudzums DocType: Landed Cost Voucher,Purchase Receipt Items,Pirkuma čeka Items apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Pielāgošana Veidlapas DocType: Account,Income Account,Ienākumu konta -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Nodošana +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Nodošana DocType: Stock Reconciliation Item,Current Qty,Pašreizējais Daudz DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section","Skatīt ""Rate Materiālu Balstoties uz"" in tāmēšanu iedaļā" DocType: Appraisal Goal,Key Responsibility Area,Key Atbildība Platība @@ -1966,8 +1967,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,Kup DocType: Notification Control,Purchase Order Message,Pasūtījuma Ziņa DocType: Tax Rule,Shipping Country,Piegāde Country DocType: Upload Attendance,Upload HTML,Augšupielāde HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","Kopā avanss ({0}) pret rīkojuma {1}, nevar būt lielāks \ nekā Grand Kopā ({2})" DocType: Employee,Relieving Date,Atbrīvojot Datums apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Cenu noteikums ir, lai pārrakstītu Cenrādī / noteikt diskonta procentus, pamatojoties uz dažiem kritērijiem." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Noliktavu var mainīt tikai ar Fondu Entry / Piegāde Note / pirkuma čeka @@ -1977,8 +1976,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Ienā apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Ja izvēlētais Cenu noteikums ir paredzēts ""cena"", tas pārrakstīs cenrādi. Cenu noteikums cena ir galīgā cena, tāpēc vairs atlaide jāpiemēro. Tādējādi, darījumos, piemēram, pārdošanas rīkojumu, pirkuma pasūtījuma utt, tas tiks atnesa 'ātrums' laukā, nevis ""Cenu saraksts likmes"" laukā." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Track noved līdz Rūpniecības Type. DocType: Item Supplier,Item Supplier,Postenis piegādātājs -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,"Ievadiet posteņu kodu, lai iegūtu partiju nē" -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},"Lūdzu, izvēlieties vērtību {0} quotation_to {1}" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,"Ievadiet posteņu kodu, lai iegūtu partiju nē" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},"Lūdzu, izvēlieties vērtību {0} quotation_to {1}" apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Visas adreses. DocType: Company,Stock Settings,Akciju iestatījumi apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Apvienošana ir iespējama tikai tad, ja šādas īpašības ir vienādas abos ierakstos. Vai Group, Root Type, Uzņēmuma" @@ -2001,7 +2000,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Čeku skaits DocType: Payment Tool Detail,Payment Tool Detail,Maksājumu Tool Detail ,Sales Browser,Sales Browser DocType: Journal Entry,Total Credit,Kopā Credit -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Brīdinājums: Vēl {0} # {1} eksistē pret akciju stāšanās {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Brīdinājums: Vēl {0} # {1} eksistē pret akciju stāšanās {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Vietējs apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Aizdevumi un avansi (Aktīvi) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Debitori @@ -2021,8 +2020,8 @@ DocType: Price List,Price List Master,Cenrādis Master DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,"Visi pārdošanas darījumi var tagged pret vairāku ** pārdevēji **, lai jūs varat noteikt un kontrolēt mērķus." ,S.O. No.,SO No. DocType: Production Order Operation,Make Time Log,Padarīt Time Ieiet -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Lūdzu noteikt pasūtīšanas daudzumu -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},"Lūdzu, izveidojiet Klientam no Svins {0}" +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Lūdzu noteikt pasūtīšanas daudzumu +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},"Lūdzu, izveidojiet Klientam no Svins {0}" DocType: Price List,Applicable for Countries,Piemērojams valstīs apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Datori apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,"Tas ir sakne klientu grupai, un to nevar rediģēt." @@ -2058,7 +2057,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Norē DocType: Payment Reconciliation Invoice,Outstanding Amount,Izcila Summa DocType: Project Task,Working,Darba DocType: Stock Ledger Entry,Stock Queue (FIFO),Stock Rinda (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,"Lūdzu, izvēlieties Time Žurnāli." +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,"Lūdzu, izvēlieties Time Žurnāli." apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} nepieder Sabiedrībai {1} DocType: Account,Round Off,Noapaļot ,Requested Qty,Pieprasīts Daudz @@ -2096,7 +2095,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Saņemt attiecīgus ierakstus apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Grāmatvedības Entry par noliktavā DocType: Sales Invoice,Sales Team1,Sales team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Postenis {0} nepastāv +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Postenis {0} nepastāv DocType: Sales Invoice,Customer Address,Klientu adrese DocType: Payment Request,Recipient and Message,Saņēmējs un Message DocType: Purchase Invoice,Apply Additional Discount On,Piesakies Papildu atlaide @@ -2115,7 +2114,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Mute Email apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Pārtika, dzērieni un tabakas" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL vai BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Var tikai veikt maksājumus pret unbilled {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Var tikai veikt maksājumus pret unbilled {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Komisijas likme nevar būt lielāka par 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Minimālā Inventāra līmenis DocType: Stock Entry,Subcontract,Apakšlīgumu @@ -2133,9 +2132,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Software apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Krāsa DocType: Maintenance Visit,Scheduled,Plānotais apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Lūdzu, izvēlieties elements, "Vai Stock Vienība" ir "nē" un "Vai Pārdošanas punkts" ir "jā", un nav cita Product Bundle" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Kopā avanss ({0}) pret rīkojuma {1} nevar būt lielāks par kopsummā ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Izvēlieties Mēneša Distribution nevienmērīgi izplatīt mērķus visā mēnešiem. DocType: Purchase Invoice Item,Valuation Rate,Vērtēšanas Rate -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Cenrādis Valūtu nav izvēlēta +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Cenrādis Valūtu nav izvēlēta apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,"Postenis Row {0}: pirkuma čeka {1} neeksistē virs ""pirkumu čekus"" galda" apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Darbinieku {0} jau ir pieprasījis {1} no {2} un {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Projekta sākuma datums @@ -2147,6 +2147,7 @@ DocType: Quality Inspection,Inspection Type,Inspekcija Type apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},"Lūdzu, izvēlieties {0}" DocType: C-Form,C-Form No,C-Form Nr DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,Nemarķēta apmeklējums apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Pētnieks apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,"Lūdzu, saglabājiet Izdevumu pirms nosūtīšanas" apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Vārds vai e-pasts ir obligāta @@ -2172,7 +2173,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Apstipr DocType: Payment Gateway,Gateway,Vārti apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Piegādātājs> Piegādātājs Type apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Ievadiet atbrīvojot datumu. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,"Tikai ar statusu ""Apstiprināts"" var iesniegt Atvaļinājuma pieteikumu" apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Adrese sadaļa ir obligāta. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,"Ievadiet nosaukumu, kampaņas, ja avots izmeklēšanas ir kampaņa" @@ -2187,10 +2188,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Pieņemts Noliktava DocType: Bank Reconciliation Detail,Posting Date,Norīkošanu Datums DocType: Item,Valuation Method,Vērtēšanas metode apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Nevar atrast valūtas kursu {0} uz {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Mark Half Day DocType: Sales Invoice,Sales Team,Sales Team apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Dublikāts ieraksts DocType: Serial No,Under Warranty,Zem Garantija -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Kļūda] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Kļūda] DocType: Sales Order,In Words will be visible once you save the Sales Order.,"Vārdos būs redzams pēc tam, kad esat saglabāt klientu pasūtījumu." ,Employee Birthday,Darbinieku Birthday apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Venture Capital @@ -2213,6 +2215,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,"Izmaksas Center ar esošajiem darījumiem, nevar pārvērst par grupai" DocType: Account,Depreciation,Nolietojums apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Piegādātājs (-i) +DocType: Employee Attendance Tool,Employee Attendance Tool,Darbinieku apmeklējums Tool DocType: Supplier,Credit Limit,Kredītlimita apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Izvēlēties veidu darījumu DocType: GL Entry,Voucher No,Kuponu Nr @@ -2239,7 +2242,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Root konts nevar izdzēst ,Is Primary Address,Vai Primārā adrese DocType: Production Order,Work-in-Progress Warehouse,Work-in-Progress noliktavā -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Atsauce # {0} datēts {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Atsauce # {0} datēts {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Pārvaldīt adreses DocType: Pricing Rule,Item Code,Postenis Code DocType: Production Planning Tool,Create Production Orders,Izveidot pasūtījumu @@ -2266,7 +2269,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Banku samierināšanās apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Saņemt atjauninājumus apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Materiāls Pieprasījums {0} ir atcelts vai pārtraukta apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Pievieno dažas izlases ierakstus -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Atstājiet Management +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Atstājiet Management apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Grupa ar kontu DocType: Sales Order,Fully Delivered,Pilnībā Pasludināts DocType: Lead,Lower Income,Lower Ienākumi @@ -2281,6 +2284,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"""No Datuma 'jābūt pēc"" Uz Datumu'" ,Stock Projected Qty,Stock Plānotais Daudzums apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Klientu {0} nepieder projekta {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Ievērojama Apmeklējumu HTML DocType: Sales Order,Customer's Purchase Order,Klienta Pasūtījuma DocType: Warranty Claim,From Company,No Company apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Vērtība vai Daudz @@ -2345,6 +2349,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Wire Transfer apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,"Lūdzu, izvēlieties bankas kontu" DocType: Newsletter,Create and Send Newsletters,Izveidot un nosūtīt jaunumus +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Pārbaudi visu DocType: Sales Order,Recurring Order,Atkārtojas rīkojums DocType: Company,Default Income Account,Default Ienākumu konta apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Klientu Group / Klientu @@ -2376,6 +2381,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Atgriezties Pret pirku DocType: Item,Warranty Period (in days),Garantijas periods (dienās) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Neto naudas no operāciju apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,"piemēram, PVN" +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Mark Darbinieku apmeklējums masas apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,4. punkts DocType: Journal Entry Account,Journal Entry Account,Journal Entry konts DocType: Shopping Cart Settings,Quotation Series,Citāts Series @@ -2520,14 +2526,14 @@ DocType: Task,Actual Start Date (via Time Logs),Faktiskā Sākuma datums (via Ti DocType: Stock Reconciliation Item,Before reconciliation,Pirms samierināšanās apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Uz {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Nodokļi un maksājumi Pievienoja (Company valūta) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,"Postenis Nodokļu Row {0} ir jābūt vērā tipa nodokli vai ienākumu vai izdevumu, vai jāmaksā" +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,"Postenis Nodokļu Row {0} ir jābūt vērā tipa nodokli vai ienākumu vai izdevumu, vai jāmaksā" DocType: Sales Order,Partly Billed,Daļēji Jāmaksā DocType: Item,Default BOM,Default BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,"Lūdzu, atkārtoti tipa uzņēmuma nosaukums, lai apstiprinātu" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Kopā Izcila Amt DocType: Time Log Batch,Total Hours,Kopējais stundu skaits DocType: Journal Entry,Printing Settings,Drukāšanas iestatījumi -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Kopējais debets jābūt vienādam ar kopējās kredīta. Atšķirība ir {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Kopējais debets jābūt vienādam ar kopējās kredīta. Atšķirība ir {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Automobiļu apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,No piegāde piezīme DocType: Time Log,From Time,No Time @@ -2573,7 +2579,7 @@ DocType: Purchase Invoice Item,Image View,Image View DocType: Issue,Opening Time,Atvēršanas laiks apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,No un uz datumiem nepieciešamo apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Vērtspapīru un preču biržu -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Default mērvienība Variant '{0}' jābūt tāds pats kā Template '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Default mērvienība Variant '{0}' jābūt tāds pats kā Template '{1}' DocType: Shipping Rule,Calculate Based On,"Aprēķināt, pamatojoties uz" DocType: Delivery Note Item,From Warehouse,No Noliktava DocType: Purchase Taxes and Charges,Valuation and Total,Vērtēšana un Total @@ -2595,7 +2601,7 @@ DocType: Leave Application,Follow via Email,Sekot pa e-pastu DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Nodokļu summa pēc Atlaide Summa apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Bērnu konts pastāv šim kontam. Jūs nevarat dzēst šo kontu. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Nu mērķa Daudzums vai paredzētais apjoms ir obligāta -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},Nē noklusējuma BOM pastāv postenī {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},Nē noklusējuma BOM pastāv postenī {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,"Lūdzu, izvēlieties Publicēšanas datums pirmais" apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Atvēršanas datums būtu pirms slēgšanas datums DocType: Leave Control Panel,Carry Forward,Virzīt uz priekšu @@ -2672,7 +2678,7 @@ DocType: Leave Type,Is Encash,Ir iekasēt skaidrā naudā DocType: Purchase Invoice,Mobile No,Mobile Nr DocType: Payment Tool,Make Journal Entry,Padarīt Journal Entry DocType: Leave Allocation,New Leaves Allocated,Jaunas lapas Piešķirtie -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Projekts gudrs dati nav pieejami aptauja +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Projekts gudrs dati nav pieejami aptauja DocType: Project,Expected End Date,"Paredzams, beigu datums" DocType: Appraisal Template,Appraisal Template Title,Izvērtēšana Template sadaļa apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Tirdzniecības @@ -2720,6 +2726,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,Uz apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,"Lūdzu, norādiet" DocType: Offer Letter,Awaiting Response,Gaida atbildi apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Iepriekš +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Laiks Log ir jāmaksā DocType: Salary Slip,Earning & Deduction,Nopelnot & atskaitīšana apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Konts {0} nevar būt Group apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,"Pēc izvēles. Šis iestatījums tiks izmantota, lai filtrētu dažādos darījumos." @@ -2790,14 +2797,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Veiksmīgi svītrots visas ar šo uzņēmumu darījumus! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Kā datumā apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Probācija -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Default Noliktava ir obligāta krājumu postenī. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Default Noliktava ir obligāta krājumu postenī. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Samaksa algas par mēnesi {0} un gads {1} DocType: Stock Settings,Auto insert Price List rate if missing,"Auto ievietot Cenrādis likme, ja trūkst" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Kopējais samaksāto summu ,Transferred Qty,Nodota Daudz apps/erpnext/erpnext/config/learn.py +11,Navigating,Navigācija apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Plānošana -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Padarīt Time Ieiet Sērija +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Padarīt Time Ieiet Sērija apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Izdots DocType: Project,Total Billing Amount (via Time Logs),Kopā Norēķinu Summa (via Time Baļķi) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Mēs pārdot šo Prece @@ -2805,7 +2812,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Daudzums ir jābūt lielākam par 0 DocType: Journal Entry,Cash Entry,Naudas Entry DocType: Sales Partner,Contact Desc,Contact Desc -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Veids lapām, piemēram, gadījuma, slimības uc" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Veids lapām, piemēram, gadījuma, slimības uc" DocType: Email Digest,Send regular summary reports via Email.,Regulāri jānosūta kopsavilkuma ziņojumu pa e-pastu. DocType: Brand,Item Manager,Prece vadītājs DocType: Cost Center,Add rows to set annual budgets on Accounts.,Pievienot rindas noteikt ikgadējos budžetus uz kontu. @@ -2820,7 +2827,7 @@ DocType: GL Entry,Party Type,Party Type apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Izejvielas nevar būt tāds pats kā galveno posteni DocType: Item Attribute Value,Abbreviation,Saīsinājums apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Ne authroized kopš {0} pārsniedz ierobežojumus -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Algu veidni meistars. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Algu veidni meistars. DocType: Leave Type,Max Days Leave Allowed,Max dienu atvaļinājumu Atļauts apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Uzstādīt Nodokļu noteikums par iepirkumu grozs DocType: Payment Tool,Set Matching Amounts,Uzlikt atbilstības Summas @@ -2833,7 +2840,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Citāti DocType: Stock Settings,Role Allowed to edit frozen stock,Loma Atļauts rediģēt saldētas krājumus ,Territory Target Variance Item Group-Wise,Teritorija Mērķa Variance Prece Group-Wise apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Visas klientu grupas -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} ir obligāta. Varbūt Valūtas ieraksts nav izveidots {1} uz {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} ir obligāta. Varbūt Valūtas ieraksts nav izveidots {1} uz {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Nodokļu veidne ir obligāta. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Konts {0}: Mātes vērā {1} neeksistē DocType: Purchase Invoice Item,Price List Rate (Company Currency),Cenrādis Rate (Company valūta) @@ -2853,8 +2860,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Postenis Wise Nodokļu ,Item-wise Price List Rate,Postenis gudrs Cenrādis Rate apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Piegādātājs Citāts DocType: Quotation,In Words will be visible once you save the Quotation.,"Vārdos būs redzami, kad saglabājat citāts." -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0}{1} ir apturēta -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Svītrkodu {0} jau izmanto postenī {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0}{1} ir apturēta +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Svītrkodu {0} jau izmanto postenī {1} DocType: Lead,Add to calendar on this date,Pievienot kalendāram šajā datumā apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Noteikumi par piebilstot piegādes izmaksas. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Gaidāmie notikumi @@ -2880,8 +2887,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,St apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Vismaz viena noliktava ir obligāta DocType: Serial No,Out of Warranty,No Garantijas DocType: BOM Replace Tool,Replace,Aizstāt -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} pret pārdošanas rēķinu {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Ievadiet noklusējuma mērvienības +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} pret pārdošanas rēķinu {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Ievadiet noklusējuma mērvienības DocType: Purchase Invoice Item,Project Name,Projekta nosaukums DocType: Supplier,Mention if non-standard receivable account,Pieminēt ja nestandarta debitoru konts DocType: Journal Entry Account,If Income or Expense,Ja ieņēmumi vai izdevumi @@ -2906,7 +2913,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Fiskālā Gads: {0} neeksistē DocType: Currency Exchange,To Currency,Līdz Valūta DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Ļauj šie lietotāji apstiprināt Leave Pieteikumi grupveida dienas. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Veidi Izdevumu prasību. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Veidi Izdevumu prasību. DocType: Item,Taxes,Nodokļi apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Maksas un nav sniegusi DocType: Project,Default Cost Center,Default Izmaksu centrs @@ -2936,7 +2943,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Row # {0}: Sērijas Nr {1} nesakrīt ar {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Casual Leave DocType: Batch,Batch ID,Partijas ID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Piezīme: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Piezīme: {0} ,Delivery Note Trends,Piegāde Piezīme tendences apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,ŠONEDĒĻ kopsavilkums apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} jābūt Pirkta vai Apakšuzņēmēju Ir rindā {1} @@ -2976,6 +2983,7 @@ DocType: Project Task,Pending Review,Kamēr apskats apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,"Klikšķiniet šeit, lai maksāt" DocType: Task,Total Expense Claim (via Expense Claim),Kopējo izdevumu Pretenzijas (via Izdevumu Claim) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Klienta ID +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Mark Nekonstatē apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Lai Time jābūt lielākam par laiku DocType: Journal Entry Account,Exchange Rate,Valūtas kurss apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Pasūtījumu {0} nav iesniegta @@ -3023,7 +3031,7 @@ DocType: Item Group,Default Expense Account,Default Izdevumu konts DocType: Employee,Notice (days),Paziņojums (dienas) DocType: Tax Rule,Sales Tax Template,Sales Tax Template DocType: Employee,Encashment Date,Inkasācija Datums -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Pret kuponu Type jābūt vienam no Pirkuma pasūtījums, Pirkuma rēķins vai Journal Entry" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Pret kuponu Type jābūt vienam no Pirkuma pasūtījums, Pirkuma rēķins vai Journal Entry" DocType: Account,Stock Adjustment,Stock korekcija apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Default darbības izmaksas pastāv darbības veidam - {0} DocType: Production Order,Planned Operating Cost,Plānotais ekspluatācijas izmaksas @@ -3077,6 +3085,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Uzrakstiet Off Entry DocType: BOM,Rate Of Materials Based On,Novērtējiet materiālu specifikācijas Based On apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Atbalsta Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Noņemiet visas apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Uzņēmums trūkst noliktavās {0} DocType: POS Profile,Terms and Conditions,Noteikumi un nosacījumi apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},"Līdz šim būtu jāatrodas attiecīgajā taksācijas gadā. Pieņemot, ka līdz šim datumam = {0}" @@ -3098,7 +3107,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Lai uzstādītu šo taksācijas gadu kā noklusējumu, noklikšķiniet uz ""Set as Default""" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Setup ienākošā servera atbalstu e-pasta id. (Piem support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Trūkums Daudz -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Postenis variants {0} nepastāv ar tiem pašiem atribūtiem +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Postenis variants {0} nepastāv ar tiem pašiem atribūtiem DocType: Salary Slip,Salary Slip,Alga Slip apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,"""Lai datums"" ir nepieciešama" DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Izveidot iepakošanas lapas par paketes jāpiegādā. Izmanto, lai paziņot Iepakojumu skaits, iepakojuma saturu un tā svaru." @@ -3146,7 +3155,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Skatīt DocType: Item Attribute Value,Attribute Value,Atribūta vērtība apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","E-pasta id ir unikāls, kas jau pastāv {0}" ,Itemwise Recommended Reorder Level,Itemwise Ieteicams Pārkārtot Level -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,"Lūdzu, izvēlieties {0} pirmais" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,"Lūdzu, izvēlieties {0} pirmais" DocType: Features Setup,To get Item Group in details table,Lai iegūtu posteni Group detaļas tabulā apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Sērija {0} no posteņa {1} ir beidzies. DocType: Sales Invoice,Commission,Komisija @@ -3190,7 +3199,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Iegūt nepārspējamas Kuponi DocType: Warranty Claim,Resolved By,Atrisināts Līdz DocType: Appraisal,Start Date,Sākuma datums -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Piešķirt atstāj uz laiku. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Piešķirt atstāj uz laiku. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Čeki un noguldījumi nepareizi noskaidroti apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,"Klikšķiniet šeit, lai pārbaudītu" apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Konts {0}: Jūs nevarat piešķirt sevi kā mātes kontu @@ -3210,7 +3219,7 @@ DocType: Employee,Educational Qualification,Izglītības Kvalifikācijas DocType: Workstation,Operating Costs,Ekspluatācijas Izmaksas DocType: Employee Leave Approver,Employee Leave Approver,Darbinieku Leave apstiprinātājs apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} ir veiksmīgi pievienota mūsu Newsletter sarakstā. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Rinda {0}: Pārkārtot ieraksts jau eksistē šī noliktava {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Rinda {0}: Pārkārtot ieraksts jau eksistē šī noliktava {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Nevar atzīt par zaudēto, jo citāts ir veikts." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Pirkuma Master vadītājs apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Ražošanas Order {0} jāiesniedz @@ -3234,7 +3243,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Pārdošanas rēķins {0} jau ir iesniegti apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Pabeigšana Datums DocType: Purchase Invoice Item,Amount (Company Currency),Summa (Company valūta) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Organizācijas struktūrvienība (departaments) meistars. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Organizācijas struktūrvienība (departaments) meistars. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Ievadiet derīgus mobilos nos DocType: Budget Detail,Budget Detail,Budžets Detail apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,Ievadiet ziņu pirms nosūtīšanas @@ -3250,13 +3259,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Saņemts un pieņemts ,Serial No Service Contract Expiry,Sērijas Nr Pakalpojumu līgums derīguma DocType: Item,Unit of Measure Conversion,Mērvienība Conversion apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Darbinieku nevar mainīt -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,"Var nav kredīta un debeta pašu kontu, tajā pašā laikā" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,"Var nav kredīta un debeta pašu kontu, tajā pašā laikā" DocType: Naming Series,Help HTML,Palīdzība HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Kopā weightage piešķirts vajadzētu būt 100%. Tas ir {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Pabalsts pārmērīga {0} šķērsoja postenī {1} DocType: Address,Name of person or organization that this address belongs to.,"Nosaukums personas vai organizācijas, ka šī adrese pieder." apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Jūsu Piegādātāji -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,Nevar iestatīt kā Lost kā tiek veikts Sales Order. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,Nevar iestatīt kā Lost kā tiek veikts Sales Order. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,"Vēl Alga Struktūra {0} ir aktīva darbiniekam {1}. Lūdzu, tā statusu ""Neaktīvs"", lai turpinātu." DocType: Purchase Invoice,Contact,Kontakts apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Saņemts no @@ -3266,11 +3275,11 @@ DocType: Item,Has Serial No,Ir Sērijas nr DocType: Employee,Date of Issue,Izdošanas datums apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: No {0} uz {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Row # {0}: Set Piegādātājs posteni {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Website Image {0} pievienots posteni {1} nevar atrast +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Website Image {0} pievienots posteni {1} nevar atrast DocType: Issue,Content Type,Content Type apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Dators DocType: Item,List this Item in multiple groups on the website.,Uzskaitīt šo Prece vairākās grupās par mājas lapā. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,"Lūdzu, pārbaudiet multi valūtu iespēju ļaut konti citā valūtā" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,"Lūdzu, pārbaudiet multi valūtu iespēju ļaut konti citā valūtā" apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Punkts: {0} neeksistē sistēmā apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Jums nav atļauts uzstādīt Frozen vērtību DocType: Payment Reconciliation,Get Unreconciled Entries,Saņemt Unreconciled Ieraksti @@ -3280,14 +3289,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Ko tas dod? DocType: Delivery Note,To Warehouse,Uz noliktavu apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Konts {0} ir ievadīts vairāk nekā vienu reizi taksācijas gadā {1} ,Average Commission Rate,Vidēji Komisija likme -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,"""Ir Sērijas Nr"" nevar būt ""Jā"", ja nav krājumu postenis" +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,"""Ir Sērijas Nr"" nevar būt ""Jā"", ja nav krājumu postenis" apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Apmeklējumu nevar atzīmēti nākamajām datumiem DocType: Pricing Rule,Pricing Rule Help,Cenu noteikums Palīdzība DocType: Purchase Taxes and Charges,Account Head,Konts Head apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,"Atjaunināt papildu izmaksas, lai aprēķinātu izkraut objektu izmaksas" apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Elektrības DocType: Stock Entry,Total Value Difference (Out - In),Kopējā vērtība Starpība (Out - In) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Row {0}: Valūtas kurss ir obligāta +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Row {0}: Valūtas kurss ir obligāta apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},"Lietotāja ID nav noteikts, Darbinieka {0}" DocType: Stock Entry,Default Source Warehouse,Default Source Noliktava DocType: Item,Customer Code,Klienta kods @@ -3306,15 +3315,15 @@ DocType: Notification Control,Sales Invoice Message,Sales rēķins Message apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Noslēguma kontu {0} jābūt tipa Atbildības / Equity DocType: Authorization Rule,Based On,Pamatojoties uz DocType: Sales Order Item,Ordered Qty,Sakārtots Daudz -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Postenis {0} ir invalīds +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Postenis {0} ir invalīds DocType: Stock Settings,Stock Frozen Upto,Stock Frozen Līdz pat apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},"Laika posmā no un periodu, lai datumiem obligātajām atkārtotu {0}" apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Projekta aktivitāte / uzdevums. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Izveidot algas lapas +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Izveidot algas lapas apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Pirkšana jāpārbauda, ja nepieciešams, par ir izvēlēts kā {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Atlaide jābūt mazāk nekā 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Norakstīt summu (Company valūta) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Row # {0}: Lūdzu noteikt pasūtīšanas daudzumu +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Row # {0}: Lūdzu noteikt pasūtīšanas daudzumu DocType: Landed Cost Voucher,Landed Cost Voucher,Izkrauti izmaksas kuponu apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},Lūdzu noteikt {0} DocType: Purchase Invoice,Repeat on Day of Month,Atkārtot mēneša diena @@ -3366,7 +3375,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Default nepabeigtie Noliktava apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Noklusējuma iestatījumi grāmatvedības darījumiem. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,"Paredzams, datums nevar būt pirms Material Pieprasīt Datums" -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Postenis {0} jābūt Pārdošanas punkts +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Postenis {0} jābūt Pārdošanas punkts DocType: Naming Series,Update Series Number,Update Series skaits DocType: Account,Equity,Taisnīgums DocType: Sales Order,Printing Details,Drukas Details @@ -3418,7 +3427,7 @@ DocType: Task,Review Date,Pārskatīšana Datums DocType: Purchase Invoice,Advance Payments,Avansa maksājumi DocType: Purchase Taxes and Charges,On Net Total,No kopējiem neto apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Mērķa noliktava rindā {0} ir jābūt tādai pašai kā Production ordeņa -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Nē atļauju izmantot maksājumu ierīce +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Nē atļauju izmantot maksājumu ierīce apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,"""paziņojuma e-pasta adrese"", kas nav norādītas atkārtojas% s" apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Valūtas nevar mainīt pēc tam ierakstus izmantojot kādu citu valūtu DocType: Company,Round Off Account,Noapaļot kontu @@ -3441,7 +3450,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Daudzums posteņa iegūta pēc ražošanas / pārpakošana no dotajiem izejvielu daudzumu DocType: Payment Reconciliation,Receivable / Payable Account,Debitoru / kreditoru konts DocType: Delivery Note Item,Against Sales Order Item,Pret Sales Order posteni -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},"Lūdzu, norādiet īpašības Value atribūtam {0}" +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},"Lūdzu, norādiet īpašības Value atribūtam {0}" DocType: Item,Default Warehouse,Default Noliktava DocType: Task,Actual End Date (via Time Logs),Faktiskā beigu datums (via Time Baļķi) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Budžets nevar iedalīt pret grupas kontā {0} @@ -3466,10 +3475,10 @@ DocType: Lead,Blog Subscriber,Blog Abonenta apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,"Izveidot noteikumus, lai ierobežotu darījumi, pamatojoties uz vērtībām." DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Ja ieslēgts, Total nē. Darbadienu būs brīvdienas, un tas samazinātu vērtību Alga dienā" DocType: Purchase Invoice,Total Advance,Kopā Advance -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Apstrāde algu +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Apstrāde algu DocType: Opportunity Item,Basic Rate,Basic Rate DocType: GL Entry,Credit Amount,Kredīta summa -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Uzstādīt kā Lost +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Uzstādīt kā Lost apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Maksājumu saņemšana Note DocType: Supplier,Credit Days Based On,Kredīta Dienas Based On DocType: Tax Rule,Tax Rule,Nodokļu noteikums @@ -3499,7 +3508,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Pieņemts daudzums apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} neeksistē apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Rēķinus izvirzīti klientiem. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Projekts Id -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Row Nr {0}: Summa nevar būt lielāks par rezervēta summa pret Izdevumu pretenzijā {1}. Līdz Summa ir {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Row Nr {0}: Summa nevar būt lielāks par rezervēta summa pret Izdevumu pretenzijā {1}. Līdz Summa ir {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} abonenti pievienotās DocType: Maintenance Schedule,Schedule,Grafiks DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Definēt budžets šim izmaksu centru. Lai uzstādītu budžeta pasākumus, skatiet "Uzņēmuma saraksts"" @@ -3560,19 +3569,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS Profile DocType: Payment Gateway Account,Payment URL Message,Maksājuma URL Message apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Sezonalitāte, nosakot budžetu, mērķus uc" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Rinda {0}: Maksājuma summa nedrīkst būt lielāka par izcilu summa +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Rinda {0}: Maksājuma summa nedrīkst būt lielāka par izcilu summa apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Kopā Neapmaksāta -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Laiks Log nav saņemts rēķins -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Prece {0} ir veidne, lūdzu, izvēlieties vienu no saviem variantiem" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Laiks Log nav saņemts rēķins +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Prece {0} ir veidne, lūdzu, izvēlieties vienu no saviem variantiem" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Pircējs apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Neto darba samaksa nevar būt negatīvs -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Ievadiet Pret Kuponi manuāli +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Ievadiet Pret Kuponi manuāli DocType: SMS Settings,Static Parameters,Statiskie Parametri DocType: Purchase Order,Advance Paid,Izmaksāto avansu DocType: Item,Item Tax,Postenis Nodokļu apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Materiāls piegādātājam apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Akcīzes Invoice DocType: Expense Claim,Employees Email Id,Darbinieki e-pasta ID +DocType: Employee Attendance Tool,Marked Attendance,ievērojama apmeklējums apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Tekošo saistību apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Sūtīt masu SMS saviem kontaktiem DocType: Purchase Taxes and Charges,Consider Tax or Charge for,"Apsveriet nodokļi un maksājumi, lai" @@ -3595,7 +3605,7 @@ DocType: Item Attribute,Numeric Values,Skaitliskām vērtībām apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Pievienojiet Logo DocType: Customer,Commission Rate,Komisija Rate apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Padarīt Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Block atvaļinājums iesniegumi departamentā. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Block atvaļinājums iesniegumi departamentā. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Grozs ir tukšs DocType: Production Order,Actual Operating Cost,Faktiskā ekspluatācijas izmaksas apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Saknes nevar rediģēt. @@ -3614,7 +3624,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,"Automātiski izveidot Materiālu pieprasījumu, ja daudzums samazinās zem šī līmeņa" ,Item-wise Purchase Register,Postenis gudrs iegāde Reģistrēties DocType: Batch,Expiry Date,Derīguma termiņš -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Lai uzstādītu pasūtīšanas līmeni, postenis jābūt iegāde postenis vai Manufacturing postenis" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Lai uzstādītu pasūtīšanas līmeni, postenis jābūt iegāde postenis vai Manufacturing postenis" ,Supplier Addresses and Contacts,Piegādātāju Adreses un kontakti apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,"Lūdzu, izvēlieties Kategorija pirmais" apps/erpnext/erpnext/config/projects.py +18,Project master.,Projekts meistars. diff --git a/erpnext/translations/mk.csv b/erpnext/translations/mk.csv index 4838ebfb65..f6592cf40b 100644 --- a/erpnext/translations/mk.csv +++ b/erpnext/translations/mk.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,Кредит во ко DocType: Delivery Note,Installation Status,Инсталација Статус apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Прифатени + Отфрлени Количина мора да биде еднаков Доби количество за Точка {0} DocType: Item,Supply Raw Materials for Purchase,Снабдување на суровини за набавка -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Точка {0} мора да биде Набавка Точка +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Точка {0} мора да биде Набавка Точка DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Преземете ја Шаблон, пополнете соодветни податоци и да го прикачите по промената на податотеката. Сите датуми и вработен комбинација на избраниот период ќе дојде во дефиниција, со постоечките записи посетеност" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,Точка {0} не е активна или е достигнат крајот на животот DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Ќе се ажурира по Продај фактура е поднесена. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","За да го вклучите данок во ред {0} на стапката точка, даноци во редови {1} исто така, мора да бидат вклучени" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Прилагодувања за Модул со хумани ресурси +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","За да го вклучите данок во ред {0} на стапката точка, даноци во редови {1} исто така, мора да бидат вклучени" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Прилагодувања за Модул со хумани ресурси DocType: SMS Center,SMS Center,SMS центарот DocType: BOM Replace Tool,New BOM,Нов Бум apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Серија Време на дневници за исплата. @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,Изберете Услови DocType: Production Planning Tool,Sales Orders,Продај Нарачка DocType: Purchase Taxes and Charges,Valuation,Вреднување ,Purchase Order Trends,Нарачка трендови -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Распредели листови за оваа година. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Распредели листови за оваа година. DocType: Earning Type,Earning Type,Заработувајќи Тип DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Оневозможи капацитет за планирање и време Следење DocType: Bank Reconciliation,Bank Account,Банкарска сметка @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Точка на вебсајт Спецификација DocType: Payment Tool,Reference No,Референтен број apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Остави блокирани -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Точка {0} достигна својот крај на животот на {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Точка {0} достигна својот крај на животот на {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Годишен DocType: Stock Reconciliation Item,Stock Reconciliation Item,Акции помирување Точка DocType: Stock Entry,Sales Invoice No,Продај фактура Не @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,Минимална Подреди Количин DocType: Pricing Rule,Supplier Type,Добавувачот Тип DocType: Item,Publish in Hub,Објави во Hub ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Точка {0} е откажана +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Точка {0} е откажана apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Материјал Барање DocType: Bank Reconciliation,Update Clearance Date,Ажурирање Чистење Датум DocType: Item,Purchase Details,Купување Детали за @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Одбиени Кол DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Поле достапни на испорака, цитатноста, Продај фактура, Продај Побарувања" DocType: SMS Settings,SMS Sender Name,SMS испраќачот Име DocType: Contact,Is Primary Contact,Е основно Контакт +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Време Логирајте се дозирани за наплата DocType: Notification Control,Notification Control,Известување за контрола DocType: Lead,Suggestions,Предлози DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Сет точка група-мудар буџети на оваа територија. Вие исто така може да вклучува и сезоната со поставување на дистрибуција. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},Ве молиме внесете група родител сметка за магацин {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Плаќање против {0} {1} не може да биде поголем од преостанатиот износ за наплата {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Плаќање против {0} {1} не може да биде поголем од преостанатиот износ за наплата {2} DocType: Supplier,Address HTML,HTML адреса DocType: Lead,Mobile No.,Мобилен број DocType: Maintenance Schedule,Generate Schedule,Генерирање Распоред @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Синхронизираат со Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Погрешна лозинка DocType: Item,Variant Of,Варијанта на -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Точка {0} мора да биде послужната ствар apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',Завршено Количина не може да биде поголем од "Количина на производство" DocType: Period Closing Voucher,Closing Account Head,Завршната сметка на главата DocType: Employee,External Work History,Надворешни Историја работа @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,Билтен DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Да го извести преку е-пошта на создавање на автоматски материјал Барање DocType: Journal Entry,Multi Currency,Мулти Валута DocType: Payment Reconciliation Invoice,Invoice Type,Тип на фактура -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Потврда за испорака +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Потврда за испорака apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Поставување Даноци apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,Плаќање Влегување е изменета откако ќе го влечат. Ве молиме да се повлече повторно. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} влезе двапати во точка Данок +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} влезе двапати во точка Данок apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,"Резимето на оваа недела, а во очекување на активности" DocType: Workstation,Rent Cost,Изнајмување на трошоците apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Ве молиме изберете месец и година @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,Важат за земјите DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Сите области поврзани со увоз како валута, девизен курс, вкупниот увоз, голема вкупно итн се достапни во Набавка прием, Добавувачот цитат, купување фактура, нарачка итн" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,Оваа содржина е моделот и не може да се користи во трансакциите. Точка атрибути ќе бидат копирани во текот на варијанти освен ако е "Не Копирај" е поставена apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Вкупно Ред Смета -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Ознака за вработените (на пример, извршен директор, директор итн)." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Ознака за вработените (на пример, извршен директор, директор итн)." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,Ве молиме внесете "Повторување на Денот на месец областа вредност DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,Стапка по која клиентите Валута се претвора во основната валута купувачи DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Достапен во бирото, испорака, Набавка фактура, производство цел, нарачка, купување прием, Продај фактура, Продај Побарувања, Акции влез, timesheet" @@ -355,7 +355,7 @@ DocType: Workstation,Consumable Cost,Потрошни Цена apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) мора да имаат улога "Остави Approver" DocType: Purchase Receipt,Vehicle Date,Датум на возилото apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Медицинска -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Причина за губење +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Причина за губење apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Работна станица е затворена на следните датуми како на летни Листа на: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Можности DocType: Employee,Single,Еден @@ -383,14 +383,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Channel Partner DocType: Account,Old Parent,Стариот Родител DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,Персонализација на воведниот текст што оди како дел од е-мејл. Секоја трансакција има посебна воведен текст. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Не вклучува и симболи (пр. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Продажбата мајстор менаџер apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Глобалните поставувања за сите производствени процеси. DocType: Accounts Settings,Accounts Frozen Upto,Сметки замрзнати до DocType: SMS Log,Sent On,Испрати на -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Атрибут {0} одбрани неколку пати во атрибути на табелата +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Атрибут {0} одбрани неколку пати во атрибути на табелата DocType: HR Settings,Employee record is created using selected field. ,Рекорд вработен е креирана преку избрани поле. DocType: Sales Order,Not Applicable,Не е применливо -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Одмор господар. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Одмор господар. DocType: Material Request Item,Required Date,Бараниот датум DocType: Delivery Note,Billing Address,Платежна адреса apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,Ве молиме внесете Точка законик. @@ -426,7 +427,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,Ве молиме внесете Магацински за кои ќе се зголеми материјал Барање DocType: Production Order,Additional Operating Cost,Дополнителни оперативни трошоци apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Козметика -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","За да се логирате, следниве својства мора да биде иста за двата предмети" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","За да се логирате, следниве својства мора да биде иста за двата предмети" DocType: Shipping Rule,Net Weight,Нето тежина DocType: Employee,Emergency Phone,Итни Телефон ,Serial No Warranty Expiry,Сериски Нема гаранција Важи @@ -481,17 +482,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Платежна и испорака Статус apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Повтори клиенти DocType: Leave Control Panel,Allocate,Распредели -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Продажбата Враќање +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Продажбата Враќање DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Изберете Продај Нарачка од која што сакате да се создаде производство наредби. DocType: Item,Delivered by Supplier (Drop Ship),Дадено од страна на Добавувачот (Капка Брод) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Компоненти плата. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Компоненти плата. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,База на податоци на потенцијални клиенти. DocType: Authorization Rule,Customer or Item,Клиент или Точка apps/erpnext/erpnext/config/crm.py +17,Customer database.,Клиент база на податоци. DocType: Quotation,Quotation To,Котација на DocType: Lead,Middle Income,Среден приход apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Отворање (ЦР) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Стандардно единица мерка за Точка {0} не можат да се менуваат директно затоа што веќе се направени некои трансакција (а) со друг UOM. Ќе треба да се создаде нова точка да се користи различен Default UOM. +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Стандардно единица мерка за Точка {0} не можат да се менуваат директно затоа што веќе се направени некои трансакција (а) со друг UOM. Ќе треба да се создаде нова точка да се користи различен Default UOM. apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Распределени износ не може да биде негативен DocType: Purchase Order Item,Billed Amt,Таксуваната Амт DocType: Warehouse,A logical Warehouse against which stock entries are made.,Логична Магацински против кои се направени записи парк. @@ -510,14 +511,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Продажбата на дан DocType: Employee,Organization Profile,Организација Профил apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,Ве молам поставете брои серија за присуство преку подесување> нумерација Серија DocType: Employee,Reason for Resignation,Причина за оставка -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Шаблон за ефикасност на мислењата. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Шаблон за ефикасност на мислењата. DocType: Payment Reconciliation,Invoice/Journal Entry Details,Фактура / весник детали за влез apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} {1} "не во фискалната {2} DocType: Buying Settings,Settings for Buying Module,Поставки за купување Модул apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,Ве молиме внесете Набавка Потврда прв DocType: Buying Settings,Supplier Naming By,Добавувачот грабеж на име со DocType: Activity Type,Default Costing Rate,Чини стандардниот курс -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Распоред за одржување +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Распоред за одржување apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Потоа цени Правила се филтрирани врз основа на клиент, група на потрошувачи, територија, Добавувачот, Набавувачот Тип на кампањата, продажба партнер итн" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Нето промени во Инвентар DocType: Employee,Passport Number,Број на пасош @@ -556,7 +557,7 @@ DocType: Purchase Invoice,Quarterly,Квартален DocType: Selling Settings,Delivery Note Required,Испратница Задолжителни DocType: Sales Order Item,Basic Rate (Company Currency),Основната стапка (Фирма валута) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush Суровини врз основа на -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,Ве молиме внесете детали ставка +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,Ве молиме внесете детали ставка DocType: Purchase Receipt,Other Details,Други детали DocType: Account,Accounts,Сметки apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Маркетинг @@ -569,7 +570,7 @@ DocType: Employee,Provide email id registered in company,Обезбеди меј DocType: Hub Settings,Seller City,Продавачот на градот DocType: Email Digest,Next email will be sent on:,Следната е-мејл ќе бидат испратени на: DocType: Offer Letter Term,Offer Letter Term,Понуда писмо Рок -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Ставка има варијанти. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Ставка има варијанти. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Точка {0} не е пронајдена DocType: Bin,Stock Value,Акции вредност apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Тип на дрвото @@ -577,7 +578,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Количина Потрош DocType: Serial No,Warranty Expiry Date,Гаранција датумот на истекување DocType: Material Request Item,Quantity and Warehouse,Кол и Магацински DocType: Sales Invoice,Commission Rate (%),Комисијата стапка (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Против ваучер типот мора да биде еден од Продај Побарувања, Продај фактура или весник Влегување" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Против ваучер типот мора да биде еден од Продај Побарувања, Продај фактура или весник Влегување" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Воздухопловна DocType: Journal Entry,Credit Card Entry,Кредитна картичка за влез apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Задача Предмет @@ -645,10 +646,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Одговорност apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Санкционирани сума не може да биде поголема од Тврдат Износ во ред {0}. DocType: Company,Default Cost of Goods Sold Account,Стандардно трошоците на продадени производи профил -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Ценовник не е избрано +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Ценовник не е избрано DocType: Employee,Family Background,Семејно потекло DocType: Process Payroll,Send Email,Испрати E-mail -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Предупредување: Невалиден прилог {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Предупредување: Невалиден прилог {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Нема дозвола DocType: Company,Default Bank Account,Стандардно банкарска сметка apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","За филтрирање врз основа на партија, изберете партија Тип прв" @@ -676,7 +677,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,По DocType: Features Setup,"To enable ""Point of Sale"" features",Да им овозможи на "Точка на продажба" карактеристики DocType: Bin,Moving Average Rate,Преселба Просечна стапка DocType: Production Planning Tool,Select Items,Одбирајте ги изборните ставки -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} од Бил {1} датум {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} од Бил {1} датум {2} DocType: Maintenance Visit,Completion Status,Проектот Статус DocType: Sales Invoice Item,Target Warehouse,Целна Магацински DocType: Item,Allow over delivery or receipt upto this percent,Дозволете врз доставувањето или приемот до овој процент @@ -736,7 +737,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Ва apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Не можам да најдам временски слот во следните {0} денови за работа {1} DocType: Production Order,Plan material for sub-assemblies,План материјал за потсклопови apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,Бум {0} мора да биде активен -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,Изберете го типот на документот прв +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Изберете го типот на документот прв apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Оди кошничката apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Откажи материјал Посети {0} пред да го раскине овој Одржување Посета DocType: Salary Slip,Leave Encashment Amount,Остави инкасо Износ @@ -754,7 +755,7 @@ DocType: Purchase Receipt,Range,Опсег DocType: Supplier,Default Payable Accounts,Стандардно Обврски apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Вработен {0} не е активна или не постои DocType: Features Setup,Item Barcode,Точка Баркод -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Точка Варијанти {0} ажурирани +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Точка Варијанти {0} ажурирани DocType: Quality Inspection Reading,Reading 6,Читање 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Купување на фактура напредување DocType: Address,Shop,Продавница @@ -777,7 +778,7 @@ DocType: Salary Slip,Total in words,Вкупно со зборови DocType: Material Request Item,Lead Time Date,Водач Време Датум apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,е задолжително. Можеби рекорд Девизен не е создадена за apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Ред # {0}: Ве молиме наведете Сериски Не за Точка {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","За предмети "производ Бовча", складиште, сериски број и Batch нема да се смета од "Пакување Листа на 'табелата. Ако Магацински и Batch Не се исти за сите предмети за пакување ставка било "производ Бовча", тие вредности може да се влезе во главната маса точка, вредностите ќе биде копирана во "Пакување Листа на 'табелата." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","За предмети "производ Бовча", складиште, сериски број и Batch нема да се смета од "Пакување Листа на 'табелата. Ако Магацински и Batch Не се исти за сите предмети за пакување ставка било "производ Бовча", тие вредности може да се влезе во главната маса точка, вредностите ќе биде копирана во "Пакување Листа на 'табелата." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Пратки на клиентите. DocType: Purchase Invoice Item,Purchase Order Item,Нарачка Точка apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Индиректни доход @@ -798,6 +799,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Изберете Дано apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Оди до соодветната група (обично Примена на фондови> Тековни средства> банкарски сметки и да се создаде нова сметка (со кликање на Додади детето) од типот "банка" DocType: Workstation,Electricity Cost,Цената на електричната енергија DocType: HR Settings,Don't send Employee Birthday Reminders,Не праќај вработените роденден потсетници +,Employee Holiday Attendance,Вработен Холидеј Публика DocType: Opportunity,Walk In,Прошетка во apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Акции записи DocType: Item,Inspection Criteria,Критериуми за инспекција @@ -820,7 +822,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options, DocType: Journal Entry Account,Expense Claim,Сметка побарување apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Количина за {0} DocType: Leave Application,Leave Application,Отсуство на апликација -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Остави алатката Распределба +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Остави алатката Распределба DocType: Leave Block List,Leave Block List Dates,Остави Забрани Листа Датуми DocType: Company,If Monthly Budget Exceeded (for expense account),Ако месечен Буџет надминати (за сметка на сметка) DocType: Workstation,Net Hour Rate,Нето час стапка @@ -830,7 +832,7 @@ DocType: Packing Slip Item,Packing Slip Item,Пакување фиш Точка DocType: POS Profile,Cash/Bank Account,Пари / банка сметка apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Отстранет предмети без промена во количината или вредноста. DocType: Delivery Note,Delivery To,Испорака на -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Атрибут маса е задолжително +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Атрибут маса е задолжително DocType: Production Planning Tool,Get Sales Orders,Земете Продај Нарачка apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} не може да биде негативен apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Попуст @@ -894,7 +896,7 @@ DocType: SMS Center,Total Characters,Вкупно Ликови apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},Ве молиме изберете Бум Бум во полето за предмет {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,Детална C-Образец Фактура DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Плаќање помирување Фактура -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Учество% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Учество% DocType: Item,website page link,веб-страница линк страница DocType: Company,Company registration numbers for your reference. Tax numbers etc.,Броеви за регистрација на фирма за вашата препорака. Даночни броеви итн DocType: Sales Partner,Distributor,Дистрибутер @@ -936,10 +938,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM конверзија Фа DocType: Stock Settings,Default Item Group,Стандардно Точка група apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Снабдувач база на податоци. DocType: Account,Balance Sheet,Биланс на состојба -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Цена центар за предмет со точка законик " +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Цена центар за предмет со точка законик " DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,Продажбата на лицето ќе добиете потсетување на овој датум да се јавите на клиент apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Понатаму сметки може да се направи под Групи, но записи може да се направи врз несрпското групи" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Данок и други намалувања на платите. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Данок и други намалувања на платите. DocType: Lead,Lead,Водач DocType: Email Digest,Payables,Обврски кон добавувачите DocType: Account,Warehouse,Магацин @@ -956,10 +958,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Неусоглас DocType: Global Defaults,Current Fiscal Year,Тековната фискална година DocType: Global Defaults,Disable Rounded Total,Оневозможи заоблени Вкупно DocType: Lead,Call,Повик -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,"Записи" не може да биде празна +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,"Записи" не може да биде празна apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Дупликат ред {0} со истиот {1} ,Trial Balance,Судскиот биланс -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Поставување на вработените +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Поставување на вработените apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid """,Мрежа " apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,Ве молиме изберете префикс прв apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Истражување @@ -968,7 +970,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,ID на корисникот apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Види Леџер apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Први -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Ставка група постои со истото име, Ве молиме да се промени името на точка или преименувате групата точка" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Ставка група постои со истото име, Ве молиме да се промени името на точка или преименувате групата точка" DocType: Production Order,Manufacture against Sales Order,Производство против Продај Побарувања apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Остатокот од светот apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,Ставката {0} не може да има Batch @@ -993,7 +995,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Одбиени Магацински DocType: GL Entry,Against Voucher,Против ваучер DocType: Item,Default Buying Cost Center,Стандардно Купување цена центар apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","За да го добиете најдоброто од ERPNext, ви препорачуваме да се земе некое време и да се види овие видеа помош." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Точка {0} мора да биде Продажбата Точка +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Точка {0} мора да биде Продажбата Точка apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,до DocType: Item,Lead Time in days,Водач Време во денови ,Accounts Payable Summary,Сметки се плаќаат Резиме @@ -1019,7 +1021,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Земјоделството apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Вашите производи или услуги DocType: Mode of Payment,Mode of Payment,Начин на плаќање -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Веб-страница на слика треба да биде јавен датотеката или URL на веб страната +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Веб-страница на слика треба да биде јавен датотеката или URL на веб страната apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,Ова е корен елемент група и не може да се уредува. DocType: Journal Entry Account,Purchase Order,Нарачката DocType: Warehouse,Warehouse Contact Info,Магацински Контакт Инфо @@ -1030,7 +1032,7 @@ DocType: Serial No,Serial No Details,Сериски № Детали за DocType: Purchase Invoice Item,Item Tax Rate,Точка даночна стапка apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","За {0}, само кредитни сметки може да се поврзат против друг запис дебитна" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Испратница {0} не е поднесен -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Точка {0} мора да биде под-договор Точка +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Точка {0} мора да биде под-договор Точка apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Капитал опрема apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Цените правило е првата избрана врз основа на "Apply On" поле, која може да биде точка, точка група или бренд." DocType: Hub Settings,Seller Website,Продавачот веб-страница @@ -1039,7 +1041,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Цел DocType: Sales Invoice Item,Edit Description,Измени Опис apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Се очекува испорака датум е помал од планираниот почеток датум. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,За Добавувачот +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,За Добавувачот DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Поставување тип на сметка помага во изборот на оваа сметка во трансакции. DocType: Purchase Invoice,Grand Total (Company Currency),Големиот Вкупно (Фирма валута) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Вкупниот појдовен @@ -1091,7 +1093,6 @@ DocType: Authorization Rule,Average Discount,Просечната попуст DocType: Address,Utilities,Комунални услуги DocType: Purchase Invoice Item,Accounting,Сметководство DocType: Features Setup,Features Setup,Карактеристики подесување -DocType: Item,Is Service Item,Е послужната ствар apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Период апликација не може да биде надвор одмор период распределба DocType: Activity Cost,Projects,Проекти apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,Ве молиме изберете фискалната година @@ -1112,7 +1113,7 @@ DocType: Item,Maintain Stock,Одржување на берза apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Акции записи веќе создадена за цел производство apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Нето промени во основни средства DocType: Leave Control Panel,Leave blank if considered for all designations,Оставете го празно ако се земе предвид за сите ознаки -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Полнење од типот "Крај" во ред {0} не може да бидат вклучени во точка Оцени +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Полнење од типот "Крај" во ред {0} не може да бидат вклучени во точка Оцени apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Макс: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Од DateTime DocType: Email Digest,For Company,За компанијата @@ -1121,8 +1122,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Адреса за Испорака Име apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Сметковниот план DocType: Material Request,Terms and Conditions Content,Услови и правила Содржина -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,не може да биде поголема од 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Точка {0} не е парк Точка +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,не може да биде поголема од 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Точка {0} не е парк Точка DocType: Maintenance Visit,Unscheduled,Непланирана DocType: Employee,Owned,Сопственост DocType: Salary Slip Deduction,Depends on Leave Without Pay,Зависи неплатено отсуство @@ -1143,7 +1144,7 @@ Used for Taxes and Charges",Данок детали табелата се дон apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Вработените не можат да известуваат за себе. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Ако на сметката е замрзната, записи им е дозволено да ограничено корисници." DocType: Email Digest,Bank Balance,Банката биланс -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Сметководство за влез на {0}: {1} може да се направи само во валута: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Сметководство за влез на {0}: {1} може да се направи само во валута: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Нема активни плата структура најде за вработен {0} и месецот DocType: Job Opening,"Job profile, qualifications required etc.","Работа профил, потребните квалификации итн" DocType: Journal Entry Account,Account Balance,Баланс на сметка @@ -1160,7 +1161,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Под соб DocType: Shipping Rule Condition,To Value,На вредноста DocType: Supplier,Stock Manager,Акции менаџер apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Извор склад е задолжително за спорот {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Пакување фиш +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Пакување фиш apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Канцеларијата изнајмување apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Поставките за поставка на SMS портал apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Увоз Не успеав! @@ -1204,7 +1205,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,Бум Детална Не DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Дополнителен попуст Износ (Фирма валута) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Грешка: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,Ве молиме да се создаде нова сметка од сметковниот план. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Одржување Посета +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Одржување Посета apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Клиентите> група на потрошувачи> Територија DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Достапни Серија Количина на складиште DocType: Time Log Batch Detail,Time Log Batch Detail,Време Вклучи Серија Детална @@ -1213,7 +1214,7 @@ DocType: Leave Block List,Block Holidays on important days.,Забрани пр ,Accounts Receivable Summary,Побарувања Резиме apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,Ве молиме поставете го полето корисничко име во евиденција на вработените да го поставите Улогата на вработените DocType: UOM,UOM Name,UOM Име -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Придонес Износ +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Придонес Износ DocType: Sales Invoice,Shipping Address,Адреса за Испорака DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,Оваа алатка ви помага да се ажурира или поправат количина и вреднување на акциите во системот. Тоа обично се користи за да ги синхронизирате вредности на системот и она што навистина постои во вашиот магацини. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,Во Зборови ќе бидат видливи откако ќе се спаси за испорака. @@ -1254,7 +1255,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Да ги пратите предмети со помош на баркод. Вие ќе бидете во можност да влезат предмети во Испратница и Продај фактура со скенирање на баркод на ставка. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Препратат на плаќање E-mail DocType: Dependent Task,Dependent Task,Зависни Task -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Фактор на конверзија за стандардно единица мерка мора да биде 1 во ред {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Фактор на конверзија за стандардно единица мерка мора да биде 1 во ред {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Отсуство од типот {0} не може да биде подолг од {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Обидете се планира операции за X дена однапред. DocType: HR Settings,Stop Birthday Reminders,Стоп роденден потсетници @@ -1264,7 +1265,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Види apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Нето промени во Пари DocType: Salary Structure Deduction,Salary Structure Deduction,Структура плата Одбивање -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Единица мерка {0} е внесен повеќе од еднаш во конверзија Фактор Табела +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Единица мерка {0} е внесен повеќе од еднаш во конверзија Фактор Табела apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Веќе постои плаќање Барам {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Цената на издадени материјали apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Кол не смее да биде повеќе од {0} @@ -1293,7 +1294,7 @@ DocType: BOM Item,BOM Item,Бум Точка DocType: Appraisal,For Employee,За вработените apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Ред {0}: Адванс против Добавувачот мора да се задолжи DocType: Company,Default Values,Стандардни вредности -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Ред {0}: износот за исплата не може да биде негативен +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Ред {0}: износот за исплата не може да биде негативен DocType: Expense Claim,Total Amount Reimbursed,Вкупниот износ Надоместени apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Против Добавувачот Фактура {0} датум {1} DocType: Customer,Default Price List,Стандардно Ценовник @@ -1321,8 +1322,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Г DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Заменете одредена Бум во сите други BOMs каде што се користи тоа. Таа ќе ја замени старата Бум линк, ажурирање на трошоците и регенерира "Бум експлозија Точка" маса, како за нови Бум" DocType: Shopping Cart Settings,Enable Shopping Cart,Овозможи Кошничка DocType: Employee,Permanent Address,Постојана адреса -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Точка {0} мора да биде послужната ствар. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Однапред платени против {0} {1} не може да биде поголема \ отколку Вкупен збир {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Ве молиме изберете код ставка DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Намалување Одбивање за неплатено отсуство (LWP) @@ -1378,12 +1378,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Главните apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Варијанта DocType: Naming Series,Set prefix for numbering series on your transactions,Намести префикс за нумерирање серија на вашиот трансакции +DocType: Employee Attendance Tool,Employees HTML,вработените HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Престана да не може да се откаже. Отпушвам да ја откажете. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Стандардно Бум ({0}) мора да бидат активни за оваа стварта или нејзиниот дефиниција +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Стандардно Бум ({0}) мора да бидат активни за оваа стварта или нејзиниот дефиниција DocType: Employee,Leave Encashed?,Остави Encashed? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Можност од поле е задолжително DocType: Item,Variants,Варијанти -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Направи нарачка +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Направи нарачка DocType: SMS Center,Send To,Испрати до apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Нема доволно одмор биланс за Оставете Тип {0} DocType: Payment Reconciliation Payment,Allocated amount,"Лимит," @@ -1483,7 +1484,7 @@ DocType: Sales Person,Name and Employee ID,Име и вработените пр apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,Поради Датум не може да биде пред Праќање пораки во Датум DocType: Website Item Group,Website Item Group,Веб-страница Точка група apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Давачки и даноци -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,Ве молиме внесете референтен датум +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,Ве молиме внесете референтен датум apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Исплата Портал сметка не е конфигуриран apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} записи плаќање не може да се филтрираат од {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,"Табела за елемент, кој ќе биде прикажан на веб сајтот" @@ -1504,7 +1505,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Резолуцијата Детали за DocType: Quality Inspection Reading,Acceptance Criteria,Прифаќање критериуми DocType: Item Attribute,Attribute Name,Атрибут Име -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},"Точка {0} мора да биде на продажба, односно послужната ствар во {1}" DocType: Item Group,Show In Website,Прикажи Во вебсајт apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Група DocType: Task,Expected Time (in hours),Се очекува времето (во часови) @@ -1536,7 +1536,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Испорака Износ ,Pending Amount,Во очекување Износ DocType: Purchase Invoice Item,Conversion Factor,Конверзија Фактор DocType: Purchase Order,Delivered,Дадени -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Поставување на дојдовен сервер за работни места-мејл ID. (На пр jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Поставување на дојдовен сервер за работни места-мејл ID. (На пр jobs@example.com) DocType: Purchase Receipt,Vehicle Number,Број на возило DocType: Purchase Invoice,The date on which recurring invoice will be stop,Датумот на кој се повторуваат фактура ќе се запре apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Вкупно одобрени лисја {0} не може да биде помал од веќе одобрен лисја {1} за периодот @@ -1553,7 +1553,7 @@ DocType: HR Settings,HR Settings,Поставки за човечки ресур apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Сметка тврдат дека е во очекување на одобрување. Само на сметка Approver може да го ажурира статусот. DocType: Purchase Invoice,Additional Discount Amount,Дополнителен попуст Износ DocType: Leave Block List Allow,Leave Block List Allow,Остави Забрани Листа Дозволете -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abbr не може да биде празно или простор +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abbr не може да биде празно или простор apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Група за Не-групата apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Спорт apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Вкупно Крај @@ -1577,7 +1577,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},Фактор UOM конверзија е потребно во ред {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Датум дозвола не може да биде пред датумот проверка во ред {0} DocType: Salary Slip,Deduction,Одбивање -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Ставка Цена додаде за {0} во Ценовник {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Ставка Цена додаде за {0} во Ценовник {1} DocType: Address Template,Address Template,Адреса Шаблон apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,Ве молиме внесете Id на вработените на ова продажбата на лице DocType: Territory,Classification of Customers by region,Класификација на клиенти од регионот @@ -1594,7 +1594,7 @@ DocType: Employee,Date of Birth,Датум на раѓање apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Точка {0} веќе се вратени DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** Фискалната година ** претставува финансиска година. Сите сметководствени записи и други големи трансакции се следи против ** ** фискалната година. DocType: Opportunity,Customer / Lead Address,Клиент / Водечки адреса -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Предупредување: Невалиден SSL сертификат прикачување {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Предупредување: Невалиден SSL сертификат прикачување {0} DocType: Production Order Operation,Actual Operation Time,Крај на време операција DocType: Authorization Rule,Applicable To (User),Се применуваат за (Корисник) DocType: Purchase Taxes and Charges,Deduct,Одземе @@ -1611,7 +1611,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Сплит за испорака во пакети. apps/erpnext/erpnext/hooks.py +69,Shipments,Пратки DocType: Purchase Order Item,To be delivered to customer,Да бидат доставени до клиентите -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Време Вклучи Статус мора да се поднесе. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Време Вклучи Статус мора да се поднесе. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,Сериски Не {0} не припаѓа на ниту еден Магацински apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Ред # DocType: Purchase Invoice,In Words (Company Currency),Во зборови (компанија валута) @@ -1628,7 +1628,7 @@ DocType: Leave Application,Total Leave Days,Вкупно Остави дена DocType: Email Digest,Note: Email will not be sent to disabled users,Забелешка: Е-пошта нема да биде испратена до корисниците со посебни потреби apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Изберете компанијата ... DocType: Leave Control Panel,Leave blank if considered for all departments,Оставете го празно ако се земе предвид за сите одделенија -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Видови на вработување (постојан, договор, стаж итн)." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Видови на вработување (постојан, договор, стаж итн)." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} е задолжително за ставката {1} DocType: Currency Exchange,From Currency,Од валутен apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Ве молиме изберете распределени износот, видот Фактура и број на фактурата во барем еден ред" @@ -1647,7 +1647,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,Во процесот DocType: Authorization Rule,Itemwise Discount,Itemwise попуст DocType: Purchase Order Item,Reference Document Type,Референтен документ Тип -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} против Продај Побарувања {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} против Продај Побарувања {1} DocType: Account,Fixed Asset,Основни средства apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Серијали Инвентар DocType: Activity Type,Default Billing Rate,Стандардно регистрации курс @@ -1657,7 +1657,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Продај Побарувања на плаќање DocType: Expense Claim Detail,Expense Claim Detail,Барање Детална сметка apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Време на дневници на креирање: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,Ве молиме изберете ја точната сметка +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,Ве молиме изберете ја точната сметка DocType: Item,Weight UOM,Тежина UOM DocType: Employee,Blood Group,Крвна група DocType: Purchase Invoice Item,Page Break,Page Break @@ -1692,7 +1692,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},Бум на рекурзијата: {0} не може да биде родител или дете на {2} DocType: Production Order Operation,Completed Qty,Завршено Количина apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","За {0}, само задолжува сметки може да се поврзат против друга кредитна влез" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Ценовник {0} е исклучен +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Ценовник {0} е исклучен DocType: Manufacturing Settings,Allow Overtime,Дозволете Прекувремена работа apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} сериски броеви потребно за Точка {1}. Сте ги доставиле {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Тековни Вреднување стапка @@ -1743,7 +1743,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Не apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,На случај бр не може да биде 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,Ако имате тим за продажба и продажба Партнери (Канал партнери) можат да бидат означени и одржување на нивниот придонес во активноста за продажба DocType: Item,Show a slideshow at the top of the page,Прикажи слајдшоу на врвот на страната -DocType: Item,"Allow in Sales Order of type ""Service""",Дозволете во Продај Побарувања од типот "Услуга" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Продавници DocType: Time Log,Projects Manager,Менаџер проекти DocType: Serial No,Delivery Time,Време на испорака @@ -1758,6 +1757,7 @@ DocType: Rename Tool,Rename Tool,Преименувај алатката apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Ажурирање на трошоците DocType: Item Reorder,Item Reorder,Пренареждане точка apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Пренос на материјал +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Ставката {0} мора да биде на продажба точка во {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Наведете операции, оперативните трошоци и даде единствена работа нема да вашето работење." DocType: Purchase Invoice,Price List Currency,Ценовник Валута DocType: Naming Series,User must always select,Корисникот мора секогаш изберете @@ -1778,7 +1778,7 @@ DocType: Appraisal,Employee,Вработен apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Увоз-маил од apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Покани како пристап DocType: Features Setup,After Sale Installations,По продажбата Инсталации -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} е целосно фактурирани +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} е целосно фактурирани DocType: Workstation Working Hour,End Time,Крајот на времето apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Стандардна условите на договорот за продажба или купување. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Група од Ваучер @@ -1804,7 +1804,7 @@ DocType: Upload Attendance,Attendance To Date,Публика: Да најдам apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Поставување на дојдовен сервер за продажба-мејл ID. (На пр sales@example.com) DocType: Warranty Claim,Raised By,Покренати од страна на DocType: Payment Gateway Account,Payment Account,Уплатна сметка -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,"Ве молиме назначете фирма, да се продолжи" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,"Ве молиме назначете фирма, да се продолжи" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Нето промени во Побарувања apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Обесштетување Off DocType: Quality Inspection Reading,Accepted,Прифатени @@ -1816,14 +1816,14 @@ DocType: Shipping Rule,Shipping Rule Label,Испорака Правило Ет apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,"Суровини, не може да биде празна." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Не може да го ажурира трговија, фактура содржи капка превозот ставка." DocType: Newsletter,Test,Тест -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Како што постојат постојните акции трансакции за оваа точка, \ вие не може да се промени на вредностите на "Мора Сериски Не", "Дали Серија Не", "Дали берза точка" и "метода на проценка"" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Брзо весник Влегување apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,Вие не може да го промени стапка ако Бум споменати agianst која било ставка DocType: Employee,Previous Work Experience,Претходно работно искуство DocType: Stock Entry,For Quantity,За Кол apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},Ве молиме внесете предвидено Количина за Точка {0} во ред {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} не е поднесен +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} не е поднесен apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Барања за предмети. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Одделни производни цел ќе биде направена за секоја завршена добра ствар. DocType: Purchase Invoice,Terms and Conditions1,Услови и Conditions1 @@ -1848,6 +1848,7 @@ DocType: Notification Control,Expense Claim Approved Message,Сметка Твр DocType: Email Digest,How frequently?,Колку често? DocType: Purchase Receipt,Get Current Stock,Добие моменталната залиха apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Дрвото на Бил на материјали +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Марк Тековен apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Почеток одржување датум не може да биде пред датумот на испорака за серија № {0} DocType: Production Order,Actual End Date,Крај Крај Датум DocType: Authorization Rule,Applicable To (Role),Применливи To (Споредна улога) @@ -1862,7 +1863,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Договор Крај Датум мора да биде поголема од датумот на пристап DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,Трето лице дистрибутер / дилер / комисионен застапник / партнер / препродавач кој ги продава компании производи за провизија. DocType: Customer Group,Has Child Node,Има Јазол дете -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} против нарачка {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} против нарачка {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Внесете статички URL параметри тука (на пр. Испраќачот = ERPNext, корисничко име = ERPNext, лозинка = 1234 итн)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} не во било кој активен фискална година. За повеќе детали проверете {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Ова е пример веб-сајт автоматски генерирани од ERPNext @@ -1890,7 +1891,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Add or Deduct: Whether you want to add or deduct the tax.","Стандардни даночни образец во кој може да се примени на сите Набавка трансакции. Овој шаблон може да содржи листа на даночните глави и исто така и други трошоци глави како "испорака", "осигурување", "Ракување" и др #### Забелешка Стапката на данокот ќе се дефинира овде ќе биде стандардна даночна стапка за сите предмети ** * *. Ако има ** ** Теми кои имаат различни стапки, тие мора да се додаде во ** точка Данок ** табелата во точка ** ** господар. #### Опис колумни 1. Пресметка Тип: - Ова може да биде на ** Нет Вкупно ** (што е збирот на основниот износ). - ** На претходниот ред Вкупно / Износ ** (за кумулативни даноци или давачки). Ако ја изберете оваа опција, данокот ќе се применуваат како процент од претходниот ред (во даночната маса) износот или вкупно. - Крај ** ** (како што е споменато). 2. профил Раководител: книга на сметка под кои овој данок ќе се резервира 3. Цена Центар: Ако данок / цената е приход (како превозот) или расходите треба да се резервира против трошок центар. 4. Опис: Опис на данокот (кој ќе биде испечатен во фактури / наводници). 5. Оцени: Даночна стапка. 6. Висина: висината на данокот. 7. Вкупно: Кумулативни вкупно на оваа точка. 8. Внесете ред: Ако врз основа на "претходниот ред Вкупно" можете да изберете број на ред кои ќе бидат земени како основа за оваа пресметка (стандардно е претходниот ред). 9. сметаат дека даночните или задолжен за: Во овој дел можете да наведете дали данок / цената е само за вреднување (не е дел од вкупниот број) или само за вкупно (не додаваат вредност на ставка) или за двете. 10. Додадете или одлежа: Без разлика дали сакате да го додадете или одземе данок." DocType: Purchase Receipt Item,Recd Quantity,Recd Кол apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Не може да произведе повеќе Точка {0} од Продај Побарувања количина {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Акции Влегување {0} не е поднесен +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Акции Влегување {0} не е поднесен DocType: Payment Reconciliation,Bank / Cash Account,Банка / готовинска сметка DocType: Tax Rule,Billing City,Платежна Сити DocType: Global Defaults,Hide Currency Symbol,Сокриј Валута Симбол @@ -1916,7 +1917,7 @@ DocType: Salary Structure,Total Earning,Вкупно Заработувајќи DocType: Purchase Receipt,Time at which materials were received,На кој беа примени материјали време apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Мои адреси DocType: Stock Ledger Entry,Outgoing Rate,Тековна стапка -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Организација гранка господар. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Организација гранка господар. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,или DocType: Sales Order,Billing Status,Платежна Статус apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Комунални трошоци @@ -1954,7 +1955,7 @@ DocType: Bin,Reserved Quantity,Кол задржани DocType: Landed Cost Voucher,Purchase Receipt Items,Купување Потврда Теми apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Персонализација форми DocType: Account,Income Account,Сметка приходи -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Испорака +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Испорака DocType: Stock Reconciliation Item,Current Qty,Тековни Количина DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",Видете "стапката на материјали врз основа на" Чини во Дел DocType: Appraisal Goal,Key Responsibility Area,Клучна одговорност Површина @@ -1966,8 +1967,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,В DocType: Notification Control,Purchase Order Message,Нарачка порака DocType: Tax Rule,Shipping Country,Превозот Земја DocType: Upload Attendance,Upload HTML,Upload HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})",Вкупно однапред ({0}) против Ред {1} може да не биде поголема \ од Големиот Вкупно ({2}) DocType: Employee,Relieving Date,Ослободување Датум apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Цените Правило е направен за да ја пребришете Ценовник / дефинира попуст процент, врз основа на некои критериуми." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Склад може да се менува само преку берза за влез / Испратница / Купување Потврда @@ -1977,8 +1976,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Да apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Ако е избрано Цените правило е направен за "цената", таа ќе ги избрише ценовникот. Цените Правило цена е крајната цена, па нема повеќе Попустот треба да биде применет. Оттука, во трансакции како Продај Побарувања, нарачка итн, тоа ќе биде Земени се во полето 'стапка ", отколку полето" Ценовник стапка." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Песна води од страна на индустриски тип. DocType: Item Supplier,Item Supplier,Точка Добавувачот -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,Ве молиме внесете Точка законик за да се добие серија не -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},Ве молиме изберете вредност за {0} quotation_to {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,Ве молиме внесете Точка законик за да се добие серија не +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},Ве молиме изберете вредност за {0} quotation_to {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Сите адреси. DocType: Company,Stock Settings,Акции Settings apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Спојувањето е можно само ако следниве својства се исти во двата записи. Е група, корен Тип компанијата" @@ -2001,7 +2000,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Чек број DocType: Payment Tool Detail,Payment Tool Detail,Плаќање алатката Детална ,Sales Browser,Продажбата Browser DocType: Journal Entry,Total Credit,Вкупно кредитни -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Постои Друга {0} {1} # против влез парк {2}: опомена +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Постои Друга {0} {1} # против влез парк {2}: опомена apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Локалните apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Кредити и побарувања (средства) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Должниците @@ -2021,8 +2020,8 @@ DocType: Price List,Price List Master,Ценовник мајстор DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,"Сите Продажбата Трансакцијата може да бидат означени против повеќе ** продажба на лица **, така што ќе може да се постави и да се следи цели." ,S.O. No.,ПА број DocType: Production Order Operation,Make Time Log,Најдете време се Влез -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Ве молиме да го поставите редоследот квантитетот -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},Ве молиме да се создаде клиент од водечкиот {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Ве молиме да го поставите редоследот квантитетот +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},Ве молиме да се создаде клиент од водечкиот {0} DocType: Price List,Applicable for Countries,Применливи за земјите apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Компјутери apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,Ова е коренот на клиентите група и не може да се уредува. @@ -2058,7 +2057,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Пла DocType: Payment Reconciliation Invoice,Outstanding Amount,Преостанатиот износ за наплата DocType: Project Task,Working,Работната DocType: Stock Ledger Entry,Stock Queue (FIFO),Акции на дното (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Ве молиме изберете Време на дневници. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Ве молиме изберете Време на дневници. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} не припаѓа на компанијата {1} DocType: Account,Round Off,Заокружуваат ,Requested Qty,Бара Количина @@ -2096,7 +2095,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Добие релевантни записи apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Сметководство за влез на берза DocType: Sales Invoice,Sales Team1,Продажбата Team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Точка {0} не постои +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Точка {0} не постои DocType: Sales Invoice,Customer Address,Клиент адреса DocType: Payment Request,Recipient and Message,Примачот и порака DocType: Purchase Invoice,Apply Additional Discount On,Да важат и дополнителни попуст на @@ -2115,7 +2114,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Неми-пошта apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Храна, пијалаци и тутун" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL или диплома -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Може само да се направи исплата против нефактурираното {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Може само да се направи исплата против нефактурираното {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Комисијата стапка не може да биде поголема од 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Минимална Инвентар ниво DocType: Stock Entry,Subcontract,Поддоговор @@ -2133,9 +2132,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Софтв apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Боја DocType: Maintenance Visit,Scheduled,Закажана apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle",Ве молиме одберете ја изборната ставка каде што "Дали берза Точка" е "Не" и "е продажба точка" е "Да" и не постои друг Бовча производ +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Вкупно однапред ({0}) против нарачка {1} не може да биде поголема од Големиот вкупно ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Изберете Месечен Дистрибуција на нерамномерно дистрибуира цели низ месеци. DocType: Purchase Invoice Item,Valuation Rate,Вреднување стапка -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Ценовник Валута не е избрано +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Ценовник Валута не е избрано apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,Точка ред {0}: Набавка Потврда {1} не постои во горната табела "Набавка Разписки" apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Вработен {0} веќе има поднесено барање за {1} помеѓу {2} и {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Почеток на проектот Датум @@ -2147,6 +2147,7 @@ DocType: Quality Inspection,Inspection Type,Тип на инспекцијата apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},Ве молиме изберете {0} DocType: C-Form,C-Form No,C-Образец бр DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,необележани Публика apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Истражувач apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,Ве молиме да се спаси Билтен пред да ја испратите apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Име или е-пошта е задолжително @@ -2172,7 +2173,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Пот DocType: Payment Gateway,Gateway,Портал apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Добавувачот> Добавувачот Тип apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Ве молиме внесете ослободување датум. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,АМТ +apps/erpnext/erpnext/controllers/trends.py +138,Amt,АМТ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,Остави само Пријавите со статус 'одобрена "може да се поднесе apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Наслов адреса е задолжително. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,"Внесете го името на кампања, ако извор на истрага е кампања" @@ -2187,10 +2188,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Прифатени Магац DocType: Bank Reconciliation Detail,Posting Date,Датум на објавување DocType: Item,Valuation Method,Начин на вреднување apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Не може да се најде на девизниот курс за {0} до {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Марк Половина ден DocType: Sales Invoice,Sales Team,Тим за продажба apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Дупликат внес DocType: Serial No,Under Warranty,Под гаранција -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Грешка] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Грешка] DocType: Sales Order,In Words will be visible once you save the Sales Order.,Во Зборови ќе бидат видливи откако ќе го спаси Продај Побарувања. ,Employee Birthday,Вработен Роденден apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Вложување на капитал @@ -2213,6 +2215,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,Трошоците центар со постојните трансакции не може да се конвертира во групата DocType: Account,Depreciation,Амортизација apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Добавувачот (и) +DocType: Employee Attendance Tool,Employee Attendance Tool,Вработен Публика алатката DocType: Supplier,Credit Limit,Кредитен лимит apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Изберете тип на трансакција DocType: GL Entry,Voucher No,Ваучер Не @@ -2239,7 +2242,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Root сметката не може да се избришат ,Is Primary Address,Е Основен адреса DocType: Production Order,Work-in-Progress Warehouse,Работа во прогрес Магацински -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Референтен # {0} датум {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Референтен # {0} датум {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Управуваат со адреси DocType: Pricing Rule,Item Code,Точка законик DocType: Production Planning Tool,Create Production Orders,Креирај Производство Нарачка @@ -2266,7 +2269,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Банка помирување apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Добијат ажурирања apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Материјал Барање {0} е откажана или запрена apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Додадете неколку записи примерок -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Остави менаџмент +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Остави менаџмент apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Група од сметка DocType: Sales Order,Fully Delivered,Целосно Дадени DocType: Lead,Lower Income,Помал приход @@ -2281,6 +2284,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"Од датум" мора да биде по "Да најдам" ,Stock Projected Qty,Акции Проектирани Количина apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Клиент {0} не му припаѓа на проектот {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Забележително присуство на HTML DocType: Sales Order,Customer's Purchase Order,Нарачка на купувачот DocType: Warranty Claim,From Company,Од компанијата apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Вредност или Количина @@ -2345,6 +2349,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Wire Transfer apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,Ве молиме изберете банкарска сметка DocType: Newsletter,Create and Send Newsletters,Креирајте и испратете Билтени +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Проверете ги сите DocType: Sales Order,Recurring Order,Повторувачки Побарувања DocType: Company,Default Income Account,Сметка стандардно на доход apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Клиент група / клиентите @@ -2376,6 +2381,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Врати проти DocType: Item,Warranty Period (in days),Гарантниот период (во денови) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Нето готовина од работењето apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,на пример ДДВ +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Публика Марк вработените во Масовно apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Точка 4 DocType: Journal Entry Account,Journal Entry Account,Весник Влегување профил DocType: Shopping Cart Settings,Quotation Series,Серија цитат @@ -2520,14 +2526,14 @@ DocType: Task,Actual Start Date (via Time Logs),Старт на проектот DocType: Stock Reconciliation Item,Before reconciliation,Пред помирување apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},{0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Даноци и давачки Додадено (Фирма валута) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Точка Даночниот спор во {0} мора да има предвид типот Данок или на приход или трошок или Наплатлив +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Точка Даночниот спор во {0} мора да има предвид типот Данок или на приход или трошок или Наплатлив DocType: Sales Order,Partly Billed,Делумно Опишан DocType: Item,Default BOM,Стандардно Бум apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,Ве молиме име ре-вид на компанија за да се потврди apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Вкупно Најдобро Амт DocType: Time Log Batch,Total Hours,Вкупно часови DocType: Journal Entry,Printing Settings,Поставки за печатење -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Вкупно Дебитна мора да биде еднаков Вкупно кредит. Разликата е {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Вкупно Дебитна мора да биде еднаков Вкупно кредит. Разликата е {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Автомобилски apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Од Испратница DocType: Time Log,From Time,Од време @@ -2573,7 +2579,7 @@ DocType: Purchase Invoice Item,Image View,Слика Види DocType: Issue,Opening Time,Отворање Време apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,Од и до датуми потребни apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Хартии од вредност и стоковни берзи -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Стандардно единица мерка за Варијанта '{0}' мора да биде иста како и во Мострата "{1}" +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Стандардно единица мерка за Варијанта '{0}' мора да биде иста како и во Мострата "{1}" DocType: Shipping Rule,Calculate Based On,Се пресмета врз основа на DocType: Delivery Note Item,From Warehouse,Од магацин DocType: Purchase Taxes and Charges,Valuation and Total,Вреднување и вкупно @@ -2595,7 +2601,7 @@ DocType: Leave Application,Follow via Email,Следете ги преку E-mai DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Износот на данокот По Износ попуст apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Сметка детето постои за оваа сметка. Не можете да ја избришете оваа сметка. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Или цел количество: Контакт лице или целниот износ е задолжително -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},Постои стандарден Бум постои точка за {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},Постои стандарден Бум постои точка за {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,Ве молиме изберете ја со Мислењата Датум прв apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Отворање датум треба да биде пред крајниот датум DocType: Leave Control Panel,Carry Forward,Пренесување @@ -2672,7 +2678,7 @@ DocType: Leave Type,Is Encash,Е инкасирам DocType: Purchase Invoice,Mobile No,Мобилни Не DocType: Payment Tool,Make Journal Entry,Направете весник Влегување DocType: Leave Allocation,New Leaves Allocated,Нови лисја Распределени -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Проект-мудар податоци не се достапни за котација +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Проект-мудар податоци не се достапни за котација DocType: Project,Expected End Date,Се очекува Крај Датум DocType: Appraisal Template,Appraisal Template Title,Процена Шаблон Наслов apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Комерцијален @@ -2720,6 +2726,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,И apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Ве молиме наведете DocType: Offer Letter,Awaiting Response,Чекам одговор apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Над +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Време се Вклучи се фактурирани DocType: Salary Slip,Earning & Deduction,Заработувајќи & Одбивање apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,На сметка {0} не може да биде група apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Опционални. Оваа поставка ќе се користи за филтрирање на различни трансакции. @@ -2790,14 +2797,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Успешно избришани сите трансакции поврзани со оваа компанија! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Како на датум apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Условна казна -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Стандардно Магацински е задолжително за акциите точка. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Стандардно Магацински е задолжително за акциите точка. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Исплата на плата за месец {0} и годината {1} DocType: Stock Settings,Auto insert Price List rate if missing,Авто вметнете Ценовник стапка ако недостасува apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Вкупно исплатен износ ,Transferred Qty,Пренесува Количина apps/erpnext/erpnext/config/learn.py +11,Navigating,Навигацијата apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Планирање -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Најдете време Пријавете се Batch +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Најдете време Пријавете се Batch apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Издадени DocType: Project,Total Billing Amount (via Time Logs),Вкупно регистрации Износ (преку Време на дневници) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Ние продаваме Оваа содржина @@ -2805,7 +2812,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Количина треба да биде поголем од 0 DocType: Journal Entry,Cash Entry,Кеш Влегување DocType: Sales Partner,Contact Desc,Контакт Desc -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Тип на листовите како повик, болни итн" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Тип на листовите како повик, болни итн" DocType: Email Digest,Send regular summary reports via Email.,Испрати редовни збирни извештаи преку E-mail. DocType: Brand,Item Manager,Точка менаџер DocType: Cost Center,Add rows to set annual budgets on Accounts.,Додадете редови да го поставите на годишниот буџет на сметки. @@ -2820,7 +2827,7 @@ DocType: GL Entry,Party Type,Партијата Тип apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Суровина којашто не може да биде иста како главна точка DocType: Item Attribute Value,Abbreviation,Кратенка apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Не authroized од {0} надминува граници -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Плата дефиниција господар. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Плата дефиниција господар. DocType: Leave Type,Max Days Leave Allowed,Макс дена ја напушти Дозволено apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Постави Данок Правило за количката DocType: Payment Tool,Set Matching Amounts,Намести појавување на Износите @@ -2833,7 +2840,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Цит DocType: Stock Settings,Role Allowed to edit frozen stock,Улогата дозволено да ја менувате замрзнати акции ,Territory Target Variance Item Group-Wise,Територија Целна Варијанса Точка група-wise apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Сите групи потрошувачи -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} е задолжително. Можеби рекорд размена на валута не е создадена за {1} до {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} е задолжително. Можеби рекорд размена на валута не е создадена за {1} до {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Данок Шаблон е задолжително. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,На сметка {0}: Родител на сметка {1} не постои DocType: Purchase Invoice Item,Price List Rate (Company Currency),Ценовник стапка (Фирма валута) @@ -2853,8 +2860,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Точка Мудрио ,Item-wise Price List Rate,Точка-мудар Ценовник стапка apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Добавувачот цитат DocType: Quotation,In Words will be visible once you save the Quotation.,Во Зборови ќе бидат видливи откако ќе го спаси котација. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} е запрен -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Баркод {0} веќе се користи во точка {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} е запрен +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Баркод {0} веќе се користи во точка {1} DocType: Lead,Add to calendar on this date,Додади во календарот на овој датум apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Правила за додавање на трошоците за испорака. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Престојни настани @@ -2880,8 +2887,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,С apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Барем еден магацин е задолжително DocType: Serial No,Out of Warranty,Надвор од гаранција DocType: BOM Replace Tool,Replace,Заменете -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} против Продај фактура {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Ве молиме внесете го стандардно единица мерка +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} против Продај фактура {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Ве молиме внесете го стандардно единица мерка DocType: Purchase Invoice Item,Project Name,Име на проектот DocType: Supplier,Mention if non-standard receivable account,Наведе ако нестандардни побарувања сметка DocType: Journal Entry Account,If Income or Expense,Ако приходите и расходите @@ -2906,7 +2913,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Фискална година: {0} не постои DocType: Currency Exchange,To Currency,До Валута DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Им овозможи на овие корисници да се одобри отсуство Апликации за блок дена. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Видови на расходи тврдење. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Видови на расходи тврдење. DocType: Item,Taxes,Даноци apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Платени и не предаде DocType: Project,Default Cost Center,Стандардната цена центар @@ -2936,7 +2943,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Ред # {0}: Сериски Не {1} не се совпаѓа со {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Обичните Leave DocType: Batch,Batch ID,Серија проект -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Забелешка: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Забелешка: {0} ,Delivery Note Trends,Испратница трендови apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Краток преглед на оваа недела apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} мора да биде купена или под-договор ставка во ред {1} @@ -2976,6 +2983,7 @@ DocType: Project Task,Pending Review,Во очекување Преглед apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Кликни тука за да плати DocType: Task,Total Expense Claim (via Expense Claim),Вкупно расходи барање (преку трошоците барање) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Id на купувачи +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Марк Отсутни apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,На време мора да биде поголем од Time DocType: Journal Entry Account,Exchange Rate,На девизниот курс apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Продај Побарувања {0} не е поднесен @@ -3023,7 +3031,7 @@ DocType: Item Group,Default Expense Account,Стандардно сметка с DocType: Employee,Notice (days),Известување (во денови) DocType: Tax Rule,Sales Tax Template,Данок на промет Шаблон DocType: Employee,Encashment Date,Датум на инкасо -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Против ваучер типот мора да биде еден од нарачка, купување фактура или весник Влегување" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Против ваучер типот мора да биде еден од нарачка, купување фактура или весник Влегување" DocType: Account,Stock Adjustment,Акциите прилагодување apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Постои Цена стандардно активност за Тип на активност - {0} DocType: Production Order,Planned Operating Cost,Планираните оперативни трошоци @@ -3077,6 +3085,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Отпише Влегување DocType: BOM,Rate Of Materials Based On,Стапка на материјали врз основа на apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Поддршка Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Отстранете ги сите apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Компанијата се водат за исчезнати во магацини {0} DocType: POS Profile,Terms and Conditions,Услови и правила apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},Датум треба да биде во рамките на фискалната година. Претпоставувајќи Да најдам = {0} @@ -3098,7 +3107,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Да го поставите на оваа фискална година како стандарден, кликнете на "Постави како стандарден"" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Поставување на дојдовен сервер за поддршка мејл ID. (На пр support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Недостаток Количина -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Постои ставка варијанта {0} со истите атрибути +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Постои ставка варијанта {0} со истите атрибути DocType: Salary Slip,Salary Slip,Плата фиш apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,"Да најдам 'е потребен DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Генерирање пакување измолкнува за пакети да бидат испорачани. Се користи за да го извести пакет број, содржината на пакетот и неговата тежина." @@ -3146,7 +3155,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,При DocType: Item Attribute Value,Attribute Value,Вредноста на атрибутот apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","E-mail проект мора да биде уникатен, веќе постои за {0}" ,Itemwise Recommended Reorder Level,Itemwise Препорачани Пренареждане ниво -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,Ве молиме изберете {0} Првиот +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,Ве молиме изберете {0} Првиот DocType: Features Setup,To get Item Group in details table,За да се добие Точка група во детали маса apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Серија {0} од точка {1} е истечен. DocType: Sales Invoice,Commission,Комисијата @@ -3190,7 +3199,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Земете Најдобро Ваучери DocType: Warranty Claim,Resolved By,Реши со DocType: Appraisal,Start Date,Датум на почеток -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Распредели листови за одреден период. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Распредели листови за одреден период. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Чекови и депозити неправилно исчистена apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Кликни тука за да се потврди apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,На сметка {0}: Вие не може да се додели како родител сметка @@ -3210,7 +3219,7 @@ DocType: Employee,Educational Qualification,Образовните квалиф DocType: Workstation,Operating Costs,Оперативни трошоци DocType: Employee Leave Approver,Employee Leave Approver,Вработен Остави Approver apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} е успешно додаден во нашиот листа Билтен. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Ред {0}: Тоа е внесување Пренареждане веќе постои за оваа магацин {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Ред {0}: Тоа е внесување Пренареждане веќе постои за оваа магацин {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Не може да се декларираат како изгубени, бидејќи цитат е направен." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Купување мајстор менаџер apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Производство на налози {0} мора да се поднесе @@ -3234,7 +3243,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Продај фактура {0} е веќе испратена apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Датум на завршување DocType: Purchase Invoice Item,Amount (Company Currency),Износ (Фирма валута) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Организациона единица (оддел) господар. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Организациона единица (оддел) господар. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Ве молиме внесете валидна мобилен бр DocType: Budget Detail,Budget Detail,Буџетот Детална apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,Ве молиме внесете ја пораката пред испраќањето @@ -3250,13 +3259,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Примени и приф ,Serial No Service Contract Expiry,Сериски Нема договор за услуги Важи DocType: Item,Unit of Measure Conversion,Единица мерка конверзија apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Работникот не може да се промени -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Вие не може да кредитни и дебитни истата сметка во исто време +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Вие не може да кредитни и дебитни истата сметка во исто време DocType: Naming Series,Help HTML,Помош HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Вкупно weightage доделени треба да биде 100%. Тоа е {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Додаток за надминување {0} преминал за Точка {1} DocType: Address,Name of person or organization that this address belongs to.,Име на лицето или организацијата која оваа адреса припаѓа. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Вашите добавувачи -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,Не може да се постави како изгубени како Продај Побарувања е направен. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,Не може да се постави како изгубени како Продај Побарувања е направен. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,Уште една плата структура {0} е активен за вработен {1}. Ве молиме да го направи својот статус како "неактивен" за да продолжите. DocType: Purchase Invoice,Contact,Контакт apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Добиени од @@ -3266,11 +3275,11 @@ DocType: Item,Has Serial No,Има серија № DocType: Employee,Date of Issue,Датум на издавање apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: Од {0} {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Ред # {0}: Постави Добавувачот за ставката {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Веб-страница на слика {0} прилог Точка {1} Не може да се најде +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Веб-страница на слика {0} прилог Точка {1} Не може да се најде DocType: Issue,Content Type,Типот на содржина apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Компјутер DocType: Item,List this Item in multiple groups on the website.,Листа на оваа точка во повеќе групи на веб страната. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,Ве молиме проверете ја опцијата Мулти Валута да им овозможи на сметки со друга валута +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,Ве молиме проверете ја опцијата Мулти Валута да им овозможи на сметки со друга валута apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Точка: {0} не постои во системот apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Немате дозвола да го поставите Замрзнати вредност DocType: Payment Reconciliation,Get Unreconciled Entries,Земете неусогласеност записи @@ -3280,14 +3289,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Што да DocType: Delivery Note,To Warehouse,Да се Магацински apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},На сметка {0} е внесен повеќе од еднаш за фискалната година {1} ,Average Commission Rate,Просечната стапка на Комисијата -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,"Мора Сериски Не" не може да биде "Да" за не-парк точка +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,"Мора Сериски Не" не може да биде "Да" за не-парк точка apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Публика не можат да бидат означени за идните датуми DocType: Pricing Rule,Pricing Rule Help,Цените Правило Помош DocType: Purchase Taxes and Charges,Account Head,Сметка на главата apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Ажурирање на дополнителни трошоци за да се пресмета слета трошоците за предмети apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Електрични DocType: Stock Entry,Total Value Difference (Out - In),Вкупно разликата вредност (Out - Во) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Ред {0}: курс е задолжително +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Ред {0}: курс е задолжително apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},ID на корисникот не е поставена за вработените {0} DocType: Stock Entry,Default Source Warehouse,Стандардно Извор Магацински DocType: Item,Customer Code,Код на клиентите @@ -3306,15 +3315,15 @@ DocType: Notification Control,Sales Invoice Message,Порака Продај ф apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Завршната сметка {0} мора да биде од типот Одговорност / инвестициски фондови DocType: Authorization Rule,Based On,Врз основа на DocType: Sales Order Item,Ordered Qty,Нареди Количина -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Ставката {0} е оневозможено +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Ставката {0} е оневозможено DocType: Stock Settings,Stock Frozen Upto,Акции Замрзнати до apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Период од периодот и роковите на задолжителна за периодични {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Проектна активност / задача. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Генерирање на исплатните листи +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Генерирање на исплатните листи apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Купување мора да се провери, ако е применливо за е избран како {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Попуст смее да биде помал од 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Отпише Износ (Фирма валута) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Ред # {0}: Поставете редоследот квантитетот +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Ред # {0}: Поставете редоследот квантитетот DocType: Landed Cost Voucher,Landed Cost Voucher,Слета Цена на ваучер apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},Ве молиме да се постави {0} DocType: Purchase Invoice,Repeat on Day of Month,Повторете на Денот од месецот @@ -3366,7 +3375,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Стандардно работа во магацин за напредокот apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Стандардните поставувања за сметководствени трансакции. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Очекуваниот датум не може да биде пред Материјал Барање Датум -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Точка {0} мора да биде Продажбата Точка +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Точка {0} мора да биде Продажбата Точка DocType: Naming Series,Update Series Number,Ажурирање Серија број DocType: Account,Equity,Капитал DocType: Sales Order,Printing Details,Детали за печатење @@ -3418,7 +3427,7 @@ DocType: Task,Review Date,Преглед Датум DocType: Purchase Invoice,Advance Payments,Аконтации DocType: Purchase Taxes and Charges,On Net Total,Он Нет Вкупно apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Целна магацин во ред {0} мора да биде иста како цел производство -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Нема дозвола за користење на плаќање алатката +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Нема дозвола за користење на плаќање алатката apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,"Известување-мејл адреси не е наведен за повторување на% s apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Валута не може да се промени по правење записи со употреба на други валута DocType: Company,Round Off Account,Заокружуваат профил @@ -3441,7 +3450,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Кол од точка добиени по производство / препакување од даден количини на суровини DocType: Payment Reconciliation,Receivable / Payable Account,Побарувања / Платив сметка DocType: Delivery Note Item,Against Sales Order Item,Против Продај Побарувања Точка -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},Ве молиме наведете Атрибут Вредноста за атрибутот {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},Ве молиме наведете Атрибут Вредноста за атрибутот {0} DocType: Item,Default Warehouse,Стандардно Магацински DocType: Task,Actual End Date (via Time Logs),Крај Крај Датум (преку Време на дневници) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Буџетот не може да биде доделен од група на сметка {0} @@ -3466,10 +3475,10 @@ DocType: Lead,Blog Subscriber,Блог Претплатникот apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Создаде правила за ограничување на трансакции врз основа на вредности. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Ако е обележано, Вкупно бр. на работните денови ќе бидат вклучени празници, а со тоа ќе се намали вредноста на платата по ден" DocType: Purchase Invoice,Total Advance,Вкупно напредување -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Обработка на платен список +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Обработка на платен список DocType: Opportunity Item,Basic Rate,Основната стапка DocType: GL Entry,Credit Amount,Износ на кредитот -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Постави како изгубени +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Постави како изгубени apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Плаќање Потврда Забелешка DocType: Supplier,Credit Days Based On,Кредитна дена врз основа на DocType: Tax Rule,Tax Rule,Данок Правило @@ -3499,7 +3508,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Прифатени Кол apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} не постои apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Сметки се зголеми на клиенти. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,На проект -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Ред Нема {0}: Износ не може да биде поголема од До Износ против расходи Тврдат {1}. Во очекување сума е {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Ред Нема {0}: Износ не може да биде поголема од До Износ против расходи Тврдат {1}. Во очекување сума е {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,Додадени {0} претплатници DocType: Maintenance Schedule,Schedule,Распоред DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Дефинираат Буџетот за оваа цена центар. За да го поставите на буџетот акција, видете "компанијата Листа"" @@ -3560,19 +3569,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS Профил DocType: Payment Gateway Account,Payment URL Message,Плаќање рачно порака apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Сезоната за поставување на буџети, цели итн" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Ред {0}: Плаќањето сума не може да биде поголем од преостанатиот износ за наплата +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Ред {0}: Плаќањето сума не може да биде поголем од преостанатиот износ за наплата apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Вкупно ненаплатени -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Време најавите не е фактурираните -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Точка {0} е шаблон, ве молиме изберете една од неговите варијанти" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Време најавите не е фактурираните +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Точка {0} е шаблон, ве молиме изберете една од неговите варијанти" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Купувачот apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Нето плата со која не може да биде негативен -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Ве молиме внесете го Против Ваучери рачно +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Ве молиме внесете го Против Ваучери рачно DocType: SMS Settings,Static Parameters,Статични параметрите DocType: Purchase Order,Advance Paid,Однапред платени DocType: Item,Item Tax,Точка Данок apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Материјал на Добавувачот apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Акцизни Фактура DocType: Expense Claim,Employees Email Id,Вработените-пошта Id +DocType: Employee Attendance Tool,Marked Attendance,означени Публика apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Тековни обврски apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Испрати маса SMS порака на вашите контакти DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Сметаат дека даночните или полнење за @@ -3595,7 +3605,7 @@ DocType: Item Attribute,Numeric Values,Нумерички вредности apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Прикачи Logo DocType: Customer,Commission Rate,Комисијата стапка apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Направи Варијанта -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Апликации одмор блок од страна на одделот. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Апликации одмор блок од страна на одделот. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Кошничка е празна DocType: Production Order,Actual Operating Cost,Крај на оперативни трошоци apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Корен не може да се уредува. @@ -3614,7 +3624,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,"Автоматски се создаде материјал барањето, доколку количината паѓа под ова ниво" ,Item-wise Purchase Register,Точка-мудар Набавка Регистрирај се DocType: Batch,Expiry Date,Датумот на истекување -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item",Да го поставите нивото редоследот точка мора да биде Набавка Точка или Производство Точка +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item",Да го поставите нивото редоследот точка мора да биде Набавка Точка или Производство Точка ,Supplier Addresses and Contacts,Добавувачот адреси и контакти apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,Ве молиме изберете категорија во првата apps/erpnext/erpnext/config/projects.py +18,Project master.,Господар на проектот. diff --git a/erpnext/translations/ml.csv b/erpnext/translations/ml.csv index 33de241511..4b4ae91f45 100644 --- a/erpnext/translations/ml.csv +++ b/erpnext/translations/ml.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,കമ്പനി ക DocType: Delivery Note,Installation Status,ഇന്സ്റ്റലേഷന് അവസ്ഥ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},സമ്മതിച്ച + Qty ഇനം {0} ലഭിച്ചത് അളവ് തുല്യമോ ആയിരിക്കണം നിരസിച്ചു DocType: Item,Supply Raw Materials for Purchase,വാങ്ങൽ വേണ്ടി സപ്ലൈ അസംസ്കൃത വസ്തുക്കൾ -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,ഇനം {0} ഒരു വാങ്ങൽ ഇനം ആയിരിക്കണം +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,ഇനം {0} ഒരു വാങ്ങൽ ഇനം ആയിരിക്കണം DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","ഫലകം ഡൗൺലോഡ്, ഉചിതമായ ഡാറ്റ പൂരിപ്പിക്കുക പ്രമാണത്തെ കൂട്ടിച്ചേർക്കുക. തിരഞ്ഞെടുത്ത കാലയളവിൽ എല്ലാ തീയതി ജീവനക്കാരൻ കോമ്പിനേഷൻ നിലവിലുള്ള ഹാജർ രേഖകളുമായി, ടെംപ്ലേറ്റ് വരും" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,ഇനം {0} സജീവ അല്ലെങ്കിൽ ജീവിതാവസാനം അല്ല എത്തികഴിഞ്ഞു DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,സെയിൽസ് ഇൻവോയിസ് സമർപ്പിച്ചു കഴിഞ്ഞാൽ അപ്ഡേറ്റ് ചെയ്യും. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","നികുതി ഉൾപ്പെടുത്തുന്നതിനായി നിരയിൽ {0} ഇനം നിരക്ക്, വരികൾ {1} ലെ നികുതികൾ കൂടി ഉൾപ്പെടുത്തും വേണം" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,എച്ച് മൊഡ്യൂൾ വേണ്ടി ക്രമീകരണങ്ങൾ +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","നികുതി ഉൾപ്പെടുത്തുന്നതിനായി നിരയിൽ {0} ഇനം നിരക്ക്, വരികൾ {1} ലെ നികുതികൾ കൂടി ഉൾപ്പെടുത്തും വേണം" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,എച്ച് മൊഡ്യൂൾ വേണ്ടി ക്രമീകരണങ്ങൾ DocType: SMS Center,SMS Center,എസ്എംഎസ് കേന്ദ്രം DocType: BOM Replace Tool,New BOM,പുതിയ BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,ബില്ലിംഗിനായി ബാച്ച് സമയം ലോഗുകൾ. @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,നിബന്ധനകളു DocType: Production Planning Tool,Sales Orders,സെയിൽസ് ഉത്തരവുകൾ DocType: Purchase Taxes and Charges,Valuation,വിലമതിക്കല് ,Purchase Order Trends,ഓർഡർ ട്രെൻഡുകൾ വാങ്ങുക -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,വർഷം ഇല മതി. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,വർഷം ഇല മതി. DocType: Earning Type,Earning Type,വരുമാനമുള്ള തരം DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,ശേഷി ആസൂത്രണ സമയം ട്രാക്കിംഗ് പ്രവർത്തനരഹിതമാക്കുക DocType: Bank Reconciliation,Bank Account,ബാങ്ക് അക്കൗണ്ട് @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,ഇനം വെബ്സൈറ്റ് സ്പെസിഫിക്കേഷൻ DocType: Payment Tool,Reference No,റഫറൻസ് ഇല്ല apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,വിടുക തടയപ്പെട്ട -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},ഇനം {0} {1} ജീവിതം അതിന്റെ അവസാനം എത്തിയിരിക്കുന്നു +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},ഇനം {0} {1} ജീവിതം അതിന്റെ അവസാനം എത്തിയിരിക്കുന്നു apps/erpnext/erpnext/accounts/utils.py +341,Annual,വാർഷിക DocType: Stock Reconciliation Item,Stock Reconciliation Item,ഓഹരി അനുരഞ്ജനം ഇനം DocType: Stock Entry,Sales Invoice No,സെയിൽസ് ഇൻവോയിസ് ഇല്ല @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,മിനിമം ഓർഡർ Qty DocType: Pricing Rule,Supplier Type,വിതരണക്കാരൻ തരം DocType: Item,Publish in Hub,ഹബ് ലെ പ്രസിദ്ധീകരിക്കുക ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,ഇനം {0} റദ്ദാക്കി +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,ഇനം {0} റദ്ദാക്കി apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,മെറ്റീരിയൽ അഭ്യർത്ഥന DocType: Bank Reconciliation,Update Clearance Date,അപ്ഡേറ്റ് ക്ലിയറൻസ് തീയതി DocType: Item,Purchase Details,വിശദാംശങ്ങൾ വാങ്ങുക @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,നിരസിച്ചു ക DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","ഡെലിവറി നോട്ട്, ക്വട്ടേഷൻ, സെയിൽസ് ഇൻവോയിസ്, സെയിൽസ് ഓർഡർ ലഭ്യമാണ് ഫീൽഡ്" DocType: SMS Settings,SMS Sender Name,എസ്എംഎസ് പ്രേഷിതനാമം DocType: Contact,Is Primary Contact,പ്രാഥമിക കോൺടാക്റ്റിലുണ്ടെങ്കിൽ +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,സമയം ലോഗ് ബില്ലിംഗിനായി ബാച്ചുചെയ്ത ചെയ്തു DocType: Notification Control,Notification Control,അറിയിപ്പ് നിയന്ത്രണ DocType: Lead,Suggestions,നിർദ്ദേശങ്ങൾ DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,"ഈ പ്രദേശത്തിന്റെ മേൽ ഇനം ഗ്രൂപ്പ് തിരിച്ചുള്ള ബജറ്റുകൾ സജ്ജമാക്കുക. ഇതിനു പുറമേ, വിതരണം ക്റമികരിക്കുക seasonality ഉൾപ്പെടുത്താൻ കഴിയും." apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},പണ്ടകശാല {0} വേണ്ടി പാരന്റ് അക്കൗണ്ട് ഗ്രൂപ്പ് നൽകുക -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},{0} {1} നിലവിലുള്ള തുക {2} വലുതായിരിക്കും കഴിയില്ല നേരെ പേയ്മെന്റ് +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},{0} {1} നിലവിലുള്ള തുക {2} വലുതായിരിക്കും കഴിയില്ല നേരെ പേയ്മെന്റ് DocType: Supplier,Address HTML,വിലാസം എച്ച്ടിഎംഎൽ DocType: Lead,Mobile No.,മൊബൈൽ നമ്പർ DocType: Maintenance Schedule,Generate Schedule,ഷെഡ്യൂൾ ജനറേറ്റുചെയ്യൂ @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,ഹബ് കൂടി സമന്വയിപ്പിച്ചു apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,തെറ്റായ പാസ്വേഡ് DocType: Item,Variant Of,ഓഫ് വേരിയന്റ് -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,ഇനം {0} സേവന ഇനം ആയിരിക്കണം apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',പൂർത്തിയാക്കി Qty 'Qty നിർമ്മിക്കാനുള്ള' വലുതായിരിക്കും കഴിയില്ല DocType: Period Closing Voucher,Closing Account Head,അടയ്ക്കുന്ന അക്കൗണ്ട് ഹെഡ് DocType: Employee,External Work History,പുറത്തേക്കുള്ള വർക്ക് ചരിത്രം @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,വാർത്താക്കുറിപ്പ DocType: Stock Settings,Notify by Email on creation of automatic Material Request,ഓട്ടോമാറ്റിക് മെറ്റീരിയൽ അഭ്യർത്ഥന സൃഷ്ടിക്ക് ന് ഇമെയിൽ വഴി അറിയിക്കുക DocType: Journal Entry,Multi Currency,മൾട്ടി കറൻസി DocType: Payment Reconciliation Invoice,Invoice Type,ഇൻവോയിസ് തരം -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,ഡെലിവറി നോട്ട് +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,ഡെലിവറി നോട്ട് apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,നികുതികൾ സജ്ജമാക്കുന്നു apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,നിങ്ങൾ അതു കടിച്ചുകീറി ശേഷം പെയ്മെന്റ് എൻട്രി പരിഷ്ക്കരിച്ചു. വീണ്ടും തുടയ്ക്കുക ദയവായി. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} ഇനം നികുതി തവണ പ്രവേശിച്ചപ്പോൾ +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} ഇനം നികുതി തവണ പ്രവേശിച്ചപ്പോൾ apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,ഈ ആഴ്ച തിർച്ചപ്പെടുത്താത്ത പ്രവർത്തനങ്ങൾക്കായി ചുരുക്കം DocType: Workstation,Rent Cost,രെംട് ചെലവ് apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,മാസം വർഷം തിരഞ്ഞെടുക്കുക @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,രാജ്യങ്ങൾ സാധ DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","കറൻസി, പരിവർത്തന നിരക്ക്, ഇറക്കുമതിയും മൊത്തം ഇറക്കുമതി ആകെ മുതലായവ വാങ്ങൽ റെസീപ്റ്റ് യിൽ ലഭ്യമാണ്, വിതരണക്കാരൻ ക്വട്ടേഷൻ, വാങ്ങൽ ഇൻവോയിസ്, തുടങ്ങിയവ വാങ്ങൽ ഓർഡർ പോലുള്ള എല്ലാ ഇറക്കുമതിയും ബന്ധപ്പെട്ട നിലങ്ങളും" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,ഈ ഇനം ഒരു ഫലകം ആണ് ഇടപാടുകൾ ഉപയോഗിക്കാവൂ കഴിയില്ല. 'നോ പകർത്തുക' വെച്ചിരിക്കുന്നു ചെയ്തിട്ടില്ലെങ്കിൽ ഇനം ആട്റിബ്യൂട്ടുകൾക്ക് വകഭേദങ്ങളും കടന്നുവന്നു പകർത്തുന്നു apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,ആകെ ഓർഡർ പരിഗണിക്കും -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","ജീവനക്കാർ പദവിയും (ഉദാ സിഇഒ, ഡയറക്ടർ മുതലായവ)." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","ജീവനക്കാർ പദവിയും (ഉദാ സിഇഒ, ഡയറക്ടർ മുതലായവ)." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,ഫീൽഡ് മൂല്യം 'ഡേ മാസം ആവർത്തിക്കുക' നൽകുക DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,കസ്റ്റമർ നാണയ ഉപഭോക്താവിന്റെ അടിസ്ഥാന കറൻസി മാറ്റുമ്പോൾ തോത് DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","BOM ലേക്ക്, ഡെലിവറി നോട്ട്, വാങ്ങൽ ഇൻവോയിസ്, പ്രൊഡക്ഷൻ ഓർഡർ, പർച്ചേസ് ഓർഡർ, പർച്ചേസ് രസീത്, സെയിൽസ് ഇൻവോയിസ്, സെയിൽസ് ഓർഡർ, ഓഹരി എൻട്രി, Timesheet ലഭ്യം" @@ -355,7 +355,7 @@ DocType: Workstation,Consumable Cost,Consumable ചെലവ് apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) പങ്ക് 'അനുവാദ Approver' ഉണ്ടായിരിക്കണം DocType: Purchase Receipt,Vehicle Date,വാഹന തീയതി apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,മെഡിക്കൽ -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,നഷ്ടപ്പെടുമെന്നു കാരണം +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,നഷ്ടപ്പെടുമെന്നു കാരണം apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},വർക്ക്സ്റ്റേഷൻ ഹോളിഡേ പട്ടിക പ്രകാരം താഴെപ്പറയുന്ന തീയതികളിൽ അടച്ചിടുന്നു: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,അവസരങ്ങൾ DocType: Employee,Single,സിംഗിൾ @@ -383,14 +383,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,ചാനൽ പങ്കാളി DocType: Account,Old Parent,പഴയ പേരന്റ്ഫോള്ഡര് DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,ആ ഇമെയിൽ ഭാഗമായി പോകുന്ന ആമുഖ വാചകം ഇഷ്ടാനുസൃതമാക്കുക. ഓരോ ഇടപാട് ഒരു പ്രത്യേക ആമുഖ ടെക്സ്റ്റ് ഉണ്ട്. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),ചിഹ്നങ്ങൾ (ഉദാ. $) ഉൾപ്പെടുത്തരുത് DocType: Sales Taxes and Charges Template,Sales Master Manager,സെയിൽസ് മാസ്റ്റർ മാനേജർ apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,എല്ലാ നിർമാണ പ്രക്രിയകൾ വേണ്ടി ആഗോള ക്രമീകരണങ്ങൾ. DocType: Accounts Settings,Accounts Frozen Upto,ശീതീകരിച്ച വരെ അക്കൗണ്ടുകൾ DocType: SMS Log,Sent On,ദിവസം അയച്ചു -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,ഗുണ {0} വിശേഷണങ്ങൾ പട്ടിക ഒന്നിലധികം തവണ തെരഞ്ഞെടുത്തു +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,ഗുണ {0} വിശേഷണങ്ങൾ പട്ടിക ഒന്നിലധികം തവണ തെരഞ്ഞെടുത്തു DocType: HR Settings,Employee record is created using selected field. ,ജീവനക്കാർ റെക്കോർഡ് തിരഞ്ഞെടുത്ത ഫീൽഡ് ഉപയോഗിച്ച് സൃഷ്ടിക്കപ്പെട്ടിരിക്കുന്നത്. DocType: Sales Order,Not Applicable,ബാധകമല്ല -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,ഹോളിഡേ മാസ്റ്റർ. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,ഹോളിഡേ മാസ്റ്റർ. DocType: Material Request Item,Required Date,ആവശ്യമായ തീയതി DocType: Delivery Note,Billing Address,ബില്ലിംഗ് വിലാസം apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,ഇനം കോഡ് നൽകുക. @@ -426,7 +427,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,സംഭരണശാല മെറ്റീരിയൽ അഭ്യർത്ഥന ഉയർത്തുകയും ചെയ്യുന്ന വേണ്ടി നൽകുക DocType: Production Order,Additional Operating Cost,അധിക ഓപ്പറേറ്റിംഗ് ചെലവ് apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,കോസ്മെറ്റിക്സ് -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","ലയിപ്പിക്കാൻ, താഴെ പറയുന്ന ആണ് ഇരു ഇനങ്ങളുടെ ഒരേ ആയിരിക്കണം" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","ലയിപ്പിക്കാൻ, താഴെ പറയുന്ന ആണ് ഇരു ഇനങ്ങളുടെ ഒരേ ആയിരിക്കണം" DocType: Shipping Rule,Net Weight,മൊത്തം ഭാരം DocType: Employee,Emergency Phone,എമർജൻസി ഫോൺ ,Serial No Warranty Expiry,സീരിയൽ വാറണ്ടിയില്ല കാലഹരണ @@ -481,17 +482,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,"ബില്ലിംഗ്, ഡെലിവറി സ്റ്റാറ്റസ്" apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,ആവർത്തിക്കുക ഇടപാടുകാർ DocType: Leave Control Panel,Allocate,നീക്കിവയ്ക്കുക -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,സെയിൽസ് മടങ്ങിവരവ് +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,സെയിൽസ് മടങ്ങിവരവ് DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,നിങ്ങൾ പ്രൊഡക്ഷൻ ഉത്തരവുകൾ സൃഷ്ടിക്കാൻ ആഗ്രഹിക്കുന്ന സെയിൽസ് ഉത്തരവുകൾ തിരഞ്ഞെടുക്കുക. DocType: Item,Delivered by Supplier (Drop Ship),വിതരണക്കാരൻ (ഡ്രോപ്പ് കപ്പൽ) നൽകുന്ന -apps/erpnext/erpnext/config/hr.py +120,Salary components.,ശമ്പളം ഘടകങ്ങൾ. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,ശമ്പളം ഘടകങ്ങൾ. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,സാധ്യതയുള്ള ഉപഭോക്താക്കൾ ഡാറ്റാബേസിൽ. DocType: Authorization Rule,Customer or Item,കസ്റ്റമർ അല്ലെങ്കിൽ ഇനം apps/erpnext/erpnext/config/crm.py +17,Customer database.,കസ്റ്റമർ ഡാറ്റാബേസ്. DocType: Quotation,Quotation To,ക്വട്ടേഷൻ ചെയ്യുക DocType: Lead,Middle Income,മിഡിൽ ആദായ apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),തുറക്കുന്നു (CR) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,നിങ്ങൾ ഇതിനകം മറ്റൊരു UOM കൊണ്ട് ചില ഇടപാട് (ങ്ങൾ) നടത്തിയതിനാലോ ഇനം അളവ് സ്വതവേയുള്ള യൂണിറ്റ് {0} നേരിട്ട് മാറ്റാൻ കഴിയില്ല. നിങ്ങൾ ഒരു വ്യത്യസ്ത സ്വതേ UOM ഉപയോഗിക്കാൻ ഒരു പുതിയ ഇനം സൃഷ്ടിക്കേണ്ടതുണ്ട്. +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,നിങ്ങൾ ഇതിനകം മറ്റൊരു UOM കൊണ്ട് ചില ഇടപാട് (ങ്ങൾ) നടത്തിയതിനാലോ ഇനം അളവ് സ്വതവേയുള്ള യൂണിറ്റ് {0} നേരിട്ട് മാറ്റാൻ കഴിയില്ല. നിങ്ങൾ ഒരു വ്യത്യസ്ത സ്വതേ UOM ഉപയോഗിക്കാൻ ഒരു പുതിയ ഇനം സൃഷ്ടിക്കേണ്ടതുണ്ട്. apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,പദ്ധതി തുക നെഗറ്റീവ് ആയിരിക്കാൻ കഴിയില്ല DocType: Purchase Order Item,Billed Amt,വസതി ശാരീരിക DocType: Warehouse,A logical Warehouse against which stock entries are made.,സ്റ്റോക്ക് എൻട്രികൾ നിർമ്മിക്കുന്ന നേരെ ഒരു ലോജിക്കൽ വെയർഹൗസ്. @@ -510,14 +511,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,സെയിൽസ് നിക DocType: Employee,Organization Profile,ഓർഗനൈസേഷൻ പ്രൊഫൈൽ apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,ദയവായി സെറ്റപ്പ്> നമ്പറിംഗ് സീരീസ് വഴി ഹാജർ വിവരത്തിനു നമ്പറിംഗ് പരമ്പര DocType: Employee,Reason for Resignation,രാജി കാരണം -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,പ്രകടനം യമുനയുടെ വേണ്ടി ഫലകം. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,പ്രകടനം യമുനയുടെ വേണ്ടി ഫലകം. DocType: Payment Reconciliation,Invoice/Journal Entry Details,ഇൻവോയിസ് / ജേർണൽ എൻട്രി വിവരങ്ങൾ apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' അല്ല സാമ്പത്തിക വർഷം {2} ൽ DocType: Buying Settings,Settings for Buying Module,വാങ്ങൽ മൊഡ്യൂൾ വേണ്ടി ക്രമീകരണങ്ങൾ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,പർച്ചേസ് റെസീപ്റ്റ് ആദ്യം നൽകുക DocType: Buying Settings,Supplier Naming By,ആയപ്പോഴേക്കും വിതരണക്കാരൻ നാമകരണ DocType: Activity Type,Default Costing Rate,സ്ഥിരസ്ഥിതി ആറെണ്ണവും റേറ്റ് -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,മെയിൻറനൻസ് ഷെഡ്യൂൾ +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,മെയിൻറനൻസ് ഷെഡ്യൂൾ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","അപ്പോൾ വിലനിർണ്ണയത്തിലേക്ക് കസ്റ്റമർ, കസ്റ്റമർ ഗ്രൂപ്പ്, ടെറിട്ടറി, വിതരണക്കാരൻ, വിതരണക്കാരൻ ടൈപ്പ്, കാമ്പയിൻ, തുടങ്ങിയവ സെയിൽസ് പങ്കാളി അടിസ്ഥാനമാക്കി ഔട്ട് ഫിൽറ്റർ" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,ഇൻവെന്ററി ലെ മൊത്തം മാറ്റം DocType: Employee,Passport Number,പാസ്പോർട്ട് നമ്പർ @@ -556,7 +557,7 @@ DocType: Purchase Invoice,Quarterly,പാദവാർഷികം DocType: Selling Settings,Delivery Note Required,ഡെലിവറി നോട്ട് ആവശ്യമാണ് DocType: Sales Order Item,Basic Rate (Company Currency),അടിസ്ഥാന നിരക്ക് (കമ്പനി കറൻസി) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush അസംസ്കൃത വസ്തുക്കൾ അടിസ്ഥാനത്തിൽ ഓൺ -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,ഐറ്റം വിശദാംശങ്ങൾ നൽകുക +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,ഐറ്റം വിശദാംശങ്ങൾ നൽകുക DocType: Purchase Receipt,Other Details,മറ്റ് വിവരങ്ങൾ DocType: Account,Accounts,അക്കൗണ്ടുകൾ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,മാർക്കറ്റിംഗ് @@ -569,7 +570,7 @@ DocType: Employee,Provide email id registered in company,കമ്പനിയ DocType: Hub Settings,Seller City,വില്പനക്കാരന്റെ സിറ്റി DocType: Email Digest,Next email will be sent on:,അടുത്തത് ഇമെയിൽ ന് അയയ്ക്കും: DocType: Offer Letter Term,Offer Letter Term,കത്ത് ടേം ഓഫർ -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,ഇനം വകഭേദങ്ങളും ഉണ്ട്. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,ഇനം വകഭേദങ്ങളും ഉണ്ട്. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,ഇനം {0} കാണാനായില്ല DocType: Bin,Stock Value,സ്റ്റോക്ക് മൂല്യം apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,ട്രീ തരം @@ -577,7 +578,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,യൂണിറ്റിന് DocType: Serial No,Warranty Expiry Date,വാറന്റി കാലഹരണ തീയതി DocType: Material Request Item,Quantity and Warehouse,അളവിലും വെയർഹൗസ് DocType: Sales Invoice,Commission Rate (%),കമ്മീഷൻ നിരക്ക് (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","വൗച്ചർ ടൈപ്പ് സെയിൽസ് ഓർഡർ, സെയിൽസ് ഇൻവോയിസ് അഥവാ ജേർണൽ എൻട്രി ഒന്നാണ് ആയിരിക്കണം എഗെൻസ്റ്റ്" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","വൗച്ചർ ടൈപ്പ് സെയിൽസ് ഓർഡർ, സെയിൽസ് ഇൻവോയിസ് അഥവാ ജേർണൽ എൻട്രി ഒന്നാണ് ആയിരിക്കണം എഗെൻസ്റ്റ്" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,എയറോസ്പേസ് DocType: Journal Entry,Credit Card Entry,ക്രെഡിറ്റ് കാർഡ് എൻട്രി apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,ടാസ്ക് വിഷയം @@ -645,10 +646,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,ബാധ്യത apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,അനുവദിക്കപ്പെട്ട തുക വരി {0} ൽ ക്ലെയിം തുക വലുതായിരിക്കണം കഴിയില്ല. DocType: Company,Default Cost of Goods Sold Account,ഗുഡ്സ് സ്വതവേയുള്ള ചെലവ് അക്കൗണ്ട് വിറ്റു -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,വില പട്ടിക തിരഞ്ഞെടുത്തിട്ടില്ല +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,വില പട്ടിക തിരഞ്ഞെടുത്തിട്ടില്ല DocType: Employee,Family Background,കുടുംബ പശ്ചാത്തലം DocType: Process Payroll,Send Email,ഇമെയിൽ അയയ്ക്കുക -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},മുന്നറിയിപ്പ്: അസാധുവായ സഹപത്രങ്ങൾ {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},മുന്നറിയിപ്പ്: അസാധുവായ സഹപത്രങ്ങൾ {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,ഇല്ല അനുമതി DocType: Company,Default Bank Account,സ്ഥിരസ്ഥിതി ബാങ്ക് അക്കൗണ്ട് apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","പാർട്ടി അടിസ്ഥാനമാക്കി ഫിൽട്ടർ, ആദ്യം പാർട്ടി ടൈപ്പ് തിരഞ്ഞെടുക്കുക" @@ -676,7 +677,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,ഉ DocType: Features Setup,"To enable ""Point of Sale"" features","പോയിന്റ് വില്പനയ്ക്ക് എന്ന" സവിശേഷതകൾ സജ്ജമാക്കുന്നതിനായി DocType: Bin,Moving Average Rate,മാറുന്ന ശരാശരി റേറ്റ് DocType: Production Planning Tool,Select Items,ഇനങ്ങൾ തിരഞ്ഞെടുക്കുക -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} ബിൽ {1} നേരെ {2} dated +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} ബിൽ {1} നേരെ {2} dated DocType: Maintenance Visit,Completion Status,പൂർത്തീകരണവും അവസ്ഥ DocType: Sales Invoice Item,Target Warehouse,ടാർജറ്റ് വെയർഹൗസ് DocType: Item,Allow over delivery or receipt upto this percent,ഈ ശതമാനം വരെ ഡെലിവറി അല്ലെങ്കിൽ രസീത് മേൽ അനുവദിക്കുക @@ -736,7 +737,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,ന apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},ഓപ്പറേഷൻ {1} അടുത്ത {0} ദിവസങ്ങളിൽ സമയം സ്ലോട്ട് കണ്ടെത്താൻ കഴിഞ്ഞില്ല DocType: Production Order,Plan material for sub-assemblies,സബ് സമ്മേളനങ്ങൾ പദ്ധതി മെറ്റീരിയൽ apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM ലേക്ക് {0} സജീവ ആയിരിക്കണം -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,ആദ്യം ഡോക്യുമെന്റ് തരം തിരഞ്ഞെടുക്കുക +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,ആദ്യം ഡോക്യുമെന്റ് തരം തിരഞ്ഞെടുക്കുക apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,ഗോടു കാർട്ട് apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,ഈ മെയിൻറനൻസ് സന്ദർശനം റദ്ദാക്കുന്നതിൽ മുമ്പ് മെറ്റീരിയൽ സന്ദർശനങ്ങൾ {0} റദ്ദാക്കുക DocType: Salary Slip,Leave Encashment Amount,ലീവ് തുക വിടുക @@ -754,7 +755,7 @@ DocType: Purchase Receipt,Range,ശ്രേണി DocType: Supplier,Default Payable Accounts,സ്ഥിരസ്ഥിതി അടയ്ക്കേണ്ട തുക apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,ജീവനക്കാർ {0} സജീവമല്ല അല്ലെങ്കിൽ നിലവിലില്ല DocType: Features Setup,Item Barcode,ഇനം ബാർകോഡ് -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,ഇനം രൂപഭേദങ്ങൾ {0} നവീകരിച്ചത് +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,ഇനം രൂപഭേദങ്ങൾ {0} നവീകരിച്ചത് DocType: Quality Inspection Reading,Reading 6,6 Reading DocType: Purchase Invoice Advance,Purchase Invoice Advance,വാങ്ങൽ ഇൻവോയിസ് അഡ്വാൻസ് DocType: Address,Shop,കട @@ -777,7 +778,7 @@ DocType: Salary Slip,Total in words,വാക്കുകളിൽ ആകെ DocType: Material Request Item,Lead Time Date,ലീഡ് സമയം തീയതി apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,നിർബന്ധമാണ്. ഒരുപക്ഷേ കറൻസി എക്സ്ചേഞ്ച് റെക്കോഡ് സൃഷ്ടിച്ചു ചെയ്തിട്ടില്ല apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},വരി # {0}: ഇനം {1} വേണ്ടി സീരിയൽ ഇല്ല വ്യക്തമാക്കുക -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","'ഉൽപ്പന്ന ബണ്ടിൽ' ഇനങ്ങൾ, വെയർഹൗസ്, സീരിയൽ ഇല്ല ആൻഡ് ബാച്ച് യാതൊരു 'പായ്ക്കിംഗ് ലിസ്റ്റ് മേശയിൽ നിന്നും പരിഗണിക്കും. സംഭരണശാല ആൻഡ് ബാച്ച് ഇല്ല ഏതെങ്കിലും 'ഉൽപ്പന്ന ബണ്ടിൽ' ഇനത്തിനായി എല്ലാ പാക്കിംഗ് ഇനങ്ങളും ഒരേ എങ്കിൽ, ആ മൂല്യങ്ങൾ പ്രധാന ഇനം പട്ടികയിൽ നേടിയെടുക്കുകയും ചെയ്യാം, മൂല്യങ്ങൾ 'പാക്കിംഗ് പട്ടിക' മേശയുടെ പകർത്തുന്നു." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","'ഉൽപ്പന്ന ബണ്ടിൽ' ഇനങ്ങൾ, വെയർഹൗസ്, സീരിയൽ ഇല്ല ആൻഡ് ബാച്ച് യാതൊരു 'പായ്ക്കിംഗ് ലിസ്റ്റ് മേശയിൽ നിന്നും പരിഗണിക്കും. സംഭരണശാല ആൻഡ് ബാച്ച് ഇല്ല ഏതെങ്കിലും 'ഉൽപ്പന്ന ബണ്ടിൽ' ഇനത്തിനായി എല്ലാ പാക്കിംഗ് ഇനങ്ങളും ഒരേ എങ്കിൽ, ആ മൂല്യങ്ങൾ പ്രധാന ഇനം പട്ടികയിൽ നേടിയെടുക്കുകയും ചെയ്യാം, മൂല്യങ്ങൾ 'പാക്കിംഗ് പട്ടിക' മേശയുടെ പകർത്തുന്നു." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,ഉപഭോക്താക്കൾക്ക് കയറ്റുമതി. DocType: Purchase Invoice Item,Purchase Order Item,വാങ്ങൽ ഓർഡർ ഇനം apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,പരോക്ഷ ആദായ @@ -798,6 +799,7 @@ DocType: Process Payroll,Select Payroll Year and Month,ശമ്പളപ്പ apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",തരത്തിലുള്ള) ചൈൽഡ് ചേർക്കുക ക്ലിക്ക് ചെയ്തു കൊണ്ട് ("ബാങ്ക് 'ആവശ്യമായ ഗ്രൂപ്പ് (ഫണ്ട് സാധാരണയായി ആപ്ലിക്കേഷൻ> ഇപ്പോഴത്തെ ആസ്തികൾ> ബാങ്ക് അക്കൗണ്ടുകൾ പോകുക ഒരു പുതിയ അക്കൗണ്ട് സൃഷ്ടിക്കാൻ DocType: Workstation,Electricity Cost,വൈദ്യുതി ചെലവ് DocType: HR Settings,Don't send Employee Birthday Reminders,എംപ്ലോയീസ് ജന്മദിന ഓർമ്മക്കുറിപ്പുകൾ അയയ്ക്കരുത് +,Employee Holiday Attendance,ജീവനക്കാരുടെ ഹോളിഡേ ഹാജർ DocType: Opportunity,Walk In,നടപ്പാൻ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,സ്റ്റോക്ക് എൻട്രികളിൽ DocType: Item,Inspection Criteria,ഇൻസ്പെക്ഷൻ മാനദണ്ഡം @@ -820,7 +822,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options, DocType: Journal Entry Account,Expense Claim,ചിലവേറിയ ക്ലെയിം apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},{0} വേണ്ടി Qty DocType: Leave Application,Leave Application,ആപ്ലിക്കേഷൻ വിടുക -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,വിഹിതം ടൂൾ വിടുക +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,വിഹിതം ടൂൾ വിടുക DocType: Leave Block List,Leave Block List Dates,ബ്ലോക്ക് പട്ടിക തീയതി വിടുക DocType: Company,If Monthly Budget Exceeded (for expense account),പ്രതിമാസ ബജറ്റ് (ചിലവേറിയ വേണ്ടി) അധികരിച്ചു എങ്കിൽ DocType: Workstation,Net Hour Rate,നെറ്റ് അന്ത്യസമയം റേറ്റ് @@ -830,7 +832,7 @@ DocType: Packing Slip Item,Packing Slip Item,പാക്കിംഗ് ജി DocType: POS Profile,Cash/Bank Account,ക്യാഷ് / ബാങ്ക് അക്കൗണ്ട് apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,അളവ് അല്ലെങ്കിൽ മൂല്യം മാറ്റമൊന്നും വരുത്താതെ ഇനങ്ങളെ നീക്കംചെയ്തു. DocType: Delivery Note,Delivery To,ഡെലിവറി -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,ഗുണ മേശ നിർബന്ധമാണ് +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,ഗുണ മേശ നിർബന്ധമാണ് DocType: Production Planning Tool,Get Sales Orders,സെയിൽസ് ഉത്തരവുകൾ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} നെഗറ്റീവ് ആയിരിക്കാൻ കഴിയില്ല apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,ഡിസ്കൗണ്ട് @@ -894,7 +896,7 @@ DocType: SMS Center,Total Characters,ആകെ പ്രതീകങ്ങൾ apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},ഇനം വേണ്ടി BOM ലേക്ക് വയലിൽ {0} BOM തിരഞ്ഞെടുക്കുക DocType: C-Form Invoice Detail,C-Form Invoice Detail,സി-ഫോം ഇൻവോയിസ് വിശദാംശം DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,പേയ്മെന്റ് അനുരഞ്ജനം ഇൻവോയിസ് -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,സംഭാവന% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,സംഭാവന% DocType: Item,website page link,വെബ്സൈറ്റ് പേജ് ലിങ്ക് DocType: Company,Company registration numbers for your reference. Tax numbers etc.,നിങ്ങളുടെ റഫറൻസിനായി കമ്പനി രജിസ്ട്രേഷൻ നമ്പറുകൾ. നികുതി നമ്പറുകൾ തുടങ്ങിയവ DocType: Sales Partner,Distributor,വിതരണക്കാരൻ @@ -936,10 +938,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM പരിവർത്ത DocType: Stock Settings,Default Item Group,സ്ഥിരസ്ഥിതി ഇനം ഗ്രൂപ്പ് apps/erpnext/erpnext/config/buying.py +13,Supplier database.,വിതരണക്കാരൻ ഡാറ്റാബേസ്. DocType: Account,Balance Sheet,ബാലൻസ് ഷീറ്റ് -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',ഇനം കോഡ് ഉപയോഗിച്ച് ഇനം വേണ്ടി ചെലവ് കേന്ദ്രം ' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',ഇനം കോഡ് ഉപയോഗിച്ച് ഇനം വേണ്ടി ചെലവ് കേന്ദ്രം ' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,നിങ്ങളുടെ വിൽപ്പന വ്യക്തിയെ ഉപഭോക്തൃ ബന്ധപ്പെടാൻ ഈ തീയതി ഒരു ഓർമ്മപ്പെടുത്തൽ ലഭിക്കും apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","കൂടുതലായ അക്കൗണ്ടുകൾ ഗ്രൂപ്പ്സ് കീഴിൽ കഴിയും, പക്ഷേ എൻട്രികൾ നോൺ-ഗ്രൂപ്പുകൾ നേരെ കഴിയും" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,നികുതി മറ്റ് ശമ്പളം ിയിളവുകള്ക്ക്. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,നികുതി മറ്റ് ശമ്പളം ിയിളവുകള്ക്ക്. DocType: Lead,Lead,ഈയം DocType: Email Digest,Payables,Payables DocType: Account,Warehouse,പണ്ടകശാല @@ -956,10 +958,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Unreconciled പേ DocType: Global Defaults,Current Fiscal Year,നടപ്പ് സാമ്പത്തിക വർഷം DocType: Global Defaults,Disable Rounded Total,വൃത്തത്തിലുള്ള ആകെ അപ്രാപ്തമാക്കുക DocType: Lead,Call,കോൾ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'എൻട്രികൾ' ഒഴിച്ചിടാനാവില്ല +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'എൻട്രികൾ' ഒഴിച്ചിടാനാവില്ല apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},{1} അതേ കൂടെ വരി {0} തനിപ്പകർപ്പെടുക്കുക ,Trial Balance,ട്രയൽ ബാലൻസ് -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,എംപ്ലോയീസ് സജ്ജമാക്കുന്നു +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,എംപ്ലോയീസ് സജ്ജമാക്കുന്നു apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid """,ഗ്രിഡ് " apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,ആദ്യം പ്രിഫിക്സ് തിരഞ്ഞെടുക്കുക apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,റിസർച്ച് @@ -968,7 +970,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,യൂസർ ഐഡി apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,കാണുക ലെഡ്ജർ apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,പഴയവ -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","ഒരു ഇനം ഗ്രൂപ്പ് ഇതേ പേരിലുള്ള നിലവിലുണ്ട്, ഐറ്റം പേര് മാറ്റാനോ ഐറ്റം ഗ്രൂപ്പ് പുനർനാമകരണം ദയവായി" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","ഒരു ഇനം ഗ്രൂപ്പ് ഇതേ പേരിലുള്ള നിലവിലുണ്ട്, ഐറ്റം പേര് മാറ്റാനോ ഐറ്റം ഗ്രൂപ്പ് പുനർനാമകരണം ദയവായി" DocType: Production Order,Manufacture against Sales Order,സെയിൽസ് ഓർഡർ നേരെ ഉല്പാദനം apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,ലോകം റെസ്റ്റ് apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,ഇനം {0} ബാച്ച് പാടില്ല @@ -993,7 +995,7 @@ DocType: Purchase Receipt,Rejected Warehouse,നിരസിച്ചു വെ DocType: GL Entry,Against Voucher,വൗച്ചർ എഗെൻസ്റ്റ് DocType: Item,Default Buying Cost Center,സ്ഥിരസ്ഥിതി വാങ്ങൽ ചെലവ് കേന്ദ്രം apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","ERPNext നിന്നു മികച്ച ലഭിക്കാൻ, ഞങ്ങൾ നിങ്ങൾക്ക് കുറച്ച് സമയം എടുത്തു ഈ സഹായം വീഡിയോകൾ കാണാൻ ഞങ്ങൾ ശുപാർശ." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,ഇനം {0} സെയിൽസ് ഇനം ആയിരിക്കണം +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,ഇനം {0} സെയിൽസ് ഇനം ആയിരിക്കണം apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,വരെ DocType: Item,Lead Time in days,ദിവസങ്ങളിൽ സമയം Lead ,Accounts Payable Summary,അക്കൗണ്ടുകൾ അടയ്ക്കേണ്ട ചുരുക്കം @@ -1019,7 +1021,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,കൃഷി apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,നിങ്ങളുടെ ഉല്പന്നങ്ങൾ അല്ലെങ്കിൽ സേവനങ്ങൾ DocType: Mode of Payment,Mode of Payment,അടക്കേണ്ട മോഡ് -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,വെബ്സൈറ്റ് ചിത്രം ഒരു പൊതു ഫയൽ അല്ലെങ്കിൽ വെബ്സൈറ്റ് URL ആയിരിക്കണം +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,വെബ്സൈറ്റ് ചിത്രം ഒരു പൊതു ഫയൽ അല്ലെങ്കിൽ വെബ്സൈറ്റ് URL ആയിരിക്കണം apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,ഇത് ഒരു റൂട്ട് ഐറ്റം ഗ്രൂപ്പ് ആണ് എഡിറ്റ് ചെയ്യാൻ കഴിയില്ല. DocType: Journal Entry Account,Purchase Order,പർച്ചേസ് ഓർഡർ DocType: Warehouse,Warehouse Contact Info,വെയർഹൗസ് ബന്ധപ്പെടാനുള്ള വിവരങ്ങളും @@ -1030,7 +1032,7 @@ DocType: Serial No,Serial No Details,സീരിയൽ വിശദാംശങ DocType: Purchase Invoice Item,Item Tax Rate,ഇനം നിരക്ക് apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry",{0} മാത്രം ക്രെഡിറ്റ് അക്കൗണ്ടുകൾ മറ്റൊരു ഡെബിറ്റ് എൻട്രി നേരെ ലിങ്ക്ഡ് കഴിയും apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,ഡെലിവറി നോട്ട് {0} സമർപ്പിച്ചിട്ടില്ലെന്നതും -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,ഇനം {0} ഒരു സബ് കരാറിൽ ഇനം ആയിരിക്കണം +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,ഇനം {0} ഒരു സബ് കരാറിൽ ഇനം ആയിരിക്കണം apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,ക്യാപ്പിറ്റൽ ഉപകരണങ്ങൾ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","പ്രൈസിങ് റൂൾ ആദ്യം ഇനം, ഇനം ഗ്രൂപ്പ് അല്ലെങ്കിൽ ബ്രാൻഡ് ആകാം വയലിലെ 'പുരട്ടുക' അടിസ്ഥാനമാക്കി തിരഞ്ഞെടുത്തുവെന്ന്." DocType: Hub Settings,Seller Website,വില്പനക്കാരന്റെ വെബ്സൈറ്റ് @@ -1039,7 +1041,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,ഗോൾ DocType: Sales Invoice Item,Edit Description,എഡിറ്റ് വിവരണം apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,പ്രതീക്ഷിച്ച ഡെലിവറി തീയതി പ്ലാൻ ചെയ്തു ആരംഭ തീയതി അധികം കുറവാണ്. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,വിതരണക്കാരൻ വേണ്ടി +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,വിതരണക്കാരൻ വേണ്ടി DocType: Account,Setting Account Type helps in selecting this Account in transactions.,അക്കൗണ്ട് തരം സജ്ജീകരിക്കുന്നു ഇടപാടുകൾ ഈ അക്കൗണ്ട് തിരഞ്ഞെടുക്കുന്നതിൽ സഹായിക്കുന്നു. DocType: Purchase Invoice,Grand Total (Company Currency),ആകെ മൊത്തം (കമ്പനി കറൻസി) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,ആകെ അയയ്ക്കുന്ന @@ -1091,7 +1093,6 @@ DocType: Authorization Rule,Average Discount,ശരാശരി ഡിസ്ക DocType: Address,Utilities,യൂട്ടിലിറ്റിക DocType: Purchase Invoice Item,Accounting,അക്കൗണ്ടിംഗ് DocType: Features Setup,Features Setup,സവിശേഷതകൾ സെറ്റപ്പ് -DocType: Item,Is Service Item,സേവന ഇനം തന്നെയല്ലേ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,അപേക്ഷാ കാലയളവിൽ പുറത്ത് ലീവ് അലോക്കേഷൻ കാലഘട്ടം ആകാൻ പാടില്ല DocType: Activity Cost,Projects,പ്രോജക്റ്റുകൾ apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,ധനകാര്യ വർഷം തിരഞ്ഞെടുക്കുക @@ -1112,7 +1113,7 @@ DocType: Item,Maintain Stock,സ്റ്റോക്ക് നിലനി apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,ഇതിനകം പ്രൊഡക്ഷൻ ഓർഡർ സൃഷ്ടിച്ചു സ്റ്റോക്ക് എൻട്രികൾ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,സ്ഥിര അസറ്റ് ലെ നെറ്റ് മാറ്റുക DocType: Leave Control Panel,Leave blank if considered for all designations,എല്ലാ തരത്തിലുള്ള വേണ്ടി പരിഗണിക്കും എങ്കിൽ ശൂന്യമായിടൂ -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,'യഥാർത്ഥ' തരം ചുമതലയുള്ള വരിയിലെ {0} ഇനം റേറ്റ് ഉൾപ്പെടുത്തിയിട്ടുണ്ട് ചെയ്യാൻ കഴിയില്ല +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,'യഥാർത്ഥ' തരം ചുമതലയുള്ള വരിയിലെ {0} ഇനം റേറ്റ് ഉൾപ്പെടുത്തിയിട്ടുണ്ട് ചെയ്യാൻ കഴിയില്ല apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},പരമാവധി: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,തീയതി-ൽ DocType: Email Digest,For Company,കമ്പനിക്ക് വേണ്ടി @@ -1121,8 +1122,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,ഷിപ്പിംഗ് വിലാസം പേര് apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,അക്കൗണ്ട്സ് ചാർട്ട് DocType: Material Request,Terms and Conditions Content,നിബന്ധനകളും വ്യവസ്ഥകളും ഉള്ളടക്കം -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,100 വലുതായിരിക്കും കഴിയില്ല -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,ഇനം {0} ഒരു സ്റ്റോക്ക് ഇനം അല്ല +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,100 വലുതായിരിക്കും കഴിയില്ല +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,ഇനം {0} ഒരു സ്റ്റോക്ക് ഇനം അല്ല DocType: Maintenance Visit,Unscheduled,വരണേ DocType: Employee,Owned,ഉടമസ്ഥതയിലുള്ളത് DocType: Salary Slip Deduction,Depends on Leave Without Pay,ശമ്പള പുറത്തുകടക്കാൻ ആശ്രയിച്ചിരിക്കുന്നു @@ -1143,7 +1144,7 @@ Used for Taxes and Charges",നികുതി വിശദമായി ടേ apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,ജീവനക്കാർ തനിക്കായി റിപ്പോർട്ട് ചെയ്യാൻ കഴിയില്ല. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","അക്കൗണ്ട് മരവിപ്പിച്ചു എങ്കിൽ, എൻട്രികൾ നിയന്ത്രിത ഉപയോക്താക്കൾക്ക് അനുവദിച്ചിരിക്കുന്ന." DocType: Email Digest,Bank Balance,ബാങ്ക് ബാലൻസ് -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},{0} വേണ്ടി അക്കൗണ്ടിംഗ് എൻട്രി: {1} മാത്രം കറൻസി കഴിയും: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},{0} വേണ്ടി അക്കൗണ്ടിംഗ് എൻട്രി: {1} മാത്രം കറൻസി കഴിയും: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,സജീവ ശമ്പളം ജീവനക്കാരൻ {0} വേണ്ടി കണ്ടെത്തി ഘടനയും മാസം ഇല്ല DocType: Job Opening,"Job profile, qualifications required etc.","ഇയ്യോബ് പ്രൊഫൈൽ, യോഗ്യത തുടങ്ങിയവ ആവശ്യമാണ്" DocType: Journal Entry Account,Account Balance,അക്കൗണ്ട് ബാലൻസ് @@ -1160,7 +1161,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,സബ് അ DocType: Shipping Rule Condition,To Value,മൂല്യത്തിലേക്ക് DocType: Supplier,Stock Manager,സ്റ്റോക്ക് മാനേജർ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},ഉറവിട വെയർഹൗസ് വരി {0} നിര്ബന്ധമാണ് -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,പാക്കിംഗ് സ്ലിപ്പ് +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,പാക്കിംഗ് സ്ലിപ്പ് apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,ഓഫീസ് രെംട് apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,സെറ്റപ്പ് എസ്എംഎസ് ഗേറ്റ്വേ ക്രമീകരണങ്ങൾ apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,ഇംപോർട്ട് പരാജയപ്പെട്ടു! @@ -1204,7 +1205,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM വിശദാംശം DocType: Purchase Invoice,Additional Discount Amount (Company Currency),അഡീഷണൽ കിഴിവ് തുക (കമ്പനി കറൻസി) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},പിശക്: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,അക്കൗണ്ട്സ് ചാർട്ട് നിന്ന് പുതിയ അക്കൗണ്ട് സൃഷ്ടിക്കുക. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,മെയിൻറനൻസ് സന്ദർശനം +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,മെയിൻറനൻസ് സന്ദർശനം apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,കസ്റ്റമർ> ഉപഭോക്തൃ ഗ്രൂപ്പ്> ടെറിട്ടറി DocType: Sales Invoice Item,Available Batch Qty at Warehouse,വെയർഹൗസ് ലഭ്യമായ ബാച്ച് Qty DocType: Time Log Batch Detail,Time Log Batch Detail,സമയം ലോഗ് ബാച്ച് വിശദാംശം @@ -1213,7 +1214,7 @@ DocType: Leave Block List,Block Holidays on important days.,പ്രധാന ,Accounts Receivable Summary,അക്കൗണ്ടുകൾ സ്വീകാര്യം ചുരുക്കം apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,ജീവനക്കാരുടെ റോൾ സജ്ജീകരിക്കാൻ ജീവനക്കാരിയെ രേഖയിൽ ഉപയോക്തൃ ഐഡി ഫീൽഡ് സജ്ജീകരിക്കുക DocType: UOM,UOM Name,UOM പേര് -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,സംഭാവനത്തുക +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,സംഭാവനത്തുക DocType: Sales Invoice,Shipping Address,ഷിപ്പിംഗ് വിലാസം DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,ഈ ഉപകരണം നിങ്ങളെ സിസ്റ്റം സ്റ്റോക്ക് അളവ് മൂലധനം അപ്ഡേറ്റുചെയ്യാനോ പരിഹരിക്കാൻ സഹായിക്കുന്നു. ഇത് സിസ്റ്റം മൂല്യങ്ങളും യഥാർത്ഥമാക്കുകയും നിങ്ങളുടെ അബദ്ധങ്ങളും നിലവിലുണ്ട് സമന്വയിപ്പിക്കുക ഉപയോഗിക്കുന്നു. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,നിങ്ങൾ ഡെലിവറി നോട്ട് ലാഭിക്കാൻ ഒരിക്കൽ വാക്കുകളിൽ ദൃശ്യമാകും. @@ -1254,7 +1255,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,ബാർകോഡ് ഉപയോഗിച്ച് ഇനങ്ങളെ ട്രാക്കുചെയ്യുന്നതിന്. നിങ്ങൾ ഇനത്തിന്റെ ബാർകോഡ് പരിശോധന വഴി ഡെലിവറി നോട്ടും സെയിൽസ് ഇൻവോയിസ് ഇനങ്ങൾ നൽകുക കഴിയുകയും ചെയ്യും. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,പേയ്മെന്റ് ഇമെയിൽ വീണ്ടും DocType: Dependent Task,Dependent Task,ആശ്രിത ടാസ്ക് -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},അളവു സ്വതവേയുള്ള യൂണിറ്റ് വേണ്ടി പരിവർത്തന ഘടകം വരി 1 {0} ആയിരിക്കണം +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},അളവു സ്വതവേയുള്ള യൂണിറ്റ് വേണ്ടി പരിവർത്തന ഘടകം വരി 1 {0} ആയിരിക്കണം apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},{0} ഇനി {1} അധികം ആകാൻ പാടില്ല തരത്തിലുള്ള വിടുക DocType: Manufacturing Settings,Try planning operations for X days in advance.,മുൻകൂട്ടി എക്സ് ദിവസം വേണ്ടി ഓപ്പറേഷൻസ് ആസൂത്രണം ശ്രമിക്കുക. DocType: HR Settings,Stop Birthday Reminders,ജന്മദിന ഓർമ്മക്കുറിപ്പുകൾ നിർത്തുക @@ -1264,7 +1265,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} കാണുക apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,പണമായി നെറ്റ് മാറ്റുക DocType: Salary Structure Deduction,Salary Structure Deduction,ശമ്പളം ഘടന കിഴിച്ചുകൊണ്ടു -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,മെഷർ {0} യൂണിറ്റ് ഒരിക്കൽ പരിവർത്തന ഫാക്ടർ പട്ടികയിലെ അധികം നൽകി +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,മെഷർ {0} യൂണിറ്റ് ഒരിക്കൽ പരിവർത്തന ഫാക്ടർ പട്ടികയിലെ അധികം നൽകി apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},പേയ്മെന്റ് അഭ്യർത്ഥന ഇതിനകം {0} നിലവിലുണ്ട് apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,ഇഷ്യൂ ഇനങ്ങൾ ചെലവ് apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},ക്വാണ്ടിറ്റി {0} അധികം പാടില്ല @@ -1293,7 +1294,7 @@ DocType: BOM Item,BOM Item,BOM ഇനം DocType: Appraisal,For Employee,ജീവനക്കാർ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,വരി {0}: വിതരണക്കാരൻ നേരെ അഡ്വാൻസ് ഡെബിറ്റ് വേണം DocType: Company,Default Values,സ്ഥിരസ്ഥിതി മൂല്യങ്ങൾ -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,വരി {0}: പേയ്മെന്റ് തുക നെഗറ്റീവ് ആയിരിക്കാൻ കഴിയില്ല +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,വരി {0}: പേയ്മെന്റ് തുക നെഗറ്റീവ് ആയിരിക്കാൻ കഴിയില്ല DocType: Expense Claim,Total Amount Reimbursed,ആകെ തുക Reimbursed apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},വിതരണക്കാരൻ ഇൻവോയിസ് {0} എഗെൻസ്റ്റ് {1} dated DocType: Customer,Default Price List,സ്ഥിരസ്ഥിതി വില പട്ടിക @@ -1321,8 +1322,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,സ DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","അത് ഉപയോഗിക്കുന്നത് എവിടെ മറ്റെല്ലാ BOMs ഒരു പ്രത്യേക BOM മാറ്റിസ്ഥാപിക്കുക. ഇത് പുതിയ BOM ലേക്ക് പ്രകാരം പഴയ BOM ലിങ്ക്, അപ്ഡേറ്റ് ചെലവ് പകരം "BOM പൊട്ടിത്തെറി ഇനം" മേശ പുനരുജ്ജീവിപ്പിച്ച് ചെയ്യും" DocType: Shopping Cart Settings,Enable Shopping Cart,ഷോപ്പിംഗ് കാർട്ട് പ്രവർത്തനക്ഷമമാക്കുക DocType: Employee,Permanent Address,സ്ഥിര വിലാസം -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,ഇനം {0} ഒരു സേവന ഇനം ആയിരിക്കണം. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",{0} {1} ആകെ മൊത്തം {2} വലിയവനല്ല \ ആകാൻ പാടില്ല നേരെ പെയ്ഡ് മുൻകൂർ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,ഐറ്റം കോഡ് തിരഞ്ഞെടുക്കുക DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),ശമ്പള (LWP) ഇല്ലാതെ അവധിക്ക് കിഴിച്ചുകൊണ്ടു കുറയ്ക്കുക @@ -1378,12 +1378,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,പ്രധാന apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,മാറ്റമുള്ള DocType: Naming Series,Set prefix for numbering series on your transactions,നിങ്ങളുടെ ഇടപാടുകൾ പരമ്പര എണ്ണം പ്രിഫിക്സ് സജ്ജമാക്കുക +DocType: Employee Attendance Tool,Employees HTML,എംപ്ലോയീസ് എച്ച്ടിഎംഎൽ apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,നിർത്തി ഓർഡർ റദ്ദാക്കാൻ സാധിക്കില്ല. റദ്ദാക്കാൻ Unstop. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,സ്വതേ BOM ({0}) ഈ ഇനം അല്ലെങ്കിൽ അതിന്റെ ടെംപ്ലേറ്റ് സജീവമാകും ആയിരിക്കണം +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,സ്വതേ BOM ({0}) ഈ ഇനം അല്ലെങ്കിൽ അതിന്റെ ടെംപ്ലേറ്റ് സജീവമാകും ആയിരിക്കണം DocType: Employee,Leave Encashed?,കാശാക്കാം വിടണോ? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,വയലിൽ നിന്ന് ഓപ്പർച്യൂനിറ്റി നിർബന്ധമാണ് DocType: Item,Variants,വകഭേദങ്ങളും -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,വാങ്ങൽ ഓർഡർ നിർമ്മിക്കുക +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,വാങ്ങൽ ഓർഡർ നിർമ്മിക്കുക DocType: SMS Center,Send To,അയക്കുക apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},അനുവാദ ടൈപ്പ് {0} മതി ലീവ് ബാലൻസ് ഒന്നും ഇല്ല DocType: Payment Reconciliation Payment,Allocated amount,പദ്ധതി തുക @@ -1483,7 +1484,7 @@ DocType: Sales Person,Name and Employee ID,പേര് തൊഴിൽ ഐ apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,നിശ്ചിത തീയതി തീയതി പതിച്ച മുമ്പ് ആകാൻ പാടില്ല DocType: Website Item Group,Website Item Group,വെബ്സൈറ്റ് ഇനം ഗ്രൂപ്പ് apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,"കടമകൾ, നികുതി" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,റഫറൻസ് തീയതി നൽകുക +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,റഫറൻസ് തീയതി നൽകുക apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,പേയ്മെന്റ് ഗേറ്റ്വേ അക്കൗണ്ട് കോൺഫിഗർ ചെയ്തിട്ടില്ല apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} പേയ്മെന്റ് എൻട്രികൾ {1} ഫിൽട്ടർ ചെയ്യാൻ കഴിയില്ല DocType: Item Website Specification,Table for Item that will be shown in Web Site,വെബ് സൈറ്റ് പ്രദർശിപ്പിക്കും ആ ഇനം വേണ്ടി ടേബിൾ @@ -1504,7 +1505,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,മിഴിവ് വിശദാംശങ്ങൾ DocType: Quality Inspection Reading,Acceptance Criteria,സ്വീകാര്യത മാനദണ്ഡം DocType: Item Attribute,Attribute Name,പേര് ആട്രിബ്യൂട്ട് -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},ഇനം {0} {1} വിൽപന അല്ലെങ്കിൽ സർവീസ് ഇനം ആയിരിക്കണം DocType: Item Group,Show In Website,വെബ്സൈറ്റ് കാണിക്കുക apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,ഗ്രൂപ്പ് DocType: Task,Expected Time (in hours),(മണിക്കൂറിനുള്ളിൽ) പ്രതീക്ഷിക്കുന്ന സമയം @@ -1536,7 +1536,7 @@ DocType: Shipping Rule Condition,Shipping Amount,ഷിപ്പിംഗ് ത ,Pending Amount,തീർച്ചപ്പെടുത്തിയിട്ടില്ല തുക DocType: Purchase Invoice Item,Conversion Factor,പരിവർത്തന ഫാക്ടർ DocType: Purchase Order,Delivered,കൈമാറി -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),ജോലികൾ ഇമെയിൽ ഐഡി വേണ്ടി സെറ്റപ്പ് ഇൻകമിംഗ് സെർവർ. (ഉദാ jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),ജോലികൾ ഇമെയിൽ ഐഡി വേണ്ടി സെറ്റപ്പ് ഇൻകമിംഗ് സെർവർ. (ഉദാ jobs@example.com) DocType: Purchase Receipt,Vehicle Number,വാഹന നമ്പർ DocType: Purchase Invoice,The date on which recurring invoice will be stop,ആവർത്തന ഇൻവോയ്സ് സ്റ്റോപ്പ് ആയിരിക്കും തീയതി apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,ആകെ അലോക്കേറ്റഡ് ഇല {0} കാലയളവിലേക്ക് ഇതിനകം അംഗീകരിച്ച ഇല {1} കുറവായിരിക്കണം കഴിയില്ല @@ -1553,7 +1553,7 @@ DocType: HR Settings,HR Settings,എച്ച് ക്രമീകരണങ് apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,ചിലവിടൽ ക്ലെയിം അംഗീകാരത്തിനായി ശേഷിക്കുന്നു. മാത്രം ചിലവിടൽ Approver സ്റ്റാറ്റസ് അപ്ഡേറ്റ് ചെയ്യാം. DocType: Purchase Invoice,Additional Discount Amount,അധിക ഡിസ്ക്കൌണ്ട് തുക DocType: Leave Block List Allow,Leave Block List Allow,അനുവദിക്കുക ബ്ലോക്ക് ലിസ്റ്റ് വിടുക -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abbr ബ്ലാങ്ക് ബഹിരാകാശ ആകാൻ പാടില്ല +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abbr ബ്ലാങ്ക് ബഹിരാകാശ ആകാൻ പാടില്ല apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,നോൺ-ഗ്രൂപ്പ് വരെ ഗ്രൂപ്പ് apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,സ്പോർട്സ് apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,യഥാർത്ഥ ആകെ @@ -1577,7 +1577,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},UOM പരിവർത്തന ഘടകം വരി {0} ആവശ്യമാണ് apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},ക്ലിയറൻസ് തീയതി വരി {0} ചെക്ക് തീയതി മുമ്പ് ആകാൻ പാടില്ല DocType: Salary Slip,Deduction,കുറയ്ക്കല് -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},ഇനം വില വില പട്ടിക {1} ൽ {0} വേണ്ടി ചേർത്തു +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},ഇനം വില വില പട്ടിക {1} ൽ {0} വേണ്ടി ചേർത്തു DocType: Address Template,Address Template,വിലാസം ഫലകം apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,ഈ വിൽപ്പന ആളിന്റെ ജീവനക്കാരന്റെ ഐഡി നൽകുക DocType: Territory,Classification of Customers by region,പ്രാദേശികതയും ഉപഭോക്താക്കൾക്ക് തിരിക്കൽ @@ -1594,7 +1594,7 @@ DocType: Employee,Date of Birth,ജനിച്ച ദിവസം apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,ഇനം {0} ഇതിനകം മടങ്ങി ചെയ്തു DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** സാമ്പത്തിക വർഷത്തെ ** ഒരു സാമ്പത്തിക വർഷം പ്രതിനിധീകരിക്കുന്നത്. എല്ലാ അക്കൗണ്ടിങ് എൻട്രികൾ മറ്റ് പ്രധാന ഇടപാടുകൾ ** ** സാമ്പത്തിക വർഷത്തിൽ നേരെ അത്രകണ്ട്. DocType: Opportunity,Customer / Lead Address,കസ്റ്റമർ / ലീഡ് വിലാസം -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},മുന്നറിയിപ്പ്: അറ്റാച്ച്മെന്റ് {0} ന് അസാധുവായ SSL സർട്ടിഫിക്കറ്റ് +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},മുന്നറിയിപ്പ്: അറ്റാച്ച്മെന്റ് {0} ന് അസാധുവായ SSL സർട്ടിഫിക്കറ്റ് DocType: Production Order Operation,Actual Operation Time,യഥാർത്ഥ ഓപ്പറേഷൻ സമയം DocType: Authorization Rule,Applicable To (User),(ഉപയോക്താവ്) ബാധകമായ DocType: Purchase Taxes and Charges,Deduct,കുറയ്ക്കാവുന്നതാണ് @@ -1611,7 +1611,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,പാക്കേജുകൾ കടന്നു ഡെലിവറി നോട്ട് വിഭജിക്കുക. apps/erpnext/erpnext/hooks.py +69,Shipments,കയറ്റുമതി DocType: Purchase Order Item,To be delivered to customer,ഉപഭോക്താവിന് പ്രസവം -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,സമയം ലോഗ് അവസ്ഥ സമര്പ്പിക്കണം. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,സമയം ലോഗ് അവസ്ഥ സമര്പ്പിക്കണം. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,സീരിയൽ ഇല്ല {0} ഏതെങ്കിലും വെയർഹൗസ് ഭാഗമല്ല apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,വരി # DocType: Purchase Invoice,In Words (Company Currency),വാക്കുകൾ (കമ്പനി കറൻസി) ൽ @@ -1628,7 +1628,7 @@ DocType: Leave Application,Total Leave Days,ആകെ അനുവാദ ദി DocType: Email Digest,Note: Email will not be sent to disabled users,കുറിപ്പ്: ഇമെയിൽ ഉപയോക്താക്കൾക്ക് അയച്ച ചെയ്യില്ല apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,കമ്പനി തിരഞ്ഞെടുക്കുക ... DocType: Leave Control Panel,Leave blank if considered for all departments,എല്ലാ വകുപ്പുകളുടെയും വേണ്ടി പരിഗണിക്കും എങ്കിൽ ശൂന്യമായിടൂ -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","തൊഴിൽ വിവിധതരം (സ്ഥിരമായ, കരാർ, തടവുകാരി മുതലായവ)." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","തൊഴിൽ വിവിധതരം (സ്ഥിരമായ, കരാർ, തടവുകാരി മുതലായവ)." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} ഇനം {1} നിര്ബന്ധമാണ് DocType: Currency Exchange,From Currency,കറൻസി apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","കുറഞ്ഞത് ഒരു വരിയിൽ പദ്ധതി തുക, ഇൻവോയിസ് ടൈപ്പ് ഇൻവോയിസ് നമ്പർ തിരഞ്ഞെടുക്കുക" @@ -1647,7 +1647,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,പ്രക്രിയയിൽ DocType: Authorization Rule,Itemwise Discount,Itemwise ഡിസ്കൗണ്ട് DocType: Purchase Order Item,Reference Document Type,റഫറൻസ് ഡോക്യുമെന്റ് തരം -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} സെയിൽസ് ഓർഡർ {1} നേരെ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} സെയിൽസ് ഓർഡർ {1} നേരെ DocType: Account,Fixed Asset,സ്ഥിര അസറ്റ് apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,സീരിയൽ ഇൻവെന്ററി DocType: Activity Type,Default Billing Rate,സ്ഥിരസ്ഥിതി ബില്ലിംഗ് റേറ്റ് @@ -1657,7 +1657,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,പെയ്മെന്റ് വിൽപ്പന ഓർഡർ DocType: Expense Claim Detail,Expense Claim Detail,ചിലവേറിയ ക്ലെയിം വിശദാംശം apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,സമയം ലോഗുകൾ സൃഷ്ടിച്ചത്: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,ശരിയായ അക്കൗണ്ട് തിരഞ്ഞെടുക്കുക +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,ശരിയായ അക്കൗണ്ട് തിരഞ്ഞെടുക്കുക DocType: Item,Weight UOM,ഭാരോദ്വഹനം UOM DocType: Employee,Blood Group,രക്ത ഗ്രൂപ്പ് DocType: Purchase Invoice Item,Page Break,പേജ് @@ -1692,7 +1692,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM ലേക്ക് വിശകലനത്തിനുവേണ്ടിയാണീ: {0} {2} മാതാപിതാക്കൾ കുട്ടികളുടെ ആകാൻ പാടില്ല DocType: Production Order Operation,Completed Qty,പൂർത്തിയാക്കി Qty apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry",{0} മാത്രം ഡെബിറ്റ് അക്കൗണ്ടുകൾ മറ്റൊരു ക്രെഡിറ്റ് എൻട്രി നേരെ ലിങ്ക്ഡ് കഴിയും -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,വില പട്ടിക {0} പ്രവർത്തനരഹിതമാക്കിയിരിക്കുന്നതിനാൽ +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,വില പട്ടിക {0} പ്രവർത്തനരഹിതമാക്കിയിരിക്കുന്നതിനാൽ DocType: Manufacturing Settings,Allow Overtime,അധികസമയം അനുവദിക്കുക apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,ഇനം {1} വേണ്ടി ആവശ്യമായ {0} സീരിയൽ സംഖ്യാപുസ്തകം. നിങ്ങൾ {2} നൽകിയിട്ടുള്ള. DocType: Stock Reconciliation Item,Current Valuation Rate,ഇപ്പോഴത്തെ മൂലധനം റേറ്റ് @@ -1743,7 +1743,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},ബ apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,കേസ് നമ്പർ 0 ആയിരിക്കും കഴിയില്ല DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,നിങ്ങൾ സെയിൽസ് ടീം വിൽപനയും പങ്കാളികൾ (ചാനൽ പങ്കാളികൾ) ഉണ്ടെങ്കിൽ ടാഗ് സെയിൽസ് പ്രവർത്തനങ്ങളിലും അംശദായം നിലനിർത്താൻ കഴിയും DocType: Item,Show a slideshow at the top of the page,പേജിന്റെ മുകളിൽ ഒരു സ്ലൈഡ്ഷോ കാണിക്കുക -DocType: Item,"Allow in Sales Order of type ""Service""",തരം വില്പന ക്രമത്തിൽ അനുവദിക്കുക "സേവനം" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,സ്റ്റോറുകൾ DocType: Time Log,Projects Manager,പ്രോജക്റ്റുകൾ മാനേജർ DocType: Serial No,Delivery Time,വിതരണ സമയം @@ -1758,6 +1757,7 @@ DocType: Rename Tool,Rename Tool,ടൂൾ പുനർനാമകരണം ച apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,അപ്ഡേറ്റ് ചെലവ് DocType: Item Reorder,Item Reorder,ഇനം പുനഃക്രമീകരിക്കുക apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,മെറ്റീരിയൽ കൈമാറുക +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},ഇനം {0} {1} ഒരു സെയിൽസ് ഇനം ആയിരിക്കണം DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.",", ഓപ്പറേഷൻസ് വ്യക്തമാക്കുക ഓപ്പറേറ്റിങ് വില നിങ്ങളുടെ പ്രവർത്തനങ്ങൾക്ക് ഒരു അതുല്യമായ ഓപ്പറേഷൻ ഒന്നും തരും." DocType: Purchase Invoice,Price List Currency,വില പട്ടിക കറന്സി DocType: Naming Series,User must always select,ഉപയോക്താവ് എപ്പോഴും തിരഞ്ഞെടുക്കണം @@ -1778,7 +1778,7 @@ DocType: Appraisal,Employee,ജീവനക്കാരുടെ apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,നിന്നും ഇറക്കുമതി ഇമെയിൽ apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,ഉപയോക്താവ് ആയി ക്ഷണിക്കുക DocType: Features Setup,After Sale Installations,വില്പനയ്ക്ക് ഇൻസ്റ്റലേഷനുകൾ ശേഷം -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} പൂർണ്ണമായി കൊക്കുമാണ് +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} പൂർണ്ണമായി കൊക്കുമാണ് DocType: Workstation Working Hour,End Time,അവസാനിക്കുന്ന സമയം apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,സെയിൽസ് വാങ്ങാനും സ്റ്റാൻഡേർഡ് കരാർ നിബന്ധനകൾ. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,വൗച്ചർ എന്നയാളുടെ ഗ്രൂപ്പ് @@ -1804,7 +1804,7 @@ DocType: Upload Attendance,Attendance To Date,തീയതി ആരംഭിക apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),വിൽപ്പന ഇമെയിൽ ഐഡി വേണ്ടി സെറ്റപ്പ് ഇൻകമിംഗ് സെർവർ. (ഉദാ sales@example.com) DocType: Warranty Claim,Raised By,ഉന്നയിക്കുന്ന DocType: Payment Gateway Account,Payment Account,പേയ്മെന്റ് അക്കൗണ്ട് -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,തുടരാനായി കമ്പനി വ്യക്തമാക്കുക +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,തുടരാനായി കമ്പനി വ്യക്തമാക്കുക apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,അക്കൗണ്ടുകൾ സ്വീകാര്യം ലെ നെറ്റ് മാറ്റുക apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,ഓഫാക്കുക നഷ്ടപരിഹാര DocType: Quality Inspection Reading,Accepted,സ്വീകരിച്ചു @@ -1816,14 +1816,14 @@ DocType: Shipping Rule,Shipping Rule Label,ഷിപ്പിംഗ് റൂൾ apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,അസംസ്കൃത വസ്തുക്കൾ ശൂന്യമായിരിക്കാൻ കഴിയില്ല. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","ഇൻവോയ്സ് ഡ്രോപ്പ് ഷിപ്പിംഗ് ഇനം ഉൾപ്പെടുന്നു, സ്റ്റോക്ക് അപ്ഡേറ്റുചെയ്യാനായില്ല." DocType: Newsletter,Test,ടെസ്റ്റ് -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","നിലവിലുള്ള സ്റ്റോക്ക് ഇടപാടുകൾ ഈ ഇനത്തിന്റെ ഉണ്ട് പോലെ, \ നിങ്ങൾ 'സീരിയൽ നോ ഉണ്ട്' മൂല്യങ്ങൾ മാറ്റാൻ കഴിയില്ല, 'ബാച്ച് ഇല്ല ഉണ്ട്', ഒപ്പം 'മൂലധനം രീതിയുടെ' 'ഓഹരി ഇനം തന്നെയല്ലേ'" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,ദ്രുത ജേർണൽ എൻട്രി apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,BOM ലേക്ക് ഏതെങ്കിലും ഇനത്തിന്റെ agianst പരാമർശിച്ചു എങ്കിൽ നിങ്ങൾ നിരക്ക് മാറ്റാൻ കഴിയില്ല DocType: Employee,Previous Work Experience,മുമ്പത്തെ ജോലി പരിചയം DocType: Stock Entry,For Quantity,ക്വാണ്ടിറ്റി വേണ്ടി apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},വരി ചെയ്തത് ഇനം {0} ആസൂത്രണം Qty നൽകുക {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} സമർപ്പിച്ചിട്ടില്ലെന്നതും +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} സമർപ്പിച്ചിട്ടില്ലെന്നതും apps/erpnext/erpnext/config/stock.py +18,Requests for items.,ഇനങ്ങളുടെ വേണ്ടി അപേക്ഷ. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,ഓരോ നല്ല ഇനത്തിനും തീർന്നശേഷം പ്രത്യേക ഉത്പാദനം ഓർഡർ സൃഷ്ടിക്കപ്പെടും. DocType: Purchase Invoice,Terms and Conditions1,നിബന്ധനകളും Conditions1 @@ -1848,6 +1848,7 @@ DocType: Notification Control,Expense Claim Approved Message,ചിലവിട DocType: Email Digest,How frequently?,എത്ര ഇടവേളകളിലാണ്? DocType: Purchase Receipt,Get Current Stock,ഇപ്പോഴത്തെ സ്റ്റോക്ക് നേടുക apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,വസ്തുക്കളുടെ ബിൽ ട്രീ +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,മർക്കോസ് നിലവിലുള്ളജാലകങ്ങള് apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},മെയിൻറനൻസ് ആരംഭ തീയതി സീരിയൽ ഇല്ല {0} വേണ്ടി ഡെലിവറി തീയതി മുമ്പ് ആകാൻ പാടില്ല DocType: Production Order,Actual End Date,യഥാർത്ഥ അവസാന തീയതി DocType: Authorization Rule,Applicable To (Role),(റോൾ) ബാധകമായ @@ -1862,7 +1863,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,കരാര് അവസാനിക്കുന്ന തീയതി ചേരുന്നു തീയതി വലുതായിരിക്കണം DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,ഒരു കമ്മീഷൻ കമ്പനികൾ ഉൽപ്പന്നങ്ങൾ വിൽക്കുന്നു ഒരു മൂന്നാം കക്ഷി വിതരണക്കാരനായ / ഡീലർ / കമ്മീഷൻ ഏജന്റ് / അനുബന്ധ / റീസെല്ലറിനെ. DocType: Customer Group,Has Child Node,ചൈൽഡ് നോഡ് ഉണ്ട് -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} വാങ്ങൽ ഓർഡർ {1} നേരെ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} വാങ്ങൽ ഓർഡർ {1} നേരെ DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","ഇവിടെ സ്റ്റാറ്റിക് URL പാരാമീറ്ററുകൾ നൽകുക (ഉദാ. അയച്ചയാളെ = ERPNext, ഉപയോക്തൃനാമം = ERPNext, പാസ്വേഡ് = 1234 മുതലായവ)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} ഏതെങ്കിലും സജീവ വർഷം. കൂടുതൽ വിവരങ്ങൾക്ക് {2} പരിശോധിക്കുക. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,ഈ ERPNext നിന്നുള്ള സ്വയം സൃഷ്ടിച്ചതാണ് ഒരു ഉദാഹരണം വെബ്സൈറ്റ് ആണ് @@ -1890,7 +1891,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Add or Deduct: Whether you want to add or deduct the tax.","എല്ലാ വാങ്ങൽ ഇടപാടുകൾ പ്രയോഗിക്കാൻ കഴിയുന്ന സാധാരണം നികുതി ടെംപ്ലേറ്റ്. * ഈ ഫലകം നികുതി തലവന്മാരും പട്ടിക ഉൾക്കൊള്ളാൻ കഴിയും ഒപ്പം "ഷിപ്പിങ്", "ഇൻഷുറൻസ്", തുടങ്ങിയവ "കൈകാര്യം" #### പോലുള്ള മറ്റ് ചെലവിൽ തലവന്മാരും നിങ്ങൾ ഇവിടെ നിർവ്വചിക്കുന്ന നികുതി നിരക്ക് എല്ലാ ** ഇനങ്ങൾ വേണ്ടി സ്റ്റാൻഡേർഡ് നികുതി നിരക്ക് ആയിരിക്കും ശ്രദ്ധിക്കുക *. വ്യത്യസ്ത നിരക്കുകൾ ഉണ്ടു എന്നു ** ഇനങ്ങൾ ** അവിടെ അവ ** ഇനം നികുതി ചേർത്തു വേണം ** ടേബിൾ ** ഇനം ** മാസ്റ്റർ. ഈ ** ആകെ ** നെറ്റിലെ കഴിയും (ആ അടിസ്ഥാന തുക ആകെത്തുകയാണ്) -: നിരകൾ 1. കണക്കുകൂട്ടല് തരം #### വിവരണം. - ** മുൻ വരി ന് ആകെ / തുക ** (വർദ്ധിക്കുന്നത് നികുതികൾ അല്ലെങ്കിൽ ചാർജുകളും). നിങ്ങൾ ഈ ഓപ്ഷൻ തിരഞ്ഞെടുക്കുകയാണെങ്കിൽ, നികുതി മുൻ വരി (നികുതി പട്ടിക ൽ) അളവിലോ ആകെ ശതമാനത്തിൽ പ്രയോഗിക്കും. - ** (സൂചിപ്പിച്ച പോലെ) ** യഥാർത്ഥ. 2. അക്കൗണ്ട് ഹെഡ്: നികുതി / ചാർജ് (ഷിപ്പിംഗ് പോലെ) ഒരു വരുമാനം ആണ് അല്ലെങ്കിൽ അത് ഒരു കോസ്റ്റ് കേന്ദ്രം നേരെ ബുക്ക് ആവശ്യമാണ് അഴിപ്പാന് എങ്കിൽ: ഈ നികുതി 3. ചെലവ് കേന്ദ്രം ബുക്ക് ചെയ്യും പ്രകാരം അക്കൗണ്ട് ലെഡ്ജർ. 4. വിവരണം: (ഇൻവോയ്സുകൾ / ഉദ്ധരണികൾ പ്രിന്റ് ചെയ്യുക എന്ന്) നികുതി വിവരണം. 5. നിരക്ക്: നികുതി നിരക്ക്. 6. തുക: നികുതി തുക. 7. ആകെ: ഈ പോയിന്റിന് സഞ്ചിയിപ്പിച്ചിട്ടുള്ള മൊത്തം. 8. വരി നൽകുക: "മുൻ വരി ആകെ" അടിസ്ഥാനമാക്കി നിങ്ങൾ ഈ കണക്കുകൂട്ടൽ അടിസ്ഥാനമായി എടുത്ത ചെയ്യുന്ന വരി നമ്പർ (സ്വതവേയുള്ള മുൻ വരി ആണ്) തിരഞ്ഞെടുക്കാം. 9. വേണ്ടി നികുതി അഥവാ ചാർജ് പരിഗണിക്കുക: നികുതി / ചാർജ് മൂലധനം (മൊത്തം അല്ല ഒരു ഭാഗം) അല്ലെങ്കിൽ മാത്രം ആകെ (ഇനത്തിലേക്ക് മൂല്യം ചേർക്കുക ഇല്ല) അല്ലെങ്കിൽ രണ്ടും മാത്രമാണ് ഈ വിഭാഗത്തിലെ നിങ്ങളെ വ്യക്തമാക്കാൻ കഴിയും. 10. ചേർക്കുക അല്ലെങ്കിൽ നിയമഭേദഗതി: നിങ്ങൾ നികുതി ചേർക്കാൻ അല്ലെങ്കിൽ കുറച്ചാണ് ആഗ്രഹിക്കുന്ന എന്നു്." DocType: Purchase Receipt Item,Recd Quantity,Recd ക്വാണ്ടിറ്റി apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},സെയിൽസ് ഓർഡർ അളവ് {1} അധികം ഇനം {0} ഉത്പാദിപ്പിക്കാനുള്ള കഴിയുന്നില്ലേ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,ഓഹരി എൻട്രി {0} സമർപ്പിച്ചിട്ടില്ലെന്നതും +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,ഓഹരി എൻട്രി {0} സമർപ്പിച്ചിട്ടില്ലെന്നതും DocType: Payment Reconciliation,Bank / Cash Account,ബാങ്ക് / ക്യാഷ് അക്കൗണ്ട് DocType: Tax Rule,Billing City,ബില്ലിംഗ് സിറ്റി DocType: Global Defaults,Hide Currency Symbol,കറൻസി ചിഹ്നം മറയ്ക്കുക @@ -1916,7 +1917,7 @@ DocType: Salary Structure,Total Earning,മൊത്തം സമ്പാദ DocType: Purchase Receipt,Time at which materials were received,വസ്തുക്കൾ ലഭിച്ച ഏത് സമയം apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,എന്റെ വിലാസങ്ങൾ DocType: Stock Ledger Entry,Outgoing Rate,ഔട്ട്ഗോയിംഗ് റേറ്റ് -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,ഓർഗനൈസേഷൻ ബ്രാഞ്ച് മാസ്റ്റർ. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,ഓർഗനൈസേഷൻ ബ്രാഞ്ച് മാസ്റ്റർ. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,അഥവാ DocType: Sales Order,Billing Status,ബില്ലിംഗ് അവസ്ഥ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,യൂട്ടിലിറ്റി ചെലവുകൾ @@ -1954,7 +1955,7 @@ DocType: Bin,Reserved Quantity,സംരക്ഷിത ക്വാണ്ടി DocType: Landed Cost Voucher,Purchase Receipt Items,രസീത് ഇനങ്ങൾ വാങ്ങുക apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,യഥേഷ്ടമാക്കുക ഫോമുകൾ DocType: Account,Income Account,ആദായ അക്കൗണ്ട് -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,ഡെലിവറി +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,ഡെലിവറി DocType: Stock Reconciliation Item,Current Qty,ഇപ്പോഴത്തെ Qty DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",വിഭാഗം ആറെണ്ണവും ലെ "മെറ്റീരിയൽസ് അടിസ്ഥാനപ്പെടുത്തിയ ഓൺ നിരക്ക്" കാണുക DocType: Appraisal Goal,Key Responsibility Area,കീ ഉത്തരവാദിത്വം ഏരിയ @@ -1966,8 +1967,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,സ DocType: Notification Control,Purchase Order Message,ഓർഡർ സന്ദേശം വാങ്ങുക DocType: Tax Rule,Shipping Country,ഷിപ്പിംഗ് രാജ്യം DocType: Upload Attendance,Upload HTML,എച്ച്ടിഎംഎൽ അപ്ലോഡ് ചെയ്യുക -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})",ഓർഡർ {1} ആകെ മൊത്തം വലിയവനോ \ ആകാൻ പാടില്ല ({2}) നേരെ ആകെ മുൻകൂർ ({0}) DocType: Employee,Relieving Date,തീയതി വിടുതൽ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","പ്രൈസിങ് റൂൾ ചില മാനദണ്ഡങ്ങൾ അടിസ്ഥാനമാക്കി, നല്കിയിട്ടുള്ള ശതമാനം define / വില പട്ടിക മാറ്റണമോ ഉണ്ടാക്കിയ." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,വെയർഹൗസ് മാത്രം ഓഹരി എൻട്രി / ഡെലിവറി നോട്ട് / വാങ്ങൽ റെസീപ്റ്റ് വഴി മാറ്റാൻ കഴിയൂ @@ -1977,8 +1976,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,ആ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","തിരഞ്ഞെടുത്ത പ്രൈസിങ് ഭരണം 'വില' വേണ്ടി ഉണ്ടാക്കിയ, അത് വില പട്ടിക തിരുത്തിയെഴുതും. പ്രൈസിങ് റൂൾ വില അവസാന വില ആണ്, അതിനാൽ യാതൊരു കൂടുതൽ നല്കിയിട്ടുള്ള നടപ്പാക്കണം. അതുകൊണ്ട്, സെയിൽസ് ഓർഡർ, പർച്ചേസ് ഓർഡർ തുടങ്ങിയ ഇടപാടുകൾ, അതു മറിച്ച് 'വില പട്ടിക റേറ്റ്' ഫീൽഡ് അധികം, 'റേറ്റ്' ഫീൽഡിലെ വീണ്ടെടുക്കാൻ ചെയ്യും." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,ട്രാക്ക് ഇൻഡസ്ട്രി തരം നയിക്കുന്നു. DocType: Item Supplier,Item Supplier,ഇനം വിതരണക്കാരൻ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,യാതൊരു ബാച്ച് ലഭിക്കാൻ ഇനം കോഡ് നൽകുക -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},{1} quotation_to {0} ഒരു മൂല്യം തിരഞ്ഞെടുക്കുക +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,യാതൊരു ബാച്ച് ലഭിക്കാൻ ഇനം കോഡ് നൽകുക +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},{1} quotation_to {0} ഒരു മൂല്യം തിരഞ്ഞെടുക്കുക apps/erpnext/erpnext/config/selling.py +33,All Addresses.,എല്ലാ വിലാസങ്ങൾ. DocType: Company,Stock Settings,സ്റ്റോക്ക് ക്രമീകരണങ്ങൾ apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","താഴെ പ്രോപ്പർട്ടികൾ ഇരു രേഖകളിൽ ഒരേ തന്നെയുള്ള സംയോജിപ്പിച്ചുകൊണ്ട് മാത്രമേ സാധിക്കുകയുള്ളൂ. ഗ്രൂപ്പ്, റൂട്ട് ടൈപ്പ്, കമ്പനിയാണ്" @@ -2001,7 +2000,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,ചെക്ക് നമ് DocType: Payment Tool Detail,Payment Tool Detail,പേയ്മെന്റ് ടൂൾ വിശദാംശം ,Sales Browser,സെയിൽസ് ബ്രൗസർ DocType: Journal Entry,Total Credit,ആകെ ക്രെഡിറ്റ് -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},മുന്നറിയിപ്പ്: മറ്റൊരു {0} # {1} സ്റ്റോക്ക് എൻട്രി {2} നേരെ നിലവിലുണ്ട് +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},മുന്നറിയിപ്പ്: മറ്റൊരു {0} # {1} സ്റ്റോക്ക് എൻട്രി {2} നേരെ നിലവിലുണ്ട് apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,പ്രാദേശിക apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),വായ്പകളും അഡ്വാൻസുകളും (ആസ്തികൾ) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,കടക്കാർ @@ -2021,8 +2020,8 @@ DocType: Price List,Price List Master,വില പട്ടിക മാസ് DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,എല്ലാ സെയിൽസ് ഇടപാട് ഒന്നിലധികം ** സെയിൽസ് പേഴ്സൺസ് നേരെ ടാഗ് ചെയ്യാൻ കഴിയും ** നിങ്ങൾ ലക്ഷ്യങ്ങളിലൊന്നാണ് സജ്ജമാക്കാൻ നിരീക്ഷിക്കുവാനും കഴിയും. ,S.O. No.,ഷൂട്ട്ഔട്ട് നമ്പർ DocType: Production Order Operation,Make Time Log,സമയം ലോഗ് നിർമ്മിക്കുക -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,പുനഃക്രമീകരിക്കുക അളവ് സജ്ജീകരിക്കുക -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},ലീഡ് നിന്ന് {0} കസ്റ്റമർ സൃഷ്ടിക്കാൻ ദയവായി +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,പുനഃക്രമീകരിക്കുക അളവ് സജ്ജീകരിക്കുക +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},ലീഡ് നിന്ന് {0} കസ്റ്റമർ സൃഷ്ടിക്കാൻ ദയവായി DocType: Price List,Applicable for Countries,രാജ്യങ്ങൾ വേണ്ടി ബാധകമായ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,കംപ്യൂട്ടർ apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,ഇത് ഒരു റൂട്ട് ഉപഭോക്തൃ ഗ്രൂപ്പ് ആണ് എഡിറ്റ് ചെയ്യാൻ കഴിയില്ല. @@ -2058,7 +2057,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),ബി DocType: Payment Reconciliation Invoice,Outstanding Amount,നിലവിലുള്ള തുക DocType: Project Task,Working,ജോലി DocType: Stock Ledger Entry,Stock Queue (FIFO),ഓഹരി ക്യൂ (fifo തുറക്കാന്കഴിയില്ല) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,സമയം ലോഗുകൾ തിരഞ്ഞെടുക്കുക. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,സമയം ലോഗുകൾ തിരഞ്ഞെടുക്കുക. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} കമ്പനി {1} സ്വന്തമല്ല DocType: Account,Round Off,ഓഫാക്കുക റൌണ്ട് ,Requested Qty,അഭ്യർത്ഥിച്ചു Qty @@ -2096,7 +2095,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,പ്രസക്തമായ എൻട്രികൾ നേടുക apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,ഓഹരി വേണ്ടി അക്കൗണ്ടിംഗ് എൻട്രി DocType: Sales Invoice,Sales Team1,സെയിൽസ് ടീം 1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,ഇനം {0} നിലവിലില്ല +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,ഇനം {0} നിലവിലില്ല DocType: Sales Invoice,Customer Address,കസ്റ്റമർ വിലാസം DocType: Payment Request,Recipient and Message,സ്വീകർത്താവ് ആൻഡ് സന്ദേശം DocType: Purchase Invoice,Apply Additional Discount On,പ്രയോഗിക്കുക അധിക ഡിസ്കൌണ്ട് @@ -2115,7 +2114,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,നിശബ്ദമാക്കുക ഇമെയിൽ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","ഫുഡ്, ബീവറേജ് & പുകയില" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,പോളണ്ട് അഥവാ ബി.എസ് -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},മാത്രം unbilled {0} നേരെ തീർക്കാം കഴിയുമോ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},മാത്രം unbilled {0} നേരെ തീർക്കാം കഴിയുമോ apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,കമ്മീഷൻ നിരക്ക് 100 വലുതായിരിക്കും കഴിയില്ല apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,മിനിമം ഇൻവെന്ററി ലെവൽ DocType: Stock Entry,Subcontract,Subcontract @@ -2133,9 +2132,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,സോ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,കളർ DocType: Maintenance Visit,Scheduled,ഷെഡ്യൂൾഡ് apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","ഓഹരി ഇനം ആകുന്നു 'എവിടെ ഇനം തിരഞ്ഞെടുക്കുക" ഇല്ല "ആണ്" സെയിൽസ് ഇനം തന്നെയല്ലേ "" അതെ "ആണ് മറ്റൊരു പ്രൊഡക്ട് ബണ്ടിൽ ഇല്ല ദയവായി +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),മുൻകൂർ ({0}) ഉത്തരവിനെതിരെ {1} ({2}) ഗ്രാൻഡ് ആകെ ശ്രേഷ്ഠ പാടില്ല DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,സമമായി മാസം ഉടനീളമുള്ള ലക്ഷ്യങ്ങളിലൊന്നാണ് വിതരണം ചെയ്യാൻ പ്രതിമാസ വിതരണം തിരഞ്ഞെടുക്കുക. DocType: Purchase Invoice Item,Valuation Rate,മൂലധനം റേറ്റ് -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,വില പട്ടിക കറന്സി തിരഞ്ഞെടുത്തിട്ടില്ല +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,വില പട്ടിക കറന്സി തിരഞ്ഞെടുത്തിട്ടില്ല apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,ഇനം വരി {0}: വാങ്ങൽ രസീത് {1} മുകളിൽ 'വാങ്ങൽ വരവ്' പട്ടികയിൽ നിലവിലില്ല apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},ജീവനക്കാർ {0} ഇതിനകം {1} {2} ഉം {3} തമ്മിലുള്ള അപേക്ഷിച്ചു apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,പ്രോജക്ട് ആരംഭ തീയതി @@ -2147,6 +2147,7 @@ DocType: Quality Inspection,Inspection Type,ഇൻസ്പെക്ഷൻ ത apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},{0} തിരഞ്ഞെടുക്കുക DocType: C-Form,C-Form No,സി-ഫോം ഇല്ല DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,അടയാളപ്പെടുത്താത്ത ഹാജർ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,ഗവേഷകനും apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,അയക്കുന്നതിന് മുമ്പ് വാർത്താക്കുറിപ്പ് ദയവായി സംരക്ഷിക്കുക apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,പേര് അല്ലെങ്കിൽ ഇമെയിൽ നിർബന്ധമാണ് @@ -2172,7 +2173,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,സ് DocType: Payment Gateway,Gateway,ഗേറ്റ്വേ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,വിതരണക്കമ്പനിയായ> വിതരണക്കാരൻ തരം apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,തീയതി വിടുതൽ നൽകുക. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,ശാരീരിക +apps/erpnext/erpnext/controllers/trends.py +138,Amt,ശാരീരിക apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,സമർപ്പിച്ച കഴിയും 'അംഗീകരിച്ചു' നില ആപ്ലിക്കേഷൻസ് മാത്രം വിടുക apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,വിലാസം ശീർഷകം നിർബന്ധമാണ്. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,അന്വേഷണത്തിന് സ്രോതസ് പ്രചാരണം എങ്കിൽ പ്രചാരണത്തിന്റെ പേര് നൽകുക @@ -2187,10 +2188,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,അംഗീകരിച്ച DocType: Bank Reconciliation Detail,Posting Date,പോസ്റ്റിംഗ് തീയതി DocType: Item,Valuation Method,മൂലധനം രീതിയുടെ apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},{0} {1} വേണ്ടി വിനിമയ നിരക്ക് കണ്ടെത്താൻ കഴിഞ്ഞില്ല +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,മാർക് ഹാഫ് ഡേ DocType: Sales Invoice,Sales Team,സെയിൽസ് ടീം apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,എൻട്രി തനിപ്പകർപ്പെടുക്കുക DocType: Serial No,Under Warranty,വാറന്റി കീഴിൽ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[പിശക്] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[പിശക്] DocType: Sales Order,In Words will be visible once you save the Sales Order.,നിങ്ങൾ സെയിൽസ് ഓർഡർ രക്ഷിക്കും ഒരിക്കൽ വാക്കുകളിൽ ദൃശ്യമാകും. ,Employee Birthday,ജീവനക്കാരുടെ ജന്മദിനം apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,വെഞ്ച്വർ ക്യാപ്പിറ്റൽ @@ -2213,6 +2215,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,നിലവിലുള്ള ഇടപാടുകൾ ചെലവ് കേന്ദ്രം ഗ്രൂപ്പ് പരിവർത്തനം ചെയ്യാൻ കഴിയില്ല DocType: Account,Depreciation,മൂല്യശോഷണം apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),വിതരണക്കമ്പനിയായ (കൾ) +DocType: Employee Attendance Tool,Employee Attendance Tool,ജീവനക്കാരുടെ ഹാജർ ടൂൾ DocType: Supplier,Credit Limit,വായ്പാ പരിധി apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,ഇടപാട് തരം തിരഞ്ഞെടുക്കുക DocType: GL Entry,Voucher No,സാക്ഷപ്പെടുത്തല് ഇല്ല @@ -2239,7 +2242,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,റൂട്ട് അക്കൌണ്ട് ഇല്ലാതാക്കാൻ കഴിയില്ല ,Is Primary Address,പ്രാഥമിക വിലാസം DocType: Production Order,Work-in-Progress Warehouse,പ്രവർത്തിക്കുക-ഇൻ-പ്രോഗ്രസ് വെയർഹൗസ് -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},റഫറൻസ് # {0} {1} dated +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},റഫറൻസ് # {0} {1} dated apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,വിലാസങ്ങൾ നിയന്ത്രിക്കുക DocType: Pricing Rule,Item Code,ഇനം കോഡ് DocType: Production Planning Tool,Create Production Orders,പ്രൊഡക്ഷൻ ഓർഡറുകൾ സൃഷ്ടിക്കുക @@ -2266,7 +2269,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,ബാങ്ക് അനുര apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,അപ്ഡേറ്റുകൾ നേടുക apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,മെറ്റീരിയൽ അഭ്യർത്ഥന {0} റദ്ദാക്കി അല്ലെങ്കിൽ നിറുത്തി apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,ഏതാനും സാമ്പിൾ റെക്കോർഡുകൾ ചേർക്കുക -apps/erpnext/erpnext/config/hr.py +210,Leave Management,മാനേജ്മെന്റ് വിടുക +apps/erpnext/erpnext/config/hr.py +225,Leave Management,മാനേജ്മെന്റ് വിടുക apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,അക്കൗണ്ട് വഴി ഗ്രൂപ്പ് DocType: Sales Order,Fully Delivered,പൂർണ്ണമായി കൈമാറി DocType: Lead,Lower Income,ലോവർ ആദായ @@ -2281,6 +2284,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','ഈ തീയതി മുതൽ' 'തീയതി ആരംഭിക്കുന്ന' ശേഷം ആയിരിക്കണം ,Stock Projected Qty,ഓഹരി Qty അനുമാനിക്കപ്പെടുന്ന apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},കസ്റ്റമർ {0} {1} പ്രൊജക്ട് സ്വന്തമല്ല +DocType: Employee Attendance Tool,Marked Attendance HTML,അടയാളപ്പെടുത്തിയിരിക്കുന്ന ഹാജർ എച്ച്ടിഎംഎൽ DocType: Sales Order,Customer's Purchase Order,കസ്റ്റമർ പർച്ചേസ് ഓർഡർ DocType: Warranty Claim,From Company,കമ്പനി നിന്നും apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,മൂല്യം അഥവാ Qty @@ -2345,6 +2349,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,വയർ ട്രാൻസ്ഫർ apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,ബാങ്ക് അക്കൗണ്ട് തിരഞ്ഞെടുക്കുക DocType: Newsletter,Create and Send Newsletters,"വാർത്താക്കുറിപ്പുകൾ സൃഷ്ടിക്കുക, അയയ്ക്കുക" +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,എല്ലാം പരിശോധിക്കുക DocType: Sales Order,Recurring Order,ആവർത്തക ഓർഡർ DocType: Company,Default Income Account,സ്ഥിരസ്ഥിതി ആദായ അക്കൗണ്ട് apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,കസ്റ്റമർ ഗ്രൂപ്പ് / കസ്റ്റമർ @@ -2376,6 +2381,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,വാങ്ങൽ ഇ DocType: Item,Warranty Period (in days),(ദിവസങ്ങളിൽ) വാറന്റി കാലാവധി apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,ഓപ്പറേഷൻസ് നിന്നുള്ള നെറ്റ് ക്യാഷ് apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,ഉദാ വാറ്റ് +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,ബൾക്ക് അടയാളപ്പെടുത്തുക ജീവനക്കാരുടെ ഹാജർ apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,ഇനം 4 DocType: Journal Entry Account,Journal Entry Account,ജേണൽ എൻട്രി അക്കൗണ്ട് DocType: Shopping Cart Settings,Quotation Series,ക്വട്ടേഷൻ സീരീസ് @@ -2520,14 +2526,14 @@ DocType: Task,Actual Start Date (via Time Logs),(ടൈം ലോഗുകൾ DocType: Stock Reconciliation Item,Before reconciliation,"നിരപ്പു മുമ്പ്," apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},{0} ചെയ്യുക DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),ചേർത്തു നികുതി ചാർജുകളും (കമ്പനി കറൻസി) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,ഇനം നികുതി റോ {0} ടൈപ്പ് നികുതി അഥവാ ആദായ അല്ലെങ്കിൽ ചിലവേറിയ അല്ലെങ്കിൽ ഈടാക്കുന്നതല്ല എന്ന അക്കൗണ്ട് ഉണ്ടായിരിക്കണം +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,ഇനം നികുതി റോ {0} ടൈപ്പ് നികുതി അഥവാ ആദായ അല്ലെങ്കിൽ ചിലവേറിയ അല്ലെങ്കിൽ ഈടാക്കുന്നതല്ല എന്ന അക്കൗണ്ട് ഉണ്ടായിരിക്കണം DocType: Sales Order,Partly Billed,ഭാഗികമായി ഈടാക്കൂ DocType: Item,Default BOM,സ്വതേ BOM ലേക്ക് apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,സ്ഥിരീകരിക്കാൻ കമ്പനിയുടെ പേര്-തരം റീ ദയവായി apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,മൊത്തം ശാരീരിക DocType: Time Log Batch,Total Hours,ആകെ മണിക്കൂർ DocType: Journal Entry,Printing Settings,അച്ചടി ക്രമീകരണങ്ങൾ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},ആകെ ഡെബിറ്റ് ആകെ ക്രെഡിറ്റ് സമാനമോ ആയിരിക്കണം. വ്യത്യാസം {0} ആണ് +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},ആകെ ഡെബിറ്റ് ആകെ ക്രെഡിറ്റ് സമാനമോ ആയിരിക്കണം. വ്യത്യാസം {0} ആണ് apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,ഓട്ടോമോട്ടീവ് apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,ഡെലിവറി നോട്ട് നിന്ന് DocType: Time Log,From Time,സമയം മുതൽ @@ -2573,7 +2579,7 @@ DocType: Purchase Invoice Item,Image View,ചിത്രം കാണുക DocType: Issue,Opening Time,സമയം തുറക്കുന്നു apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,നിന്ന് ആവശ്യമായ തീയതികൾ ചെയ്യുക apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,സെക്യൂരിറ്റീസ് & ചരക്ക് കൈമാറ്റ -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',മോഡലിന് അളവു യൂണിറ്റ് '{0}' ഫലകം അതേ ആയിരിക്കണം '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',മോഡലിന് അളവു യൂണിറ്റ് '{0}' ഫലകം അതേ ആയിരിക്കണം '{1}' DocType: Shipping Rule,Calculate Based On,അടിസ്ഥാനത്തിൽ ഓൺ കണക്കുകൂട്ടുക DocType: Delivery Note Item,From Warehouse,വെയർഹൗസിൽ നിന്ന് DocType: Purchase Taxes and Charges,Valuation and Total,"മൂലധനം, മൊത്ത" @@ -2595,7 +2601,7 @@ DocType: Leave Application,Follow via Email,ഇമെയിൽ വഴി പി DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,ഡിസ്കൗണ്ട് തുക ശേഷം നികുതിയും apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,ശിശു അക്കൌണ്ട് ഈ അക്കൗണ്ടിന് നിലവിലുണ്ട്. നിങ്ങൾ ഈ അക്കൗണ്ട് ഇല്ലാതാക്കാൻ കഴിയില്ല. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,ലക്ഷ്യം qty അല്ലെങ്കിൽ ലക്ഷ്യം തുക ഒന്നുകിൽ നിർബന്ധമായും -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},BOM ലേക്ക് ഇനം {0} വേണ്ടി നിലവിലുണ്ട് സഹജമായ +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},BOM ലേക്ക് ഇനം {0} വേണ്ടി നിലവിലുണ്ട് സഹജമായ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,പോസ്റ്റിംഗ് തീയതി ആദ്യം തിരഞ്ഞെടുക്കുക apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,തീയതി തുറക്കുന്നു തീയതി അടയ്ക്കുന്നത് മുമ്പ് ആയിരിക്കണം DocType: Leave Control Panel,Carry Forward,മുന്നോട്ട് കൊണ്ടുപോകും @@ -2672,7 +2678,7 @@ DocType: Leave Type,Is Encash,Encash Is DocType: Purchase Invoice,Mobile No,മൊബൈൽ ഇല്ല DocType: Payment Tool,Make Journal Entry,ജേർണൽ എൻട്രി നിർമ്മിക്കുക DocType: Leave Allocation,New Leaves Allocated,അലോക്കേറ്റഡ് പുതിയ ഇലകൾ -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,പ്രോജക്ട് തിരിച്ചുള്ള ഡാറ്റ ക്വട്ടേഷൻ ലഭ്യമല്ല +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,പ്രോജക്ട് തിരിച്ചുള്ള ഡാറ്റ ക്വട്ടേഷൻ ലഭ്യമല്ല DocType: Project,Expected End Date,പ്രതീക്ഷിച്ച അവസാന തീയതി DocType: Appraisal Template,Appraisal Template Title,അപ്രൈസൽ ഫലകം ശീർഷകം apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,ആവശ്യത്തിന് @@ -2720,6 +2726,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No., apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,ഒരു വ്യക്തമാക്കുക DocType: Offer Letter,Awaiting Response,കാത്തിരിക്കുന്നു പ്രതികരണത്തിന്റെ apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,മുകളിൽ +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,സമയം ലോഗ് ഈടാക്കൂ ചെയ്തു DocType: Salary Slip,Earning & Deduction,സമ്പാദിക്കാനുള്ള & കിഴിച്ചുകൊണ്ടു apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,അക്കൗണ്ട് {0} ഒരു ഗ്രൂപ്പ് ആകാൻ പാടില്ല apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,ഓപ്ഷണൽ. ഈ ക്രമീകരണം വിവിധ വ്യവഹാരങ്ങളിൽ ഫിൽട്ടർ ഉപയോഗിക്കും. @@ -2790,14 +2797,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,വിജയകരമായി ഈ കമ്പനിയുമായി ബന്ധപ്പെട്ട എല്ലാ ഇടപാടുകൾ ഇല്ലാതാക്കി! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,തീയതിയിൽ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,പരീക്ഷണകാലഘട്ടം -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,സ്ഥിരസ്ഥിതി വെയർഹൗസ് സ്റ്റോക്ക് ഇനം നിര്ബന്ധമാണ്. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,സ്ഥിരസ്ഥിതി വെയർഹൗസ് സ്റ്റോക്ക് ഇനം നിര്ബന്ധമാണ്. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},മാസം {0} ശമ്പളം എന്ന പേയ്മെന്റ് ഉം വർഷം {1} DocType: Stock Settings,Auto insert Price List rate if missing,ഓട്ടോ insert വില പട്ടിക നിരക്ക് കാണാനില്ല എങ്കിൽ apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,ആകെ തുക ,Transferred Qty,മാറ്റിയത് Qty apps/erpnext/erpnext/config/learn.py +11,Navigating,നീങ്ങുന്നത് apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,ആസൂത്രണ -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,സമയം ലോഗ് ബാച്ച് നിർമ്മിക്കുക +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,സമയം ലോഗ് ബാച്ച് നിർമ്മിക്കുക apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,ഇഷ്യൂചെയ്തു DocType: Project,Total Billing Amount (via Time Logs),(ടൈം ലോഗുകൾ വഴി) ആകെ ബില്ലിംഗ് തുക apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,ഞങ്ങൾ ഈ ഇനം വിൽക്കാൻ @@ -2805,7 +2812,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,ക്വാണ്ടിറ്റി 0 കൂടുതലായിരിക്കണം DocType: Journal Entry,Cash Entry,ക്യാഷ് എൻട്രി DocType: Sales Partner,Contact Desc,കോൺടാക്റ്റ് DESC -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","കാഷ്വൽ, രോഗികളെ മുതലായ ഇല തരം" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","കാഷ്വൽ, രോഗികളെ മുതലായ ഇല തരം" DocType: Email Digest,Send regular summary reports via Email.,ഇമെയിൽ വഴി പതിവ് സംഗ്രഹം റിപ്പോർട്ടുകൾ അയയ്ക്കുക. DocType: Brand,Item Manager,ഇനം മാനേജർ DocType: Cost Center,Add rows to set annual budgets on Accounts.,അക്കൗണ്ടുകൾ വാർഷിക ബജറ്റുകൾ സജ്ജീകരിക്കാൻ വരികൾ ചേർക്കുക. @@ -2820,7 +2827,7 @@ DocType: GL Entry,Party Type,പാർട്ടി ടൈപ്പ് apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,അസംസ്കൃത വസ്തുക്കളുടെ പ്രധാന ഇനം അതേ ആകും കഴിയില്ല DocType: Item Attribute Value,Abbreviation,ചുരുക്കല് apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,{0} പരിധികൾ കവിയുന്നു മുതലുള്ള authroized ഒരിക്കലും പാടില്ല -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,ശമ്പളം ടെംപ്ലേറ്റ് മാസ്റ്റർ. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,ശമ്പളം ടെംപ്ലേറ്റ് മാസ്റ്റർ. DocType: Leave Type,Max Days Leave Allowed,മാക്സ് ദിനങ്ങൾ അവധി അനുവദനീയം apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,ഷോപ്പിംഗ് കാർട്ട് നികുതി റൂൾ സജ്ജീകരിക്കുക DocType: Payment Tool,Set Matching Amounts,"സജ്ജമാക്കുക, പൊരുത്തം അളവിൽ" @@ -2833,7 +2840,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,നയ DocType: Stock Settings,Role Allowed to edit frozen stock,ശീതീകരിച്ച സ്റ്റോക്ക് തിരുത്തിയെഴുതുന്നത് അനുവദനീയം റോൾ ,Territory Target Variance Item Group-Wise,ടെറിട്ടറി ടാര്ഗറ്റ് പൊരുത്തമില്ലായ്മ ഇനം ഗ്രൂപ്പ് യുക്തിമാനും apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,എല്ലാ ഉപഭോക്തൃ ഗ്രൂപ്പുകൾ -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} നിർബന്ധമാണ്. ഒരുപക്ഷേ കറൻസി എക്സ്ചേഞ്ച് റെക്കോർഡ് {1} {2} വേണ്ടി സൃഷ്ടിക്കപ്പെട്ടിട്ടില്ല. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} നിർബന്ധമാണ്. ഒരുപക്ഷേ കറൻസി എക്സ്ചേഞ്ച് റെക്കോർഡ് {1} {2} വേണ്ടി സൃഷ്ടിക്കപ്പെട്ടിട്ടില്ല. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,നികുതി ഫലകം നിർബന്ധമാണ്. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,അക്കൗണ്ട് {0}: പാരന്റ് അക്കൌണ്ട് {1} നിലവിലില്ല DocType: Purchase Invoice Item,Price List Rate (Company Currency),വില പട്ടിക നിരക്ക് (കമ്പനി കറൻസി) @@ -2853,8 +2860,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,ഇനം യുക് ,Item-wise Price List Rate,ഇനം തിരിച്ചുള്ള വില പട്ടിക റേറ്റ് apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,വിതരണക്കാരൻ ക്വട്ടേഷൻ DocType: Quotation,In Words will be visible once you save the Quotation.,നിങ്ങൾ ക്വട്ടേഷൻ ലാഭിക്കാൻ ഒരിക്കൽ വാക്കുകളിൽ ദൃശ്യമാകും. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} നിറുത്തി -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},ബാർകോഡ് {0} ഇതിനകം ഇനം {1} ഉപയോഗിക്കുന്ന +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} നിറുത്തി +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},ബാർകോഡ് {0} ഇതിനകം ഇനം {1} ഉപയോഗിക്കുന്ന DocType: Lead,Add to calendar on this date,ഈ തീയതി കലണ്ടർ ചേർക്കുക apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,ഷിപ്പിംഗ് ചിലവും ചേർത്ത് നിയമങ്ങൾ. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,വരാനിരിക്കുന്ന @@ -2880,8 +2887,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling, apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,കുറഞ്ഞത് ഒരു പണ്ടകശാല നിർബന്ധമാണ് DocType: Serial No,Out of Warranty,വാറന്റി പുറത്താണ് DocType: BOM Replace Tool,Replace,മാറ്റിസ്ഥാപിക്കുക -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} സെയിൽസ് ഇൻവോയിസ് {1} നേരെ -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,അളവു സ്വതവേയുള്ള യൂണിറ്റ് നൽകുക +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} സെയിൽസ് ഇൻവോയിസ് {1} നേരെ +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,അളവു സ്വതവേയുള്ള യൂണിറ്റ് നൽകുക DocType: Purchase Invoice Item,Project Name,പ്രോജക്ട് പേര് DocType: Supplier,Mention if non-standard receivable account,സ്റ്റാൻഡേർഡ് അല്ലാത്ത സ്വീകരിക്കുന്ന അക്കൌണ്ട് എങ്കിൽ പ്രസ്താവിക്കുക DocType: Journal Entry Account,If Income or Expense,ആദായ അല്ലെങ്കിൽ ചിലവേറിയ ചെയ്താൽ @@ -2906,7 +2913,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,സാമ്പത്തിക വർഷം: {0} നിലവിലുണ്ട് ഇല്ല DocType: Currency Exchange,To Currency,കറൻസി ചെയ്യുക DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,താഴെ ഉപയോക്താക്കളെ ബ്ലോക്ക് ദിവസം വേണ്ടി ലീവ് ആപ്ലിക്കേഷൻസ് അംഗീകരിക്കാൻ അനുവദിക്കുക. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,ചിലവിടൽ ക്ലെയിം തരം. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,ചിലവിടൽ ക്ലെയിം തരം. DocType: Item,Taxes,നികുതികൾ apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,"പെയ്ഡ്, ഒരിക്കലും പാടില്ല കൈമാറി" DocType: Project,Default Cost Center,സ്ഥിരസ്ഥിതി ചെലവ് കേന്ദ്രം @@ -2936,7 +2943,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},വരി # {0}: സീരിയൽ ഇല്ല {1} {2} {3} കൂടെ പൊരുത്തപ്പെടുന്നില്ല apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,കാഷ്വൽ ലീവ് DocType: Batch,Batch ID,ബാച്ച് ഐഡി -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},കുറിപ്പ്: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},കുറിപ്പ്: {0} ,Delivery Note Trends,ഡെലിവറി നോട്ട് ട്രെൻഡുകൾ apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,ഈ ആഴ്ചത്തെ ചുരുക്കം apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} വരി {1} ഒരു വാങ്ങിയ അല്ലെങ്കിൽ സബ് ചുരുങ്ങി ഇനം ആയിരിക്കണം @@ -2976,6 +2983,7 @@ DocType: Project Task,Pending Review,അവശേഷിക്കുന്ന അ apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,അടയ്ക്കാൻ ഇവിടെ ക്ലിക്ക് DocType: Task,Total Expense Claim (via Expense Claim),(ചിലവിടൽ ക്ലെയിം വഴി) ആകെ ചിലവേറിയ ക്ലെയിം apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,ഉപഭോക്തൃ ഐഡി +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,മാർക് േചാദി apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,സമയാസമയങ്ങളിൽ വലുതായിരിക്കണം DocType: Journal Entry Account,Exchange Rate,വിനിമയ നിരക്ക് apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,സെയിൽസ് ഓർഡർ {0} സമർപ്പിച്ചിട്ടില്ലെന്നതും @@ -3023,7 +3031,7 @@ DocType: Item Group,Default Expense Account,സ്ഥിരസ്ഥിതി DocType: Employee,Notice (days),അറിയിപ്പ് (ദിവസം) DocType: Tax Rule,Sales Tax Template,സെയിൽസ് ടാക്സ് ഫലകം DocType: Employee,Encashment Date,ലീവ് തീയതി -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","വൗച്ചർ ടൈപ്പ് പർച്ചേസ് ഓർഡർ, പർച്ചേസ് ഇൻവോയിസ് അഥവാ ജേർണൽ എൻട്രി ഒന്നാണ് ആയിരിക്കണം എഗെൻസ്റ്റ്" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","വൗച്ചർ ടൈപ്പ് പർച്ചേസ് ഓർഡർ, പർച്ചേസ് ഇൻവോയിസ് അഥവാ ജേർണൽ എൻട്രി ഒന്നാണ് ആയിരിക്കണം എഗെൻസ്റ്റ്" DocType: Account,Stock Adjustment,സ്റ്റോക്ക് ക്രമീകരണം apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},{0} - സ്വതേ പ്രവർത്തന ചെലവ് പ്രവർത്തനം ഇനം നിലവിലുണ്ട് DocType: Production Order,Planned Operating Cost,ആസൂത്രണം ചെയ്ത ഓപ്പറേറ്റിംഗ് ചെലവ് @@ -3077,6 +3085,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,എൻട്രി എഴുതുക DocType: BOM,Rate Of Materials Based On,മെറ്റീരിയൽസ് അടിസ്ഥാനത്തിൽ ഓൺ നിരക്ക് apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,പിന്തുണ Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,എല്ലാത്തിൻറെയും പരിശോധന apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},കമ്പനി അബദ്ധങ്ങളും {0} കാണാനില്ല DocType: POS Profile,Terms and Conditions,ഉപാധികളും നിബന്ധനകളും apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},തീയതി സാമ്പത്തിക വർഷത്തിൽ ആയിരിക്കണം. തീയതി = {0} ചെയ്യുക കരുതുന്നു @@ -3098,7 +3107,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","സഹജമായിസജ്ജീകരിയ്ക്കുക സാമ്പത്തിക വർഷം സജ്ജമാക്കാൻ, 'സഹജമായിസജ്ജീകരിയ്ക്കുക' ക്ലിക്ക് ചെയ്യുക" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),പിന്തുണ ഇമെയിൽ ഐഡി വേണ്ടി സെറ്റപ്പ് ഇൻകമിംഗ് സെർവർ. (ഉദാ support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,ദൌർലഭ്യം Qty -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,ഇനം വേരിയന്റ് {0} ഒരേ ആട്രിബ്യൂട്ടുകളുമുള്ള നിലവിലുണ്ട് +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,ഇനം വേരിയന്റ് {0} ഒരേ ആട്രിബ്യൂട്ടുകളുമുള്ള നിലവിലുണ്ട് DocType: Salary Slip,Salary Slip,ശമ്പളം ജി apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,'തീയതി ആരംഭിക്കുന്ന' ആവശ്യമാണ് DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","പ്രസവം പാക്കേജുകൾ വേണ്ടി സ്ലിപ്പിൽ പാക്കിംഗ് ജനറേറ്റുചെയ്യുക. പാക്കേജ് നമ്പർ, പാക്കേജ് ഉള്ളടക്കങ്ങളുടെ അതിന്റെ ഭാരം അറിയിക്കാൻ ഉപയോഗിച്ച." @@ -3146,7 +3155,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,കാ DocType: Item Attribute Value,Attribute Value,ന്റെതിരച്ചറിവിനു്തെറ്റായധാര്മ്മികമൂല്യം apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","ഇമെയിൽ ഐഡി അതുല്യമായ ആയിരിക്കണം, ഇതിനകം {0} നിലവിലുണ്ട്" ,Itemwise Recommended Reorder Level,Itemwise പുനഃക്രമീകരിക്കുക ലെവൽ ശുപാർശിത -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,ആദ്യം {0} തിരഞ്ഞെടുക്കുക +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,ആദ്യം {0} തിരഞ്ഞെടുക്കുക DocType: Features Setup,To get Item Group in details table,വിശദാംശങ്ങൾ പട്ടികയിൽ ഇനം ഗ്രൂപ്പ് ലഭിക്കാൻ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,ബാച്ച് {0} ഇനത്തിന്റെ {1} കാലഹരണപ്പെട്ടു. DocType: Sales Invoice,Commission,കമ്മീഷൻ @@ -3190,7 +3199,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,മികച്ച വൗച്ചറുകൾ നേടുക DocType: Warranty Claim,Resolved By,തന്നെയാണ പരിഹരിക്കപ്പെട്ട DocType: Appraisal,Start Date,തുടങ്ങുന്ന ദിവസം -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,ഒരു കാലയളവിൽ ഇല മതി. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,ഒരു കാലയളവിൽ ഇല മതി. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,തെറ്റായി മായ്ച്ചു ചെക്കുകൾ ആൻഡ് നിക്ഷേപങ്ങൾ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,സ്ഥിരീകരിക്കുന്നതിന് ഇവിടെ ക്ലിക്ക് apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,അക്കൗണ്ട് {0}: നിങ്ങൾ പാരന്റ് അക്കൌണ്ട് സ്വയം നിശ്ചയിക്കാന് കഴിയില്ല @@ -3210,7 +3219,7 @@ DocType: Employee,Educational Qualification,വിദ്യാഭ്യാസ DocType: Workstation,Operating Costs,ഓപ്പറേറ്റിംഗ് വിലയും DocType: Employee Leave Approver,Employee Leave Approver,ജീവനക്കാരുടെ അവധി Approver apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} വിജയകരമായി നമ്മുടെ വാർത്താക്കുറിപ്പ് പട്ടികയിൽ ചേർത്തിരിക്കുന്നു. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},വരി {0}: ഒരു പുനഃക്രമീകരിക്കുക എൻട്രി ഇതിനകം ഈ വെയർഹൗസ് {1} നിലവിലുണ്ട് +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},വരി {0}: ഒരു പുനഃക്രമീകരിക്കുക എൻട്രി ഇതിനകം ഈ വെയർഹൗസ് {1} നിലവിലുണ്ട് apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","നഷ്ടപ്പെട്ട പോലെ ക്വട്ടേഷൻ വെളിപ്പെടുത്താമോ കാരണം, വർണ്ണിക്കും ചെയ്യാൻ കഴിയില്ല." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,വാങ്ങൽ മാസ്റ്റർ മാനേജർ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,പ്രൊഡക്ഷൻ ഓർഡർ {0} സമർപ്പിക്കേണ്ടതാണ് @@ -3234,7 +3243,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,സെയിൽസ് ഇൻവോയിസ് {0} ഇതിനകം സമർപ്പിച്ചു apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,പൂർത്തീകരണ തീയതി DocType: Purchase Invoice Item,Amount (Company Currency),തുക (കമ്പനി കറൻസി) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,ഓർഗനൈസേഷൻ യൂണിറ്റ് (വകുപ്പ്) മാസ്റ്റർ. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,ഓർഗനൈസേഷൻ യൂണിറ്റ് (വകുപ്പ്) മാസ്റ്റർ. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,സാധുവായ മൊബൈൽ നമ്പറുകൾ നൽകുക DocType: Budget Detail,Budget Detail,ബജറ്റ് വിശദാംശം apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,അയക്കുന്നതിന് മുമ്പ് സന്ദേശം നൽകുക @@ -3250,13 +3259,13 @@ DocType: Purchase Receipt Item,Received and Accepted,ലഭിച്ച അം ,Serial No Service Contract Expiry,സീരിയൽ ഇല്ല സേവനം കരാര് കാലഹരണ DocType: Item,Unit of Measure Conversion,മെഷർ പരിവർത്തന യൂണിറ്റ് apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,ജീവനക്കാർ മാറ്റാൻ കഴിയില്ല -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,"ഒരേ സമയത്ത് ഒരേ അക്കൗണ്ട് ക്രെഡിറ്റ്, ഡെബിറ്റ് കഴിയില്ല" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,"ഒരേ സമയത്ത് ഒരേ അക്കൗണ്ട് ക്രെഡിറ്റ്, ഡെബിറ്റ് കഴിയില്ല" DocType: Naming Series,Help HTML,എച്ച്ടിഎംഎൽ സഹായം apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},അസൈൻ ആകെ വെയിറ്റേജ് 100% ആയിരിക്കണം. ഇത് {0} ആണ് apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},{0} over- വേണ്ടി അലവൻസ് ഇനം {1} സാധിതപ്രായമായി DocType: Address,Name of person or organization that this address belongs to.,ഈ വിലാസം ഉൾപ്പെട്ടിരിക്കുന്ന വ്യക്തി അല്ലെങ്കിൽ സംഘടനയുടെ പേര്. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,നിങ്ങളുടെ വിതരണക്കാരും -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,സെയിൽസ് ഓർഡർ കഴിക്കുന്ന പോലെ ലോസ്റ്റ് ആയി സജ്ജമാക്കാൻ കഴിയില്ല. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,സെയിൽസ് ഓർഡർ കഴിക്കുന്ന പോലെ ലോസ്റ്റ് ആയി സജ്ജമാക്കാൻ കഴിയില്ല. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,മറ്റൊരു ശമ്പളം ഘടന {0} ജീവനക്കാരൻ {1} വേണ്ടി സജീവമാണ്. അതിന്റെ സ്ഥിതി 'നിഷ്ക്രിയമായ' മുന്നോട്ടുപോകാൻ ദയവായി. DocType: Purchase Invoice,Contact,കോൺടാക്റ്റ് apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,നിന്നു ലഭിച്ച @@ -3266,11 +3275,11 @@ DocType: Item,Has Serial No,സീരിയൽ പോസ്റ്റ് ഉ DocType: Employee,Date of Issue,പുറപ്പെടുവിച്ച തീയതി apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: {0} {1} വേണ്ടി നിന്ന് apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},വരി # {0}: ഇനത്തിന്റെ വേണ്ടി സജ്ജമാക്കുക വിതരണക്കാരൻ {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,വെബ്സൈറ്റ് ചിത്രം {0} ഇനം ഘടിപ്പിച്ചിരിക്കുന്ന {1} കണ്ടെത്താൻ കഴിയുന്നില്ല +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,വെബ്സൈറ്റ് ചിത്രം {0} ഇനം ഘടിപ്പിച്ചിരിക്കുന്ന {1} കണ്ടെത്താൻ കഴിയുന്നില്ല DocType: Issue,Content Type,ഉള്ളടക്ക തരം apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,കമ്പ്യൂട്ടർ DocType: Item,List this Item in multiple groups on the website.,വെബ്സൈറ്റിൽ ഒന്നിലധികം സംഘങ്ങളായി ഈ ഇനം കാണിയ്ക്കുക. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,മറ്റ് കറൻസി കൊണ്ട് അക്കൗണ്ടുകൾ അനുവദിക്കുന്നതിന് മൾട്ടി നാണയ ഓപ്ഷൻ പരിശോധിക്കുക +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,മറ്റ് കറൻസി കൊണ്ട് അക്കൗണ്ടുകൾ അനുവദിക്കുന്നതിന് മൾട്ടി നാണയ ഓപ്ഷൻ പരിശോധിക്കുക apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,ഇനം: {0} വ്യവസ്ഥിതിയിൽ നിലവിലില്ല apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,നിങ്ങൾ ശീതീകരിച്ച മൂല്യം സജ്ജീകരിക്കാൻ അംഗീകാരമില്ല DocType: Payment Reconciliation,Get Unreconciled Entries,Unreconciled എൻട്രികൾ നേടുക @@ -3280,14 +3289,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,അത് DocType: Delivery Note,To Warehouse,വെയർഹൗസ് ചെയ്യുക apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},അക്കൗണ്ട് {0} സാമ്പത്തിക വർഷത്തെ {1} ഒരിക്കൽ അധികം നൽകി ,Average Commission Rate,ശരാശരി കമ്മീഷൻ നിരക്ക് -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'അതെ' നോൺ-ഓഹരി ഇനത്തിന്റെ വേണ്ടി ആകാൻ പാടില്ല 'സീരിയൽ നോ ഉണ്ട്' +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'അതെ' നോൺ-ഓഹരി ഇനത്തിന്റെ വേണ്ടി ആകാൻ പാടില്ല 'സീരിയൽ നോ ഉണ്ട്' apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,ഹാജർ ഭാവി തീയതി വേണ്ടി അടയാളപ്പെടുത്തും കഴിയില്ല DocType: Pricing Rule,Pricing Rule Help,പ്രൈസിങ് റൂൾ സഹായം DocType: Purchase Taxes and Charges,Account Head,അക്കൗണ്ട് ഹെഡ് apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,ഇനങ്ങളുടെ വന്നിറങ്ങി ചെലവ് കണക്കാക്കാൻ അധിക ചെലവ് അപ്ഡേറ്റ് apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,ഇലക്ട്രിക്കൽ DocType: Stock Entry,Total Value Difference (Out - In),(- ഔട്ട്) ആകെ മൂല്യം വ്യത്യാസം -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,വരി {0}: വിനിമയ നിരക്ക് നിർബന്ധമായും +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,വരി {0}: വിനിമയ നിരക്ക് നിർബന്ധമായും apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},ഉപയോക്തൃ ഐഡി ജീവനക്കാരുടെ {0} വെച്ചിരിക്കുന്നു അല്ല DocType: Stock Entry,Default Source Warehouse,സ്ഥിരസ്ഥിതി ഉറവിട വെയർഹൗസ് DocType: Item,Customer Code,കസ്റ്റമർ കോഡ് @@ -3306,15 +3315,15 @@ DocType: Notification Control,Sales Invoice Message,സെയിൽസ് ഇൻ apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,അക്കൗണ്ട് {0} അടയ്ക്കുന്നത് തരം ബാധ്യത / ഇക്വിറ്റി എന്ന ഉണ്ടായിരിക്കണം DocType: Authorization Rule,Based On,അടിസ്ഥാനപെടുത്തി DocType: Sales Order Item,Ordered Qty,ഉത്തരവിട്ടു Qty -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,ഇനം {0} പ്രവർത്തനരഹിതമാക്കിയിരിക്കുന്നതിനാൽ +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,ഇനം {0} പ്രവർത്തനരഹിതമാക്കിയിരിക്കുന്നതിനാൽ DocType: Stock Settings,Stock Frozen Upto,ഓഹരി ശീതീകരിച്ച വരെ apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},നിന്നും കാലഘട്ടം {0} ആവർത്ത വേണ്ടി നിർബന്ധമായി തീയതി വരെയുള്ള apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,പ്രോജക്ട് പ്രവർത്തനം / ചുമതല. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,ശമ്പളം സ്ലിപ്പിൽ ജനറേറ്റുചെയ്യൂ +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,ശമ്പളം സ്ലിപ്പിൽ ജനറേറ്റുചെയ്യൂ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","ബാധകമായ വേണ്ടി {0} തിരഞ്ഞെടുക്കപ്പെട്ടു എങ്കിൽ വാങ്ങൽ, ചെക്ക് ചെയ്തിരിക്കണം" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,ഡിസ്കൗണ്ട് 100 താഴെ ആയിരിക്കണം DocType: Purchase Invoice,Write Off Amount (Company Currency),ഓഫാക്കുക എഴുതുക തുക (കമ്പനി കറൻസി) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,വരി # {0}: സജ്ജീകരിക്കുക പുനഃക്രമീകരിക്കുക അളവ് +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,വരി # {0}: സജ്ജീകരിക്കുക പുനഃക്രമീകരിക്കുക അളവ് DocType: Landed Cost Voucher,Landed Cost Voucher,ചെലവ് വൗച്ചർ റജിസ്റ്റർ apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},{0} സജ്ജീകരിക്കുക DocType: Purchase Invoice,Repeat on Day of Month,മാസം നാളിൽ ആവർത്തിക്കുക @@ -3366,7 +3375,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,പ്രോഗ്രസ് വെയർഹൗസ് സ്വതവെയുള്ള വർക്ക് apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,അക്കൗണ്ടിങ് ഇടപാടുകൾക്ക് സ്ഥിരസ്ഥിതി ക്രമീകരണങ്ങൾ. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,പ്രതീക്ഷിച്ച തീയതി മെറ്റീരിയൽ അഭ്യർത്ഥന തീയതി മുമ്പ് ആകാൻ പാടില്ല -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,ഇനം {0} ഒരു സെയിൽസ് ഇനം ആയിരിക്കണം +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,ഇനം {0} ഒരു സെയിൽസ് ഇനം ആയിരിക്കണം DocType: Naming Series,Update Series Number,അപ്ഡേറ്റ് സീരീസ് നമ്പർ DocType: Account,Equity,ഇക്വിറ്റി DocType: Sales Order,Printing Details,അച്ചടി വിശദാംശങ്ങൾ @@ -3418,7 +3427,7 @@ DocType: Task,Review Date,അവലോകന തീയതി DocType: Purchase Invoice,Advance Payments,പേയ്മെൻറുകൾ അഡ്വാൻസ് DocType: Purchase Taxes and Charges,On Net Total,നെറ്റ് ആകെ ന് apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,നിരയിൽ ടാർഗെറ്റ് വെയർഹൗസ് {0} പ്രൊഡക്ഷൻ ഓർഡർ അതേ ആയിരിക്കണം -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,പേയ്മെന്റ് ടൂൾ ഉപയോഗിക്കാൻ അനുമതിയില്ല +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,പേയ്മെന്റ് ടൂൾ ഉപയോഗിക്കാൻ അനുമതിയില്ല apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,% S ആവർത്തന പേരിൽ വ്യക്തമാക്കാത്ത 'അറിയിപ്പ് ഇമെയിൽ വിലാസങ്ങൾ' apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,കറൻസി മറ്റ് ചില കറൻസി ഉപയോഗിച്ച് എൻട്രികൾ ചെയ്തശേഷം മാറ്റാൻ കഴിയില്ല DocType: Company,Round Off Account,അക്കൗണ്ട് ഓഫാക്കുക റൌണ്ട് @@ -3441,7 +3450,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,അസംസ്കൃത വസ്തുക്കളുടെ തന്നിരിക്കുന്ന അളവിൽ നിന്ന് തിരസ്കൃതമൂല്യങ്ങള് / നിര്മ്മാണ ശേഷം ഇനത്തിന്റെ അളവ് DocType: Payment Reconciliation,Receivable / Payable Account,സ്വീകാ / അടയ്ക്കേണ്ട അക്കൗണ്ട് DocType: Delivery Note Item,Against Sales Order Item,സെയിൽസ് ഓർഡർ ഇനം എഗെൻസ്റ്റ് -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},ആട്രിബ്യൂട്ട് {0} മൂല്യം ആട്രിബ്യൂട്ട് വ്യക്തമാക്കുക +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},ആട്രിബ്യൂട്ട് {0} മൂല്യം ആട്രിബ്യൂട്ട് വ്യക്തമാക്കുക DocType: Item,Default Warehouse,സ്ഥിരസ്ഥിതി വെയർഹൗസ് DocType: Task,Actual End Date (via Time Logs),(ടൈം ലോഗുകൾ വഴി) യഥാർത്ഥ അവസാന തീയതി apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},ബജറ്റ് ഗ്രൂപ്പ് അക്കൗണ്ട് {0} നേരെ നിയോഗിക്കുകയും കഴിയില്ല @@ -3466,10 +3475,10 @@ DocType: Lead,Blog Subscriber,ബ്ലോഗ് സബ്സ്ക്രൈ apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,മൂല്യങ്ങൾ അടിസ്ഥാനമാക്കിയുള്ള ഇടപാടുകൾ പരിമിതപ്പെടുത്താൻ നിയമങ്ങൾ സൃഷ്ടിക്കുക. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","ചെക്കുചെയ്തിട്ടുണ്ടെങ്കിൽ ആകെ എങ്കിൽ. ത്തി ദിവസം വരയന് ഉൾപ്പെടുത്തും, ഈ സാലറി ദിവസം മൂല്യം കുറയ്ക്കും" DocType: Purchase Invoice,Total Advance,ആകെ മുൻകൂർ -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,പ്രോസസിങ് ശമ്പളപ്പട്ടിക +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,പ്രോസസിങ് ശമ്പളപ്പട്ടിക DocType: Opportunity Item,Basic Rate,അടിസ്ഥാന റേറ്റ് DocType: GL Entry,Credit Amount,ക്രെഡിറ്റ് തുക -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,ലോസ്റ്റ് സജ്ജമാക്കുക +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,ലോസ്റ്റ് സജ്ജമാക്കുക apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,പേയ്മെന്റ് രസീത് കുറിപ്പ് DocType: Supplier,Credit Days Based On,അടിസ്ഥാനമാക്കി ക്രെഡിറ്റ് ദിനങ്ങൾ DocType: Tax Rule,Tax Rule,നികുതി റൂൾ @@ -3499,7 +3508,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,അംഗീകരിച്ച apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} നിലവിലുണ്ട് ഇല്ല apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,ഉപഭോക്താക്കൾക്ക് ഉയർത്തുകയും ബില്ലുകള്. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,പ്രോജക്ട് ഐഡി -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},വരി ഇല്ല {0}: തുക ചിലവിടൽ ക്ലെയിം {1} നേരെ തുക തീർച്ചപ്പെടുത്തിയിട്ടില്ല വലുതായിരിക്കണം കഴിയില്ല. തീർച്ചപ്പെടുത്തിയിട്ടില്ല തുക {2} ആണ് +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},വരി ഇല്ല {0}: തുക ചിലവിടൽ ക്ലെയിം {1} നേരെ തുക തീർച്ചപ്പെടുത്തിയിട്ടില്ല വലുതായിരിക്കണം കഴിയില്ല. തീർച്ചപ്പെടുത്തിയിട്ടില്ല തുക {2} ആണ് apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,ചേർത്തു {0} വരിക്കാരുടെ DocType: Maintenance Schedule,Schedule,ഷെഡ്യൂൾ DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","ഈ കോസ്റ്റ് കേന്ദ്രം ബജറ്റിൽ നിർവചിക്കുക. ബജറ്റ് നടപടി സജ്ജമാക്കുന്നതിനായി, "കമ്പനി ലിസ്റ്റ്" കാണാൻ" @@ -3560,19 +3569,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS പ്രൊഫൈൽ DocType: Payment Gateway Account,Payment URL Message,പേയ്മെന്റ് യുആർഎൽ സന്ദേശം apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","ബജറ്റുകൾ സ്ഥാപിക്കുന്നതിനുള്ള Seasonality, ടാർഗറ്റുകൾ തുടങ്ങിയവ" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,വരി {0}: പേയ്മെന്റ് തുക നിലവിലുള്ള തുക വലുതായിരിക്കും കഴിയില്ല +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,വരി {0}: പേയ്മെന്റ് തുക നിലവിലുള്ള തുക വലുതായിരിക്കും കഴിയില്ല apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,ആകെ ലഭിക്കാത്ത -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,സമയം ലോഗ് ബില്ലുചെയ്യാനാകുന്ന അല്ല -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants",ഇനം {0} ഫലകം അതിന്റെ വകഭേദങ്ങളും തിരഞ്ഞെടുക്കുക +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,സമയം ലോഗ് ബില്ലുചെയ്യാനാകുന്ന അല്ല +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants",ഇനം {0} ഫലകം അതിന്റെ വകഭേദങ്ങളും തിരഞ്ഞെടുക്കുക apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,വാങ്ങിക്കുന്ന apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,നെറ്റ് വേതനം നെഗറ്റീവ് ആയിരിക്കാൻ കഴിയില്ല -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,എഗെൻസ്റ്റ് വൗച്ചറുകൾ മാനുവലായി നൽകുക +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,എഗെൻസ്റ്റ് വൗച്ചറുകൾ മാനുവലായി നൽകുക DocType: SMS Settings,Static Parameters,സ്റ്റാറ്റിക് പാരാമീറ്ററുകൾ DocType: Purchase Order,Advance Paid,മുൻകൂർ പണമടച്ചു DocType: Item,Item Tax,ഇനം നികുതി apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,വിതരണക്കാരൻ വരെ മെറ്റീരിയൽ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,എക്സൈസ് ഇൻവോയിസ് DocType: Expense Claim,Employees Email Id,എംപ്ലോയീസ് ഇമെയിൽ ഐഡി +DocType: Employee Attendance Tool,Marked Attendance,അടയാളപ്പെടുത്തിയിരിക്കുന്ന ഹാജർ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,നിലവിലുള്ള ബാധ്യതകൾ apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,സമ്പർക്കങ്ങളിൽ പിണ്ഡം എസ്എംഎസ് അയയ്ക്കുക DocType: Purchase Taxes and Charges,Consider Tax or Charge for,വേണ്ടി നികുതി അഥവാ ചാർജ് പരിചിന്തിക്കുക @@ -3595,7 +3605,7 @@ DocType: Item Attribute,Numeric Values,സാംഖിക മൂല്യങ് apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,ലോഗോ അറ്റാച്ച് DocType: Customer,Commission Rate,കമ്മീഷൻ നിരക്ക് apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,വേരിയന്റ് നിർമ്മിക്കുക -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,വകുപ്പിന്റെ ലീവ് പ്രയോഗങ്ങൾ തടയുക. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,വകുപ്പിന്റെ ലീവ് പ്രയോഗങ്ങൾ തടയുക. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,കാർട്ട് ശൂന്യമാണ് DocType: Production Order,Actual Operating Cost,യഥാർത്ഥ ഓപ്പറേറ്റിംഗ് ചെലവ് apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,റൂട്ട് എഡിറ്റ് ചെയ്യാൻ കഴിയില്ല. @@ -3614,7 +3624,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,അളവ് ഈ നിലവാരത്തിനു താഴെ വീണാൽ ഓട്ടോമാറ്റിക്കായി മെറ്റീരിയൽ അഭ്യർത്ഥന സൃഷ്ടിക്കാൻ ,Item-wise Purchase Register,ഇനം തിരിച്ചുള്ള വാങ്ങൽ രജിസ്റ്റർ DocType: Batch,Expiry Date,കാലഹരണപ്പെടുന്ന തീയതി -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","പുനഃക്രമീകരിക്കുക നില സജ്ജീകരിക്കാൻ, ഇനം ഒരു പർച്ചേസ് ഇനം അല്ലെങ്കിൽ ണം ഇനം ആയിരിക്കണം" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","പുനഃക്രമീകരിക്കുക നില സജ്ജീകരിക്കാൻ, ഇനം ഒരു പർച്ചേസ് ഇനം അല്ലെങ്കിൽ ണം ഇനം ആയിരിക്കണം" ,Supplier Addresses and Contacts,വിതരണക്കമ്പനിയായ വിലാസങ്ങളും ബന്ധങ്ങൾ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,ആദ്യം വർഗ്ഗം തിരഞ്ഞെടുക്കുക apps/erpnext/erpnext/config/projects.py +18,Project master.,പ്രോജക്ട് മാസ്റ്റർ. diff --git a/erpnext/translations/mr.csv b/erpnext/translations/mr.csv index 753f3e9fcb..b1a6ee2ed6 100644 --- a/erpnext/translations/mr.csv +++ b/erpnext/translations/mr.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,कंपनी चल DocType: Delivery Note,Installation Status,प्रतिष्ठापन स्थिती apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Qty नाकारलेले स्वीकृत + आयटम साठी प्राप्त प्रमाण समान असणे आवश्यक {0} DocType: Item,Supply Raw Materials for Purchase,पुरवठा कच्चा माल खरेदी -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,आयटम {0} खरेदी आयटम असणे आवश्यक आहे +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,आयटम {0} खरेदी आयटम असणे आवश्यक आहे DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records",", साचा डाउनलोड योग्य माहिती भरा आणि नवीन संचिकेशी संलग्न. निवडलेल्या कालावधीच्या सर्व तारखा आणि कर्मचारी संयोजन विद्यमान उपस्थिती रेकॉर्ड, टेम्पलेट येईल" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,{0} आयटम सक्रिय नाही किंवा आयुष्याच्या शेवटी गाठली आहे DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,विक्री चलन सबमिट केल्यानंतर अद्यतनित केले जाईल. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","आयटम दर सलग {0} कर समाविष्ट करण्यासाठी, पंक्ती मध्ये कर {1} समाविष्ट करणे आवश्यक आहे" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,एचआर विभाग सेटिंग्ज +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","आयटम दर सलग {0} कर समाविष्ट करण्यासाठी, पंक्ती मध्ये कर {1} समाविष्ट करणे आवश्यक आहे" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,एचआर विभाग सेटिंग्ज DocType: SMS Center,SMS Center,एसएमएस केंद्र DocType: BOM Replace Tool,New BOM,नवी BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,बॅच बिलिंग वेळ नोंदी. @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,निवडा अटी आ DocType: Production Planning Tool,Sales Orders,विक्री ऑर्डर DocType: Purchase Taxes and Charges,Valuation,मूल्यांकन ,Purchase Order Trends,ऑर्डर ट्रेन्ड खरेदी -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,वर्ष पाने वाटप करा. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,वर्ष पाने वाटप करा. DocType: Earning Type,Earning Type,कमाई प्रकार DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,अक्षम करा क्षमता नियोजन आणि वेळ ट्रॅकिंग DocType: Bank Reconciliation,Bank Account,बँक खाते @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,आयटम वेबसाइट तपशील DocType: Payment Tool,Reference No,संदर्भ नाही apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,सोडा अवरोधित -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},आयटम {0} वर जीवनाची ओवरनंतर गाठली आहे {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},आयटम {0} वर जीवनाची ओवरनंतर गाठली आहे {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,वार्षिक DocType: Stock Reconciliation Item,Stock Reconciliation Item,शेअर मेळ आयटम DocType: Stock Entry,Sales Invoice No,विक्री चलन नाही @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,किमान Qty DocType: Pricing Rule,Supplier Type,पुरवठादार प्रकार DocType: Item,Publish in Hub,हब मध्ये प्रकाशित ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,{0} आयटम रद्द +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,{0} आयटम रद्द apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,साहित्य विनंती DocType: Bank Reconciliation,Update Clearance Date,अद्यतन लाभ तारीख DocType: Item,Purchase Details,खरेदी तपशील @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,नाकारल्याच DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","डिलिव्हरी टीप, कोटेशन, विक्री चलन, विक्री ऑर्डर उपलब्ध फील्ड" DocType: SMS Settings,SMS Sender Name,एसएमएस प्रेषकाचे नाव DocType: Contact,Is Primary Contact,प्राथमिक संपर्क आहे +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,वेळ लॉग बिलिंग साठी बॅच करण्यात आली आहे DocType: Notification Control,Notification Control,सूचना नियंत्रण DocType: Lead,Suggestions,सूचना DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,या प्रदेश सेट आयटम गट निहाय खर्चाचे अंदाजपत्रक. आपण वितरण सेट करून हंगामी समाविष्ट करू शकता. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},कोठार मूळ खाते गट प्रविष्ट करा {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},रक्कम {0} {1} शिल्लक रक्कम पेक्षा जास्त असू शकत नाही {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},रक्कम {0} {1} शिल्लक रक्कम पेक्षा जास्त असू शकत नाही {2} DocType: Supplier,Address HTML,पत्ता HTML DocType: Lead,Mobile No.,मोबाइल क्रमांक DocType: Maintenance Schedule,Generate Schedule,वेळापत्रक व्युत्पन्न @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,हब समक्रमित apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,चुकीचा संकेतशब्द DocType: Item,Variant Of,जिच्यामध्ये variant -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,आयटम {0} सेवा आयटम असणे आवश्यक आहे apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',पेक्षा 'Qty निर्मिती करणे' पूर्ण Qty जास्त असू शकत नाही DocType: Period Closing Voucher,Closing Account Head,खाते प्रमुख बंद DocType: Employee,External Work History,बाह्य कार्य इतिहास @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,वृत्तपत्र DocType: Stock Settings,Notify by Email on creation of automatic Material Request,स्वयंचलित साहित्य विनंती निर्माण ईमेल द्वारे सूचित करा DocType: Journal Entry,Multi Currency,मल्टी चलन DocType: Payment Reconciliation Invoice,Invoice Type,चलन प्रकार -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,डिलिव्हरी टीप +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,डिलिव्हरी टीप apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,कर सेट अप apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,तुम्ही तो धावा केल्यानंतर भरणा प्रवेश सुधारणा करण्यात आली आहे. पुन्हा तो खेचणे करा. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} आयटम कर दोनदा प्रवेश केला +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} आयटम कर दोनदा प्रवेश केला apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,या आठवड्यात आणि प्रलंबित उपक्रम सारांश DocType: Workstation,Rent Cost,भाडे खर्च apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,महिना आणि वर्ष निवडा कृपया @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,देश वैध DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","चलन, रूपांतर दर, आयात एकूण, आयात गोळाबेरीज इत्यादी सर्व आयात संबंधित फील्ड खरेदी पावती, पुरवठादार कोटेशन, खरेदी चलन, पर्चेस इ उपलब्ध आहेत" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,हा आयटम साचा आहे आणि व्यवहार वापरले जाऊ शकत नाही. 'नाही प्रत बनवा' वर सेट केले नसेल आयटम गुणधर्म पर्यायी रूपांमध्ये प्रती कॉपी होईल apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,मानले एकूण ऑर्डर -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","कर्मचारी नाव (उदा मुख्य कार्यकारी अधिकारी, संचालक इ)." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","कर्मचारी नाव (उदा मुख्य कार्यकारी अधिकारी, संचालक इ)." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,प्रविष्ट फील्ड मूल्य दिन 'म्हणून महिना या दिवशी पुनरावृत्ती' करा DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,ग्राहक चलन ग्राहकाच्या बेस चलनात रुपांतरीत आहे जे येथे दर DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","BOM, डिलिव्हरी टीप, खरेदी चलन, उत्पादन आदेश, पर्चेस, खरेदी पावती, विक्री चलन, विक्री आदेश, शेअर प्रवेश, Timesheet उपलब्ध" @@ -355,7 +355,7 @@ DocType: Workstation,Consumable Cost,Consumable खर्च apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) 'रजा मंजुरी' भूमिका असणे आवश्यक आहे DocType: Purchase Receipt,Vehicle Date,वाहन तारीख apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,वैद्यकीय -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,तोट्याचा कारण +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,तोट्याचा कारण apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},वर्कस्टेशन सुट्टी यादी नुसार खालील तारखांना बंद आहे: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,संधी DocType: Employee,Single,सिंगल @@ -383,14 +383,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,चॅनेल पार्टनर DocType: Account,Old Parent,जुने पालक DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,त्या ई-मेल एक भाग म्हणून जातो की प्रास्ताविक मजकूर सानुकूलित करा. प्रत्येक व्यवहार स्वतंत्र प्रास्ताविक मजकूर आहे. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),प्रतीक समावेश करू नका (उदा. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,विक्री मास्टर व्यवस्थापक apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,सर्व उत्पादन प्रक्रिया ग्लोबल सेटिंग्ज. DocType: Accounts Settings,Accounts Frozen Upto,फ्रोजन पर्यंत खाती DocType: SMS Log,Sent On,रोजी पाठविले -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,विशेषता {0} विशेषता टेबल अनेक वेळा निवड +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,विशेषता {0} विशेषता टेबल अनेक वेळा निवड DocType: HR Settings,Employee record is created using selected field. ,कर्मचारी रेकॉर्ड निवडले फील्ड वापरून तयार आहे. DocType: Sales Order,Not Applicable,लागू नाही -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,सुट्टी मास्टर. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,सुट्टी मास्टर. DocType: Material Request Item,Required Date,आवश्यक तारीख DocType: Delivery Note,Billing Address,बिलिंग पत्ता apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,आयटम कोड प्रविष्ट करा. @@ -426,7 +427,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,साहित्य विनंती उठविला जाईल जे भांडार प्रविष्ट करा DocType: Production Order,Additional Operating Cost,अतिरिक्त कार्यकारी खर्च apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,सौंदर्यप्रसाधन -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","विलीन करण्यासाठी, खालील गुणधर्म दोन्ही आयटम समान असणे आवश्यक आहे" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","विलीन करण्यासाठी, खालील गुणधर्म दोन्ही आयटम समान असणे आवश्यक आहे" DocType: Shipping Rule,Net Weight,नेट वजन DocType: Employee,Emergency Phone,आणीबाणी फोन ,Serial No Warranty Expiry,सिरियल कोणतीही हमी कालावधी समाप्ती @@ -481,17 +482,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,बिलिंग आणि वितरण स्थिती apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,पुन्हा करा ग्राहक DocType: Leave Control Panel,Allocate,वाटप -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,विक्री परत +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,विक्री परत DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,आपण उत्पादन ऑर्डर तयार करू इच्छित असलेल्या पासून विक्री ऑर्डर निवडा. DocType: Item,Delivered by Supplier (Drop Ship),पुरवठादार द्वारे वितरित (ड्रॉप जहाज) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,पगार घटक. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,पगार घटक. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,संभाव्य ग्राहकांच्या डेटाबेस. DocType: Authorization Rule,Customer or Item,ग्राहक किंवा आयटम apps/erpnext/erpnext/config/crm.py +17,Customer database.,ग्राहक डेटाबेस. DocType: Quotation,Quotation To,करण्यासाठी कोटेशन DocType: Lead,Middle Income,मध्यम उत्पन्न apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),उघडणे (कोटी) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"आपण आधीच दुसर्या UOM काही व्यवहार (चे) केले आहे कारण आयटम साठी उपाय, डीफॉल्ट युनिट {0} थेट बदलले जाऊ शकत नाही. आपण वेगळी डीफॉल्ट UOM वापरण्यासाठी नवीन आयटम तयार करणे आवश्यक आहे." +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"आपण आधीच दुसर्या UOM काही व्यवहार (चे) केले आहे कारण आयटम साठी उपाय, डीफॉल्ट युनिट {0} थेट बदलले जाऊ शकत नाही. आपण वेगळी डीफॉल्ट UOM वापरण्यासाठी नवीन आयटम तयार करणे आवश्यक आहे." apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,रक्कम नकारात्मक असू शकत नाही DocType: Purchase Order Item,Billed Amt,बिल रक्कम DocType: Warehouse,A logical Warehouse against which stock entries are made.,स्टॉक नोंदी केले जातात जे विरोधात लॉजिकल वखार. @@ -510,14 +511,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,विक्री कर आण DocType: Employee,Organization Profile,संघटना प्रोफाइल apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,सेटअप क्रमांकन मालिका> व्यवस्था द्वारे हजेरी मालिका संख्या करा DocType: Employee,Reason for Resignation,राजीनामा कारण -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,कामगिरी मूल्यमापने साचा. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,कामगिरी मूल्यमापने साचा. DocType: Payment Reconciliation,Invoice/Journal Entry Details,चलन / जर्नल प्रवेश तपशील apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' आथिर्क वर्षात नाही {2} DocType: Buying Settings,Settings for Buying Module,विभाग खरेदी साठी सेटिंग्ज apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,पहिल्या खरेदी पावती प्रविष्ट करा DocType: Buying Settings,Supplier Naming By,करून पुरवठादार नामांकन DocType: Activity Type,Default Costing Rate,डीफॉल्ट कोटीच्या दर -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,देखभाल वेळापत्रक +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,देखभाल वेळापत्रक apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","मग किंमत ठरविणे नियम इ ग्राहक, ग्राहक गट, प्रदेश पुरवठादार, पुरवठादार प्रकार, मोहीम, विक्री भागीदार आधारित बाहेर फिल्टर आहेत" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,यादी निव्वळ बदला DocType: Employee,Passport Number,पासपोर्ट क्रमांक @@ -556,7 +557,7 @@ DocType: Purchase Invoice,Quarterly,तिमाही DocType: Selling Settings,Delivery Note Required,डिलिव्हरी टीप आवश्यक DocType: Sales Order Item,Basic Rate (Company Currency),बेसिक रेट (कंपनी चलन) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush कच्चा माल आधारित रोजी -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,आयटम तपशील प्रविष्ट करा +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,आयटम तपशील प्रविष्ट करा DocType: Purchase Receipt,Other Details,इतर तपशील DocType: Account,Accounts,खाते apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,विपणन @@ -569,7 +570,7 @@ DocType: Employee,Provide email id registered in company,कंपनी मध DocType: Hub Settings,Seller City,विक्रेता सिटी DocType: Email Digest,Next email will be sent on:,पुढील ई-मेल वर पाठविण्यात येईल: DocType: Offer Letter Term,Offer Letter Term,पत्र मुदत ऑफर -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,आयटम रूपे आहेत. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,आयटम रूपे आहेत. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,आयटम {0} आढळले नाही DocType: Bin,Stock Value,शेअर मूल्य apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,वृक्ष प्रकार @@ -577,7 +578,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Qty प्रति युन DocType: Serial No,Warranty Expiry Date,हमी कालावधी समाप्ती तारीख DocType: Material Request Item,Quantity and Warehouse,प्रमाण आणि कोठार DocType: Sales Invoice,Commission Rate (%),आयोगाने दर (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","व्हाउचर विरुद्ध प्रकार विक्री आदेश एक, विक्री चलन किंवा जर्नल प्रवेश असणे आवश्यक आहे" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","व्हाउचर विरुद्ध प्रकार विक्री आदेश एक, विक्री चलन किंवा जर्नल प्रवेश असणे आवश्यक आहे" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,एरोस्पेस DocType: Journal Entry,Credit Card Entry,क्रेडिट कार्ड प्रवेश apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,कार्य विषय @@ -645,10 +646,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,दायित्व apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,मंजूर रक्कम रो मागणी रक्कम पेक्षा जास्त असू शकत नाही {0}. DocType: Company,Default Cost of Goods Sold Account,वस्तू विकल्या खाते डीफॉल्ट खर्च -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,किंमत सूची निवडलेले नाही +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,किंमत सूची निवडलेले नाही DocType: Employee,Family Background,कौटुंबिक पार्श्वभूमी DocType: Process Payroll,Send Email,ईमेल पाठवा -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},चेतावणी: अवैध संलग्नक {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},चेतावणी: अवैध संलग्नक {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,कोणतीही परवानगी नाही DocType: Company,Default Bank Account,मुलभूत बँक खाते apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","पार्टी आधारित फिल्टर कर यासाठी, पयायय पार्टी पहिल्या टाइप करा" @@ -676,7 +677,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,ग DocType: Features Setup,"To enable ""Point of Sale"" features","विक्री पॉइंट" वैशिष्ट्ये सक्षम करण्यासाठी DocType: Bin,Moving Average Rate,सरासरी दर हलवित DocType: Production Planning Tool,Select Items,निवडा -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} बिल विरुद्ध {1} दिनांक {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} बिल विरुद्ध {1} दिनांक {2} DocType: Maintenance Visit,Completion Status,पूर्ण स्थिती DocType: Sales Invoice Item,Target Warehouse,लक्ष्य कोठार DocType: Item,Allow over delivery or receipt upto this percent,या टक्के पर्यंत चेंडू किंवा पावती प्रती परवानगी द्या @@ -736,7 +737,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,च apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},ऑपरेशन पुढील {0} दिवसांत वेळ शोधू शकला नाही {1} DocType: Production Order,Plan material for sub-assemblies,उप-विधानसभा योजना साहित्य apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} सक्रिय असणे आवश्यक आहे -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,पहिल्या दस्तऐवज प्रकार निवडा +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,पहिल्या दस्तऐवज प्रकार निवडा apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,कडे जा टाका apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,ही देखभाल भेट द्या रद्द आधी रद्द करा साहित्य भेटी {0} DocType: Salary Slip,Leave Encashment Amount,एनकॅशमेंट रक्कम सोडा @@ -754,7 +755,7 @@ DocType: Purchase Receipt,Range,श्रेणी DocType: Supplier,Default Payable Accounts,मुलभूत देय खाती apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,{0} कर्मचारी सक्रिय नाही आहे किंवा अस्तित्वात नाही DocType: Features Setup,Item Barcode,आयटम बारकोड -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,आयटम रूपे {0} अद्ययावत +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,आयटम रूपे {0} अद्ययावत DocType: Quality Inspection Reading,Reading 6,6 वाचन DocType: Purchase Invoice Advance,Purchase Invoice Advance,चलन आगाऊ खरेदी DocType: Address,Shop,दुकान @@ -777,7 +778,7 @@ DocType: Salary Slip,Total in words,शब्दात एकूण DocType: Material Request Item,Lead Time Date,आघाडी वेळ दिनांक apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,बंधनकारक आहे. कदाचित चलन विनिमय रेकॉर्ड तयार नाही apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},रो # {0}: आयटम नाही सिरियल निर्दिष्ट करा {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","'उत्पादन बंडल' आयटम, कोठार, सिरीयल नाही आणि बॅच साठी नाही 'पॅकिंग सूची' टेबल पासून विचार केला जाईल. कोठार आणि बॅच नाही कोणताही उत्पादन बंडल 'आयटम सर्व पॅकिंग आयटम सारखीच असतात असेल, तर त्या मूल्ये मुख्य आयटम टेबल प्रविष्ट केले जाऊ शकतात, मूल्ये टेबल' यादी पॅकिंग 'कॉपी होईल." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","'उत्पादन बंडल' आयटम, कोठार, सिरीयल नाही आणि बॅच साठी नाही 'पॅकिंग सूची' टेबल पासून विचार केला जाईल. कोठार आणि बॅच नाही कोणताही उत्पादन बंडल 'आयटम सर्व पॅकिंग आयटम सारखीच असतात असेल, तर त्या मूल्ये मुख्य आयटम टेबल प्रविष्ट केले जाऊ शकतात, मूल्ये टेबल' यादी पॅकिंग 'कॉपी होईल." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,ग्राहकांना निर्यात. DocType: Purchase Invoice Item,Purchase Order Item,ऑर्डर आयटम खरेदी apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,अप्रत्यक्ष उत्पन्न @@ -798,6 +799,7 @@ DocType: Process Payroll,Select Payroll Year and Month,वेतनपट वर apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",योग्य गट (सहसा निधी अर्ज> वर्तमान मालमत्ता> बँक खाते जा टाइप करा) बाल जोडा वर क्लिक करून (नवीन खाते तयार "बँक" DocType: Workstation,Electricity Cost,वीज खर्च DocType: HR Settings,Don't send Employee Birthday Reminders,कर्मचारी वाढदिवस स्मरणपत्रे पाठवू नका +,Employee Holiday Attendance,कर्मचारी सुट्टी उपस्थिती DocType: Opportunity,Walk In,मध्ये चाला apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,शेअर नोंदी DocType: Item,Inspection Criteria,तपासणी निकष @@ -820,7 +822,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options, DocType: Journal Entry Account,Expense Claim,खर्च दावा apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},साठी Qty {0} DocType: Leave Application,Leave Application,रजेचा अर्ज -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,वाटप साधन सोडा +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,वाटप साधन सोडा DocType: Leave Block List,Leave Block List Dates,ब्लॉक यादी तारखा सोडा DocType: Company,If Monthly Budget Exceeded (for expense account),मासिक अर्थसंकल्प (खर्च खात्यासाठी) ओलांडली तर DocType: Workstation,Net Hour Rate,नेट तास दर @@ -830,7 +832,7 @@ DocType: Packing Slip Item,Packing Slip Item,पॅकिंग स्लिप DocType: POS Profile,Cash/Bank Account,रोख / बँक खाते apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,प्रमाणात किंवा मूल्य नाही बदल काढली आयटम. DocType: Delivery Note,Delivery To,वितरण -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,विशेषता टेबल अनिवार्य आहे +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,विशेषता टेबल अनिवार्य आहे DocType: Production Planning Tool,Get Sales Orders,विक्री ऑर्डर मिळवा apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} नकारात्मक असू शकत नाही apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,सवलत @@ -894,7 +896,7 @@ DocType: SMS Center,Total Characters,एकूण वर्ण apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},आयटम साठी BOM क्षेत्रात BOM निवडा कृपया {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,सी-फॉर्म चलन तपशील DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,भरणा मेळ चलन -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,योगदान% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,योगदान% DocType: Item,website page link,संकेतस्थळावर दुवा DocType: Company,Company registration numbers for your reference. Tax numbers etc.,आपल्या संदर्भासाठी कंपनी नोंदणी क्रमांक. कर संख्या इ DocType: Sales Partner,Distributor,वितरक @@ -936,10 +938,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM रुपांतर फ DocType: Stock Settings,Default Item Group,मुलभूत आयटम गट apps/erpnext/erpnext/config/buying.py +13,Supplier database.,पुरवठादार डेटाबेस. DocType: Account,Balance Sheet,ताळेबंद -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ','आयटम कोड आयटम केंद्र किंमत +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ','आयटम कोड आयटम केंद्र किंमत DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,आपले वविेतयाला ग्राहकाच्या संपर्क या तारखेला स्मरणपत्र प्राप्त होईल apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","पुढील खाती गट अंतर्गत केले जाऊ शकते, पण नोंदी नॉन-गट सुरू केले" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,कर आणि इतर पगार कपात. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,कर आणि इतर पगार कपात. DocType: Lead,Lead,लीड DocType: Email Digest,Payables,देय DocType: Account,Warehouse,कोठार @@ -956,10 +958,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Unreconciled दे DocType: Global Defaults,Current Fiscal Year,चालू आर्थिक वर्षात वर्ष DocType: Global Defaults,Disable Rounded Total,गोळाबेरीज एकूण अक्षम करा DocType: Lead,Call,कॉल -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'नोंदी' रिकामे असू शकत नाही +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'नोंदी' रिकामे असू शकत नाही apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},सह डुप्लिकेट सलग {0} त्याच {1} ,Trial Balance,चाचणी शिल्लक -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,कर्मचारी सेट अप +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,कर्मचारी सेट अप apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid """,ग्रिड " apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,पहिल्या उपसर्ग निवडा कृपया apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,संशोधन @@ -968,7 +970,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,वापरकर्ता आयडी apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,पहा लेजर apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,लवकरात लवकर -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","एक आयटम गट त्याच नावाने अस्तित्वात नाही, आयटम नाव बदलू किंवा आयटम गटाचे नाव कृपया" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","एक आयटम गट त्याच नावाने अस्तित्वात नाही, आयटम नाव बदलू किंवा आयटम गटाचे नाव कृपया" DocType: Production Order,Manufacture against Sales Order,विक्री ऑर्डर विरुद्ध उत्पादन apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,उर्वरित जग apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,आयटम {0} बॅच असू शकत नाही @@ -993,7 +995,7 @@ DocType: Purchase Receipt,Rejected Warehouse,नाकारल्याचे DocType: GL Entry,Against Voucher,व्हाउचर विरुद्ध DocType: Item,Default Buying Cost Center,मुलभूत खरेदी खर्च केंद्र apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","ERPNext बाहेर सर्वोत्तम प्राप्त करण्यासाठी, आम्ही तुम्हाला काही वेळ घ्या आणि हे मदत व्हिडिओ पाहू असे शिफारसीय आहे." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,आयटम {0} विक्री आयटम असणे आवश्यक आहे +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,आयटम {0} विक्री आयटम असणे आवश्यक आहे apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,ते DocType: Item,Lead Time in days,दिवस आघाडी वेळ ,Accounts Payable Summary,खाती देय सारांश @@ -1019,7 +1021,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,कृषी apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,आपली उत्पादने किंवा सेवा DocType: Mode of Payment,Mode of Payment,मोड ऑफ पेमेंट्स -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,वेबसाइट प्रतिमा सार्वजनिक फाइल किंवा वेबसाइट URL असावी +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,वेबसाइट प्रतिमा सार्वजनिक फाइल किंवा वेबसाइट URL असावी apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,हा रूट आयटम गट आहे आणि संपादित केला जाऊ शकत नाही. DocType: Journal Entry Account,Purchase Order,खरेदी ऑर्डर DocType: Warehouse,Warehouse Contact Info,वखार संपर्क माहिती @@ -1030,7 +1032,7 @@ DocType: Serial No,Serial No Details,सिरियल तपशील DocType: Purchase Invoice Item,Item Tax Rate,आयटम कराचा दर apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","{0}, फक्त क्रेडिट खात्यांच्या दुसऱ्या नावे नोंद लिंक जाऊ शकते" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,"डिलिव्हरी टीप {0} सबमिट केलेली नाही," -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,आयटम {0} सब-करारबद्ध आयटम असणे आवश्यक आहे +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,आयटम {0} सब-करारबद्ध आयटम असणे आवश्यक आहे apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,कॅपिटल उपकरणे apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","किंमत नियम पहिल्या आधारित निवडले आहे आयटम, आयटम गट किंवा ब्रॅण्ड असू शकते जे शेत 'रोजी लागू करा'." DocType: Hub Settings,Seller Website,विक्रेता वेबसाइट @@ -1039,7 +1041,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,लक्ष्य DocType: Sales Invoice Item,Edit Description,वर्णन संपादित करा apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,अपेक्षित वितरण तारीख नियोजनबद्ध प्रारंभ तारीख पेक्षा कमी आहे. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,पुरवठादार साठी +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,पुरवठादार साठी DocType: Account,Setting Account Type helps in selecting this Account in transactions.,खाते प्रकार सेट व्यवहार हे खाते निवडून मदत करते. DocType: Purchase Invoice,Grand Total (Company Currency),एकूण (कंपनी चलन) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,एकूण जाणारे @@ -1091,7 +1093,6 @@ DocType: Authorization Rule,Average Discount,सरासरी सवलत DocType: Address,Utilities,उपयुक्तता DocType: Purchase Invoice Item,Accounting,लेखा DocType: Features Setup,Features Setup,वैशिष्ट्ये सेटअप -DocType: Item,Is Service Item,सेवा आयटम आहे apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,अर्ज काळात बाहेर रजा वाटप कालावधी असू शकत नाही DocType: Activity Cost,Projects,प्रकल्प apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,आर्थिक वर्ष निवडा कृपया @@ -1112,7 +1113,7 @@ DocType: Item,Maintain Stock,शेअर ठेवा apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,आधीच उत्पादन ऑर्डर तयार स्टॉक नोंदी apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,मुदत मालमत्ता निव्वळ बदला DocType: Leave Control Panel,Leave blank if considered for all designations,सर्व पदे विचार तर रिक्त सोडा -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,प्रकार वास्तविक 'सलग प्रभारी {0} आयटम रेट समाविष्ट केले जाऊ शकत नाही +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,प्रकार वास्तविक 'सलग प्रभारी {0} आयटम रेट समाविष्ट केले जाऊ शकत नाही apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},कमाल: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,DATETIME पासून DocType: Email Digest,For Company,कंपनी साठी @@ -1121,8 +1122,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,शिपिंग पत्ता नाव apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,लेखा चार्ट DocType: Material Request,Terms and Conditions Content,अटी आणि शर्ती सामग्री -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,पेक्षा जास्त 100 असू शकत नाही -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,{0} आयटम स्टॉक आयटम नाही +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,पेक्षा जास्त 100 असू शकत नाही +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,{0} आयटम स्टॉक आयटम नाही DocType: Maintenance Visit,Unscheduled,Unscheduled DocType: Employee,Owned,मालकीचे DocType: Salary Slip Deduction,Depends on Leave Without Pay,पे न करता सोडू अवलंबून @@ -1143,7 +1144,7 @@ Used for Taxes and Charges",स्ट्रिंग म्हणून आय apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,कर्मचारी स्वत: ला तक्रार करू शकत नाही. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","खाते गोठविले तर, नोंदी मर्यादित वापरकर्त्यांना परवानगी आहे." DocType: Email Digest,Bank Balance,बँक बॅलन्स -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},{1} फक्त चलनात केले जाऊ शकते: {0} एकट्या प्रवेश {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},{1} फक्त चलनात केले जाऊ शकते: {0} एकट्या प्रवेश {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,कर्मचारी {0} आणि महिना आढळले नाही सक्रिय तत्वे DocType: Job Opening,"Job profile, qualifications required etc.","कामाचे, पात्रता आवश्यक इ" DocType: Journal Entry Account,Account Balance,खाते शिल्लक @@ -1160,7 +1161,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,उप वि DocType: Shipping Rule Condition,To Value,मूल्य DocType: Supplier,Stock Manager,शेअर व्यवस्थापक apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},स्रोत कोठार सलग अनिवार्य आहे {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,पॅकिंग स्लिप्स +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,पॅकिंग स्लिप्स apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,कार्यालय भाडे apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,सेटअप एसएमएस गेटवे सेटिंग apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,आयात अयशस्वी! @@ -1204,7 +1205,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM तपशील ना DocType: Purchase Invoice,Additional Discount Amount (Company Currency),अतिरिक्त सवलत रक्कम (कंपनी चलन) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},त्रुटी: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,लेखा चार्ट नवीन खाते तयार करा. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,देखभाल भेट द्या +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,देखभाल भेट द्या apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,ग्राहक> ग्राहक गट> प्रदेश DocType: Sales Invoice Item,Available Batch Qty at Warehouse,कोठार वर उपलब्ध आहे बॅच Qty DocType: Time Log Batch Detail,Time Log Batch Detail,वेळ लॉग बॅच तपशील @@ -1213,7 +1214,7 @@ DocType: Leave Block List,Block Holidays on important days.,महत्वा ,Accounts Receivable Summary,खाते प्राप्तीयोग्य सारांश apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,कर्मचारी भूमिका सेट करण्यासाठी एक कर्मचारी रेकॉर्ड वापरकर्ता आयडी फील्ड सेट करा DocType: UOM,UOM Name,UOM नाव -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,योगदान रक्कम +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,योगदान रक्कम DocType: Sales Invoice,Shipping Address,शिपिंग पत्ता DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,हे साधन आपल्याला सुधारीत किंवा प्रणाली मध्ये स्टॉक प्रमाण आणि मूल्यांकन निराकरण करण्यासाठी मदत करते. सामान्यत: प्रणाली मूल्ये आणि काय प्रत्यक्षात आपल्या गोदामे अस्तित्वात समक्रमित करण्यासाठी वापरले जाते. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,आपण डिलिव्हरी टीप जतन एकदा शब्द मध्ये दृश्यमान होईल. @@ -1254,7 +1255,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,बारकोड वापरुन आयटम ट्रॅक करण्यासाठी. आपण आयटम बारकोड स्कॅनिंग करून वितरण टीप आणि विक्री चलन आयटम दाखल करण्यास सक्षम असेल. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,भरणा ईमेल पुन्हा पाठवा DocType: Dependent Task,Dependent Task,अवलंबित कार्य -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},माप मुलभूत युनिट रुपांतर घटक सलग 1 असणे आवश्यक आहे {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},माप मुलभूत युनिट रुपांतर घटक सलग 1 असणे आवश्यक आहे {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},प्रकारच्या रजा {0} जास्त असू शकत नाही {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,आगाऊ एक्स दिवस ऑपरेशन नियोजन प्रयत्न करा. DocType: HR Settings,Stop Birthday Reminders,थांबवा वाढदिवस स्मरणपत्रे @@ -1264,7 +1265,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} पहा apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,रोख निव्वळ बदला DocType: Salary Structure Deduction,Salary Structure Deduction,वेतन संरचना कपात -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,माप {0} युनिट रुपांतर फॅक्टर टेबल एकदा पेक्षा अधिक प्रविष्ट केले गेले आहे +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,माप {0} युनिट रुपांतर फॅक्टर टेबल एकदा पेक्षा अधिक प्रविष्ट केले गेले आहे apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},भरणा विनंती आधीपासूनच अस्तित्वात {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,जारी आयटम खर्च apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},प्रमाण जास्त असू शकत नाही {0} @@ -1293,7 +1294,7 @@ DocType: BOM Item,BOM Item,BOM आयटम DocType: Appraisal,For Employee,कर्मचारी साठी apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,रो {0}: पुरवठादार विरुद्ध आगाऊ डेबिट करणे आवश्यक आहे DocType: Company,Default Values,मुलभूत मुल्य -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,रो {0}: भरणा रक्कम नकारात्मक असू शकत नाही +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,रो {0}: भरणा रक्कम नकारात्मक असू शकत नाही DocType: Expense Claim,Total Amount Reimbursed,एकूण रक्कम परत देऊन apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},पुरवठादार विरुद्ध चलन {0} दिनांक {1} DocType: Customer,Default Price List,मुलभूत दर सूची @@ -1321,8 +1322,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,स DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM",ते वापरले जाते त्या इतर सर्व BOMs विशिष्ट BOM बदला. हे जुन्या BOM दुवा पुनर्स्थित खर्च अद्ययावत आणि नवीन BOM नुसार "BOM स्फोट आयटम 'टेबल निर्माण होईल DocType: Shopping Cart Settings,Enable Shopping Cart,हे खरेदी सूचीत टाका सक्षम DocType: Employee,Permanent Address,स्थायी पत्ता -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,आयटम {0} एक सेवा आयटम असणे आवश्यक आहे. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",एकूण पेक्षा \ {0} {1} जास्त असू शकत नाही विरुद्ध दिले आगाऊ {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,आयटम कोड निवडा DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),पे न करता सोडू साठी कपात कमी (LWP) @@ -1378,12 +1378,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,मुख्य apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,जिच्यामध्ये variant DocType: Naming Series,Set prefix for numbering series on your transactions,तुमचा व्यवहार वर मालिका संख्या सेट पूर्वपद +DocType: Employee Attendance Tool,Employees HTML,कर्मचारी एचटीएमएल apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,थांबवले आदेश रद्द केले जाऊ शकत नाही. रद्द करण्यासाठी बूच. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,मुलभूत BOM ({0}) या आयटम किंवा त्याच्या साचा सक्रिय असणे आवश्यक आहे +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,मुलभूत BOM ({0}) या आयटम किंवा त्याच्या साचा सक्रिय असणे आवश्यक आहे DocType: Employee,Leave Encashed?,पैसे मिळविता सोडा? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,शेत पासून संधी अनिवार्य आहे DocType: Item,Variants,रूपे -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,खरेदी ऑर्डर करा +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,खरेदी ऑर्डर करा DocType: SMS Center,Send To,पाठवा apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},रजा प्रकार पुरेशी रजा शिल्लक नाही {0} DocType: Payment Reconciliation Payment,Allocated amount,रक्कम @@ -1483,7 +1484,7 @@ DocType: Sales Person,Name and Employee ID,नाव आणि कर्मच apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,मुळे तारीख तारीख पोस्ट करण्यापूर्वी असू शकत नाही DocType: Website Item Group,Website Item Group,वेबसाइट आयटम गट apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,करापोटी -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,संदर्भ तारीख प्रविष्ट करा +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,संदर्भ तारीख प्रविष्ट करा apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,पेमेंट गेटवे खाते कॉन्फिगर नाही apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} पैसे नोंदी फिल्टर जाऊ शकत नाही {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,वेब साईट मध्ये दर्शविले जाईल की आयटम टेबल @@ -1504,7 +1505,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,ठराव तपशील DocType: Quality Inspection Reading,Acceptance Criteria,स्वीकृती निकष DocType: Item Attribute,Attribute Name,विशेषता नाव -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},आयटम {0} विक्री किंवा सेवा आयटम असणे आवश्यक आहे {1} DocType: Item Group,Show In Website,वेबसाइट मध्ये दर्शवा apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,गट DocType: Task,Expected Time (in hours),(तास) अपेक्षित वेळ @@ -1536,7 +1536,7 @@ DocType: Shipping Rule Condition,Shipping Amount,शिपिंग रक्क ,Pending Amount,प्रलंबित रक्कम DocType: Purchase Invoice Item,Conversion Factor,रूपांतरण फॅक्टर DocType: Purchase Order,Delivered,वितरित केले -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),रोजगार ई-मेल आयडी साठी सेटअप येणार्या सर्व्हर. (उदा jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),रोजगार ई-मेल आयडी साठी सेटअप येणार्या सर्व्हर. (उदा jobs@example.com) DocType: Purchase Receipt,Vehicle Number,वाहन क्रमांक DocType: Purchase Invoice,The date on which recurring invoice will be stop,आवर्ती अशी यादी तयार करणे बंद होणार तारीख apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,एकूण वाटप पाने {0} कमी असू शकत नाही कालावधीसाठी यापूर्वीच मान्यता देण्यात पाने {1} जास्त @@ -1553,7 +1553,7 @@ DocType: HR Settings,HR Settings,एचआर सेटिंग्ज apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,खर्च दावा मंजुरीसाठी प्रलंबित आहे. फक्त खर्च माफीचा साक्षीदार स्थिती अद्यतनित करू शकता. DocType: Purchase Invoice,Additional Discount Amount,अतिरिक्त सवलत रक्कम DocType: Leave Block List Allow,Leave Block List Allow,ब्लॉक यादी परवानगी द्या सोडा -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abbr रिक्त किंवा जागा असू शकत नाही +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abbr रिक्त किंवा जागा असू शकत नाही apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,नॉन-गट गट apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,क्रीडा apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,वास्तविक एकूण @@ -1577,7 +1577,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},UOM रुपांतर घटक सलग आवश्यक आहे {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},निपटारा तारीख सलग चेक तारखेच्या आधी असू शकत नाही {0} DocType: Salary Slip,Deduction,कपात -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},आयटम किंमत जोडले {0} किंमत यादी मध्ये {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},आयटम किंमत जोडले {0} किंमत यादी मध्ये {1} DocType: Address Template,Address Template,पत्ता साचा apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,या विक्री व्यक्ती कर्मचारी आयडी प्रविष्ट करा DocType: Territory,Classification of Customers by region,प्रदेशानुसार ग्राहक वर्गीकरण @@ -1594,7 +1594,7 @@ DocType: Employee,Date of Birth,जन्म तारीख apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,आयटम {0} आधीच परत आले आहे DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** आर्थिक वर्ष ** एक आर्थिक वर्ष प्रस्तुत करते. सर्व लेखा नोंदणी व इतर प्रमुख व्यवहार ** ** आर्थिक वर्ष विरुद्ध नियंत्रीत केले जाते. DocType: Opportunity,Customer / Lead Address,ग्राहक / लीड पत्ता -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},चेतावणी: जोड वर अवैध SSL प्रमाणपत्र {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},चेतावणी: जोड वर अवैध SSL प्रमाणपत्र {0} DocType: Production Order Operation,Actual Operation Time,वास्तविक ऑपरेशन वेळ DocType: Authorization Rule,Applicable To (User),लागू करण्यासाठी (सदस्य) DocType: Purchase Taxes and Charges,Deduct,वजा @@ -1611,7 +1611,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,संकुल स्प्लिट वितरण टीप. apps/erpnext/erpnext/hooks.py +69,Shipments,निर्यात DocType: Purchase Order Item,To be delivered to customer,ग्राहकाला वितरित करणे -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,वेळ लॉग स्थिती सादर करणे आवश्यक आहे. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,वेळ लॉग स्थिती सादर करणे आवश्यक आहे. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,सिरियल नाही {0} कोणत्याही वखार संबंधित नाही apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,रो # DocType: Purchase Invoice,In Words (Company Currency),शब्द मध्ये (कंपनी चलन) @@ -1628,7 +1628,7 @@ DocType: Leave Application,Total Leave Days,एकूण दिवस रजा DocType: Email Digest,Note: Email will not be sent to disabled users,टीप: ईमेल वापरकर्त्यांना अक्षम पाठविली जाऊ शकत नाही apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,कंपनी निवडा ... DocType: Leave Control Panel,Leave blank if considered for all departments,सर्व विभागांसाठी वाटल्यास रिक्त सोडा -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","रोजगार प्रकार (कायम, करार, हद्दीच्या इ)." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","रोजगार प्रकार (कायम, करार, हद्दीच्या इ)." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} आयटम अनिवार्य आहे {1} DocType: Currency Exchange,From Currency,चलन पासून apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","किमान एक सलग रक्कम, चलन प्रकार आणि चलन क्रमांक निवडा" @@ -1647,7 +1647,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,प्रक्रिया मध्ये DocType: Authorization Rule,Itemwise Discount,Itemwise सवलत DocType: Purchase Order Item,Reference Document Type,संदर्भ दस्तऐवज प्रकार -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} विक्री आदेशा {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} विक्री आदेशा {1} DocType: Account,Fixed Asset,निश्चित मालमत्ता apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,सिरीयलाइज यादी DocType: Activity Type,Default Billing Rate,डीफॉल्ट बिलिंग दर @@ -1657,7 +1657,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,भरणा करण्यासाठी विक्री आदेश DocType: Expense Claim Detail,Expense Claim Detail,खर्च हक्क तपशील apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,वेळ नोंदी तयार: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,योग्य खाते निवडा +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,योग्य खाते निवडा DocType: Item,Weight UOM,वजन UOM DocType: Employee,Blood Group,रक्त गट DocType: Purchase Invoice Item,Page Break,पृष्ठ ब्रेक @@ -1692,7 +1692,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM recursion: {0} पालक किंवा मुलाला होऊ शकत नाही {2} DocType: Production Order Operation,Completed Qty,पूर्ण Qty apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","{0}, फक्त डेबिट खाती दुसरे क्रेडिट नोंदणी लिंक जाऊ शकते" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,किंमत सूची {0} अक्षम आहे +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,किंमत सूची {0} अक्षम आहे DocType: Manufacturing Settings,Allow Overtime,जादा वेळ परवानगी द्या apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} आयटम आवश्यक सिरिअल क्रमांक {1}. आपण प्रदान केलेल्या {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,वर्तमान मूल्यांकन दर @@ -1743,7 +1743,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},ब apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,प्रकरण क्रमांक 0 असू शकत नाही DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,आपण (चॅनेल भागीदार) विक्री संघ आणि विक्री भागीदार असल्यास ते टॅग आणि विक्री क्रियाकलाप त्यांच्या योगदान राखण्यासाठी जाऊ शकते DocType: Item,Show a slideshow at the top of the page,पृष्ठाच्या शीर्षस्थानी स्लाईड शो दर्शवा -DocType: Item,"Allow in Sales Order of type ""Service""",प्रकार "सेवा" विक्री ऑर्डर परवानगी द्या apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,स्टोअर्स DocType: Time Log,Projects Manager,प्रकल्प व्यवस्थापक DocType: Serial No,Delivery Time,वितरण वेळ @@ -1758,6 +1757,7 @@ DocType: Rename Tool,Rename Tool,साधन पुनर्नामित क apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,अद्यतन खर्च DocType: Item Reorder,Item Reorder,आयटम पुनर्क्रमित apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,ट्रान्सफर साहित्य +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},आयटम {0} मध्ये विक्री आयटम असणे आवश्यक आहे {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","ऑपरेशन, ऑपरेटिंग खर्च निर्देशीत आणि आपल्या ऑपरेशन नाही एक अद्वितीय ऑपरेशन द्या." DocType: Purchase Invoice,Price List Currency,किंमत सूची चलन DocType: Naming Series,User must always select,सदस्य नेहमी निवडणे आवश्यक आहे @@ -1778,7 +1778,7 @@ DocType: Appraisal,Employee,कर्मचारी apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,पासून आयात ईमेल apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,वापरकर्ता म्हणून आमंत्रित करा DocType: Features Setup,After Sale Installations,विक्री स्थापना केल्यानंतर -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} पूर्णपणे बिल आहे +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} पूर्णपणे बिल आहे DocType: Workstation Working Hour,End Time,समाप्त वेळ apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,विक्री किंवा खरेदी करीता मानक करार अटी. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,व्हाउचर गट @@ -1804,7 +1804,7 @@ DocType: Upload Attendance,Attendance To Date,"तारीख करण्य apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),विक्री ई-मेल आयडी साठी सेटअप येणार्या सर्व्हर. (उदा sales@example.com) DocType: Warranty Claim,Raised By,उपस्थित DocType: Payment Gateway Account,Payment Account,भरणा खाते -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,पुढे जाण्यासाठी कंपनी निर्दिष्ट करा +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,पुढे जाण्यासाठी कंपनी निर्दिष्ट करा apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,खाते प्राप्तीयोग्य निव्वळ बदला apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,भरपाई देणारा बंद DocType: Quality Inspection Reading,Accepted,स्वीकारले @@ -1816,14 +1816,14 @@ DocType: Shipping Rule,Shipping Rule Label,शिपिंग नियम ल apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,कच्चा माल रिक्त असू शकत नाही. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","शेअर अद्यतनित करू शकत नाही, बीजक ड्रॉप शिपिंग आयटम आहे." DocType: Newsletter,Test,कसोटी -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","सध्याच्या स्टॉक व्यवहार आपण मूल्ये बदलू शकत नाही \ या आयटम, आहेत म्हणून 'सिरियल नाही आहे' '' बॅच आहे नाही ',' शेअर आयटम आहे 'आणि' मूल्यांकन पद्धत '" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,जलद प्रवेश जर्नल apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,BOM कोणत्याही आयटम agianst उल्लेख केला तर आपण दर बदलू शकत नाही DocType: Employee,Previous Work Experience,मागील कार्य अनुभव DocType: Stock Entry,For Quantity,प्रमाण साठी apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},सलग येथे आयटम {0} साठी नियोजनबद्ध Qty प्रविष्ट करा {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,"{0} {1} सबमिट केलेली नाही," +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,"{0} {1} सबमिट केलेली नाही," apps/erpnext/erpnext/config/stock.py +18,Requests for items.,आयटम विनंती. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,स्वतंत्र उत्पादन करण्यासाठी प्रत्येक पूर्ण चांगल्या आयटम तयार केले जाईल. DocType: Purchase Invoice,Terms and Conditions1,अटी आणि Conditions1 @@ -1848,6 +1848,7 @@ DocType: Notification Control,Expense Claim Approved Message,खर्च क् DocType: Email Digest,How frequently?,किती वारंवार? DocType: Purchase Receipt,Get Current Stock,वर्तमान शेअर मिळवा apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,साहित्य बिल झाडाकडे +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,मार्क सध्याची apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},देखभाल प्रारंभ तारीख माणे वितरणाची तारीख आधी असू शकत नाही {0} DocType: Production Order,Actual End Date,वास्तविक अंतिम तारीख DocType: Authorization Rule,Applicable To (Role),लागू करण्यासाठी (भूमिका) @@ -1862,7 +1863,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,कंत्राटी अंतिम तारीख प्रवेश दिनांक पेक्षा जास्त असणे आवश्यक आहे DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,एक आयोग कंपन्या उत्पादने विकतो तृतीय पक्ष जो वितरक / विक्रेता / दलाल / संलग्न / विक्रेत्याशी. DocType: Customer Group,Has Child Node,बाल नोड आहे -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} पर्चेस विरुद्ध {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} पर्चेस विरुद्ध {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","येथे स्थिर URL मापदंड प्रविष्ट करा (उदा. प्रेषक = ERPNext, वापरकर्तानाव = ERPNext, पासवर्ड = 1234 इ)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} कोणत्याही सक्रिय आर्थिक वर्ष आहे. अधिक माहितीसाठी या तपासासाठी {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,हे नमुना वेबसाइट ERPNext पासून स्वयं-व्युत्पन्न केलेले आहे @@ -1890,7 +1891,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Add or Deduct: Whether you want to add or deduct the tax.","सर्व खरेदी व्यवहार लागू केले जाऊ शकते मानक कर टेम्प्लेट. हा साचा इ #### आपण सर्व ** आयटम मानक कर दर असतील येथे परिभाषित कर दर टीप "हाताळणी", कर डोक्यावर आणि "शिपिंग", "इन्शुरन्स" सारखे इतर खर्च डोक्यावर यादी असू शकतात * *. विविध दर आहेत ** की ** आयटम नाहीत, तर ते ** आयटम करात समाविष्ट करणे आवश्यक आहे ** ** आयटम ** मास्टर मेज. #### स्तंभ वर्णन 1. गणना प्रकार: - हे (मूलभूत रक्कम बेरीज आहे) ** नेट एकूण ** वर असू शकते. - ** मागील पंक्ती एकूण / रक्कम ** रोजी (संचयी कर किंवा शुल्क साठी). तुम्ही हा पर्याय निवडत असाल, तर कर रक्कम एकूण (कर सारणी मध्ये) मागील सलग टक्केवारी म्हणून लागू केले जाईल. - ** ** वास्तविक (नमूद). 2. खाते प्रमुख: हा कर 3. खर्च केंद्र बुक केले जाईल ज्या अंतर्गत खाते खातेवही: कर / शुल्क (शिपिंग सारखे) एक उत्पन्न आहे किंवा खर्च तर ती खर्च केंद्र विरुद्ध गुन्हा दाखल करण्यात यावा करणे आवश्यक आहे. 4. वर्णन: कर वर्णन (की पावत्या / कोट छापले जाईल). 5. दर: कर दर. 6 रक्कम: कर रक्कम. 7. एकूण: या बिंदू संचयी एकूण. 8. रो प्रविष्ट करा: आधारित असेल, तर "मागील पंक्ती एकूण" जर तुम्ही या गणित एक बेस (मुलभूत मागील ओळीत आहे) म्हणून घेतले जाईल जे ओळीवर निवडू शकता. 9. कर किंवा शुल्क विचार करा: कर / शुल्क मूल्यांकन केवळ आहे (एकूण नाही एक भाग) किंवा (फक्त आयटम मूल्यवान नाही) एकूण किंवा दोन्ही असल्यावरच हा विभाग तुम्ही देखिल निर्देशीत करू शकता. 10. जोडा किंवा वजा: आपण जोडू किंवा कर वजा करायचे." DocType: Purchase Receipt Item,Recd Quantity,Recd प्रमाण apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},विक्री ऑर्डर प्रमाणात जास्त आयटम {0} निर्मिती करू शकत नाही {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,"शेअर प्रवेश {0} सबमिट केलेली नाही," +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,"शेअर प्रवेश {0} सबमिट केलेली नाही," DocType: Payment Reconciliation,Bank / Cash Account,बँक / रोख खाते DocType: Tax Rule,Billing City,बिलिंग शहर DocType: Global Defaults,Hide Currency Symbol,चलन प्रतीक लपवा @@ -1916,7 +1917,7 @@ DocType: Salary Structure,Total Earning,एकूण कमाई DocType: Purchase Receipt,Time at which materials were received,"साहित्य प्राप्त झाले, ज्या वेळ" apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,माझे पत्ते DocType: Stock Ledger Entry,Outgoing Rate,जाणारे दर -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,संघटना शाखा मास्टर. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,संघटना शाखा मास्टर. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,किंवा DocType: Sales Order,Billing Status,बिलिंग स्थिती apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,उपयुक्तता खर्च @@ -1954,7 +1955,7 @@ DocType: Bin,Reserved Quantity,राखीव प्रमाण DocType: Landed Cost Voucher,Purchase Receipt Items,खरेदी पावती आयटम apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,पसंतीचे अर्ज DocType: Account,Income Account,उत्पन्न खाते -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,डिलिव्हरी +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,डिलिव्हरी DocType: Stock Reconciliation Item,Current Qty,वर्तमान Qty DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",पहा कोटीच्या विभाग "सामुग्री आधारित रोजी दर" DocType: Appraisal Goal,Key Responsibility Area,की जबाबदारी क्षेत्र @@ -1966,8 +1967,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,प DocType: Notification Control,Purchase Order Message,ऑर्डर संदेश खरेदी DocType: Tax Rule,Shipping Country,शिपिंग देश DocType: Upload Attendance,Upload HTML,अपलोड करा HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})",एकूण आगाऊ ({0}) आदेश विरुद्ध {1} \ जास्त असू शकत नाही एकूण पेक्षा ({2}) DocType: Employee,Relieving Date,Relieving तारीख apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","किंमत नियम काही निकषांच्या आधारे, / यादी किंमत पुन्हा खोडून सवलतीच्या टक्केवारी परिभाषित केले आहे." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,कोठार फक्त शेअर प्रवेश द्वारे बदलले जाऊ शकते / डिलिव्हरी टीप / खरेदी पावती @@ -1977,8 +1976,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,आ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","निवड किंमत नियम 'किंमत' केले असेल, तर ते दर सूची अधिलिखित केले जाईल. किंमत नियम किंमत अंतिम किंमत आहे, त्यामुळे पुढील सवलतीच्या लागू केले जावे. त्यामुळे, इ विक्री आदेश, पर्चेस जसे व्यवहार, ते ऐवजी 'दर सूची दर' फील्डमध्ये पेक्षा, 'दर' फील्डमध्ये प्राप्त करता येईल." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,ट्रॅक उद्योग प्रकार करून ठरतो. DocType: Item Supplier,Item Supplier,आयटम पुरवठादार -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,बॅच नाही मिळविण्यासाठी आयटम कोड प्रविष्ट करा -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},{0} quotation_to एक मूल्य निवडा {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,बॅच नाही मिळविण्यासाठी आयटम कोड प्रविष्ट करा +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},{0} quotation_to एक मूल्य निवडा {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,सर्व पत्ते. DocType: Company,Stock Settings,शेअर सेटिंग्ज apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","खालील गुणधर्म दोन्ही रेकॉर्ड समान आहेत तर, विलीन फक्त शक्य आहे. गट, रूट प्रकार, कंपनी आहे" @@ -2001,7 +2000,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,धनादेश क्र DocType: Payment Tool Detail,Payment Tool Detail,भरणा साधन तपशील ,Sales Browser,विक्री ब्राउझर DocType: Journal Entry,Total Credit,एकूण क्रेडिट -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},चेतावनी: आणखी {0} # {1} स्टॉक प्रवेश विरुद्ध अस्तित्वात {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},चेतावनी: आणखी {0} # {1} स्टॉक प्रवेश विरुद्ध अस्तित्वात {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,स्थानिक apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),कर्ज मालमत्ता (assets) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,कर्जदार @@ -2021,8 +2020,8 @@ DocType: Price List,Price List Master,किंमत सूची मास् DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,आपण सेट आणि लक्ष्य निरीक्षण करू शकता जेणेकरून सर्व विक्री व्यवहार अनेक ** विक्री व्यक्ती ** विरुद्ध टॅग केले जाऊ शकते. ,S.O. No.,त्यामुळे क्रमांक DocType: Production Order Operation,Make Time Log,वेळ लॉग करा -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,पुनर्क्रमित प्रमाण सेट करा -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},लीड ग्राहक तयार करा {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,पुनर्क्रमित प्रमाण सेट करा +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},लीड ग्राहक तयार करा {0} DocType: Price List,Applicable for Countries,देश साठी लागू apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,संगणक apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,हे मूळ ग्राहक गट आहे आणि संपादित केला जाऊ शकत नाही. @@ -2058,7 +2057,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),बि DocType: Payment Reconciliation Invoice,Outstanding Amount,बाकी रक्कम DocType: Project Task,Working,कार्यरत आहे DocType: Stock Ledger Entry,Stock Queue (FIFO),शेअर रांग (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,वेळ नोंदी निवडा. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,वेळ नोंदी निवडा. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} कंपनी संबंधित नाही {1} DocType: Account,Round Off,बंद फेरीत ,Requested Qty,विनंती Qty @@ -2096,7 +2095,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,संबंधित नोंदी मिळवा apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,शेअर एकट्या प्रवेश DocType: Sales Invoice,Sales Team1,विक्री Team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,आयटम {0} अस्तित्वात नाही +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,आयटम {0} अस्तित्वात नाही DocType: Sales Invoice,Customer Address,ग्राहक पत्ता DocType: Payment Request,Recipient and Message,प्राप्तकर्ता आणि संदेश DocType: Purchase Invoice,Apply Additional Discount On,अतिरिक्त सवलत लागू @@ -2115,7 +2114,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,निःशब्द ईमेल apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","अन्न, पेय आणि तंबाखू" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,पु किंवा बी.एस. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},फक्त रक्कम करू शकता बिल न केलेली {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},फक्त रक्कम करू शकता बिल न केलेली {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,आयोगाने दर पेक्षा जास्त 100 असू शकत नाही apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,किमान सूची स्तर DocType: Stock Entry,Subcontract,Subcontract @@ -2133,9 +2132,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,सॉफ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,रंग DocType: Maintenance Visit,Scheduled,अनुसूचित apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","नाही" आणि "विक्री आयटम आहे" "शेअर आयटम आहे" कोठे आहे? "होय" आहे आयटम निवडा आणि इतर उत्पादन बंडल आहे कृपया +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),एकूण आगाऊ ({0}) आदेश विरुद्ध {1} एकूण पेक्षा जास्त असू शकत नाही ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,असाधारण महिने ओलांडून लक्ष्य वाटप मासिक वितरण निवडा. DocType: Purchase Invoice Item,Valuation Rate,मूल्यांकन दर -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,किंमत सूची चलन निवडलेले नाही +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,किंमत सूची चलन निवडलेले नाही apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,आयटम रो {0}: {1} वरील 'खरेदी पावत्या' टेबल मध्ये अस्तित्वात नाही खरेदी पावती apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},कर्मचारी {0} आधीच अर्ज केला आहे {1} दरम्यान {2} आणि {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,प्रकल्प सुरू तारीख @@ -2147,6 +2147,7 @@ DocType: Quality Inspection,Inspection Type,तपासणी प्रका apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},कृपया निवडा {0} DocType: C-Form,C-Form No,सी-फॉर्म नाही DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,खुणा न केलेल्या विधान परिषदेच्या apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,संशोधक apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,पाठविण्यापूर्वी वृत्तपत्र जतन करा apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,नाव किंवा ईमेल अनिवार्य आहे @@ -2172,7 +2173,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,पु DocType: Payment Gateway,Gateway,गेटवे apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,पुरवठादार> पुरवठादार प्रकार apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,तारीख relieving प्रविष्ट करा. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,रक्कम +apps/erpnext/erpnext/controllers/trends.py +138,Amt,रक्कम apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,फक्त स्थिती 'मंजूर' सादर केला जाऊ शकतो अनुप्रयोग सोडा apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,पत्ता शीर्षक आवश्यक आहे. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,चौकशी स्रोत मोहिम आहे तर मोहीम नाव प्रविष्ट करा @@ -2187,10 +2188,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,स्वीकृत को DocType: Bank Reconciliation Detail,Posting Date,पोस्टिंग तारीख DocType: Item,Valuation Method,मूल्यांकन पद्धत apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},{0} करण्यासाठी विनिमय दर शोधण्यात अक्षम {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,मार्क अर्धा दिवस DocType: Sales Invoice,Sales Team,विक्री टीम apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,डुप्लिकेट नोंदणी DocType: Serial No,Under Warranty,हमी अंतर्गत -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[त्रुटी] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[त्रुटी] DocType: Sales Order,In Words will be visible once you save the Sales Order.,तुम्ही विक्री ऑर्डर जतन एकदा शब्द मध्ये दृश्यमान होईल. ,Employee Birthday,कर्मचारी वाढदिवस apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,व्हेंचर कॅपिटल @@ -2213,6 +2215,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,विद्यमान व्यवहार खर्चाच्या केंद्र गट रूपांतरीत केले जाऊ शकत नाही DocType: Account,Depreciation,घसारा apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),पुरवठादार (चे) +DocType: Employee Attendance Tool,Employee Attendance Tool,कर्मचारी उपस्थिती साधन DocType: Supplier,Credit Limit,क्रेडिट मर्यादा apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,व्यवहार प्रकार निवडा DocType: GL Entry,Voucher No,प्रमाणक नाही @@ -2239,7 +2242,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,रूट खाते हटविले जाऊ शकत नाही ,Is Primary Address,प्राथमिक पत्ता आहे DocType: Production Order,Work-in-Progress Warehouse,कार्य-इन-प्रगती कोठार -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},संदर्भ # {0} दिनांक {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},संदर्भ # {0} दिनांक {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,पत्ते व्यवस्थापित करा DocType: Pricing Rule,Item Code,आयटम कोड DocType: Production Planning Tool,Create Production Orders,उत्पादन ऑर्डर तयार करा @@ -2266,7 +2269,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,बँक मेळ apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,अद्यतने मिळवा apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,साहित्य विनंती {0} रद्द किंवा बंद आहे apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,काही नमुना रेकॉर्ड जोडा -apps/erpnext/erpnext/config/hr.py +210,Leave Management,व्यवस्थापन सोडा +apps/erpnext/erpnext/config/hr.py +225,Leave Management,व्यवस्थापन सोडा apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,खाते गट DocType: Sales Order,Fully Delivered,पूर्णतः वितरण DocType: Lead,Lower Income,अल्प उत्पन्न @@ -2281,6 +2284,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','तारीख पासून' नंतर 'दिनांक करण्यासाठी' असणे आवश्यक आहे ,Stock Projected Qty,शेअर Qty अंदाज apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},संबंधित नाही {0} ग्राहक प्रोजेक्ट करण्यासाठी {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,चिन्हांकित उपस्थिती एचटीएमएल DocType: Sales Order,Customer's Purchase Order,ग्राहकाच्या पर्चेस DocType: Warranty Claim,From Company,कंपनी पासून apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,मूल्य किंवा Qty @@ -2345,6 +2349,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,वायर हस्तांतरण apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,बँक खाते निवडा DocType: Newsletter,Create and Send Newsletters,तयार करा आणि पाठवा वृत्तपत्रे +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,सर्व चेक करा DocType: Sales Order,Recurring Order,आवर्ती ऑर्डर DocType: Company,Default Income Account,मुलभूत उत्पन्न खाते apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,ग्राहक गट / ग्राहक @@ -2376,6 +2381,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,विरुद्ध DocType: Item,Warranty Period (in days),(दिवस मध्ये) वॉरंटी कालावधी apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,ऑपरेशन्स निव्वळ रोख apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,उदा व्हॅट +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,मोठ्या प्रमाणात मध्ये मार्क कर्मचारी उपस्थिती apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,आयटम 4 DocType: Journal Entry Account,Journal Entry Account,जर्नल प्रवेश खाते DocType: Shopping Cart Settings,Quotation Series,कोटेशन मालिका @@ -2520,14 +2526,14 @@ DocType: Task,Actual Start Date (via Time Logs),वास्तविक प् DocType: Stock Reconciliation Item,Before reconciliation,समेट करण्यापूर्वी apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},करण्यासाठी {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),कर आणि शुल्क जोडले (कंपनी चलन) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,आयटम कर रो {0} प्रकार कर किंवा उत्पन्न किंवा खर्चाचे किंवा भार च्या खाते असणे आवश्यक आहे +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,आयटम कर रो {0} प्रकार कर किंवा उत्पन्न किंवा खर्चाचे किंवा भार च्या खाते असणे आवश्यक आहे DocType: Sales Order,Partly Billed,पाऊस बिल DocType: Item,Default BOM,मुलभूत BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,पुन्हा-टाइप करा कंपनीचे नाव पुष्टी करा apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,एकूण थकबाकी रक्कम DocType: Time Log Batch,Total Hours,एकूण तास DocType: Journal Entry,Printing Settings,मुद्रण सेटिंग्ज -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},एकूण डेबिट एकूण क्रेडिट समान असणे आवश्यक आहे. फरक आहे {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},एकूण डेबिट एकूण क्रेडिट समान असणे आवश्यक आहे. फरक आहे {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,ऑटोमोटिव्ह apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,डिलिव्हरी टीप पासून DocType: Time Log,From Time,वेळ पासून @@ -2573,7 +2579,7 @@ DocType: Purchase Invoice Item,Image View,प्रतिमा पहा DocType: Issue,Opening Time,उघडणे वेळ apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,आणि आवश्यक तारखा apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,सिक्युरिटीज अँड कमोडिटी -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',"प्रकार करीता माप मुलभूत युनिट '{0}' साचा म्हणून समान असणे आवश्यक आहे, '{1}'" +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',"प्रकार करीता माप मुलभूत युनिट '{0}' साचा म्हणून समान असणे आवश्यक आहे, '{1}'" DocType: Shipping Rule,Calculate Based On,आधारित असणे DocType: Delivery Note Item,From Warehouse,वखार पासून DocType: Purchase Taxes and Charges,Valuation and Total,मूल्यांकन आणि एकूण @@ -2595,7 +2601,7 @@ DocType: Leave Application,Follow via Email,ईमेल द्वारे अ DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,सवलत रक्कम नंतर कर रक्कम apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,बाल खाते हे खाते विद्यमान आहे. आपण हे खाते हटवू शकत नाही. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,एकतर लक्ष्य qty किंवा लक्ष्य रक्कम अनिवार्य आहे -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},डीफॉल्ट BOM आयटम विद्यमान {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},डीफॉल्ट BOM आयटम विद्यमान {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,पहिल्या पोस्टिंग तारीख निवडा apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,तारीख उघडण्याच्या तारीख बंद करण्यापूर्वी असावे DocType: Leave Control Panel,Carry Forward,कॅरी फॉरवर्ड @@ -2672,7 +2678,7 @@ DocType: Leave Type,Is Encash,रोख रकमेत बदलून आह DocType: Purchase Invoice,Mobile No,मोबाइल नाही DocType: Payment Tool,Make Journal Entry,जर्नल प्रवेश करा DocType: Leave Allocation,New Leaves Allocated,नवी पाने वाटप -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,प्रकल्प निहाय माहिती कोटेशन उपलब्ध नाही +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,प्रकल्प निहाय माहिती कोटेशन उपलब्ध नाही DocType: Project,Expected End Date,अपेक्षित शेवटची तारीख DocType: Appraisal Template,Appraisal Template Title,मूल्यांकन साचा शीर्षक apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,व्यावसायिक @@ -2720,6 +2726,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No., apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,एक निर्दिष्ट करा DocType: Offer Letter,Awaiting Response,प्रतिसाद प्रतीक्षा करत आहे apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,वर +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,वेळ लॉग बिल आकारले गेले आहे DocType: Salary Slip,Earning & Deduction,कमाई आणि कपात apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,खाते {0} एक गट असू शकत नाही apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,पर्यायी. हे सेटिंग विविध व्यवहार फिल्टर करण्यासाठी वापरला जाईल. @@ -2790,14 +2797,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,यशस्वीरित्या ही कंपनी संबंधित सर्व व्यवहार हटवला! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,तारखेला apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,उमेदवारीचा काळ -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,मुलभूत कोठार स्टॉक आयटम अनिवार्य आहे. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,मुलभूत कोठार स्टॉक आयटम अनिवार्य आहे. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},महिन्यात पगार भरणा {0} आणि वर्ष {1} DocType: Stock Settings,Auto insert Price List rate if missing,ऑटो घाला दर सूची दर गहाळ असेल तर apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,एकूण देय रक्कम ,Transferred Qty,हस्तांतरित Qty apps/erpnext/erpnext/config/learn.py +11,Navigating,नॅव्हिगेट apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,नियोजन -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,वेळ लॉग बॅच करा +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,वेळ लॉग बॅच करा apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,जारी DocType: Project,Total Billing Amount (via Time Logs),एकूण बिलिंग रक्कम (वेळ नोंदी द्वारे) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,आम्ही या आयटम विक्री @@ -2805,7 +2812,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,प्रमाण 0 पेक्षा जास्त असणे आवश्यक आहे DocType: Journal Entry,Cash Entry,रोख प्रवेश DocType: Sales Partner,Contact Desc,संपर्क desc -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","प्रासंगिक जसे पाने प्रकार, आजारी इ" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","प्रासंगिक जसे पाने प्रकार, आजारी इ" DocType: Email Digest,Send regular summary reports via Email.,ईमेल द्वारे नियमित सारांश अहवाल पाठवा. DocType: Brand,Item Manager,आयटम व्यवस्थापक DocType: Cost Center,Add rows to set annual budgets on Accounts.,खाती वार्षिक अर्थसंकल्प सेट करण्यासाठी पंक्ती जोडा. @@ -2820,7 +2827,7 @@ DocType: GL Entry,Party Type,पार्टी प्रकार apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,कच्चा माल मुख्य आयटम म्हणून समान असू शकत नाही DocType: Item Attribute Value,Abbreviation,संक्षेप apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,{0} मर्यादा ओलांडते पासून authroized नाही -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,वेतन टेम्प्लेट मास्टर. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,वेतन टेम्प्लेट मास्टर. DocType: Leave Type,Max Days Leave Allowed,कमाल दिवस रजा परवानगी apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,हे खरेदी सूचीत टाका सेट कर नियम DocType: Payment Tool,Set Matching Amounts,सेट जुळणारे राशी @@ -2833,7 +2840,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,नि DocType: Stock Settings,Role Allowed to edit frozen stock,भूमिका गोठविलेल्या स्टॉक संपादित करण्याची परवानगी ,Territory Target Variance Item Group-Wise,प्रदेश लक्ष्य फरक आयटम गट निहाय apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,सर्व ग्राहक गट -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} करणे आवश्यक आहे. कदाचित चलन विनिमय रेकॉर्ड {1} {2} करण्यासाठी तयार केले नाही. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} करणे आवश्यक आहे. कदाचित चलन विनिमय रेकॉर्ड {1} {2} करण्यासाठी तयार केले नाही. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,कर साचा बंधनकारक आहे. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,खाते {0}: पालक खाते {1} अस्तित्वात नाही DocType: Purchase Invoice Item,Price List Rate (Company Currency),किंमत सूची दर (कंपनी चलन) @@ -2853,8 +2860,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,आयटम शहा ,Item-wise Price List Rate,आयटम कुशल दर सूची दर apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,पुरवठादार कोटेशन DocType: Quotation,In Words will be visible once you save the Quotation.,तुम्ही अवतरण जतन एकदा शब्द मध्ये दृश्यमान होईल. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} बंद आहे -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},बारकोड {0} आधीच आयटम वापरले {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} बंद आहे +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},बारकोड {0} आधीच आयटम वापरले {1} DocType: Lead,Add to calendar on this date,या तारखेला कॅलेंडरमध्ये समाविष्ट करा apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,शिपिंग खर्च जोडून नियम. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,पुढील कार्यक्रम @@ -2880,8 +2887,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling, apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,किमान एक कोठार अनिवार्य आहे DocType: Serial No,Out of Warranty,हमी पैकी DocType: BOM Replace Tool,Replace,बदला -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} विक्री चलन विरुद्ध {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,माप मुलभूत युनिट प्रविष्ट करा +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} विक्री चलन विरुद्ध {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,माप मुलभूत युनिट प्रविष्ट करा DocType: Purchase Invoice Item,Project Name,प्रकल्प नाव DocType: Supplier,Mention if non-standard receivable account,उल्लेख गैर-मानक प्राप्त खाते तर DocType: Journal Entry Account,If Income or Expense,उत्पन्न किंवा खर्च तर @@ -2906,7 +2913,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,आर्थिक वर्ष: {0} नाही अस्तित्वात DocType: Currency Exchange,To Currency,चलन DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,खालील वापरकर्त्यांना ब्लॉक दिवस रजा अर्ज मंजूर करण्याची परवानगी द्या. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,खर्चाचे हक्काचा प्रकार. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,खर्चाचे हक्काचा प्रकार. DocType: Item,Taxes,कर apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,दिले आणि वितरित नाही DocType: Project,Default Cost Center,मुलभूत खर्च केंद्र @@ -2936,7 +2943,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},रो # {0}: सिरियल नाही {1} जुळत नाही {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,प्रासंगिक रजा DocType: Batch,Batch ID,बॅच आयडी -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},टीप: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},टीप: {0} ,Delivery Note Trends,डिलिव्हरी टीप ट्रेन्ड apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,या आठवड्यातील सारांश apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} एकापाठोपाठ एक खरेदी किंवा उप-करारबद्ध आयटम असणे आवश्यक आहे {1} @@ -2976,6 +2983,7 @@ DocType: Project Task,Pending Review,प्रलंबित पुनराव apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,अदा करण्यासाठी येथे क्लिक करा DocType: Task,Total Expense Claim (via Expense Claim),(खर्च दावा द्वारे) एकूण खर्च दावा apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,ग्राहक आयडी +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,मार्क अनुपिस्थत apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,वेळ वेळ पासून पेक्षा जास्त असणे आवश्यक करण्यासाठी DocType: Journal Entry Account,Exchange Rate,विनिमय दर apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,"विक्री ऑर्डर {0} सबमिट केलेली नाही," @@ -3023,7 +3031,7 @@ DocType: Item Group,Default Expense Account,मुलभूत खर्च ख DocType: Employee,Notice (days),सूचना (दिवस) DocType: Tax Rule,Sales Tax Template,विक्री कर साचा DocType: Employee,Encashment Date,एनकॅशमेंट तारीख -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","व्हाउचर विरुद्ध प्रकार पर्चेस एक, खरेदी चलन किंवा जर्नल प्रवेश असणे आवश्यक आहे" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","व्हाउचर विरुद्ध प्रकार पर्चेस एक, खरेदी चलन किंवा जर्नल प्रवेश असणे आवश्यक आहे" DocType: Account,Stock Adjustment,शेअर समायोजन apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},मुलभूत गतिविधी खर्च क्रियाकलाप प्रकार विद्यमान - {0} DocType: Production Order,Planned Operating Cost,नियोजनबद्ध ऑपरेटिंग खर्च @@ -3077,6 +3085,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,प्रवेश बंद लिहा DocType: BOM,Rate Of Materials Based On,दर साहित्य आधारित रोजी apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,समर्थन Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,सर्व अनचेक करा apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},कंपनी गोदामांची मधिल आढळणारी {0} DocType: POS Profile,Terms and Conditions,अटी आणि शर्ती apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},तारीख करण्यासाठी आर्थिक वर्ष आत असावे. = तारीख करण्यासाठी गृहीत धरून {0} @@ -3098,7 +3107,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'",", डीफॉल्ट म्हणून या आर्थिक वर्षात सेट करण्यासाठी 'डीफॉल्ट म्हणून सेट करा' वर क्लिक करा" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),मदत ईमेल आयडी सेटअप येणार्या सर्व्हर. (उदा support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,कमतरता Qty -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,आयटम जिच्यामध्ये variant {0} समान गुणधर्म अस्तित्वात +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,आयटम जिच्यामध्ये variant {0} समान गुणधर्म अस्तित्वात DocType: Salary Slip,Salary Slip,पगाराच्या स्लिप्स apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,'तारीख' आवश्यक आहे DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","संकुल वितरित करण्यासाठी स्लिप पॅकिंग व्युत्पन्न. पॅकेज संख्या, संकुल सामुग्री आणि त्याचे वजन सूचित करण्यासाठी वापरले जाते." @@ -3146,7 +3155,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,पह DocType: Item Attribute Value,Attribute Value,मूल्य विशेषता apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","ईमेल आयडी आधीच अस्तित्वात नाही, अद्वितीय असणे आवश्यक आहे {0}" ,Itemwise Recommended Reorder Level,Itemwise पुनर्क्रमित स्तर शिफारस -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,प्रथम {0} निवडा कृपया +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,प्रथम {0} निवडा कृपया DocType: Features Setup,To get Item Group in details table,तपशील तक्ता मध्ये आयटम गट प्राप्त करण्यासाठी apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,आयटम बॅच {0} {1} कालबाह्य झाले आहे. DocType: Sales Invoice,Commission,आयोग @@ -3190,7 +3199,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,थकबाकी कूपन मिळवा DocType: Warranty Claim,Resolved By,करून निराकरण DocType: Appraisal,Start Date,प्रारंभ तारीख -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,एक काळ साठी पाने वाटप करा. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,एक काळ साठी पाने वाटप करा. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,चेक आणि ठेवी चुकीचा साफ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,सत्यापित करण्यासाठी येथे क्लिक करा apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,खाते {0}: आपण पालक खाते म्हणून स्वत: नियुक्त करू शकत नाही @@ -3210,7 +3219,7 @@ DocType: Employee,Educational Qualification,शैक्षणिक अर् DocType: Workstation,Operating Costs,खर्च DocType: Employee Leave Approver,Employee Leave Approver,कर्मचारी रजा मंजुरी apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} यशस्वीरित्या आमच्या वार्तापत्राचे यादीत समाविष्ट केले गेले आहे. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},रो {0}: एक पुनर्क्रमित अगोदरपासून या कोठार विद्यमान {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},रो {0}: एक पुनर्क्रमित अगोदरपासून या कोठार विद्यमान {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","कोटेशन केले आहे कारण, म्हणून गमवलेले जाहीर करू शकत नाही." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,खरेदी मास्टर व्यवस्थापक apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,ऑर्डर {0} सादर करणे आवश्यक आहे उत्पादन @@ -3234,7 +3243,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,चलन {0} आधीच सादर केला गेला आहे विक्री apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,पूर्ण तारीख DocType: Purchase Invoice Item,Amount (Company Currency),रक्कम (कंपनी चलन) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,संस्था युनिट (विभाग) मास्टर. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,संस्था युनिट (विभाग) मास्टर. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,वैध मोबाईल क्र प्रविष्ट करा DocType: Budget Detail,Budget Detail,अर्थसंकल्प तपशील apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,पाठविण्यापूर्वी कृपया संदेश प्रविष्ट करा @@ -3250,13 +3259,13 @@ DocType: Purchase Receipt Item,Received and Accepted,प्राप्त झ ,Serial No Service Contract Expiry,सिरियल नाही सेवा करार कालावधी समाप्ती DocType: Item,Unit of Measure Conversion,माप रुपांतर युनिट apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,कर्मचारी बदलले जाऊ शकत नाही -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,आपण जमा आणि एकाच वेळी एकाच खाते डेबिट करू शकत नाही +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,आपण जमा आणि एकाच वेळी एकाच खाते डेबिट करू शकत नाही DocType: Naming Series,Help HTML,मदत HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},100% असावे नियुक्त एकूण वजन. ही सेवा विनामुल्य आहे {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},{0} आयटम साठी पार over- भत्ता {1} DocType: Address,Name of person or organization that this address belongs to.,या पत्त्यावर मालकीची व्यक्ती किंवा संस्थेच्या नाव. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,आपले पुरवठादार -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,विक्री आदेश केले आहे म्हणून गमावले म्हणून सेट करू शकत नाही. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,विक्री आदेश केले आहे म्हणून गमावले म्हणून सेट करू शकत नाही. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,आणखी तत्वे {0} कर्मचारी सक्रिय आहे {1}. त्याच्या 'चा दर्जा निष्क्रीय' पुढे जाण्यासाठी करा. DocType: Purchase Invoice,Contact,संपर्क apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,पासून प्राप्त @@ -3266,11 +3275,11 @@ DocType: Item,Has Serial No,सिरियल नाही आहे DocType: Employee,Date of Issue,समस्येच्या तारीख apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: पासून {0} साठी {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},रो # {0}: आयटम सेट करा पुरवठादार {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,आयटम {1} संलग्न वेबसाइट प्रतिमा {0} सापडू शकत नाही +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,आयटम {1} संलग्न वेबसाइट प्रतिमा {0} सापडू शकत नाही DocType: Issue,Content Type,सामग्री प्रकार apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,संगणक DocType: Item,List this Item in multiple groups on the website.,वेबसाइट अनेक गट या आयटम यादी. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,इतर चलन खाती परवानगी मल्टी चलन पर्याय तपासा +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,इतर चलन खाती परवानगी मल्टी चलन पर्याय तपासा apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,आयटम: {0} प्रणाली अस्तित्वात नाही apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,आपण गोठविलेल्या मूल्य सेट करण्यासाठी अधिकृत नाही DocType: Payment Reconciliation,Get Unreconciled Entries,Unreconciled नोंदी मिळवा @@ -3280,14 +3289,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,ती क DocType: Delivery Note,To Warehouse,गुदाम apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},खाते {0} आर्थिक वर्षात एकापेक्षा अधिक प्रविष्ट केले गेले आहे {1} ,Average Commission Rate,सरासरी आयोग दर -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'होय' असेल नॉन-स्टॉक आयटम शकत नाही 'सिरियल नाही आहे' +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'होय' असेल नॉन-स्टॉक आयटम शकत नाही 'सिरियल नाही आहे' apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,विधान परिषदेच्या भविष्यात तारखा करीता चिन्हाकृत केले जाऊ शकत नाही DocType: Pricing Rule,Pricing Rule Help,किंमत नियम मदत DocType: Purchase Taxes and Charges,Account Head,खाते प्रमुख apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,आयटम उतरले किंमत काढण्यासाठी अतिरिक्त खर्च अद्यतनित करा apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,इलेक्ट्रिकल DocType: Stock Entry,Total Value Difference (Out - In),एकूण मूल्य फरक (आउट - मध्ये) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,रो {0}: विनिमय दर अनिवार्य आहे +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,रो {0}: विनिमय दर अनिवार्य आहे apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},वापरकर्ता आयडी कर्मचारी साठी सेट न {0} DocType: Stock Entry,Default Source Warehouse,मुलभूत स्रोत कोठार DocType: Item,Customer Code,ग्राहक कोड @@ -3306,15 +3315,15 @@ DocType: Notification Control,Sales Invoice Message,विक्री चलन apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,खाते {0} बंद प्रकार दायित्व / इक्विटी असणे आवश्यक आहे DocType: Authorization Rule,Based On,आधारित DocType: Sales Order Item,Ordered Qty,आदेश दिले Qty -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,आयटम {0} अक्षम आहे +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,आयटम {0} अक्षम आहे DocType: Stock Settings,Stock Frozen Upto,शेअर फ्रोजन पर्यंत apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},पासून आणि कालावधी आवर्ती बंधनकारक तारखा करण्यासाठी कालावधी {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,प्रकल्प क्रियाकलाप / कार्य. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,पगार डाव सावरला व्युत्पन्न +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,पगार डाव सावरला व्युत्पन्न apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","पाञ म्हणून निवडले आहे, तर खरेदी, चेक करणे आवश्यक आहे {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,सवलत 100 पेक्षा कमी असणे आवश्यक आहे DocType: Purchase Invoice,Write Off Amount (Company Currency),रक्कम बंद लिहा (कंपनी चलन) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,रो # {0}: पुनर्क्रमित प्रमाणात सेट करा +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,रो # {0}: पुनर्क्रमित प्रमाणात सेट करा DocType: Landed Cost Voucher,Landed Cost Voucher,उतरले खर्च व्हाउचर apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},सेट करा {0} DocType: Purchase Invoice,Repeat on Day of Month,महिना दिवशी पुन्हा करा @@ -3366,7 +3375,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,प्रगती वखार मध्ये डीफॉल्ट कार्य apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,लेखा व्यवहार डीफॉल्ट सेटिंग्ज. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,अपेक्षित तारीख साहित्य विनंती तारीख आधी असू शकत नाही -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,आयटम {0} विक्री आयटम असणे आवश्यक आहे +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,आयटम {0} विक्री आयटम असणे आवश्यक आहे DocType: Naming Series,Update Series Number,अद्यतन मालिका क्रमांक DocType: Account,Equity,इक्विटी DocType: Sales Order,Printing Details,मुद्रण तपशील @@ -3418,7 +3427,7 @@ DocType: Task,Review Date,पुनरावलोकन तारीख DocType: Purchase Invoice,Advance Payments,आगाऊ पेमेंट DocType: Purchase Taxes and Charges,On Net Total,नेट एकूण रोजी apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,{0} सलग लक्ष्य कोठार उत्पादन आदेश सारखाच असणे आवश्यक आहे -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,कोणतीही परवानगी नाही भरणा साधन वापरण्यास +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,कोणतीही परवानगी नाही भरणा साधन वापरण्यास apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,% S च्या आवर्ती निर्देशीत नाही 'सूचना ईमेल पत्ते' apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,चलन काही इतर चलन वापरत नोंदी केल्यानंतर बदलले जाऊ शकत नाही DocType: Company,Round Off Account,खाते बंद फेरीत @@ -3441,7 +3450,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,आयटम प्रमाण कच्चा माल दिलेल्या प्रमाणात repacking / उत्पादन नंतर प्राप्त DocType: Payment Reconciliation,Receivable / Payable Account,प्राप्त / देय खाते DocType: Delivery Note Item,Against Sales Order Item,विक्री ऑर्डर आयटम विरुद्ध -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},विशेषतेसाठी मूल्य विशेषता निर्दिष्ट करा {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},विशेषतेसाठी मूल्य विशेषता निर्दिष्ट करा {0} DocType: Item,Default Warehouse,मुलभूत कोठार DocType: Task,Actual End Date (via Time Logs),वास्तविक समाप्ती तारीख (वेळ नोंदी द्वारे) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},अर्थसंकल्पात गट खाते विरुद्ध नियुक्त केली जाऊ शकत {0} @@ -3466,10 +3475,10 @@ DocType: Lead,Blog Subscriber,ब्लॉग ग्राहक apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,मूल्ये आधारित व्यवहार प्रतिबंधित नियम तयार करा. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","चेक केलेले असल्यास, एकूण नाही. कार्यरत दिवस सुटी समावेश असेल, आणि या पगार प्रति दिन मूल्य कमी होईल" DocType: Purchase Invoice,Total Advance,एकूण आगाऊ -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,प्रक्रिया वेतनपट +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,प्रक्रिया वेतनपट DocType: Opportunity Item,Basic Rate,बेसिक रेट DocType: GL Entry,Credit Amount,क्रेडिट रक्कम -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,हरवले म्हणून सेट करा +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,हरवले म्हणून सेट करा apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,भरणा पावती टीप DocType: Supplier,Credit Days Based On,क्रेडिट दिवस आधारित DocType: Tax Rule,Tax Rule,कर नियम @@ -3499,7 +3508,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,स्वीकृत प्र apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} नाही अस्तित्वात apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,ग्राहक असण्याचा बिले. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,प्रकल्प आयडी -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},रो नाही {0}: रक्कम खर्च दावा {1} विरुद्ध रक्कम प्रलंबित पेक्षा जास्त असू शकत नाही. प्रलंबित रक्कम आहे {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},रो नाही {0}: रक्कम खर्च दावा {1} विरुद्ध रक्कम प्रलंबित पेक्षा जास्त असू शकत नाही. प्रलंबित रक्कम आहे {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} ग्राहक जोडले DocType: Maintenance Schedule,Schedule,वेळापत्रक DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","हा खर्च केंद्र अर्थसंकल्पात परिभाषित. बजेट क्रिया सेट करण्यासाठी, पाहू "कंपनी यादी"" @@ -3560,19 +3569,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,पीओएस प्रोफाइल DocType: Payment Gateway Account,Payment URL Message,भरणा URL मध्ये संदेश apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","सेट अर्थसंकल्प, लक्ष्य इ हंगामी" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,रो {0}: भरणा रक्कम शिल्लक रक्कम पेक्षा जास्त असू शकत नाही +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,रो {0}: भरणा रक्कम शिल्लक रक्कम पेक्षा जास्त असू शकत नाही apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,न चुकता केल्यामुळे एकूण -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,वेळ लॉग बिल देण्यायोग्य नाही -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","{0} आयटम एक टेम्प्लेट आहे, त्याच्या रूपे कृपया एक निवडा" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,वेळ लॉग बिल देण्यायोग्य नाही +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","{0} आयटम एक टेम्प्लेट आहे, त्याच्या रूपे कृपया एक निवडा" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,ग्राहक apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,निव्वळ वेतन नकारात्मक असू शकत नाही -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,स्वतः विरुद्ध कूपन प्रविष्ट करा +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,स्वतः विरुद्ध कूपन प्रविष्ट करा DocType: SMS Settings,Static Parameters,स्थिर बाबी DocType: Purchase Order,Advance Paid,आगाऊ अदा DocType: Item,Item Tax,आयटम कर apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,पुरवठादार साहित्य apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,उत्पादन शुल्क चलन DocType: Expense Claim,Employees Email Id,कर्मचारी ई मेल आयडी +DocType: Employee Attendance Tool,Marked Attendance,चिन्हांकित उपस्थिती apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,वर्तमान दायित्व apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,वस्तुमान एसएमएस आपले संपर्क पाठवा DocType: Purchase Taxes and Charges,Consider Tax or Charge for,कर किंवा शुल्क विचार करा @@ -3595,7 +3605,7 @@ DocType: Item Attribute,Numeric Values,अंकीय मूल्यांन apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,लोगो संलग्न DocType: Customer,Commission Rate,आयोगाने दर apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,व्हेरियंट करा -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,विभागाने ब्लॉक रजा अनुप्रयोग. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,विभागाने ब्लॉक रजा अनुप्रयोग. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,कार्ट रिक्त आहे DocType: Production Order,Actual Operating Cost,वास्तविक ऑपरेटिंग खर्च apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,रूट संपादित केले जाऊ शकत नाही. @@ -3614,7 +3624,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,"प्रमाण या पातळी खाली पडले, तर स्वयंचलितपणे साहित्य विनंती तयार" ,Item-wise Purchase Register,आयटम निहाय खरेदी नोंदणी DocType: Batch,Expiry Date,कालावधी समाप्ती तारीख -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","पुनर्क्रमित पातळी सेट करण्यासाठी, आयटम खरेदी आयटम किंवा उत्पादन आयटम असणे आवश्यक आहे" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","पुनर्क्रमित पातळी सेट करण्यासाठी, आयटम खरेदी आयटम किंवा उत्पादन आयटम असणे आवश्यक आहे" ,Supplier Addresses and Contacts,पुरवठादार पत्ते आणि संपर्क apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,पहिल्या श्रेणी निवडा apps/erpnext/erpnext/config/projects.py +18,Project master.,प्रकल्प मास्टर. diff --git a/erpnext/translations/ms.csv b/erpnext/translations/ms.csv index 6b3f0a9bf6..6235452ec5 100644 --- a/erpnext/translations/ms.csv +++ b/erpnext/translations/ms.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,Kredit dalam Mata Wang DocType: Delivery Note,Installation Status,Pemasangan Status apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Qty Diterima + Ditolak mestilah sama dengan kuantiti yang Diterima untuk Perkara {0} DocType: Item,Supply Raw Materials for Purchase,Bahan mentah untuk bekalan Pembelian -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Perkara {0} mestilah Pembelian Item +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Perkara {0} mestilah Pembelian Item DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Muat Template, isikan data yang sesuai dan melampirkan fail yang diubah suai. Semua tarikh dan pekerja gabungan dalam tempoh yang dipilih akan datang dalam template, dengan rekod kehadiran yang sedia ada" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,Perkara {0} tidak aktif atau akhir hayat telah dicapai DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Akan dikemaskinikan selepas Invois Jualan dikemukakan. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Untuk memasukkan cukai berturut-turut {0} dalam kadar Perkara, cukai dalam baris {1} hendaklah juga disediakan" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Tetapan untuk HR Modul +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Untuk memasukkan cukai berturut-turut {0} dalam kadar Perkara, cukai dalam baris {1} hendaklah juga disediakan" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Tetapan untuk HR Modul DocType: SMS Center,SMS Center,SMS Center DocType: BOM Replace Tool,New BOM,New BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Batch Masa Log bil. @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,Pilih Terma dan Syarat DocType: Production Planning Tool,Sales Orders,Jualan Pesanan DocType: Purchase Taxes and Charges,Valuation,Penilaian ,Purchase Order Trends,Membeli Trend Pesanan -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Memperuntukkan daun bagi tahun ini. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Memperuntukkan daun bagi tahun ini. DocType: Earning Type,Earning Type,Jenis pendapatan DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Perancangan Kapasiti melumpuhkan dan Penjejakan Masa DocType: Bank Reconciliation,Bank Account,Akaun Bank @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Spesifikasi Item Laman Web DocType: Payment Tool,Reference No,Rujukan apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Tinggalkan Disekat -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Perkara {0} telah mencapai penghujungnya kehidupan di {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Perkara {0} telah mencapai penghujungnya kehidupan di {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Tahunan DocType: Stock Reconciliation Item,Stock Reconciliation Item,Saham Penyesuaian Perkara DocType: Stock Entry,Sales Invoice No,Jualan Invois No @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,Minimum Kuantiti Pesanan DocType: Pricing Rule,Supplier Type,Jenis Pembekal DocType: Item,Publish in Hub,Menyiarkan dalam Hab ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Perkara {0} dibatalkan +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Perkara {0} dibatalkan apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Permintaan bahan DocType: Bank Reconciliation,Update Clearance Date,Update Clearance Tarikh DocType: Item,Purchase Details,Butiran Pembelian @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Ditolak Kuantiti DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Bidang yang terdapat di Nota Penghantaran, Sebut Harga, Invois Jualan, Pesanan Jualan" DocType: SMS Settings,SMS Sender Name,SMS Sender Nama DocType: Contact,Is Primary Contact,Adalah Hubungi Rendah +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Masa Log telah batched untuk Billing DocType: Notification Control,Notification Control,Kawalan Pemberitahuan DocType: Lead,Suggestions,Cadangan DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Perkara Set Kumpulan segi belanjawan di Wilayah ini. Juga boleh bermusim dengan menetapkan Pengedaran. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},Sila masukkan kumpulan akaun induk untuk gudang {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Bayaran terhadap {0} {1} tidak boleh lebih besar daripada Outstanding Jumlah {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Bayaran terhadap {0} {1} tidak boleh lebih besar daripada Outstanding Jumlah {2} DocType: Supplier,Address HTML,Alamat HTML DocType: Lead,Mobile No.,No. Telefon DocType: Maintenance Schedule,Generate Schedule,Menjana Jadual @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Segerakkan Dengan Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Salah Kata Laluan DocType: Item,Variant Of,Varian Daripada -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Perkara {0} mesti Perkhidmatan Perkara apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',Siap Qty tidak boleh lebih besar daripada 'Kuantiti untuk Pengeluaran' DocType: Period Closing Voucher,Closing Account Head,Penutup Kepala Akaun DocType: Employee,External Work History,Luar Sejarah Kerja @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,Surat Berita DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Memberitahu melalui e-mel pada penciptaan Permintaan Bahan automatik DocType: Journal Entry,Multi Currency,Mata Multi DocType: Payment Reconciliation Invoice,Invoice Type,Jenis invois -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Penghantaran Nota +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Penghantaran Nota apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Menubuhkan Cukai apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,Entry pembayaran telah diubah suai selepas anda ditarik. Sila tarik lagi. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} dimasukkan dua kali dalam Cukai Perkara +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} dimasukkan dua kali dalam Cukai Perkara apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Ringkasan untuk minggu ini dan aktiviti-aktiviti yang belum selesai DocType: Workstation,Rent Cost,Kos sewa apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Sila pilih bulan dan tahun @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,Sah untuk Negara DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Semua bidang yang berkaitan import seperti mata wang, kadar penukaran, jumlah import, import dan lain-lain jumlah besar boleh didapati dalam Resit Pembelian, Sebutharga Pembekal, Invois Belian, Pesanan Belian dan lain-lain" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,Perkara ini adalah Template dan tidak boleh digunakan dalam urus niaga. Sifat-sifat perkara akan disalin ke atas ke dalam varian kecuali 'Tiada Salinan' ditetapkan apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Jumlah Pesanan Dianggap -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Jawatan Pekerja (contohnya Ketua Pegawai Eksekutif, Pengarah dan lain-lain)." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Jawatan Pekerja (contohnya Ketua Pegawai Eksekutif, Pengarah dan lain-lain)." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,Sila masukkan 'Ulangi pada hari Bulan' nilai bidang DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,Kadar di mana mata wang Pelanggan ditukar kepada mata wang asas pelanggan DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Terdapat dalam BOM, Menghantar Nota, Invois Belian, Pesanan Pengeluaran, Pesanan Belian, Resit Pembelian, Jualan Invois, Jualan Order, Saham Masuk, Timesheet" @@ -355,7 +355,7 @@ DocType: Workstation,Consumable Cost,Kos guna habis apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) mesti mempunyai peranan 'Pelulus Cuti' DocType: Purchase Receipt,Vehicle Date,Kenderaan Tarikh apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Perubatan -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Sebab bagi kehilangan +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Sebab bagi kehilangan apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Workstation ditutup pada tarikh-tarikh berikut seperti Senarai Holiday: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Peluang DocType: Employee,Single,Single @@ -383,14 +383,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Rakan Channel DocType: Account,Old Parent,Old Ibu Bapa DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,Menyesuaikan teks pengenalan yang berlaku sebagai sebahagian daripada e-mel itu. Setiap transaksi mempunyai teks pengenalan yang berasingan. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Jangan masukkan simbol (ex. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Master Sales Manager apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Tetapan global untuk semua proses pembuatan. DocType: Accounts Settings,Accounts Frozen Upto,Akaun-akaun Dibekukan Sehingga DocType: SMS Log,Sent On,Dihantar Pada -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Sifat {0} dipilih beberapa kali dalam Atribut Jadual +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Sifat {0} dipilih beberapa kali dalam Atribut Jadual DocType: HR Settings,Employee record is created using selected field. ,Rekod pekerja dicipta menggunakan bidang dipilih. DocType: Sales Order,Not Applicable,Tidak Berkenaan -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Master bercuti. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Master bercuti. DocType: Material Request Item,Required Date,Tarikh Diperlukan DocType: Delivery Note,Billing Address,Alamat Bil apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,Sila masukkan Kod Item. @@ -426,7 +427,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,Sila masukkan Gudang yang mana Bahan Permintaan akan dibangkitkan DocType: Production Order,Additional Operating Cost,Tambahan Kos Operasi apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Kosmetik -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Untuk bergabung, sifat berikut mestilah sama bagi kedua-dua perkara" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Untuk bergabung, sifat berikut mestilah sama bagi kedua-dua perkara" DocType: Shipping Rule,Net Weight,Berat Bersih DocType: Employee,Emergency Phone,Telefon Kecemasan ,Serial No Warranty Expiry,Serial Tiada Jaminan tamat @@ -481,17 +482,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Bil dan Status Penghantaran apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Ulang Pelanggan DocType: Leave Control Panel,Allocate,Memperuntukkan -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Jualan Pulangan +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Jualan Pulangan DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Pilih Pesanan Jualan yang anda ingin membuat Pesanan Pengeluaran. DocType: Item,Delivered by Supplier (Drop Ship),Dihantar oleh Pembekal (Drop Ship) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Komponen gaji. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Komponen gaji. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Pangkalan data pelanggan yang berpotensi. DocType: Authorization Rule,Customer or Item,Pelanggan atau Perkara apps/erpnext/erpnext/config/crm.py +17,Customer database.,Pangkalan data pelanggan. DocType: Quotation,Quotation To,Sebutharga Untuk DocType: Lead,Middle Income,Pendapatan Tengah apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Pembukaan (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Unit keingkaran Langkah untuk Perkara {0} tidak boleh diubah langsung kerana anda telah membuat beberapa transaksi (s) dengan UOM lain. Anda akan perlu untuk membuat item baru untuk menggunakan UOM Lalai yang berbeza. +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Unit keingkaran Langkah untuk Perkara {0} tidak boleh diubah langsung kerana anda telah membuat beberapa transaksi (s) dengan UOM lain. Anda akan perlu untuk membuat item baru untuk menggunakan UOM Lalai yang berbeza. apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Jumlah yang diperuntukkan tidak boleh negatif DocType: Purchase Order Item,Billed Amt,Billed AMT DocType: Warehouse,A logical Warehouse against which stock entries are made.,Satu Gudang maya di mana kemasukkan stok dibuat. @@ -510,14 +511,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Jualan Cukai dan Caj DocType: Employee,Organization Profile,Organisasi Profil apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,Sila setup penomboran siri untuk Kehadiran melalui Persediaan> Penomboran Siri DocType: Employee,Reason for Resignation,Sebab Peletakan jawatan -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Template bagi tujuan penilaian prestasi. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Template bagi tujuan penilaian prestasi. DocType: Payment Reconciliation,Invoice/Journal Entry Details,Invois / Journal Entry Details apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' tidak dalam Tahun Kewangan {2} DocType: Buying Settings,Settings for Buying Module,Tetapan untuk Membeli Modul apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,Sila masukkan Resit Pembelian pertama DocType: Buying Settings,Supplier Naming By,Pembekal Menamakan Dengan DocType: Activity Type,Default Costing Rate,Kadar Kos lalai -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Jadual Penyelenggaraan +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Jadual Penyelenggaraan apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Peraturan Kemudian Harga ditapis keluar berdasarkan Pelanggan, Kumpulan Pelanggan, Wilayah, Pembekal, Jenis Pembekal, Kempen, Rakan Jualan dan lain-lain" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Perubahan Bersih dalam Inventori DocType: Employee,Passport Number,Nombor Pasport @@ -556,7 +557,7 @@ DocType: Purchase Invoice,Quarterly,Suku Tahunan DocType: Selling Settings,Delivery Note Required,Penghantaran Nota Diperlukan DocType: Sales Order Item,Basic Rate (Company Currency),Kadar asas (Syarikat mata wang) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush Bahan Mentah Based On -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,Sila masukkan butiran item +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,Sila masukkan butiran item DocType: Purchase Receipt,Other Details,Butiran lain DocType: Account,Accounts,Akaun-akaun apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Pemasaran @@ -569,7 +570,7 @@ DocType: Employee,Provide email id registered in company,Menyediakan id e-mel ya DocType: Hub Settings,Seller City,Penjual City DocType: Email Digest,Next email will be sent on:,E-mel seterusnya akan dihantar pada: DocType: Offer Letter Term,Offer Letter Term,Menawarkan Surat Jangka -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Perkara mempunyai varian. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Perkara mempunyai varian. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Perkara {0} tidak dijumpai DocType: Bin,Stock Value,Nilai saham apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Tree Jenis @@ -577,7 +578,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Kuantiti Digunakan Seunit DocType: Serial No,Warranty Expiry Date,Waranti Tarikh Luput DocType: Material Request Item,Quantity and Warehouse,Kuantiti dan Gudang DocType: Sales Invoice,Commission Rate (%),Kadar komisen (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Terhadap Baucer Jenis mesti menjadi salah satu Perintah Jualan, Jualan Invois atau Journal Entry" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Terhadap Baucer Jenis mesti menjadi salah satu Perintah Jualan, Jualan Invois atau Journal Entry" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Aeroangkasa DocType: Journal Entry,Credit Card Entry,Entry Kad Kredit apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Petugas Subjek @@ -645,10 +646,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Liabiliti apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Amaun yang dibenarkan tidak boleh lebih besar daripada Tuntutan Jumlah dalam Row {0}. DocType: Company,Default Cost of Goods Sold Account,Kos Default Akaun Barangan Dijual -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Senarai Harga tidak dipilih +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Senarai Harga tidak dipilih DocType: Employee,Family Background,Latar Belakang Keluarga DocType: Process Payroll,Send Email,Hantar E-mel -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Amaran: Lampiran sah {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Amaran: Lampiran sah {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Tiada Kebenaran DocType: Company,Default Bank Account,Akaun Bank Default apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Untuk menapis berdasarkan Parti, pilih Parti Taipkan pertama" @@ -676,7 +677,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Perta DocType: Features Setup,"To enable ""Point of Sale"" features",Untuk membolehkan "Point of Sale" ciri-ciri DocType: Bin,Moving Average Rate,Bergerak Kadar Purata DocType: Production Planning Tool,Select Items,Pilih Item -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} terhadap Bil {1} bertarikh {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} terhadap Bil {1} bertarikh {2} DocType: Maintenance Visit,Completion Status,Siap Status DocType: Sales Invoice Item,Target Warehouse,Sasaran Gudang DocType: Item,Allow over delivery or receipt upto this percent,Membolehkan lebih penghantaran atau penerimaan hamper peratus ini @@ -736,7 +737,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Mata apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Tidak dapat mencari Slot Masa di akhirat {0} hari untuk Operasi {1} DocType: Production Order,Plan material for sub-assemblies,Bahan rancangan untuk sub-pemasangan apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} mesti aktif -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,Sila pilih jenis dokumen pertama +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Sila pilih jenis dokumen pertama apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Goto Troli apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Batal Bahan Lawatan {0} sebelum membatalkan Lawatan Penyelenggaraan ini DocType: Salary Slip,Leave Encashment Amount,Tinggalkan Penunaian Jumlah @@ -754,7 +755,7 @@ DocType: Purchase Receipt,Range,Pelbagai DocType: Supplier,Default Payable Accounts,Default Akaun Belum Bayar apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Pekerja {0} tidak aktif atau tidak wujud DocType: Features Setup,Item Barcode,Item Barcode -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Perkara Kelainan {0} dikemaskini +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Perkara Kelainan {0} dikemaskini DocType: Quality Inspection Reading,Reading 6,Membaca 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Membeli Advance Invois DocType: Address,Shop,Kedai @@ -777,7 +778,7 @@ DocType: Salary Slip,Total in words,Jumlah dalam perkataan DocType: Material Request Item,Lead Time Date,Lead Tarikh Masa apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,adalah wajib. Mungkin rekod pertukaran mata wang tidak dicipta untuk apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Row # {0}: Sila nyatakan Serial No untuk Perkara {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Untuk item 'Bundle Produk', Gudang, No Serial dan batch Tidak akan dipertimbangkan dari 'Packing List' meja. Jika Gudang dan Batch No adalah sama untuk semua barangan pembungkusan untuk item apa-apa 'Bundle Produk', nilai-nilai boleh dimasukkan dalam jadual Perkara utama, nilai akan disalin ke 'Packing List' meja." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Untuk item 'Bundle Produk', Gudang, No Serial dan batch Tidak akan dipertimbangkan dari 'Packing List' meja. Jika Gudang dan Batch No adalah sama untuk semua barangan pembungkusan untuk item apa-apa 'Bundle Produk', nilai-nilai boleh dimasukkan dalam jadual Perkara utama, nilai akan disalin ke 'Packing List' meja." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Penghantaran kepada pelanggan. DocType: Purchase Invoice Item,Purchase Order Item,Pesanan Pembelian Item apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Pendapatan tidak langsung @@ -798,6 +799,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Pilih Tahun Gaji dan Bula apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Pergi ke kumpulan yang sesuai (biasanya Permohonan Dana> Aset Semasa> Akaun Bank dan membuat Akaun baru (dengan klik pada Tambah Kanak-kanak) jenis "Bank" DocType: Workstation,Electricity Cost,Kos Elektrik DocType: HR Settings,Don't send Employee Birthday Reminders,Jangan hantar Pekerja Hari Lahir Peringatan +,Employee Holiday Attendance,Pekerja Holiday Kehadiran DocType: Opportunity,Walk In,Berjalan Dalam apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Penyertaan Saham DocType: Item,Inspection Criteria,Kriteria Pemeriksaan @@ -820,7 +822,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,P DocType: Journal Entry Account,Expense Claim,Perbelanjaan Tuntutan apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Qty untuk {0} DocType: Leave Application,Leave Application,Cuti Permohonan -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Tinggalkan Alat Peruntukan +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Tinggalkan Alat Peruntukan DocType: Leave Block List,Leave Block List Dates,Tinggalkan Tarikh Sekat Senarai DocType: Company,If Monthly Budget Exceeded (for expense account),Jika Anggaran Bulanan Melebihi (untuk akaun perbelanjaan) DocType: Workstation,Net Hour Rate,Kadar Hour bersih @@ -830,7 +832,7 @@ DocType: Packing Slip Item,Packing Slip Item,Pembungkusan Slip Perkara DocType: POS Profile,Cash/Bank Account,Akaun Tunai / Bank apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Barangan dikeluarkan dengan tiada perubahan dalam kuantiti atau nilai. DocType: Delivery Note,Delivery To,Penghantaran Untuk -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Jadual atribut adalah wajib +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Jadual atribut adalah wajib DocType: Production Planning Tool,Get Sales Orders,Dapatkan Perintah Jualan apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} tidak boleh negatif apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Diskaun @@ -894,7 +896,7 @@ DocType: SMS Center,Total Characters,Jumlah Watak apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},Sila pilih BOM dalam bidang BOM untuk Perkara {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,Detail C-Borang Invois DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Bayaran Penyesuaian Invois -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Sumbangan% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Sumbangan% DocType: Item,website page link,pautan halaman laman web DocType: Company,Company registration numbers for your reference. Tax numbers etc.,Nombor pendaftaran syarikat untuk rujukan anda. Nombor cukai dan lain-lain DocType: Sales Partner,Distributor,Pengedar @@ -936,10 +938,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,Faktor Penukaran UOM DocType: Stock Settings,Default Item Group,Default Perkara Kumpulan apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Pangkalan data pembekal. DocType: Account,Balance Sheet,Kunci Kira-kira -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Pusat Kos Bagi Item Kod Item ' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Pusat Kos Bagi Item Kod Item ' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,Orang jualan anda akan mendapat peringatan pada tarikh ini untuk menghubungi pelanggan apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Akaun lanjut boleh dibuat di bawah Kumpulan, tetapi penyertaan boleh dibuat terhadap bukan Kumpulan" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Cukai dan potongan gaji lain. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Cukai dan potongan gaji lain. DocType: Lead,Lead,Lead DocType: Email Digest,Payables,Pemiutang DocType: Account,Warehouse,Gudang @@ -956,10 +958,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Butiran Pembayaran DocType: Global Defaults,Current Fiscal Year,Fiskal Tahun Semasa DocType: Global Defaults,Disable Rounded Total,Melumpuhkan Bulat Jumlah DocType: Lead,Call,Panggilan -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'Penyertaan' tidak boleh kosong +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'Penyertaan' tidak boleh kosong apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Salinan barisan {0} dengan sama {1} ,Trial Balance,Imbangan Duga -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Menubuhkan Pekerja +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Menubuhkan Pekerja apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid """,Grid " apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,Sila pilih awalan pertama apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Penyelidikan @@ -968,7 +970,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,ID Pengguna apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Lihat Lejar apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Terawal -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Satu Kumpulan Item wujud dengan nama yang sama, sila tukar nama item atau menamakan semula kumpulan item" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Satu Kumpulan Item wujud dengan nama yang sama, sila tukar nama item atau menamakan semula kumpulan item" DocType: Production Order,Manufacture against Sales Order,Pengilangan terhadap Jualan Pesanan apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Rest Of The World apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,The Perkara {0} tidak boleh mempunyai Batch @@ -993,7 +995,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Gudang Ditolak DocType: GL Entry,Against Voucher,Terhadap Baucar DocType: Item,Default Buying Cost Center,Default Membeli Kos Pusat apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Untuk mendapatkan yang terbaik daripada ERPNext, kami menyarankan anda mengambil sedikit masa dan menonton video bantuan." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Perkara {0} mesti Item Jualan +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Perkara {0} mesti Item Jualan apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,kepada DocType: Item,Lead Time in days,Masa utama dalam hari ,Accounts Payable Summary,Ringkasan Akaun Boleh Dibayar @@ -1019,7 +1021,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Pertanian apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Produk atau Perkhidmatan anda DocType: Mode of Payment,Mode of Payment,Cara Pembayaran -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Laman web Image perlu fail awam atau URL laman web +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Laman web Image perlu fail awam atau URL laman web apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,Ini adalah kumpulan item akar dan tidak boleh diedit. DocType: Journal Entry Account,Purchase Order,Pesanan Pembelian DocType: Warehouse,Warehouse Contact Info,Gudang info @@ -1030,7 +1032,7 @@ DocType: Serial No,Serial No Details,Serial No Butiran DocType: Purchase Invoice Item,Item Tax Rate,Perkara Kadar Cukai apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","Untuk {0}, hanya akaun kredit boleh dikaitkan terhadap kemasukan debit lain" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Penghantaran Nota {0} tidak dikemukakan -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Perkara {0} mestilah Sub-kontrak Perkara +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Perkara {0} mestilah Sub-kontrak Perkara apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Peralatan Modal apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Peraturan harga mula-mula dipilih berdasarkan 'Guna Mengenai' bidang, yang boleh menjadi Perkara, Perkara Kumpulan atau Jenama." DocType: Hub Settings,Seller Website,Penjual Laman Web @@ -1039,7 +1041,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Matlamat DocType: Sales Invoice Item,Edit Description,Edit Penerangan apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Jangkaan Tarikh penghantaran adalah lebih rendah daripada yang dirancang Tarikh Mula. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,Untuk Pembekal +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,Untuk Pembekal DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Menetapkan Jenis Akaun membantu dalam memilih Akaun ini dalam urus niaga. DocType: Purchase Invoice,Grand Total (Company Currency),Jumlah Besar (Syarikat mata wang) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Jumlah Keluar @@ -1091,7 +1093,6 @@ DocType: Authorization Rule,Average Discount,Diskaun Purata DocType: Address,Utilities,Utiliti DocType: Purchase Invoice Item,Accounting,Perakaunan DocType: Features Setup,Features Setup,Ciri-ciri Persediaan -DocType: Item,Is Service Item,Adalah Perkhidmatan Perkara apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Tempoh permohonan tidak boleh cuti di luar tempoh peruntukan DocType: Activity Cost,Projects,Projek apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,Sila pilih Tahun Anggaran @@ -1112,7 +1113,7 @@ DocType: Item,Maintain Stock,Mengekalkan Stok apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Penyertaan Saham telah dicipta untuk Perintah Pengeluaran apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Perubahan Bersih dalam Aset Tetap DocType: Leave Control Panel,Leave blank if considered for all designations,Tinggalkan kosong jika dipertimbangkan untuk semua jawatan -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Penjaga jenis 'sebenar' di baris {0} tidak boleh dimasukkan dalam Kadar Perkara +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Penjaga jenis 'sebenar' di baris {0} tidak boleh dimasukkan dalam Kadar Perkara apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Dari datetime DocType: Email Digest,For Company,Bagi Syarikat @@ -1121,8 +1122,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Alamat Penghantaran Nama apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Carta Akaun DocType: Material Request,Terms and Conditions Content,Terma dan Syarat Kandungan -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,tidak boleh lebih besar daripada 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Perkara {0} bukan Item saham +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,tidak boleh lebih besar daripada 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Perkara {0} bukan Item saham DocType: Maintenance Visit,Unscheduled,Tidak Berjadual DocType: Employee,Owned,Milik DocType: Salary Slip Deduction,Depends on Leave Without Pay,Bergantung kepada Cuti Tanpa Gaji @@ -1143,7 +1144,7 @@ Used for Taxes and Charges",Cukai terperinci jadual diambil dari ruang induk seb apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Pekerja tidak boleh melaporkan kepada dirinya sendiri. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Jika akaun dibekukan, entri dibenarkan pengguna terhad." DocType: Email Digest,Bank Balance,Baki Bank -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Kemasukan Perakaunan untuk {0}: {1} hanya boleh dibuat dalam mata wang: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Kemasukan Perakaunan untuk {0}: {1} hanya boleh dibuat dalam mata wang: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Tiada Struktur Gaji aktif dijumpai untuk pekerja {0} dan bulan DocType: Job Opening,"Job profile, qualifications required etc.","Profil kerja, kelayakan yang diperlukan dan lain-lain" DocType: Journal Entry Account,Account Balance,Baki Akaun @@ -1160,7 +1161,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Dewan Sub DocType: Shipping Rule Condition,To Value,Untuk Nilai DocType: Supplier,Stock Manager,Pengurus saham apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Sumber gudang adalah wajib untuk berturut-turut {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Slip pembungkusan +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Slip pembungkusan apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Pejabat Disewa apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Tetapan gateway Persediaan SMS apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Import Gagal! @@ -1204,7 +1205,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,Detail BOM Tiada DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Jumlah Diskaun tambahan (Mata Wang Syarikat) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Ralat: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,Sila buat akaun baru dari carta akaun. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Penyelenggaraan Lawatan +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Penyelenggaraan Lawatan apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Pelanggan> Kumpulan Pelanggan> Wilayah DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Batch didapati Qty di Gudang DocType: Time Log Batch Detail,Time Log Batch Detail,Masa Log batch Detail @@ -1213,7 +1214,7 @@ DocType: Leave Block List,Block Holidays on important days.,Sekat Cuti pada hari ,Accounts Receivable Summary,Ringkasan Akaun Belum Terima apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,Sila tetapkan ID Pengguna medan dalam rekod Pekerja untuk menetapkan Peranan Pekerja DocType: UOM,UOM Name,Nama UOM -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Jumlah Sumbangan +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Jumlah Sumbangan DocType: Sales Invoice,Shipping Address,Alamat Penghantaran DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,Alat ini membantu anda untuk mengemas kini atau yang menetapkan kuantiti dan penilaian stok sistem. Ia biasanya digunakan untuk menyegerakkan nilai sistem dan apa yang benar-benar wujud di gudang anda. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,Dalam Perkataan akan dapat dilihat selepas anda menyimpan Nota Penghantaran. @@ -1254,7 +1255,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Untuk menjejaki item menggunakan kod bar. Anda akan dapat untuk memasuki perkara dalam Nota Penghantaran dan Jualan Invois dengan mengimbas kod bar barangan. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Hantar semula Pembayaran E-mel DocType: Dependent Task,Dependent Task,Petugas bergantung -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Faktor penukaran Unit keingkaran Langkah mesti 1 berturut-turut {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Faktor penukaran Unit keingkaran Langkah mesti 1 berturut-turut {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Cuti jenis {0} tidak boleh lebih panjang daripada {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Cuba merancang operasi untuk hari X terlebih dahulu. DocType: HR Settings,Stop Birthday Reminders,Stop Hari Lahir Peringatan @@ -1264,7 +1265,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Lihat apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Perubahan Bersih dalam Tunai DocType: Salary Structure Deduction,Salary Structure Deduction,Struktur Potongan Gaji -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Unit Langkah {0} telah memasuki lebih daripada sekali dalam Factor Penukaran Jadual +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Unit Langkah {0} telah memasuki lebih daripada sekali dalam Factor Penukaran Jadual apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Permintaan Bayaran sudah wujud {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Kos Item Dikeluarkan apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Kuantiti mestilah tidak lebih daripada {0} @@ -1293,7 +1294,7 @@ DocType: BOM Item,BOM Item,BOM Perkara DocType: Appraisal,For Employee,Untuk Pekerja apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Row {0}: Advance terhadap Pembekal hendaklah mendebitkan DocType: Company,Default Values,Nilai lalai -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Row {0}: Jumlah Pembayaran tidak boleh negatif +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Row {0}: Jumlah Pembayaran tidak boleh negatif DocType: Expense Claim,Total Amount Reimbursed,Jumlah dibayar balik apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Terhadap Pembekal Invois {0} bertarikh {1} DocType: Customer,Default Price List,Senarai Harga Default @@ -1321,8 +1322,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Jam DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Gantikan BOM tertentu dalam semua BOMs lain di mana ia digunakan. Ia akan menggantikan BOM pautan lama, mengemas kini kos dan menjana semula "BOM Letupan Perkara" jadual seperti BOM baru" DocType: Shopping Cart Settings,Enable Shopping Cart,Membolehkan Troli DocType: Employee,Permanent Address,Alamat Tetap -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Perkara {0} mestilah Perkara Perkhidmatan. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Advance dibayar terhadap {0} {1} tidak boleh lebih besar \ daripada Jumlah Besar {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Sila pilih kod item DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Mengurangkan Potongan bagi Cuti Tanpa Gaji (LWP) @@ -1378,12 +1378,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Utama apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Varian DocType: Naming Series,Set prefix for numbering series on your transactions,Terletak awalan untuk penomboran siri transaksi anda +DocType: Employee Attendance Tool,Employees HTML,pekerja HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Perintah berhenti tidak boleh dibatalkan. Unstop untuk membatalkan. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,BOM lalai ({0}) mesti aktif untuk item ini atau template yang +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,BOM lalai ({0}) mesti aktif untuk item ini atau template yang DocType: Employee,Leave Encashed?,Cuti ditunaikan? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Peluang Daripada bidang adalah wajib DocType: Item,Variants,Kelainan -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Buat Pesanan Belian +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Buat Pesanan Belian DocType: SMS Center,Send To,Hantar Kepada apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Tidak ada baki cuti yang cukup untuk Cuti Jenis {0} DocType: Payment Reconciliation Payment,Allocated amount,Jumlah yang diperuntukkan @@ -1483,7 +1484,7 @@ DocType: Sales Person,Name and Employee ID,Nama dan ID Pekerja apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,Tarikh Akhir tidak boleh sebelum Tarikh Pos DocType: Website Item Group,Website Item Group,Laman Web Perkara Kumpulan apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Tugas dan Cukai -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,Sila masukkan tarikh Rujukan +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,Sila masukkan tarikh Rujukan apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Akaun Gateway bayaran tidak dikonfigurasikan apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} entri bayaran tidak boleh ditapis oleh {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,Jadual untuk Perkara yang akan dipaparkan dalam Laman Web @@ -1504,7 +1505,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Resolusi Butiran DocType: Quality Inspection Reading,Acceptance Criteria,Kriteria Penerimaan DocType: Item Attribute,Attribute Name,Atribut Nama -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Perkara {0} mesti Jualan atau Perkhidmatan Item dalam {1} DocType: Item Group,Show In Website,Show Dalam Laman Web apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Kumpulan DocType: Task,Expected Time (in hours),Jangkaan Masa (dalam jam) @@ -1536,7 +1536,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Penghantaran Jumlah ,Pending Amount,Sementara menunggu Jumlah DocType: Purchase Invoice Item,Conversion Factor,Faktor penukaran DocType: Purchase Order,Delivered,Dihantar -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Persediaan pelayan masuk untuk id e-mel pekerjaan. (Contohnya jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Persediaan pelayan masuk untuk id e-mel pekerjaan. (Contohnya jobs@example.com) DocType: Purchase Receipt,Vehicle Number,Bilangan Kenderaan DocType: Purchase Invoice,The date on which recurring invoice will be stop,Tarikh di mana invois berulang akan berhenti apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Jumlah daun diperuntukkan {0} tidak boleh kurang daripada daun yang telah pun diluluskan {1} bagi tempoh @@ -1553,7 +1553,7 @@ DocType: HR Settings,HR Settings,Tetapan HR apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Perbelanjaan Tuntutan sedang menunggu kelulusan. Hanya Pelulus Perbelanjaan yang boleh mengemas kini status. DocType: Purchase Invoice,Additional Discount Amount,Jumlah Diskaun tambahan DocType: Leave Block List Allow,Leave Block List Allow,Tinggalkan Sekat Senarai Benarkan -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abbr tidak boleh kosong atau senggang +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abbr tidak boleh kosong atau senggang apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Kumpulan kepada Bukan Kumpulan apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Sukan apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Jumlah Sebenar @@ -1577,7 +1577,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},Faktor UOM Penukaran diperlukan berturut-turut {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Tarikh pelepasan tidak boleh sebelum tarikh cek berturut-turut {0} DocType: Salary Slip,Deduction,Potongan -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Perkara Harga ditambah untuk {0} dalam senarai harga {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Perkara Harga ditambah untuk {0} dalam senarai harga {1} DocType: Address Template,Address Template,Templat Alamat apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,Sila masukkan ID Pekerja orang jualan ini DocType: Territory,Classification of Customers by region,Pengelasan Pelanggan mengikut wilayah @@ -1594,7 +1594,7 @@ DocType: Employee,Date of Birth,Tarikh Lahir apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Perkara {0} telah kembali DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** Tahun Fiskal ** mewakili Tahun Kewangan. Semua kemasukan perakaunan dan transaksi utama yang lain dijejak terhadap Tahun Fiskal ** **. DocType: Opportunity,Customer / Lead Address,Pelanggan / Lead Alamat -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Amaran: Sijil SSL tidak sah pada lampiran {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Amaran: Sijil SSL tidak sah pada lampiran {0} DocType: Production Order Operation,Actual Operation Time,Masa Sebenar Operasi DocType: Authorization Rule,Applicable To (User),Terpakai Untuk (pengguna) DocType: Purchase Taxes and Charges,Deduct,Memotong @@ -1611,7 +1611,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Penghantaran Split Nota ke dalam pakej. apps/erpnext/erpnext/hooks.py +69,Shipments,Penghantaran DocType: Purchase Order Item,To be delivered to customer,Yang akan dihantar kepada pelanggan -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Masa Log Status mesti Dihantar. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Masa Log Status mesti Dihantar. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,No siri {0} bukan milik mana-mana Warehouse apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Row # DocType: Purchase Invoice,In Words (Company Currency),Dalam Perkataan (Syarikat mata wang) @@ -1628,7 +1628,7 @@ DocType: Leave Application,Total Leave Days,Jumlah Hari Cuti DocType: Email Digest,Note: Email will not be sent to disabled users,Nota: Email tidak akan dihantar kepada pengguna kurang upaya apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Pilih Syarikat ... DocType: Leave Control Panel,Leave blank if considered for all departments,Tinggalkan kosong jika dipertimbangkan untuk semua jabatan -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Jenis pekerjaan (tetap, kontrak, pelatih dan lain-lain)." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Jenis pekerjaan (tetap, kontrak, pelatih dan lain-lain)." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} adalah wajib bagi Perkara {1} DocType: Currency Exchange,From Currency,Dari Mata Wang apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Sila pilih Jumlah Diperuntukkan, Jenis Invois dan Nombor Invois dalam atleast satu baris" @@ -1647,7 +1647,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,Dalam Proses DocType: Authorization Rule,Itemwise Discount,Itemwise Diskaun DocType: Purchase Order Item,Reference Document Type,Rujukan Jenis Dokumen -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} terhadap Permintaan Jualan {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} terhadap Permintaan Jualan {1} DocType: Account,Fixed Asset,Aset Tetap apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Inventori bersiri DocType: Activity Type,Default Billing Rate,Kadar Bil lalai @@ -1657,7 +1657,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Perintah Jualan kepada Pembayaran DocType: Expense Claim Detail,Expense Claim Detail,Perbelanjaan Tuntutan Detail apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Masa Log dicipta: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,Sila pilih akaun yang betul +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,Sila pilih akaun yang betul DocType: Item,Weight UOM,Berat UOM DocType: Employee,Blood Group,Kumpulan Darah DocType: Purchase Invoice Item,Page Break,Page Break @@ -1692,7 +1692,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM rekursi: {0} tidak boleh menjadi ibu bapa atau kanak-kanak {2} DocType: Production Order Operation,Completed Qty,Siap Qty apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","Untuk {0}, akaun debit hanya boleh dikaitkan dengan kemasukan kredit lain" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Senarai Harga {0} adalah orang kurang upaya +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Senarai Harga {0} adalah orang kurang upaya DocType: Manufacturing Settings,Allow Overtime,Benarkan kerja lebih masa apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} nombor siri yang diperlukan untuk item {1}. Anda telah menyediakan {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Kadar Penilaian semasa @@ -1743,7 +1743,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},No P apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Perkara No. tidak boleh 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,Jika anda mempunyai Pasukan Jualan dan Jualan Partners (Channel Partners) mereka boleh ditandakan dan mengekalkan sumbangan mereka dalam aktiviti jualan DocType: Item,Show a slideshow at the top of the page,Menunjukkan tayangan slaid di bahagian atas halaman -DocType: Item,"Allow in Sales Order of type ""Service""",Benarkan dalam Sales Order dari jenis "Perkhidmatan" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Kedai DocType: Time Log,Projects Manager,Projek Pengurus DocType: Serial No,Delivery Time,Masa penghantaran @@ -1758,6 +1757,7 @@ DocType: Rename Tool,Rename Tool,Nama semula Tool apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Update Kos DocType: Item Reorder,Item Reorder,Perkara Reorder apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Pemindahan Bahan +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Perkara {0} perlu menjadi Item Sales dalam {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Nyatakan operasi, kos operasi dan memberikan Operasi unik tidak kepada operasi anda." DocType: Purchase Invoice,Price List Currency,Senarai Harga Mata Wang DocType: Naming Series,User must always select,Pengguna perlu sentiasa pilih @@ -1778,7 +1778,7 @@ DocType: Appraisal,Employee,Pekerja apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Import Dari E-mel apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Jemput sebagai pengguna DocType: Features Setup,After Sale Installations,Selepas Pemasangan Sale -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} telah dibil sepenuhnya +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} telah dibil sepenuhnya DocType: Workstation Working Hour,End Time,Akhir Masa apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Terma kontrak standard untuk Jualan atau Beli. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Kumpulan dengan Voucher @@ -1804,7 +1804,7 @@ DocType: Upload Attendance,Attendance To Date,Kehadiran Untuk Tarikh apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Persediaan pelayan masuk untuk id e-mel jualan. (Contohnya sales@example.com) DocType: Warranty Claim,Raised By,Dibangkitkan Oleh DocType: Payment Gateway Account,Payment Account,Akaun Pembayaran -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,Sila nyatakan Syarikat untuk meneruskan +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,Sila nyatakan Syarikat untuk meneruskan apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Perubahan Bersih dalam Akaun Belum Terima apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Pampasan Off DocType: Quality Inspection Reading,Accepted,Diterima @@ -1816,14 +1816,14 @@ DocType: Shipping Rule,Shipping Rule Label,Peraturan Penghantaran Label apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Bahan mentah tidak boleh kosong. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Tidak dapat kemas kini saham, invois mengandungi drop item penghantaran." DocType: Newsletter,Test,Ujian -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Oleh kerana terdapat transaksi saham sedia ada untuk item ini, \ anda tidak boleh menukar nilai-nilai 'Belum Bersiri', 'Mempunyai batch Tidak', 'Apakah Saham Perkara' dan 'Kaedah Penilaian'" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Pantas Journal Kemasukan apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,Anda tidak boleh mengubah kadar jika BOM disebut agianst sebarang perkara DocType: Employee,Previous Work Experience,Pengalaman Kerja Sebelumnya DocType: Stock Entry,For Quantity,Untuk Kuantiti apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},Sila masukkan Dirancang Kuantiti untuk Perkara {0} di barisan {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} tidak diserahkan +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} tidak diserahkan apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Permintaan untuk barang-barang. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Perintah pengeluaran berasingan akan diwujudkan bagi setiap item siap baik. DocType: Purchase Invoice,Terms and Conditions1,Terma dan Conditions1 @@ -1848,6 +1848,7 @@ DocType: Notification Control,Expense Claim Approved Message,Mesej perbelanjaan DocType: Email Digest,How frequently?,Berapa kerap? DocType: Purchase Receipt,Get Current Stock,Dapatkan Saham Semasa apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Tree Rang Undang-Undang Bahan +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Mark Hadir apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Tarikh mula penyelenggaraan tidak boleh sebelum tarikh penghantaran untuk No Serial {0} DocType: Production Order,Actual End Date,Tarikh Akhir Sebenar DocType: Authorization Rule,Applicable To (Role),Terpakai Untuk (Peranan) @@ -1862,7 +1863,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Kontrak Tarikh Akhir mesti lebih besar daripada Tarikh Menyertai DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,Seorang pengedar pihak ketiga / peniaga / ejen / kenalan / penjual semula yang menjual produk syarikat untuk komisen. DocType: Customer Group,Has Child Node,Kanak-kanak mempunyai Nod -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} terhadap Permintaan Pembelian {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} terhadap Permintaan Pembelian {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Masukkan parameter url statik di sini (Eg. Penghantar = ERPNext, nama pengguna = ERPNext, kata laluan = 1234 dan lain-lain)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} tidak dalam mana-mana Tahun Fiskal aktif. Untuk maklumat lanjut daftar {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Ini adalah laman contoh automatik dihasilkan daripada ERPNext @@ -1890,7 +1891,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Add or Deduct: Whether you want to add or deduct the tax.","Template cukai standard yang boleh diguna pakai untuk semua Transaksi Pembelian. Templat ini boleh mengandungi senarai kepala cukai dan juga kepala perbelanjaan lain seperti "Penghantaran", "Insurans", "Pengendalian" dan lain-lain #### Nota Kadar cukai anda tentukan di sini akan menjadi kadar cukai standard untuk semua ** Item * *. Jika terdapat Item ** ** yang mempunyai kadar yang berbeza, mereka perlu ditambah dalam ** Item Cukai ** meja dalam ** ** Item induk. #### Keterangan Kolum 1. Pengiraan Jenis: - Ini boleh menjadi pada ** ** Jumlah bersih (iaitu jumlah jumlah asas). - ** Pada Row Sebelumnya Jumlah / Jumlah ** (untuk cukai atau caj terkumpul). Jika anda memilih pilihan ini, cukai yang akan digunakan sebagai peratusan daripada baris sebelumnya (dalam jadual cukai) amaun atau jumlah. - ** ** Sebenar (seperti yang dinyatakan). 2. Ketua Akaun: The lejar Akaun di mana cukai ini akan ditempah 3. Kos Center: Jika cukai / caj adalah pendapatan (seperti penghantaran) atau perbelanjaan perlu ditempah terhadap PTJ. 4. Keterangan: Keterangan cukai (yang akan dicetak dalam invois / sebut harga). 5. Kadar: Kadar Cukai. 6. Jumlah: Jumlah Cukai. 7. Jumlah: Jumlah terkumpul sehingga hal ini. 8. Masukkan Row: Jika berdasarkan "Row Sebelumnya Jumlah" anda boleh pilih nombor barisan yang akan diambil sebagai asas untuk pengiraan ini (default adalah berturut-turut sebelumnya). 9. Pertimbangkan Cukai atau Caj: Dalam bahagian ini, anda boleh menentukan jika cukai / caj adalah hanya untuk penilaian (bukan sebahagian daripada jumlah) atau hanya untuk jumlah (tidak menambah nilai kepada item) atau kedua-duanya. 10. Tambah atau Tolak: Adakah anda ingin menambah atau memotong cukai." DocType: Purchase Receipt Item,Recd Quantity,Recd Kuantiti apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Tidak boleh menghasilkan Perkara lebih {0} daripada kuantiti Sales Order {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Saham Entry {0} tidak dikemukakan +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Saham Entry {0} tidak dikemukakan DocType: Payment Reconciliation,Bank / Cash Account,Akaun Bank / Tunai DocType: Tax Rule,Billing City,Bandar Bil DocType: Global Defaults,Hide Currency Symbol,Menyembunyikan Simbol mata wang @@ -1916,7 +1917,7 @@ DocType: Salary Structure,Total Earning,Jumlah Pendapatan DocType: Purchase Receipt,Time at which materials were received,Masa di mana bahan-bahan yang telah diterima apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Alamat saya DocType: Stock Ledger Entry,Outgoing Rate,Kadar keluar -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Master cawangan organisasi. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Master cawangan organisasi. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,atau DocType: Sales Order,Billing Status,Bil Status apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Perbelanjaan utiliti @@ -1954,7 +1955,7 @@ DocType: Bin,Reserved Quantity,Cipta Terpelihara Kuantiti DocType: Landed Cost Voucher,Purchase Receipt Items,Item Resit Pembelian apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Borang menyesuaikan DocType: Account,Income Account,Akaun Pendapatan -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Penghantaran +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Penghantaran DocType: Stock Reconciliation Item,Current Qty,Kuantiti semasa DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",Lihat "Kadar Bahan Based On" dalam Seksyen Kos DocType: Appraisal Goal,Key Responsibility Area,Kawasan Tanggungjawab Utama @@ -1966,8 +1967,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,Bau DocType: Notification Control,Purchase Order Message,Membeli Pesanan Mesej DocType: Tax Rule,Shipping Country,Penghantaran Negara DocType: Upload Attendance,Upload HTML,Naik HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})",Jumlah terlebih dahulu ({0}) terhadap Perintah {1} tidak boleh lebih besar \ daripada Jumlah Besar ({2}) DocType: Employee,Relieving Date,Melegakan Tarikh apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Peraturan Harga dibuat untuk menulis ganti Senarai Harga / menentukan peratusan diskaun, berdasarkan beberapa kriteria." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Gudang hanya boleh ditukar melalui Saham Entry / Penghantaran Nota / Resit Pembelian @@ -1977,8 +1976,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Cukai apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Jika Peraturan Harga dipilih dibuat untuk 'Harga', ia akan menulis ganti Senarai Harga. Harga Peraturan Harga adalah harga akhir, jadi tidak ada diskaun lagi boleh diguna pakai. Oleh itu, dalam urus niaga seperti Perintah Jualan, Pesanan Belian dan lain-lain, ia akan berjaya meraih jumlah dalam bidang 'Rate', daripada bidang 'Senarai Harga Rate'." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Track Leads mengikut Jenis Industri. DocType: Item Supplier,Item Supplier,Perkara Pembekal -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,Sila masukkan Kod Item untuk mendapatkan kumpulan tidak -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},Sila pilih nilai untuk {0} quotation_to {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,Sila masukkan Kod Item untuk mendapatkan kumpulan tidak +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},Sila pilih nilai untuk {0} quotation_to {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Semua Alamat. DocType: Company,Stock Settings,Tetapan saham apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Penggabungan hanya boleh dilakukan jika sifat berikut adalah sama dalam kedua-dua rekod. Adalah Kumpulan, Jenis Akar, Syarikat" @@ -2001,7 +2000,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Nombor Cek DocType: Payment Tool Detail,Payment Tool Detail,Alat pembayaran Detail ,Sales Browser,Jualan Pelayar DocType: Journal Entry,Total Credit,Jumlah Kredit -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Amaran: Satu lagi {0} # {1} wujud terhadap kemasukan saham {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Amaran: Satu lagi {0} # {1} wujud terhadap kemasukan saham {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Tempatan apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Pinjaman dan Pendahuluan (Aset) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Penghutang @@ -2021,8 +2020,8 @@ DocType: Price List,Price List Master,Senarai Harga Master DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,Semua Transaksi Jualan boleh tagged terhadap pelbagai ** Jualan Orang ** supaya anda boleh menetapkan dan memantau sasaran. ,S.O. No.,PP No. DocType: Production Order Operation,Make Time Log,Buat Masa Log -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Sila menetapkan kuantiti pesanan semula -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},Sila buat Pelanggan dari Lead {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Sila menetapkan kuantiti pesanan semula +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},Sila buat Pelanggan dari Lead {0} DocType: Price List,Applicable for Countries,Digunakan untuk Negara apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Komputer apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,Ini adalah kumpulan pelanggan akar dan tidak boleh diedit. @@ -2058,7 +2057,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Bil (J DocType: Payment Reconciliation Invoice,Outstanding Amount,Jumlah yang tertunggak DocType: Project Task,Working,Kerja DocType: Stock Ledger Entry,Stock Queue (FIFO),Saham Queue (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Sila pilih Time Log. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Sila pilih Time Log. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} bukan milik Syarikat {1} DocType: Account,Round Off,Bundarkan ,Requested Qty,Diminta Qty @@ -2096,7 +2095,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Dapatkan Entri Berkaitan apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Catatan Perakaunan untuk Stok DocType: Sales Invoice,Sales Team1,Team1 Jualan -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Perkara {0} tidak wujud +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Perkara {0} tidak wujud DocType: Sales Invoice,Customer Address,Alamat Pelanggan DocType: Payment Request,Recipient and Message,Penerima dan Mesej DocType: Purchase Invoice,Apply Additional Discount On,Memohon Diskaun tambahan On @@ -2115,7 +2114,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Senyapkan E-mel apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Makanan, Minuman & Tembakau" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL atau BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Hanya boleh membuat pembayaran terhadap belum dibilkan {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Hanya boleh membuat pembayaran terhadap belum dibilkan {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Kadar Suruhanjaya tidak boleh lebih besar daripada 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Tahap Inventori Minimum DocType: Stock Entry,Subcontract,Subkontrak @@ -2133,9 +2132,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Perisian apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Warna DocType: Maintenance Visit,Scheduled,Berjadual apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle",Sila pilih Item mana "Apakah Saham Perkara" adalah "Tidak" dan "Adakah Item Jualan" adalah "Ya" dan tidak ada Bundle Produk lain +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Pendahuluan ({0}) terhadap Perintah {1} tidak boleh lebih besar daripada Jumlah Besar ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Pilih Pengagihan Bulanan untuk tidak sekata mengedarkan sasaran seluruh bulan. DocType: Purchase Invoice Item,Valuation Rate,Kadar penilaian -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Senarai harga mata wang tidak dipilih +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Senarai harga mata wang tidak dipilih apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,Perkara Row {0}: Resit Pembelian {1} tidak wujud dalam jadual 'Pembelian Resit' di atas apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Pekerja {0} telah memohon untuk {1} antara {2} dan {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Projek Tarikh Mula @@ -2147,6 +2147,7 @@ DocType: Quality Inspection,Inspection Type,Jenis Pemeriksaan apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},Sila pilih {0} DocType: C-Form,C-Form No,C-Borang No DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,Kehadiran yang dinyahtandakan apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Penyelidik apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,Sila simpan Newsletter sebelum menghantar apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Nama atau E-mel adalah wajib @@ -2172,7 +2173,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Disahka DocType: Payment Gateway,Gateway,Gateway apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Pembekal> Jenis Pembekal apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Sila masukkan tarikh melegakan. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,AMT +apps/erpnext/erpnext/controllers/trends.py +138,Amt,AMT apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,Hanya Tinggalkan Permohonan dengan status 'diluluskan' boleh dikemukakan apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Alamat Tajuk adalah wajib. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,Masukkan nama kempen jika sumber siasatan adalah kempen @@ -2187,10 +2188,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Gudang Diterima DocType: Bank Reconciliation Detail,Posting Date,Penempatan Tarikh DocType: Item,Valuation Method,Kaedah Penilaian apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Tidak dapat mencari kadar pertukaran untuk {0} kepada {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Mark Day Half DocType: Sales Invoice,Sales Team,Pasukan Jualan apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Entri pendua DocType: Serial No,Under Warranty,Di bawah Waranti -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Ralat] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Ralat] DocType: Sales Order,In Words will be visible once you save the Sales Order.,Dalam Perkataan akan dapat dilihat selepas anda menyimpan Perintah Jualan. ,Employee Birthday,Pekerja Hari Lahir apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Modal Teroka @@ -2213,6 +2215,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,PTJ dengan urus niaga yang sedia ada tidak boleh ditukar kepada kumpulan DocType: Account,Depreciation,Susutnilai apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Pembekal (s) +DocType: Employee Attendance Tool,Employee Attendance Tool,Pekerja Tool Kehadiran DocType: Supplier,Credit Limit,Had Kredit apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Pilih jenis transaksi DocType: GL Entry,Voucher No,Baucer Tiada @@ -2239,7 +2242,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Akaun akar tidak boleh dihapuskan ,Is Primary Address,Adakah Alamat Utama DocType: Production Order,Work-in-Progress Warehouse,Kerja dalam Kemajuan Gudang -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Rujukan # {0} bertarikh {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Rujukan # {0} bertarikh {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Mengurus Alamat DocType: Pricing Rule,Item Code,Kod Item DocType: Production Planning Tool,Create Production Orders,Buat Pesanan Pengeluaran @@ -2266,7 +2269,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Penyesuaian Bank apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Dapatkan Maklumat Terbaru apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Permintaan bahan {0} dibatalkan atau dihentikan apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Tambah rekod sampel beberapa -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Tinggalkan Pengurusan +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Tinggalkan Pengurusan apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Kumpulan dengan Akaun DocType: Sales Order,Fully Delivered,Dihantar sepenuhnya DocType: Lead,Lower Income,Pendapatan yang lebih rendah @@ -2281,6 +2284,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','Dari Tarikh' mesti selepas 'Sehingga' ,Stock Projected Qty,Saham Unjuran Qty apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Pelanggan {0} bukan milik projek {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Kehadiran ketara HTML DocType: Sales Order,Customer's Purchase Order,Pesanan Pelanggan DocType: Warranty Claim,From Company,Daripada Syarikat apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Nilai atau Qty @@ -2345,6 +2349,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Wire Transfer apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,Sila pilih Akaun Bank DocType: Newsletter,Create and Send Newsletters,Buat dan Hantar Surat Berita +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Memeriksa semua DocType: Sales Order,Recurring Order,Pesanan berulang DocType: Company,Default Income Account,Akaun Pendapatan Default apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Kumpulan pelanggan / Pelanggan @@ -2376,6 +2381,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Kembali Terhadap Invoi DocType: Item,Warranty Period (in days),Tempoh jaminan (dalam hari) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Tunai bersih daripada Operasi apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,contohnya VAT +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Kehadiran Mark pekerja secara pukal apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Perkara 4 DocType: Journal Entry Account,Journal Entry Account,Akaun Entry jurnal DocType: Shopping Cart Settings,Quotation Series,Sebutharga Siri @@ -2520,14 +2526,14 @@ DocType: Task,Actual Start Date (via Time Logs),Tarikh Mula Sebenar (melalui Log DocType: Stock Reconciliation Item,Before reconciliation,Sebelum perdamaian apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Untuk {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Cukai dan Caj Ditambah (Syarikat mata wang) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Row Perkara Cukai {0} mesti mempunyai akaun Cukai jenis atau Pendapatan atau Perbelanjaan atau bercukai +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Row Perkara Cukai {0} mesti mempunyai akaun Cukai jenis atau Pendapatan atau Perbelanjaan atau bercukai DocType: Sales Order,Partly Billed,Sebahagiannya Membilkan DocType: Item,Default BOM,BOM Default apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,Sila taip semula nama syarikat untuk mengesahkan apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Jumlah Cemerlang AMT DocType: Time Log Batch,Total Hours,Jumlah Jam DocType: Journal Entry,Printing Settings,Tetapan Percetakan -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Jumlah Debit mesti sama dengan Jumlah Kredit. Perbezaannya ialah {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Jumlah Debit mesti sama dengan Jumlah Kredit. Perbezaannya ialah {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Automotif apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Dari Penghantaran Nota DocType: Time Log,From Time,Dari Masa @@ -2573,7 +2579,7 @@ DocType: Purchase Invoice Item,Image View,Lihat imej DocType: Issue,Opening Time,Masa Pembukaan apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,Dari dan kepada tarikh yang dikehendaki apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Sekuriti & Bursa Komoditi -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Unit keingkaran Langkah untuk Variant '{0}' hendaklah sama seperti dalam Template '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Unit keingkaran Langkah untuk Variant '{0}' hendaklah sama seperti dalam Template '{1}' DocType: Shipping Rule,Calculate Based On,Kira Based On DocType: Delivery Note Item,From Warehouse,Dari Gudang DocType: Purchase Taxes and Charges,Valuation and Total,Penilaian dan Jumlah @@ -2595,7 +2601,7 @@ DocType: Leave Application,Follow via Email,Ikut melalui E-mel DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Amaun Cukai Selepas Jumlah Diskaun apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Akaun kanak-kanak wujud untuk akaun ini. Anda tidak boleh memadam akaun ini. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Sama ada qty sasaran atau jumlah sasaran adalah wajib -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},Tidak lalai BOM wujud untuk Perkara {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},Tidak lalai BOM wujud untuk Perkara {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,Sila pilih Penempatan Tarikh pertama apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Tarikh pembukaan perlu sebelum Tarikh Tutup DocType: Leave Control Panel,Carry Forward,Carry Forward @@ -2672,7 +2678,7 @@ DocType: Leave Type,Is Encash,Adalah menunaikan DocType: Purchase Invoice,Mobile No,Tidak Bergerak DocType: Payment Tool,Make Journal Entry,Buat Journal Entry DocType: Leave Allocation,New Leaves Allocated,Daun baru Diperuntukkan -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Data projek-bijak tidak tersedia untuk Sebutharga +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Data projek-bijak tidak tersedia untuk Sebutharga DocType: Project,Expected End Date,Tarikh Jangkaan Tamat DocType: Appraisal Template,Appraisal Template Title,Penilaian Templat Tajuk apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Perdagangan @@ -2720,6 +2726,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,Re apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Sila nyatakan DocType: Offer Letter,Awaiting Response,Menunggu Response apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Di atas +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Masa Log telah Diiktiraf DocType: Salary Slip,Earning & Deduction,Pendapatan & Potongan apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Akaun {0} tidak boleh menjadi Kumpulan apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Pilihan. Tetapan ini akan digunakan untuk menapis dalam pelbagai transaksi. @@ -2790,14 +2797,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Berjaya memadam semua transaksi yang berkaitan dengan syarikat ini! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Seperti pada Tarikh apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Percubaan -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Gudang lalai adalah wajib bagi saham Perkara. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Gudang lalai adalah wajib bagi saham Perkara. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Pembayaran gaji untuk bulan {0} dan tahun {1} DocType: Stock Settings,Auto insert Price List rate if missing,Masukkan Auto Kadar Senarai Harga jika hilang apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Jumlah Amaun Dibayar ,Transferred Qty,Dipindahkan Qty apps/erpnext/erpnext/config/learn.py +11,Navigating,Melayari apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Perancangan -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Buat Masa Log Batch +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Buat Masa Log Batch apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Isu DocType: Project,Total Billing Amount (via Time Logs),Jumlah Bil (melalui Time Log) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Kami menjual Perkara ini @@ -2805,7 +2812,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Kuantiti harus lebih besar daripada 0 DocType: Journal Entry,Cash Entry,Entry Tunai DocType: Sales Partner,Contact Desc,Hubungi Deskripsi -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Jenis daun seperti biasa, sakit dan lain-lain" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Jenis daun seperti biasa, sakit dan lain-lain" DocType: Email Digest,Send regular summary reports via Email.,Hantar laporan ringkasan tetap melalui E-mel. DocType: Brand,Item Manager,Perkara Pengurus DocType: Cost Center,Add rows to set annual budgets on Accounts.,Tambah baris untuk menetapkan belanjawan tahunan pada Akaun. @@ -2820,7 +2827,7 @@ DocType: GL Entry,Party Type,Jenis Parti apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Bahan mentah tidak boleh sama dengan Perkara utama DocType: Item Attribute Value,Abbreviation,Singkatan apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Tidak authroized sejak {0} melebihi had -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Master template gaji. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Master template gaji. DocType: Leave Type,Max Days Leave Allowed,Max Hari Cuti dibenarkan apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Menetapkan Peraturan Cukai untuk troli membeli-belah DocType: Payment Tool,Set Matching Amounts,Tetapkan Jumlah Matching @@ -2833,7 +2840,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Petikan DocType: Stock Settings,Role Allowed to edit frozen stock,Peranan dibenarkan untuk mengedit saham beku ,Territory Target Variance Item Group-Wise,Wilayah Sasaran Varian Perkara Kumpulan Bijaksana apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Semua Kumpulan Pelanggan -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} adalah wajib. Mungkin rekod Pertukaran Matawang tidak dihasilkan untuk {1} hingga {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} adalah wajib. Mungkin rekod Pertukaran Matawang tidak dihasilkan untuk {1} hingga {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Template cukai adalah wajib. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Akaun {0}: akaun Induk {1} tidak wujud DocType: Purchase Invoice Item,Price List Rate (Company Currency),Senarai Harga Kadar (Syarikat mata wang) @@ -2853,8 +2860,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Perkara Bijaksana Cukai ,Item-wise Price List Rate,Senarai Harga Kadar Perkara-bijak apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Sebutharga Pembekal DocType: Quotation,In Words will be visible once you save the Quotation.,Dalam Perkataan akan dapat dilihat selepas anda menyimpan Sebut Harga tersebut. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} telah dihentikan -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Barcode {0} telah digunakan dalam Perkara {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} telah dihentikan +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Barcode {0} telah digunakan dalam Perkara {1} DocType: Lead,Add to calendar on this date,Tambah ke kalendar pada tarikh ini apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Peraturan untuk menambah kos penghantaran. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Acara akan datang @@ -2880,8 +2887,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,Ju apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Atleast satu gudang adalah wajib DocType: Serial No,Out of Warranty,Daripada Waranti DocType: BOM Replace Tool,Replace,Ganti -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} terhadap Invois Jualan {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Sila masukkan Unit keingkaran Langkah +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} terhadap Invois Jualan {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Sila masukkan Unit keingkaran Langkah DocType: Purchase Invoice Item,Project Name,Nama Projek DocType: Supplier,Mention if non-standard receivable account,Sebut jika akaun belum terima tidak standard DocType: Journal Entry Account,If Income or Expense,Jika Pendapatan atau Perbelanjaan @@ -2906,7 +2913,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Tahun fiskal: {0} tidak wujud DocType: Currency Exchange,To Currency,Untuk Mata Wang DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Membenarkan pengguna berikut untuk meluluskan Permohonan Cuti untuk hari blok. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Jenis-jenis Tuntutan Perbelanjaan. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Jenis-jenis Tuntutan Perbelanjaan. DocType: Item,Taxes,Cukai apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Dibayar dan Tidak Dihantar DocType: Project,Default Cost Center,Kos Pusat Default @@ -2936,7 +2943,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Row # {0}: No Siri {1} tidak sepadan dengan {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Cuti kasual DocType: Batch,Batch ID,ID Batch -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Nota: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Nota: {0} ,Delivery Note Trends,Trend Penghantaran Nota apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Ringkasan Minggu Ini apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} mesti benda yang Dibeli atau Sub-Kontrak di baris {1} @@ -2976,6 +2983,7 @@ DocType: Project Task,Pending Review,Sementara menunggu Review apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Klik di sini untuk membayar DocType: Task,Total Expense Claim (via Expense Claim),Jumlah Tuntutan Perbelanjaan (melalui Perbelanjaan Tuntutan) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Id Pelanggan +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Mark Tidak Hadir apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Untuk Masa mesti lebih besar daripada Dari Masa DocType: Journal Entry Account,Exchange Rate,Kadar pertukaran apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Sales Order {0} tidak dikemukakan @@ -3023,7 +3031,7 @@ DocType: Item Group,Default Expense Account,Akaun Perbelanjaan Default DocType: Employee,Notice (days),Notis (hari) DocType: Tax Rule,Sales Tax Template,Template Cukai Jualan DocType: Employee,Encashment Date,Penunaian Tarikh -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Terhadap Baucer Jenis mesti menjadi salah satu Pesanan Belian, Invois Belian atau Journal Entry" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Terhadap Baucer Jenis mesti menjadi salah satu Pesanan Belian, Invois Belian atau Journal Entry" DocType: Account,Stock Adjustment,Pelarasan saham apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Kos Aktiviti lalai wujud untuk Jenis Kegiatan - {0} DocType: Production Order,Planned Operating Cost,Dirancang Kos Operasi @@ -3077,6 +3085,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Tulis Off Entry DocType: BOM,Rate Of Materials Based On,Kadar Bahan Based On apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Analtyics Sokongan +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Nyahtanda semua apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Syarikat yang hilang dalam gudang {0} DocType: POS Profile,Terms and Conditions,Terma dan Syarat apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},Tarikh perlu berada dalam Tahun Fiskal. Dengan mengandaikan Untuk Tarikh = {0} @@ -3098,7 +3107,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Untuk menetapkan Tahun Fiskal ini sebagai lalai, klik pada 'Tetapkan sebagai lalai'" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Persediaan pelayan masuk untuk id e-mel sokongan. (Contohnya support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Kekurangan Qty -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Varian item {0} wujud dengan ciri yang sama +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Varian item {0} wujud dengan ciri yang sama DocType: Salary Slip,Salary Slip,Slip Gaji apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,'Tarikh Hingga' diperlukan DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Menjana slip pembungkusan untuk pakej yang akan dihantar. Digunakan untuk memberitahu jumlah pakej, kandungan pakej dan berat." @@ -3146,7 +3155,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Lihat L DocType: Item Attribute Value,Attribute Value,Atribut Nilai apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","Id e-mel mestilah unik, telah wujud untuk {0}" ,Itemwise Recommended Reorder Level,Itemwise lawatan Reorder Level -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,Sila pilih {0} pertama +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,Sila pilih {0} pertama DocType: Features Setup,To get Item Group in details table,Untuk mendapatkan Item Kumpulan dalam jadual butiran apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Batch {0} Item {1} telah tamat. DocType: Sales Invoice,Commission,Suruhanjaya @@ -3190,7 +3199,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Dapatkan Baucer Cemerlang DocType: Warranty Claim,Resolved By,Diselesaikan oleh DocType: Appraisal,Start Date,Tarikh Mula -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Memperuntukkan daun untuk suatu tempoh. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Memperuntukkan daun untuk suatu tempoh. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Cek dan Deposit tidak betul dibersihkan apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Klik di sini untuk mengesahkan apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Akaun {0}: Anda tidak boleh menetapkan ia sendiri sebagai akaun induk @@ -3210,7 +3219,7 @@ DocType: Employee,Educational Qualification,Kelayakan pendidikan DocType: Workstation,Operating Costs,Kos operasi DocType: Employee Leave Approver,Employee Leave Approver,Pekerja Cuti Pelulus apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} telah berjaya ditambah ke senarai surat berita kami. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Row {0}: Suatu catatan Reorder telah wujud untuk gudang ini {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Row {0}: Suatu catatan Reorder telah wujud untuk gudang ini {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Tidak boleh mengaku sebagai hilang, kerana Sebutharga telah dibuat." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Pembelian Master Pengurus apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Pengeluaran Pesanan {0} hendaklah dikemukakan @@ -3234,7 +3243,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Jualan Invois {0} telah diserahkan apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Tarikh Siap DocType: Purchase Invoice Item,Amount (Company Currency),Jumlah (Syarikat mata wang) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Unit organisasi (jabatan) induk. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Unit organisasi (jabatan) induk. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Sila masukkan nos bimbit sah DocType: Budget Detail,Budget Detail,Detail bajet apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,Sila masukkan mesej sebelum menghantar @@ -3250,13 +3259,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Diterima dan Diterima ,Serial No Service Contract Expiry,Serial No Kontrak Perkhidmatan tamat DocType: Item,Unit of Measure Conversion,Unit Langkah Penukaran apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Pekerja tidak boleh diubah -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Anda tidak boleh kredit dan debit akaun sama pada masa yang sama +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Anda tidak boleh kredit dan debit akaun sama pada masa yang sama DocType: Naming Series,Help HTML,Bantuan HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Jumlah wajaran yang diberikan harus 100%. Ia adalah {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Peruntukan berlebihan {0} terlintas untuk Perkara {1} DocType: Address,Name of person or organization that this address belongs to.,Nama orang atau organisasi yang alamat ini kepunyaan. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Pembekal anda -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,Tidak boleh ditetapkan sebagai Kalah sebagai Sales Order dibuat. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,Tidak boleh ditetapkan sebagai Kalah sebagai Sales Order dibuat. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,Satu lagi Struktur Gaji {0} aktif untuk pekerja {1}. Sila buat statusnya 'tidak aktif' untuk meneruskan. DocType: Purchase Invoice,Contact,Hubungi apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Pemberian @@ -3266,11 +3275,11 @@ DocType: Item,Has Serial No,Mempunyai No Siri DocType: Employee,Date of Issue,Tarikh Keluaran apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: Dari {0} untuk {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Row # {0}: Tetapkan Pembekal untuk item {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Laman web Image {0} melekat Perkara {1} tidak boleh didapati +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Laman web Image {0} melekat Perkara {1} tidak boleh didapati DocType: Issue,Content Type,Jenis kandungan apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Komputer DocType: Item,List this Item in multiple groups on the website.,Senarai Item ini dalam pelbagai kumpulan di laman web. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,Sila semak pilihan mata Multi untuk membolehkan akaun dengan mata wang lain +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,Sila semak pilihan mata Multi untuk membolehkan akaun dengan mata wang lain apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Perkara: {0} tidak wujud dalam sistem apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Anda tiada kebenaran untuk menetapkan nilai Beku DocType: Payment Reconciliation,Get Unreconciled Entries,Dapatkan belum disatukan Penyertaan @@ -3280,14 +3289,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Apa yang ia DocType: Delivery Note,To Warehouse,Untuk Gudang apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Akaun {0} telah memasuki lebih daripada sekali untuk tahun fiskal {1} ,Average Commission Rate,Purata Kadar Suruhanjaya -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'Punyai Nombor Siri' tidak boleh 'Ya' untuk benda bukan stok +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'Punyai Nombor Siri' tidak boleh 'Ya' untuk benda bukan stok apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Kehadiran tidak boleh ditandakan untuk masa hadapan DocType: Pricing Rule,Pricing Rule Help,Peraturan Harga Bantuan DocType: Purchase Taxes and Charges,Account Head,Kepala Akaun apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Kemas kini kos tambahan untuk mengira kos mendarat barangan apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Elektrik DocType: Stock Entry,Total Value Difference (Out - In),Jumlah Perbezaan Nilai (Out - Dalam) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Row {0}: Kadar Pertukaran adalah wajib +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Row {0}: Kadar Pertukaran adalah wajib apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},ID pengguna tidak ditetapkan untuk Pekerja {0} DocType: Stock Entry,Default Source Warehouse,Default Sumber Gudang DocType: Item,Customer Code,Kod Pelanggan @@ -3306,15 +3315,15 @@ DocType: Notification Control,Sales Invoice Message,Mesej Invois Jualan apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Penutupan Akaun {0} mestilah jenis Liabiliti / Ekuiti DocType: Authorization Rule,Based On,Berdasarkan DocType: Sales Order Item,Ordered Qty,Mengarahkan Qty -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Perkara {0} dilumpuhkan +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Perkara {0} dilumpuhkan DocType: Stock Settings,Stock Frozen Upto,Saham beku Upto apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Tempoh Dari dan Musim Ke tarikh wajib untuk berulang {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Aktiviti projek / tugasan. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Menjana Gaji Slip +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Menjana Gaji Slip apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Membeli hendaklah disemak, jika Terpakai Untuk dipilih sebagai {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Diskaun mesti kurang daripada 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Tulis Off Jumlah (Syarikat Mata Wang) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Row # {0}: Sila menetapkan kuantiti pesanan semula +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Row # {0}: Sila menetapkan kuantiti pesanan semula DocType: Landed Cost Voucher,Landed Cost Voucher,Baucer Kos mendarat apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},Sila set {0} DocType: Purchase Invoice,Repeat on Day of Month,Ulangi pada hari Bulan @@ -3366,7 +3375,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Kerja Lalai Dalam Kemajuan Warehouse apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Tetapan lalai untuk transaksi perakaunan. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Jangkaan Tarikh tidak boleh sebelum Bahan Permintaan Tarikh -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Perkara {0} mestilah Item Jualan +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Perkara {0} mestilah Item Jualan DocType: Naming Series,Update Series Number,Update Siri Nombor DocType: Account,Equity,Ekuiti DocType: Sales Order,Printing Details,Percetakan Butiran @@ -3418,7 +3427,7 @@ DocType: Task,Review Date,Tarikh Semakan DocType: Purchase Invoice,Advance Payments,Bayaran Pendahuluan DocType: Purchase Taxes and Charges,On Net Total,Di Net Jumlah apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Gudang sasaran berturut-turut {0} mestilah sama dengan Perintah Pengeluaran -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Tiada kebenaran untuk menggunakan Alat Pembayaran +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Tiada kebenaran untuk menggunakan Alat Pembayaran apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,'Alamat-alamat E-mel Makluman' tidak dinyatakan untuk %s yang berulang apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Mata wang tidak boleh diubah selepas membuat masukan menggunakan beberapa mata wang lain DocType: Company,Round Off Account,Bundarkan Akaun @@ -3441,7 +3450,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Kuantiti item diperolehi selepas pembuatan / pembungkusan semula daripada kuantiti diberi bahan mentah DocType: Payment Reconciliation,Receivable / Payable Account,Belum Terima / Akaun Belum Bayar DocType: Delivery Note Item,Against Sales Order Item,Terhadap Sales Order Item -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},Sila nyatakan Atribut Nilai untuk atribut {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},Sila nyatakan Atribut Nilai untuk atribut {0} DocType: Item,Default Warehouse,Gudang Default DocType: Task,Actual End Date (via Time Logs),Tarikh Tamat Sebenar (melalui Log Masa) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Bajet tidak boleh diberikan terhadap Akaun Kumpulan {0} @@ -3466,10 +3475,10 @@ DocType: Lead,Blog Subscriber,Blog Pelanggan apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Mewujudkan kaedah-kaedah untuk menyekat transaksi berdasarkan nilai-nilai. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Jika disemak, Jumlah no. Hari Kerja termasuk cuti, dan ini akan mengurangkan nilai Gaji Setiap Hari" DocType: Purchase Invoice,Total Advance,Jumlah Advance -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Pemprosesan Payroll +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Pemprosesan Payroll DocType: Opportunity Item,Basic Rate,Kadar asas DocType: GL Entry,Credit Amount,Jumlah Kredit -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Ditetapkan sebagai Hilang +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Ditetapkan sebagai Hilang apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Pembayaran Penerimaan Nota DocType: Supplier,Credit Days Based On,Hari Kredit Berasaskan DocType: Tax Rule,Tax Rule,Peraturan Cukai @@ -3499,7 +3508,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Kuantiti Diterima apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} tidak wujud apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Bil dinaikkan kepada Pelanggan. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Id Projek -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Row Tiada {0}: Jumlah tidak boleh lebih besar daripada Pending Jumlah Perbelanjaan terhadap Tuntutan {1}. Sementara menunggu Amaun adalah {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Row Tiada {0}: Jumlah tidak boleh lebih besar daripada Pending Jumlah Perbelanjaan terhadap Tuntutan {1}. Sementara menunggu Amaun adalah {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} pelanggan ditambah DocType: Maintenance Schedule,Schedule,Jadual DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Tentukan Bajet untuk PTJ ini. Untuk menetapkan tindakan bajet, lihat "Senarai Syarikat"" @@ -3560,19 +3569,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS Profil DocType: Payment Gateway Account,Payment URL Message,URL Pembayaran Mesej apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Bermusim untuk menetapkan belanjawan, sasaran dan lain-lain" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Row {0}: Jumlah Bayaran tidak boleh lebih besar daripada Jumlah Cemerlang +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Row {0}: Jumlah Bayaran tidak boleh lebih besar daripada Jumlah Cemerlang apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Jumlah yang tidak dibayar -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Masa Log tidak dapat ditaksir -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Perkara {0} adalah template, sila pilih salah satu daripada variannya" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Masa Log tidak dapat ditaksir +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Perkara {0} adalah template, sila pilih salah satu daripada variannya" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Pembeli apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Gaji bersih tidak boleh negatif -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Sila masukkan Terhadap Baucar secara manual +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Sila masukkan Terhadap Baucar secara manual DocType: SMS Settings,Static Parameters,Parameter statik DocType: Purchase Order,Advance Paid,Advance Dibayar DocType: Item,Item Tax,Perkara Cukai apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Bahan kepada Pembekal apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Cukai Invois DocType: Expense Claim,Employees Email Id,Id Pekerja E-mel +DocType: Employee Attendance Tool,Marked Attendance,Kehadiran ketara apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Liabiliti Semasa apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Hantar SMS massa ke kenalan anda DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Pertimbangkan Cukai atau Caj @@ -3595,7 +3605,7 @@ DocType: Item Attribute,Numeric Values,Nilai-nilai berangka apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Lampirkan Logo DocType: Customer,Commission Rate,Kadar komisen apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Membuat Varian -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Permohonan cuti blok oleh jabatan. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Permohonan cuti blok oleh jabatan. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Troli kosong DocType: Production Order,Actual Operating Cost,Kos Sebenar Operasi apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Akar tidak boleh diedit. @@ -3614,7 +3624,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,Mewujudkan Bahan Permintaan secara automatik jika kuantiti jatuh di bawah paras ini ,Item-wise Purchase Register,Perkara-bijak Pembelian Daftar DocType: Batch,Expiry Date,Tarikh Luput -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Untuk menetapkan tahap pesanan semula, item perlu menjadi Perkara Pembelian atau Manufacturing Perkara" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Untuk menetapkan tahap pesanan semula, item perlu menjadi Perkara Pembelian atau Manufacturing Perkara" ,Supplier Addresses and Contacts,Alamat Pembekal dan Kenalan apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,Sila pilih Kategori pertama apps/erpnext/erpnext/config/projects.py +18,Project master.,Induk projek. diff --git a/erpnext/translations/my.csv b/erpnext/translations/my.csv index 001040756e..659315a960 100644 --- a/erpnext/translations/my.csv +++ b/erpnext/translations/my.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,Company မှငွ DocType: Delivery Note,Installation Status,Installation လုပ်တဲ့နဲ့ Status apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},လက်ခံထားတဲ့ + Qty Item {0} သည်ရရှိထားသည့်အရေအတွက်နှင့်ညီမျှဖြစ်ရမည်ငြင်းပယ် DocType: Item,Supply Raw Materials for Purchase,ဝယ်ယူခြင်းအဘို့အ supply ကုန်ကြမ်း -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,item {0} တစ်ဦးဝယ်ယူ Item ဖြစ်ရမည် +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,item {0} တစ်ဦးဝယ်ယူ Item ဖြစ်ရမည် DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Template ကို Download, သင့်လျော်သောအချက်အလက်ဖြည့်စွက်ခြင်းနှင့်ပြုပြင်ထားသောဖိုင်ပူးတွဲ။ ရွေးချယ်ထားတဲ့ကာလအတွက်အားလုံးသည်ရက်စွဲများနှင့်ဝန်ထမ်းပေါင်းစပ်လက်ရှိတက်ရောက်သူမှတ်တမ်းများနှင့်တကွ, template မှာရောက်လိမ့်မည်" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,item {0} တက်ကြွသို့မဟုတ်အသက်၏အဆုံးသည်မဖြစ်သေးရောက်ရှိခဲ့သည် DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,အရောင်းပြေစာ Submitted ပြီးနောက် updated လိမ့်မည်။ -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","အခွန်ကိုထည့်သွင်းရန်အတန်းအတွက် {0} Item မှုနှုန်း, အတန်း {1} အတွက်အခွန်ကိုလည်းထည့်သွင်းရပါမည်" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,HR Module သည် Settings ကို +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","အခွန်ကိုထည့်သွင်းရန်အတန်းအတွက် {0} Item မှုနှုန်း, အတန်း {1} အတွက်အခွန်ကိုလည်းထည့်သွင်းရပါမည်" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,HR Module သည် Settings ကို DocType: SMS Center,SMS Center,SMS ကို Center က DocType: BOM Replace Tool,New BOM,နယူး BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,ငွေတောင်းခံသည် batch အချိန် Logs ။ @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,စည်းကမ်းသတ DocType: Production Planning Tool,Sales Orders,အရောင်းအမိန့် DocType: Purchase Taxes and Charges,Valuation,အဘိုးထားခြင်း ,Purchase Order Trends,အမိန့်ခေတ်ရေစီးကြောင်းဝယ်ယူ -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,ယခုနှစ်သည်အရွက်ခွဲဝေချထားပေးရန်။ +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,ယခုနှစ်သည်အရွက်ခွဲဝေချထားပေးရန်။ DocType: Earning Type,Earning Type,ဝင်ငွေကအမျိုးအစား DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,စွမ်းဆောင်ရည်မြှင့်စီမံကိန်းနှင့်အချိန်ခြေရာကောက်ကို disable DocType: Bank Reconciliation,Bank Account,ဘဏ်မှအကောင့် @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,item ဝက်ဘ်ဆိုက် Specification DocType: Payment Tool,Reference No,ကိုးကားစရာမရှိပါ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Leave Blocked -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},item {0} {1} အပေါ်အသက်၏အဆုံးရောက်ရှိခဲ့သည် +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},item {0} {1} အပေါ်အသက်၏အဆုံးရောက်ရှိခဲ့သည် apps/erpnext/erpnext/accounts/utils.py +341,Annual,နှစ်ပတ်လည် DocType: Stock Reconciliation Item,Stock Reconciliation Item,စတော့အိတ်ပြန်လည်ရင်ကြားစေ့ရေး Item DocType: Stock Entry,Sales Invoice No,အရောင်းပြေစာမရှိ @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,နိမ့်ဆုံးအမိန့် Qt DocType: Pricing Rule,Supplier Type,ပေးသွင်း Type DocType: Item,Publish in Hub,Hub အတွက်ထုတ်ဝေ ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,item {0} ဖျက်သိမ်းလိုက် +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,item {0} ဖျက်သိမ်းလိုက် apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,material တောင်းဆိုခြင်း DocType: Bank Reconciliation,Update Clearance Date,Update ကိုရှင်းလင်းရေးနေ့စွဲ DocType: Item,Purchase Details,အသေးစိတ်ဝယ်ယူ @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,ပယ်ချပမာဏ DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Delivery မှတ်ချက်, စျေးနှုန်း, အရောင်းပြေစာ, အရောင်းအမိန့်အတွက်ရရှိနိုင်သည့် field" DocType: SMS Settings,SMS Sender Name,SMS ကိုပေးပို့သူအမည် DocType: Contact,Is Primary Contact,မူလတန်းဆက်သွယ်ရန်ဖြစ်ပါသည် +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,အချိန် Log in ဝင်ရန်ငွေတောင်းခံလွှာများအတွက် Batched ခဲ့ DocType: Notification Control,Notification Control,အမိန့်ကြော်ငြာစာထိန်းချုပ်ရေး DocType: Lead,Suggestions,အကြံပြုချက်များ DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,ဒီနယ်မြေတွေကိုအပေါ် Item Group မှပညာဘတ်ဂျက် Set လုပ်ပါ။ ကိုလည်းသင်ဖြန့်ဖြူး setting ကြောင့်ရာသီပါဝင်နိုင်ပါသည်။ apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},ဂိုဒေါင် {0} သည်မိဘအကောင့်ကိုရိုက်ထည့်ပါအုပ်စုတစ်စု ကျေးဇူးပြု. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},{0} {1} ထူးချွန်ပမာဏ {2} ထက် သာ. ကြီးမြတ်မဖွစျနိုငျဆန့်ကျင်ငွေပေးချေမှုရမည့် +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},{0} {1} ထူးချွန်ပမာဏ {2} ထက် သာ. ကြီးမြတ်မဖွစျနိုငျဆန့်ကျင်ငွေပေးချေမှုရမည့် DocType: Supplier,Address HTML,လိပ်စာက HTML DocType: Lead,Mobile No.,မိုဘိုင်းလ်အမှတ် DocType: Maintenance Schedule,Generate Schedule,ဇယား Generate @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Hub နှင့်အတူ Sync လုပ်ထား apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,မှားယွင်းနေ Password ကို DocType: Item,Variant Of,အမျိုးမျိုးမူကွဲ -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,item {0} ဝန်ဆောင်မှု Item ဖြစ်ရမည် apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',ပြီးစီး Qty '' Qty ထုတ်လုပ်ခြင်းမှ '' ထက် သာ. ကြီးမြတ်မဖွစျနိုငျ DocType: Period Closing Voucher,Closing Account Head,နိဂုံးချုပ်အကောင့်ဌာနမှူး DocType: Employee,External Work History,ပြင်ပလုပ်ငန်းခွင်သမိုင်း @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,သတင်းလွှာ DocType: Stock Settings,Notify by Email on creation of automatic Material Request,အော်တိုပစ္စည်းတောင်းဆိုမှု၏ဖန်တီးမှုအပေါ်အီးမေးလ်ကိုအကြောင်းကြား DocType: Journal Entry,Multi Currency,multi ငွေကြေးစနစ် DocType: Payment Reconciliation Invoice,Invoice Type,ကုန်ပို့လွှာ Type -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Delivery မှတ်ချက် +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Delivery မှတ်ချက် apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,အခွန်ကိုတည်ဆောက်ခြင်း apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,သင်ကထွက်ခွာသွားပြီးနောက်ငွေပေးချေမှုရမည့် Entry modified သိရသည်။ တဖန်ဆွဲပေးပါ။ -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} Item ခွန်အတွက်နှစ်ကြိမ်သို့ဝင် +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} Item ခွန်အတွက်နှစ်ကြိမ်သို့ဝင် apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,ယခုရက်သတ္တပတ်များနှင့် Pend လှုပ်ရှားမှုများအကျဉ်းချုပ် DocType: Workstation,Rent Cost,ငှားရန်ကုန်ကျစရိတ် apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,လနှင့်တစ်နှစ်ကို select ကျေးဇူးပြု. @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,နိုင်ငံများအ DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","ငွေကြေး, ကူးပြောင်းနှုန်းသွင်းကုန်စုစုပေါင်းသွင်းကုန်ခမ်းနားစုစုပေါင်းစသည်တို့ကိုဝယ်ယူခြင်းပြေစာရရှိနိုင်ပါတယ်, ပေးသွင်းစျေးနှုန်း, ဝယ်ယူခြင်းပြေစာစသည်တို့ကိုဝယ်ယူခြင်းအမိန့်တူအားလုံးသည်သွင်းကုန်နှင့်ဆက်စပ်သောလယ်ကွက်" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,ဒါဟာ Item တစ်ခု Template နှင့်ငွေကြေးလွှဲပြောင်းမှုမှာအသုံးပြုမရနိုင်ပါ။ 'မ Copy ကူး' 'ကိုသတ်မှတ်ထားမဟုတ်လျှင် item ဂုဏ်တော်များကိုမျိုးကွဲသို့ကူးကူးယူလိမ့်မည် apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,စုစုပေါင်းအမိန့်သတ်မှတ် -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","ဝန်ထမ်းသတ်မှတ်ရေး (ဥပမာ CEO ဖြစ်သူ, ဒါရိုက်တာစသည်တို့) ။" +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","ဝန်ထမ်းသတ်မှတ်ရေး (ဥပမာ CEO ဖြစ်သူ, ဒါရိုက်တာစသည်တို့) ။" apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,လယ်ပြင်၌တန်ဖိုးကို '' Day ကို Month ရဲ့အပေါ် Repeat '' ကိုရိုက်ထည့်ပေးပါ DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,ဖောက်သည်ငွေကြေးဖောက်သည်ရဲ့အခြေစိုက်စခန်းငွေကြေးအဖြစ်ပြောင်းလဲသောအချိန်တွင် rate DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","BOM, Delivery မှတ်ချက်, ဝယ်ယူခြင်းပြေစာ, ထုတ်လုပ်မှုအမိန့်, ဝယ်ယူခြင်းအမိန့်, ဝယ်ယူ Receipt, အရောင်းပြေစာ, အရောင်းအမိန့်, စတော့အိတ် Entry, Timesheet အတွက်ရရှိနိုင်" @@ -355,7 +355,7 @@ DocType: Workstation,Consumable Cost,စားသုံးသူများက apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) အခန်းကဏ္ဍ '' ထွက်ခွာခွင့်ပြုချက် '' ရှိရမယ် DocType: Purchase Receipt,Vehicle Date,မော်တော်ယာဉ်နေ့စွဲ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,ဆေးဘက်ဆိုင်ရာ -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,ဆုံးရှုံးရသည့်အကြောင်းရင်း +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,ဆုံးရှုံးရသည့်အကြောင်းရင်း apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Workstation နှင့်အားလပ်ရက်များစာရင်းနှုန်းအဖြစ်အောက်ပါရက်စွဲများအပေါ်ပိတ်ထားသည်: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,အခွင့်အလမ်းများ DocType: Employee,Single,တခုတည်းသော @@ -383,14 +383,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,channel Partner DocType: Account,Old Parent,စာဟောငျးမိဘ DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,အီးမေးလ်ရဲ့တစ်စိတ်တစ်ပိုင်းအဖြစ်ဝင်သောနိဒါန်းစာသားစိတ်ကြိုက်ပြုလုပ်ပါ။ အသီးအသီးအရောင်းအဝယ်သီးခြားနိဒါန်းစာသားရှိပါတယ်။ +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),သင်္ကေတ (ဟောင်း။ $) မပါဝင်ပါနဲ့ DocType: Sales Taxes and Charges Template,Sales Master Manager,အရောင်းမဟာ Manager က apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,အားလုံးထုတ်လုပ်မှုလုပ်ငန်းစဉ်များသည်ကမ္ဘာလုံးဆိုင်ရာ setting ကို။ DocType: Accounts Settings,Accounts Frozen Upto,Frozen ထိအကောင့် DocType: SMS Log,Sent On,တွင် Sent -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,attribute {0} Attribute တွေကစားပွဲတင်အတွက်အကြိမ်ပေါင်းများစွာကိုရှေးခယျြ +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,attribute {0} Attribute တွေကစားပွဲတင်အတွက်အကြိမ်ပေါင်းများစွာကိုရှေးခယျြ DocType: HR Settings,Employee record is created using selected field. ,ဝန်ထမ်းစံချိန်ရွေးချယ်ထားသောလယ်ကို အသုံးပြု. နေသူများကဖန်တီး။ DocType: Sales Order,Not Applicable,မသက်ဆိုင်ပါ -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,အားလပ်ရက်မာစတာ။ +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,အားလပ်ရက်မာစတာ။ DocType: Material Request Item,Required Date,လိုအပ်သောနေ့စွဲ DocType: Delivery Note,Billing Address,ကျသင့်ငွေတောင်းခံလွှာပေးပို့မည့်လိပ်စာ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,Item Code ကိုရိုက်ထည့်ပေးပါ။ @@ -426,7 +427,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,ဂိုဒေါင်ပစ္စည်းတောင်းဆိုမှုမွောကျလိမျ့မညျအရာအဘို့အရိုက်ထည့်ပေးပါ DocType: Production Order,Additional Operating Cost,နောက်ထပ် Operating ကုန်ကျစရိတ် apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,အလှကုန် -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","ပေါင်းစည်းဖို့, အောက်ပါဂုဏ်သတ္တိနှစ်မျိုးလုံးပစ္စည်းများသည်အတူတူပင်ဖြစ်ရပါမည်" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","ပေါင်းစည်းဖို့, အောက်ပါဂုဏ်သတ္တိနှစ်မျိုးလုံးပစ္စည်းများသည်အတူတူပင်ဖြစ်ရပါမည်" DocType: Shipping Rule,Net Weight,အသားတင်အလေးချိန် DocType: Employee,Emergency Phone,အရေးပေါ်ဖုန်း ,Serial No Warranty Expiry,serial မရှိပါအာမခံသက်တမ်းကုန်ဆုံး @@ -481,17 +482,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,ငွေတောင်းခံနှင့်ပေးပို့ခြင်းနဲ့ Status apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,repeat Customer များ DocType: Leave Control Panel,Allocate,နေရာချထား -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,အရောင်းသို့ပြန်သွားသည် +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,အရောင်းသို့ပြန်သွားသည် DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,သင်ထုတ်လုပ်မှုအမိန့်ကိုဖန်တီးရန်လိုသည့်အနေဖြင့်အရောင်းအမိန့်ကိုရွေးချယ်ပါ။ DocType: Item,Delivered by Supplier (Drop Ship),ပေးသွင်း (Drop သင်္ဘော) ဖြင့်ကယ်လွှတ် -apps/erpnext/erpnext/config/hr.py +120,Salary components.,လစာအစိတ်အပိုင်းများ။ +apps/erpnext/erpnext/config/hr.py +128,Salary components.,လစာအစိတ်အပိုင်းများ။ apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,အလားအလာရှိသောဖောက်သည်၏ဒေတာဘေ့စ။ DocType: Authorization Rule,Customer or Item,customer သို့မဟုတ် Item apps/erpnext/erpnext/config/crm.py +17,Customer database.,customer ဒေတာဘေ့စ။ DocType: Quotation,Quotation To,စျေးနှုန်းရန် DocType: Lead,Middle Income,အလယျပိုငျးဝင်ငွေခွန် apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),ဖွင့်ပွဲ (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,သင်ပြီးသားကိုအခြား UOM နှင့်အတူအချို့သောအရောင်းအဝယ် (s) ကိုရာ၌ခန့်ထားပြီဖြစ်သောကြောင့်ပစ္စည်းအဘို့အတိုင်း၏ default အနေနဲ့ယူနစ် {0} ကိုတိုက်ရိုက်ပြောင်းလဲသွားမရနိုင်ပါ။ သင်တစ်ဦးကွဲပြားခြားနားသောပုံမှန် UOM သုံးစွဲဖို့အသစ်တစ်ခုပစ္စည်းကိုဖန်တီးရန်လိုအပ်ပါလိမ့်မည်။ +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,သင်ပြီးသားကိုအခြား UOM နှင့်အတူအချို့သောအရောင်းအဝယ် (s) ကိုရာ၌ခန့်ထားပြီဖြစ်သောကြောင့်ပစ္စည်းအဘို့အတိုင်း၏ default အနေနဲ့ယူနစ် {0} ကိုတိုက်ရိုက်ပြောင်းလဲသွားမရနိုင်ပါ။ သင်တစ်ဦးကွဲပြားခြားနားသောပုံမှန် UOM သုံးစွဲဖို့အသစ်တစ်ခုပစ္စည်းကိုဖန်တီးရန်လိုအပ်ပါလိမ့်မည်။ apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,ခွဲဝေငွေပမာဏအနုတ်လက္ခဏာမဖြစ်နိုင် DocType: Purchase Order Item,Billed Amt,Bill Amt DocType: Warehouse,A logical Warehouse against which stock entries are made.,စတော့ရှယ်ယာ entries တွေကိုဖန်ဆင်းထားတဲ့ဆန့်ကျင်နေတဲ့ယုတ္တိဂိုဒေါင်။ @@ -510,14 +511,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,အရောင်းအခွန DocType: Employee,Organization Profile,အစည်းအရုံးကိုယ်ရေးအချက်အလက်များ profile apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,ကျေးဇူးပြု. Setup ကို> နံပါတ်စီးရီးကနေတဆင့်တက်ရောက်သည် setup ကိုစာရငျးစီးရီး DocType: Employee,Reason for Resignation,ရာထူးမှနုတ်ထွက်ရသည့်အကြောင်းရင်း -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,စွမ်းဆောင်ရည်အကဲဖြတ်သုံးသပ်ဖို့သည် template ။ +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,စွမ်းဆောင်ရည်အကဲဖြတ်သုံးသပ်ဖို့သည် template ။ DocType: Payment Reconciliation,Invoice/Journal Entry Details,ကုန်ပို့လွှာ / ဂျာနယ် Entry 'အသေးစိတ်ကို apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} {1} '' မဘဏ္ဍာရေးနှစ်တစ်နှစ်တာ {2} အတွက် DocType: Buying Settings,Settings for Buying Module,ဝယ်ယူ Module သည် Settings ကို apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,ဝယ်ယူခြင်းပြေစာပထမဦးဆုံးရိုက်ထည့်ပေးပါ DocType: Buying Settings,Supplier Naming By,အားဖြင့်ပေးသွင်း Name DocType: Activity Type,Default Costing Rate,Default အနေနဲ့ကုန်ကျနှုန်း -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,ပြုပြင်ထိန်းသိမ်းမှုဇယား +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,ပြုပြင်ထိန်းသိမ်းမှုဇယား apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","ထိုအခါ Pricing နည်းဥပဒေများဖောက်သည်, ဖောက်သည်အုပ်စု, နယ်မြေတွေကို, ပေးသွင်း, ပေးသွင်းရေးထည့်ပြီးကင်ပိန်းစသည်တို့ကိုအရောင်း Partner အပေါ်အခြေခံပြီးထုတ် filtered နေကြတယ်" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Inventory ထဲမှာပိုက်ကွန်ကိုပြောင်းရန် DocType: Employee,Passport Number,နိုင်ငံကူးလက်မှတ်နံပါတ် @@ -556,7 +557,7 @@ DocType: Purchase Invoice,Quarterly,သုံးလတစ်ကြိမ် DocType: Selling Settings,Delivery Note Required,Delivery မှတ်ချက်လိုအပ်သော DocType: Sales Order Item,Basic Rate (Company Currency),အခြေခံပညာ Rate (ကုမ္ပဏီငွေကြေးစနစ်) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush ကုန်ကြမ်းပစ္စည်းများအခြေပြုတွင် -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,ဆောင်းပါးတပုဒ်ကအသေးစိတ်ရိုက်ထည့်ပေးပါ +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,ဆောင်းပါးတပုဒ်ကအသေးစိတ်ရိုက်ထည့်ပေးပါ DocType: Purchase Receipt,Other Details,အခြားအသေးစိတ် DocType: Account,Accounts,ငွေစာရင်း apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,marketing @@ -569,7 +570,7 @@ DocType: Employee,Provide email id registered in company,ကုမ္ပဏီ DocType: Hub Settings,Seller City,ရောင်းချသူစီးတီး DocType: Email Digest,Next email will be sent on:,Next ကိုအီးမေးလ်အပေါ်ကိုစလှေတျပါလိမ့်မည်: DocType: Offer Letter Term,Offer Letter Term,ပေးစာ Term ကိုပူဇော် -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,item မျိုးကွဲရှိပါတယ်။ +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,item မျိုးကွဲရှိပါတယ်။ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,item {0} မတွေ့ရှိ DocType: Bin,Stock Value,စတော့အိတ် Value တစ်ခု apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,သစ်ပင်ကို Type @@ -577,7 +578,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,တစ်ယူနစ်ကိ DocType: Serial No,Warranty Expiry Date,အာမခံသက်တမ်းကုန်ဆုံးသည့်ရက်စွဲ DocType: Material Request Item,Quantity and Warehouse,အရေအတွက်နှင့်ဂိုဒေါင် DocType: Sales Invoice,Commission Rate (%),ကော်မရှင် Rate (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","ဘောက်ချာ Type အရောင်းအမိန့်, အရောင်းပြေစာသို့မဟုတ်ဂျာနယ် Entry တယောက်ဖြစ်ရပါမည်ဆန့်ကျင်" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","ဘောက်ချာ Type အရောင်းအမိန့်, အရောင်းပြေစာသို့မဟုတ်ဂျာနယ် Entry တယောက်ဖြစ်ရပါမည်ဆန့်ကျင်" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Aerospace DocType: Journal Entry,Credit Card Entry,Credit Card ကို Entry ' apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Task Subject @@ -645,10 +646,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,တာဝန် apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,ပိတ်ဆို့ငွေပမာဏ Row {0} အတွက်တောင်းဆိုမှုများငွေပမာဏထက် သာ. ကြီးမြတ်မဖြစ်နိုင်။ DocType: Company,Default Cost of Goods Sold Account,ကုန်စည်၏ default ကုန်ကျစရိတ်အကောင့်ရောင်းချ -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,စျေးနှုန်း List ကိုမရွေးချယ် +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,စျေးနှုန်း List ကိုမရွေးချယ် DocType: Employee,Family Background,မိသားစုနောက်ခံသမိုင်း DocType: Process Payroll,Send Email,အီးမေးလ်ပို့ပါ -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},သတိပေးချက်: မမှန်ကန်ခြင်းနှောင်ကြိုး {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},သတိပေးချက်: မမှန်ကန်ခြင်းနှောင်ကြိုး {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,အဘယ်သူမျှမခွင့်ပြုချက် DocType: Company,Default Bank Account,default ဘဏ်မှအကောင့် apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first",ပါတီအပေါ်အခြေခံပြီး filter မှပထမဦးဆုံးပါတီ Type ကိုရွေးပါ @@ -676,7 +677,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,ဖ DocType: Features Setup,"To enable ""Point of Sale"" features","Point သို့ရောင်းရငွေ၏" features တွေ enable လုပ်ဖို့ DocType: Bin,Moving Average Rate,Moving ပျမ်းမျှနှုန်း DocType: Production Planning Tool,Select Items,ပစ္စည်းများကိုရွေးပါ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} ဘီလ် {1} ဆန့်ကျင် {2} ရက်စွဲပါ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} ဘီလ် {1} ဆန့်ကျင် {2} ရက်စွဲပါ DocType: Maintenance Visit,Completion Status,ပြီးစီးနဲ့ Status DocType: Sales Invoice Item,Target Warehouse,Target ကဂိုဒေါင် DocType: Item,Allow over delivery or receipt upto this percent,ဒီရာခိုင်နှုန်းအထိပေးပို့သို့မဟုတ်လက်ခံရရှိကျော် Allow @@ -736,7 +737,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,င apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},စစ်ဆင်ရေး {1} သည်လာမည့် {0} လက်ထက်ကာလ၌အချိန်အပေါက်ရှာတွေ့ဖို့မအောင်မြင်ဘူး DocType: Production Order,Plan material for sub-assemblies,က sub-အသင်းတော်တို့အဘို့အစီအစဉ်ကိုပစ္စည်း apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} တက်ကြွဖြစ်ရမည် -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,ပထမဦးဆုံး Document အမျိုးအစားကိုရွေးချယ်ပါ +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,ပထမဦးဆုံး Document အမျိုးအစားကိုရွေးချယ်ပါ apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,goto လှည်း apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,ဒီ Maintenance ခရီးစဉ်ပယ်ဖျက်မီပစ္စည်းလည်ပတ်သူ {0} Cancel DocType: Salary Slip,Leave Encashment Amount,Encashment ငွေပမာဏ Leave @@ -754,7 +755,7 @@ DocType: Purchase Receipt,Range,အကွာအဝေး DocType: Supplier,Default Payable Accounts,default ပေးဆောင် Accounts ကို apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,ဝန်ထမ်း {0} တက်ကြွမဟုတ်ပါဘူးသို့မဟုတ်မတည်ရှိပါဘူး DocType: Features Setup,Item Barcode,item Barcode -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,item Variant {0} updated +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,item Variant {0} updated DocType: Quality Inspection Reading,Reading 6,6 Reading DocType: Purchase Invoice Advance,Purchase Invoice Advance,ဝယ်ယူခြင်းပြေစာကြိုတင်ထုတ် DocType: Address,Shop,ကုန်ဆိုင် @@ -777,7 +778,7 @@ DocType: Salary Slip,Total in words,စကားစုစုပေါင်း DocType: Material Request Item,Lead Time Date,ခဲအချိန်နေ့စွဲ apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,မဖြစ်မနေဖြစ်ပါတယ်။ ဒီတစ်ခါလည်းငွေကြေးစနစ်အိတ်ချိန်းစံချိန်ဖန်တီးသည်မ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},row # {0}: Item {1} သည် Serial No ကိုသတ်မှတ်ပေးပါ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","'' ကုန်ပစ္စည်း Bundle ကို '' ပစ္စည်းများကို, ဂိုဒေါင်, Serial No နှင့် Batch for မရှိ '' List ကိုထုပ်ပိုး '' စားပွဲကနေစဉ်းစားကြလိမ့်မည်။ ဂိုဒေါင်နှင့် Batch မရှိဆို '' ကုန်ပစ္စည်း Bundle ကို '' တဲ့ item ပေါင်းသည်တလုံးထုပ်ပိုးပစ္စည်းများသည်အတူတူပင်ဖြစ်ကြောင်း အကယ်. အဲဒီတန်ဖိုးတွေကိုအဓိက Item table ထဲမှာသို့ဝင်နိုင်ပါတယ်, တန်ဖိုးများကို '' Pack များစာရင်း '' စားပွဲကိုမှကူးယူလိမ့်မည်။" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","'' ကုန်ပစ္စည်း Bundle ကို '' ပစ္စည်းများကို, ဂိုဒေါင်, Serial No နှင့် Batch for မရှိ '' List ကိုထုပ်ပိုး '' စားပွဲကနေစဉ်းစားကြလိမ့်မည်။ ဂိုဒေါင်နှင့် Batch မရှိဆို '' ကုန်ပစ္စည်း Bundle ကို '' တဲ့ item ပေါင်းသည်တလုံးထုပ်ပိုးပစ္စည်းများသည်အတူတူပင်ဖြစ်ကြောင်း အကယ်. အဲဒီတန်ဖိုးတွေကိုအဓိက Item table ထဲမှာသို့ဝင်နိုင်ပါတယ်, တန်ဖိုးများကို '' Pack များစာရင်း '' စားပွဲကိုမှကူးယူလိမ့်မည်။" apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,ဖောက်သည်တင်ပို့ရောင်းချမှု။ DocType: Purchase Invoice Item,Purchase Order Item,ဝယ်ယူခြင်းအမိန့် Item apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,သွယ်ဝိုက်ဝင်ငွေခွန် @@ -798,6 +799,7 @@ DocType: Process Payroll,Select Payroll Year and Month,လစာတစ်နှ apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",အမျိုးအစား) ကလေးသူငယ် Add ကိုနှိပ်ခြင်းအားဖြင့် ("Bank က" သင့်လျော်သောအုပ်စု (ရန်ပုံငွေကိုပုံမှန်အားဖြင့်လျှောက်လွှာ> လက်ရှိပိုင်ဆိုင်မှုများ> Bank မှ Accounts ကိုသွားပြီးသစ်တစ်ခုအကောင့်ဖန်တီး DocType: Workstation,Electricity Cost,လျှပ်စစ်မီးကုန်ကျစရိတ် DocType: HR Settings,Don't send Employee Birthday Reminders,န်ထမ်းမွေးနေသတိပေးချက်များမပို့ပါနဲ့ +,Employee Holiday Attendance,ဝန်ထမ်းအားလပ်ရက်တက်ရောက် DocType: Opportunity,Walk In,ခုနှစ်တွင် Walk apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,စတော့အိတ် Entries DocType: Item,Inspection Criteria,စစ်ဆေးရေးလိုအပ်ချက် @@ -820,7 +822,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options, DocType: Journal Entry Account,Expense Claim,စရိတ်တောင်းဆိုမှုများ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},{0} သည် Qty DocType: Leave Application,Leave Application,လျှောက်လွှာ Leave -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,ဖြန့်ဝေ Tool ကို Leave +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,ဖြန့်ဝေ Tool ကို Leave DocType: Leave Block List,Leave Block List Dates,Block List ကိုနေ့ရက်များ Leave DocType: Company,If Monthly Budget Exceeded (for expense account),ဒီလအတွက်ဘဏ္ဍာငွေအရအသုံး (စရိတ်အကောင့်) ကိုကျော်လွန်လိုလျှင် DocType: Workstation,Net Hour Rate,Net ကအချိန်နာရီနှုန်း @@ -830,7 +832,7 @@ DocType: Packing Slip Item,Packing Slip Item,ထုပ်ပိုး Item စ DocType: POS Profile,Cash/Bank Account,ငွေသား / ဘဏ်မှအကောင့် apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,အရေအတွက်သို့မဟုတ်တန်ဖိုးမျှပြောင်းလဲမှုနှင့်အတူပစ္စည်းများကိုဖယ်ရှားခဲ့သည်။ DocType: Delivery Note,Delivery To,ရန် Delivery -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,attribute စားပွဲပေါ်မှာမဖြစ်မနေဖြစ်ပါသည် +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,attribute စားပွဲပေါ်မှာမဖြစ်မနေဖြစ်ပါသည် DocType: Production Planning Tool,Get Sales Orders,အရောင်းအမိန့် Get apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} အနုတ်လက္ခဏာမဖြစ်နိုင် apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,လြှော့ခွငျး @@ -894,7 +896,7 @@ DocType: SMS Center,Total Characters,စုစုပေါင်းဇာတ် apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},Item သည် BOM လယ်ပြင်၌ {0} BOM ကို select ကျေးဇူးပြု. DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-Form တွင်ပြေစာ Detail DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,ငွေပေးချေမှုရမည့်ပြန်လည်ရင်ကြားစေ့ရေးပြေစာ -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,contribution% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,contribution% DocType: Item,website page link,ဝက်ဘ်ဆိုက်စာမျက်နှာလင့်ခ် DocType: Company,Company registration numbers for your reference. Tax numbers etc.,သင့်ရဲ့ကိုးကားနိုင်ရန်ကုမ္ပဏီမှတ်ပုံတင်နံပါတ်များ။ အခွန်နံပါတ်များစသည်တို့ DocType: Sales Partner,Distributor,ဖြန့်ဖြူး @@ -936,10 +938,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM ကူးပြောင DocType: Stock Settings,Default Item Group,default Item Group က apps/erpnext/erpnext/config/buying.py +13,Supplier database.,ပေးသွင်းဒေတာဘေ့စ။ DocType: Account,Balance Sheet,ချိန်ခွင် Sheet -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Item Code ကိုအတူ Item သည်ကုန်ကျစရိတ် Center က '' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Item Code ကိုအတူ Item သည်ကုန်ကျစရိတ် Center က '' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,သင့်ရဲ့ရောင်းအားလူတစ်ဦးကိုဖောက်သည်ကိုဆက်သွယ်ရန်ဤနေ့စွဲအပေါ်တစ်ဦးသတိပေးရလိမ့်မည် apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups",နောက်ထပ်အကောင့်အဖွဲ့များအောက်မှာလုပ်နိုင်ပေမယ့် entries တွေကို Non-အဖွဲ့များဆန့်ကျင်စေနိုင်ပါတယ် -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,အခွန်နှင့်အခြားလစာဖြတ်တောက်။ +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,အခွန်နှင့်အခြားလစာဖြတ်တောက်။ DocType: Lead,Lead,ခဲ DocType: Email Digest,Payables,ပေးအပ်သော DocType: Account,Warehouse,ကုနျလှောငျရုံ @@ -956,10 +958,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Unreconciled ငွ DocType: Global Defaults,Current Fiscal Year,လက်ရှိဘဏ္ဍာရေးနှစ်တစ်နှစ်တာ DocType: Global Defaults,Disable Rounded Total,Rounded စုစုပေါင်းကို disable DocType: Lead,Call,တယ်လီဖုန်းဆက် -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'' Entries 'လွတ်နေတဲ့မဖွစျနိုငျ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'' Entries 'လွတ်နေတဲ့မဖွစျနိုငျ apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},{1} တူညီနှင့်အတူအတန်း {0} Duplicate ,Trial Balance,ရုံးတင်စစ်ဆေး Balance -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,ဝန်ထမ်းများကိုတည်ဆောက်ခြင်း +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,ဝန်ထမ်းများကိုတည်ဆောက်ခြင်း apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid """,grid " apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,ပထမဦးဆုံးရှေ့ဆက်ကိုရွေးပါ ကျေးဇူးပြု. apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,သုတေသန @@ -968,7 +970,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,သုံးစွဲသူအိုင်ဒီ apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,view လယ်ဂျာ apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,အစောဆုံး -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","တစ်ဦး Item Group မှအမည်တူနှင့်အတူရှိနေတယ်, ပစ္စည်းအမည်ကိုပြောင်းလဲသို့မဟုတ်ပစ္စည်းအုပ်စုအမည်ပြောင်းကျေးဇူးတင်ပါ" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","တစ်ဦး Item Group မှအမည်တူနှင့်အတူရှိနေတယ်, ပစ္စည်းအမည်ကိုပြောင်းလဲသို့မဟုတ်ပစ္စည်းအုပ်စုအမည်ပြောင်းကျေးဇူးတင်ပါ" DocType: Production Order,Manufacture against Sales Order,အရောင်းအမိန့်ဆန့်ကျင်ထုတ်လုပ် apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,ကမ္ဘာ့အရာကြွင်းလေ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,အဆိုပါ Item {0} Batch ရှိသည်မဟုတ်နိုင် @@ -993,7 +995,7 @@ DocType: Purchase Receipt,Rejected Warehouse,ပယ်ချဂိုဒေါ DocType: GL Entry,Against Voucher,ဘောက်ချာဆန့်ကျင် DocType: Item,Default Buying Cost Center,default ဝယ်ယူကုန်ကျစရိတ် Center က apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","ERPNext ထဲကအကောင်းဆုံးကိုရဖို့ရန်, အကြှနျုပျတို့သညျအခြို့သောအချိန်ယူနှင့်ဤအကူအညီဗီဒီယိုများစောင့်ကြည့်ဖို့အကြံပြုလိုပါတယ်။" -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,item {0} အရောင်း Item ဖြစ်ရမည် +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,item {0} အရောင်း Item ဖြစ်ရမည် apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,ရန် DocType: Item,Lead Time in days,လက်ထက်ကာလ၌အချိန်ကိုဦးဆောင် ,Accounts Payable Summary,Accounts ကိုပေးဆောင်အကျဉ်းချုပ် @@ -1019,7 +1021,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,လယ်ယာစိုက်ပျိုးရေး apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,သင့်ရဲ့ထုတ်ကုန်များသို့မဟုတ်န်ဆောင်မှုများ DocType: Mode of Payment,Mode of Payment,ငွေပေးချေမှုရမည့်၏ Mode ကို -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,website က Image ကိုအများသုံးတဲ့ဖိုင်သို့မဟုတ် website ကို URL ကိုဖြစ်သင့် +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,website က Image ကိုအများသုံးတဲ့ဖိုင်သို့မဟုတ် website ကို URL ကိုဖြစ်သင့် apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,ဒါကအမြစ်ကို item အဖွဲ့နှင့်တည်းဖြတ်မရနိုင်ပါ။ DocType: Journal Entry Account,Purchase Order,ကုန်ပစ္စည်းအမှာစာ DocType: Warehouse,Warehouse Contact Info,ဂိုဒေါင် Contact Info @@ -1030,7 +1032,7 @@ DocType: Serial No,Serial No Details,serial No အသေးစိတ်ကို DocType: Purchase Invoice Item,Item Tax Rate,item အခွန်နှုန်း apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry",{0} သည်ကိုသာအကြွေးအကောင့်အသစ်များ၏အခြား debit entry ကိုဆန့်ကျင်နှင့်ဆက်စပ်နိုင် apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Delivery မှတ်ချက် {0} တင်သွင်းသည်မဟုတ် -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,item {0} တစ် Sub-စာချုပ်ချုပ်ဆို Item ဖြစ်ရမည် +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,item {0} တစ် Sub-စာချုပ်ချုပ်ဆို Item ဖြစ်ရမည် apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,မြို့တော်ပစ္စည်းများ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","စျေးနှုန်း Rule ပထမဦးဆုံး Item, Item အုပ်စုသို့မဟုတ်အမှတ်တံဆိပ်ဖြစ်နိုငျသောလယ်ပြင်၌, '' တွင် Apply '' အပေါ်အခြေခံပြီးရွေးချယ်ထားဖြစ်ပါတယ်။" DocType: Hub Settings,Seller Website,ရောင်းချသူဝက်ဘ်ဆိုက် @@ -1039,7 +1041,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,ရည်မှန်းချက် DocType: Sales Invoice Item,Edit Description,Edit ကိုဖော်ပြချက် apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,မျှော်လင့်ထားသည့် Delivery Date ကိုစီစဉ်ထားသော Start ကိုနေ့စွဲထက်ယျဆုံးသောဖြစ်ပါတယ်။ -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,ပေးသွင်းအကြောင်းမူကား +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,ပေးသွင်းအကြောင်းမူကား DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Account Type ကိုချိန်ညှိခြင်းကိစ္စများကို၌ဤအကောင့်ကိုရွေးချယ်ခြင်းအတွက်ကူညီပေးသည်။ DocType: Purchase Invoice,Grand Total (Company Currency),က Grand စုစုပေါင်း (ကုမ္ပဏီငွေကြေးစနစ်) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,စုစုပေါင်းအထွက် @@ -1091,7 +1093,6 @@ DocType: Authorization Rule,Average Discount,ပျမ်းမျှအား DocType: Address,Utilities,အသုံးအဆောင်များ DocType: Purchase Invoice Item,Accounting,စာရင်းကိုင် DocType: Features Setup,Features Setup,အင်္ဂါရပ်များကို Setup -DocType: Item,Is Service Item,ဝန်ဆောင်မှု Item ဖြစ်ပါတယ် apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,ပလီကေးရှင်းကာလအတွင်းပြင်ပမှာခွင့်ခွဲဝေကာလအတွင်းမဖွစျနိုငျ DocType: Activity Cost,Projects,စီမံကိန်းများ apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,ဘဏ္ဍာရေးနှစ်တစ်နှစ်တာကို select ကျေးဇူးပြု. @@ -1112,7 +1113,7 @@ DocType: Item,Maintain Stock,စတော့အိတ်ထိန်းသိမ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,ပြီးသားထုတ်လုပ်မှုအမိန့်ဖန်တီးစတော့အိတ် Entries apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Fixed Asset အတွက်ပိုက်ကွန်ကိုပြောင်းရန် DocType: Leave Control Panel,Leave blank if considered for all designations,အားလုံးပုံစံတခုစဉ်းစားလျှင်အလွတ် Leave -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,'' အမှန်တကယ် '' အမျိုးအစားတာဝန်ခံအတန်းအတွက် {0} Item နှုန်းတွင်ထည့်သွင်းမရနိုင်ပါ +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,'' အမှန်တကယ် '' အမျိုးအစားတာဝန်ခံအတန်းအတွက် {0} Item နှုန်းတွင်ထည့်သွင်းမရနိုင်ပါ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Datetime ကနေ DocType: Email Digest,For Company,ကုမ္ပဏီ @@ -1121,8 +1122,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,သဘောင်္တင်ခလိပ်စာအမည် apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,ငွေစာရင်း၏ဇယား DocType: Material Request,Terms and Conditions Content,စည်းကမ်းသတ်မှတ်ချက်များအကြောင်းအရာ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,100 ကိုထက် သာ. ကြီးမြတ်မဖွစျနိုငျ -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,item {0} တစ်စတော့ရှယ်ယာ Item မဟုတ်ပါဘူး +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,100 ကိုထက် သာ. ကြီးမြတ်မဖွစျနိုငျ +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,item {0} တစ်စတော့ရှယ်ယာ Item မဟုတ်ပါဘူး DocType: Maintenance Visit,Unscheduled,Unscheduled DocType: Employee,Owned,ပိုင်ဆိုင် DocType: Salary Slip Deduction,Depends on Leave Without Pay,Pay ကိုမရှိရင်ထွက်ခွာအပေါ်မူတည် @@ -1143,7 +1144,7 @@ Used for Taxes and Charges",အခွန်အသေးစိတ်စားပ apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,ဝန်ထမ်းကိုယ်တော်တိုင်မှသတင်းပို့လို့မရပါဘူး။ DocType: Account,"If the account is frozen, entries are allowed to restricted users.","အကောင့်အေးခဲသည်မှန်လျှင်, entries တွေကိုကန့်သတ်အသုံးပြုသူများမှခွင့်ပြုထားသည်။" DocType: Email Digest,Bank Balance,ဘဏ်ကို Balance ကို -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},{0} များအတွက်စာရင်းကိုင် Entry: {1} သာငွေကြေးကိုအတွက်ဖန်ဆင်းနိုင်ပါသည်: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},{0} များအတွက်စာရင်းကိုင် Entry: {1} သာငွေကြေးကိုအတွက်ဖန်ဆင်းနိုင်ပါသည်: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,တက်ကြွသောလစာဝန်ထမ်း {0} တွေ့ရှိဖွဲ့စည်းပုံနှင့်တစ်လအဘယ်သူမျှမ DocType: Job Opening,"Job profile, qualifications required etc.","ယောဘသည် profile ကို, အရည်အချင်းများနှင့်ပြည့်စသည်တို့မလိုအပ်" DocType: Journal Entry Account,Account Balance,အကောင့်ကို Balance @@ -1160,7 +1161,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,sub စညျ DocType: Shipping Rule Condition,To Value,Value တစ်ခုမှ DocType: Supplier,Stock Manager,စတော့အိတ် Manager က apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},source ဂိုဒေါင်အတန်း {0} သည်မသင်မနေရ -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,ထုပ်ပိုးစလစ်ဖြတ်ပိုင်းပုံစံ +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,ထုပ်ပိုးစလစ်ဖြတ်ပိုင်းပုံစံ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Office ကိုငှား apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Setup ကို SMS ကို gateway ဟာ setting များ apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,သွင်းကုန်မအောင်မြင်ပါ! @@ -1204,7 +1205,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM Detail မရှိပ DocType: Purchase Invoice,Additional Discount Amount (Company Currency),အပိုဆောင်းလျှော့ငွေပမာဏ (ကုမ္ပဏီငွေကြေးစနစ်) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},error: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,ငွေစာရင်း၏ Chart ဟာကနေအကောင့်သစ်ဖန်တီးပေးပါ။ -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,ပြုပြင်ထိန်းသိမ်းမှုခရီးစဉ် +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,ပြုပြင်ထိန်းသိမ်းမှုခရီးစဉ် apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,ဖောက်သည်> ဖောက်သည်အုပ်စု> နယ်မြေတွေကို DocType: Sales Invoice Item,Available Batch Qty at Warehouse,ဂိုဒေါင်ကနေရယူနိုင်ပါတယ် Batch Qty DocType: Time Log Batch Detail,Time Log Batch Detail,အချိန်အထဲ Batch Detail @@ -1213,7 +1214,7 @@ DocType: Leave Block List,Block Holidays on important days.,အရေးကြ ,Accounts Receivable Summary,Accounts ကို receiver အကျဉ်းချုပ် apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,န်ထမ်းအခန်းက္ပတင်ထားရန်တစ်ထမ်းစံချိန်အတွက်အသုံးပြုသူ ID လယ်ပြင်၌ထားကြ၏ ကျေးဇူးပြု. DocType: UOM,UOM Name,UOM အမည် -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,contribution ငွေပမာဏ +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,contribution ငွေပမာဏ DocType: Sales Invoice,Shipping Address,ကုန်ပစ္စည်းပို့ဆောင်ရမည့်လိပ်စာ DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,ဒီ tool ကိုသင် system ထဲမှာစတော့ရှယ်ယာများအရေအတွက်နှင့်အဘိုးပြတ် update သို့မဟုတ်ပြုပြင်ဖို့ကူညီပေးသည်။ ဒါဟာပုံမှန်အားဖြင့် system ကိုတန်ဖိုးများနှင့်အဘယ်တကယ်တော့သင့်ရဲ့သိုလှောင်ရုံထဲမှာရှိနေပြီတပြိုင်တည်းအသုံးပြုသည်။ DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,သင် Delivery Note ကိုကယျတငျတျောမူပါတစ်ချိန်ကစကားမြင်နိုင်ပါလိမ့်မည်။ @@ -1254,7 +1255,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,barcode ကို အသုံးပြု. ပစ္စည်းများခြေရာခံရန်။ သင်ဟာ item ၏ barcode scan ဖတ်ခြင်းဖြင့် Delivery Note နှင့်အရောင်းပြေစာအတွက်ပစ္စည်းများဝင်နိုင်ပါလိမ့်မည်။ apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,ငွေပေးချေမှုရမည့်အီးမေးလ် Resend DocType: Dependent Task,Dependent Task,မှီခို Task -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},တိုင်း၏ default အနေနဲ့ယူနစ်သည်ကူးပြောင်းခြင်းအချက်အတန်းအတွက် 1 {0} ဖြစ်ရမည် +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},တိုင်း၏ default အနေနဲ့ယူနစ်သည်ကူးပြောင်းခြင်းအချက်အတန်းအတွက် 1 {0} ဖြစ်ရမည် apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},{0} တော့ဘူး {1} ထက်မဖွစျနိုငျအမျိုးအစား Leave DocType: Manufacturing Settings,Try planning operations for X days in advance.,ကြိုတင်မဲအတွက် X ကိုနေ့ရက်ကာလအဘို့စစ်ဆင်ရေးစီစဉ်ကြိုးစားပါ။ DocType: HR Settings,Stop Birthday Reminders,မွေးနေသတိပေးချက်များကိုရပ်တန့် @@ -1264,7 +1265,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} ကြည့်ရန် apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,ငွေအတွက်ပိုက်ကွန်ကိုပြောင်းရန် DocType: Salary Structure Deduction,Salary Structure Deduction,လစာဖွဲ့စည်းပုံထုတ်ယူ -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,တိုင်း {0} ၏ယူနစ်တခါကူးပြောင်းခြင်း Factor ဇယားအတွက်ထက်ပိုပြီးဝသို့ဝင်ခဲ့သည် +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,တိုင်း {0} ၏ယူနစ်တခါကူးပြောင်းခြင်း Factor ဇယားအတွက်ထက်ပိုပြီးဝသို့ဝင်ခဲ့သည် apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},ငွေပေးချေမှုရမည့်တောင်းခံခြင်းပြီးသား {0} ရှိတယ်ဆိုတဲ့ apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,ထုတ်ပေးခြင်းပစ္စည်းများ၏ကုန်ကျစရိတ် apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},အရေအတွက် {0} ထက်ပိုပြီးမဖြစ်ရပါမည် @@ -1293,7 +1294,7 @@ DocType: BOM Item,BOM Item,BOM Item DocType: Appraisal,For Employee,န်ထမ်းများအတွက် apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,row {0}: ပေးသွင်းဆန့်ကျင်ကြိုတင်ငွေကြိုပေးရမညျ DocType: Company,Default Values,default တန်ဖိုးများ -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,row {0}: ငွေပေးချေမှုရမည့်ငွေပမာဏကိုအနုတ်လက္ခဏာမဖြစ်နိုင် +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,row {0}: ငွေပေးချေမှုရမည့်ငွေပမာဏကိုအနုတ်လက္ခဏာမဖြစ်နိုင် DocType: Expense Claim,Total Amount Reimbursed,စုစုပေါင်းငွေပမာဏ Reimbursed apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},ပေးသွင်းပြေစာ {0} ဆန့်ကျင် {1} ရက်စွဲပါ DocType: Customer,Default Price List,default စျေးနှုန်းများစာရင်း @@ -1321,8 +1322,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Ser DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","ဒါကြောင့်အသုံးပြုသည်အဘယ်မှာရှိရှိသမျှသည်အခြားသော BOMs အတွက်အထူးသဖြင့် BOM အစားထိုးလိုက်ပါ။ ဒါဟာအသစ်တွေ BOM နှုန်းအဖြစ်ဟောင်းကို BOM link ကို, update ကကုန်ကျစရိတ်ကိုအစားထိုးနှင့် "BOM ပေါက်ကွဲမှုဖြစ် Item" စားပွဲပေါ်မှာအသစ်တဖန်လိမ့်မည်" DocType: Shopping Cart Settings,Enable Shopping Cart,စျေးဝယ်ခြင်းတွန်းလှည်းကို Enable DocType: Employee,Permanent Address,အမြဲတမ်းလိပ်စာ -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,item {0} တဲ့ဝန်ဆောင်မှု Item ဖြစ်ရမည်။ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",{0} {1} က Grand စုစုပေါင်း {2} ထက် သာ. ကြီးမြတ် \ မဖွစျနိုငျဆန့်ကျင်ပေးဆောင်ကြိုတင်မဲ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,ကို item code ကို select လုပ်ပါ ကျေးဇူးပြု. DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Pay (LWP) မရှိရင်ထွက်ခွာသည်ထုတ်ယူကိုလျော့ချ @@ -1378,12 +1378,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,အဓိက apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,မူကွဲ DocType: Naming Series,Set prefix for numbering series on your transactions,သင့်ရဲ့ငွေကြေးလွှဲပြောင်းအပေါ်စီးရီးဦးရေသည်ရှေ့ဆက် Set +DocType: Employee Attendance Tool,Employees HTML,ဝန်ထမ်းများ HTML ကို apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,ရပ်တန့်နိုင်ရန်ဖျက်သိမ်းမရနိုင်ပါ။ ဖျက်သိမ်းဖို့လှတျ။ -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,default BOM ({0}) ဒီအချက်ကိုသို့မဟုတ်ယင်း၏ template ကိုသည်တက်ကြွသောဖြစ်ရမည် +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,default BOM ({0}) ဒီအချက်ကိုသို့မဟုတ်ယင်း၏ template ကိုသည်တက်ကြွသောဖြစ်ရမည် DocType: Employee,Leave Encashed?,Encashed Leave? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,လယ်ပြင်၌ မှစ. အခွင့်အလမ်းမသင်မနေရ DocType: Item,Variants,မျိုးကွဲ -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,ဝယ်ယူခြင်းအမိန့်လုပ်ပါ +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,ဝယ်ယူခြင်းအမိန့်လုပ်ပါ DocType: SMS Center,Send To,ရန် Send apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},ထွက်ခွာ Type {0} လုံလောက်ခွင့်ချိန်ခွင်မရှိ DocType: Payment Reconciliation Payment,Allocated amount,ခွဲဝေပမာဏ @@ -1483,7 +1484,7 @@ DocType: Sales Person,Name and Employee ID,အမည်နှင့်ထမ် apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,ကြောင့်နေ့စွဲနေ့စွဲများသို့တင်ပြခြင်းမပြုမီမဖွစျနိုငျ DocType: Website Item Group,Website Item Group,website Item Group က apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,တာဝန်နှင့်အခွန် -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,ကိုးကားစရာနေ့စွဲကိုရိုက်ထည့်ပေးပါ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,ကိုးကားစရာနေ့စွဲကိုရိုက်ထည့်ပေးပါ apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,ငွေပေးချေမှုရမည့် Gateway ရဲ့အကောင့်ကို configure လုပ်မထားဘူး apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} ငွေပေးချေမှု entries တွေကို {1} ကြောင့် filtered မရနိုင်ပါ DocType: Item Website Specification,Table for Item that will be shown in Web Site,Web Site မှာပြထားတဲ့လိမ့်မည်ဟု Item သည်စားပွဲတင် @@ -1504,7 +1505,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,resolution အသေးစိတ်ကို DocType: Quality Inspection Reading,Acceptance Criteria,လက်ခံမှုကိုလိုအပ်ချက် DocType: Item Attribute,Attribute Name,အမည် Attribute -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},item {0} {1} အတွက်အရောင်းသို့မဟုတ်ဝန်ဆောင်မှု Item ဖြစ်ရမည် DocType: Item Group,Show In Website,ဝက်ဘ်ဆိုက်များတွင် show apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,အစု DocType: Task,Expected Time (in hours),(နာရီအတွင်း) မျှော်လင့်ထားအချိန် @@ -1536,7 +1536,7 @@ DocType: Shipping Rule Condition,Shipping Amount,သဘောင်္တင် ,Pending Amount,ဆိုင်းငံ့ထားသောငွေပမာဏ DocType: Purchase Invoice Item,Conversion Factor,ကူးပြောင်းခြင်း Factor DocType: Purchase Order,Delivered,ကယ်နှုတ်တော်မူ၏ -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),အလုပ်အကိုင်အခွင့်အအီးမေးလ်က id သည် Setup ကိုအဝင် server ကို။ (ဥပမာ jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),အလုပ်အကိုင်အခွင့်အအီးမေးလ်က id သည် Setup ကိုအဝင် server ကို။ (ဥပမာ jobs@example.com) DocType: Purchase Receipt,Vehicle Number,မော်တော်ယာဉ်နံပါတ် DocType: Purchase Invoice,The date on which recurring invoice will be stop,ထပ်တလဲလဲကုန်ပို့လွှာရပ်တန့်ဖြစ်ရလိမ့်မည်သည့်နေ့ရက် apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Total ကုမ္ပဏီခွဲဝေအရွက် {0} ကာလအဘို့ပြီးသားအတည်ပြုပြီးအရွက် {1} ထက်လျော့နည်းမဖွစျနိုငျ @@ -1553,7 +1553,7 @@ DocType: HR Settings,HR Settings,HR Settings ကို apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,စရိတ်တောင်းဆိုမှုများအတည်ပြုချက်ဆိုင်းငံ့ထားတာဖြစ်ပါတယ်။ ကိုသာသုံးစွဲမှုအတည်ပြုချက် status ကို update ပြုလုပ်နိုင်ပါသည်။ DocType: Purchase Invoice,Additional Discount Amount,အပိုဆောင်းလျှော့ငွေပမာဏ DocType: Leave Block List Allow,Leave Block List Allow,Allow Block List ကို Leave -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abbr အလွတ်သို့မဟုတ်အာကာသမဖွစျနိုငျ +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abbr အလွတ်သို့မဟုတ်အာကာသမဖွစျနိုငျ apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,က Non-Group ကိုမှ Group က apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,အားကစား apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,အမှန်တကယ်စုစုပေါင်း @@ -1577,7 +1577,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},UOM ကူးပြောင်းခြင်းအချက်အတန်း {0} အတွက်လိုအပ်သည် apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},ရှင်းလင်းရေးနေ့စွဲအတန်း {0} အတွက်စစ်ဆေးခြင်းရက်စွဲမီမဖွစျနိုငျ DocType: Salary Slip,Deduction,သဘောအယူအဆ -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},item စျေးနှုန်းကိုစျေးနှုန်းကိုစာရင်း {1} အတွက် {0} များအတွက်ဖြည့်စွက် +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},item စျေးနှုန်းကိုစျေးနှုန်းကိုစာရင်း {1} အတွက် {0} များအတွက်ဖြည့်စွက် DocType: Address Template,Address Template,လိပ်စာ Template: apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,ဒီအရောင်းလူတစ်ဦး၏န်ထမ်း Id ကိုရိုက်ထည့်ပေးပါ DocType: Territory,Classification of Customers by region,ဒေသအားဖြင့် Customer များ၏ခွဲခြား @@ -1594,7 +1594,7 @@ DocType: Employee,Date of Birth,မွေးနေ့ apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,item {0} ပြီးသားပြန်ထားပြီ DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** ဘဏ္ဍာရေးနှစ်တစ်နှစ်တာ ** တစ်ဘဏ္ဍာရေးတစ်နှစ်တာကိုကိုယ်စားပြုပါတယ်။ အားလုံးသည်စာရင်းကိုင် posts များနှင့်အခြားသောအဓိကကျသည့်ကိစ္စများကို ** ** ဘဏ္ဍာရေးနှစ်တစ်နှစ်တာဆန့်ကျင်ခြေရာခံထောက်လှမ်းနေကြပါတယ်။ DocType: Opportunity,Customer / Lead Address,customer / ခဲလိပ်စာ -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},သတိပေးချက်: attachment ကို {0} အပေါ်မမှန်ကန်ခြင်း SSL ကိုလက်မှတ်ကို +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},သတိပေးချက်: attachment ကို {0} အပေါ်မမှန်ကန်ခြင်း SSL ကိုလက်မှတ်ကို DocType: Production Order Operation,Actual Operation Time,အမှန်တကယ်စစ်ဆင်ရေးအချိန် DocType: Authorization Rule,Applicable To (User),(အသုံးပြုသူ) ရန်သက်ဆိုင်သော DocType: Purchase Taxes and Charges,Deduct,နှုတ်ယူ @@ -1611,7 +1611,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,packages များသို့ Delivery Note ကို Split ။ apps/erpnext/erpnext/hooks.py +69,Shipments,တင်ပို့ရောင်းချမှု DocType: Purchase Order Item,To be delivered to customer,ဖောက်သည်မှကယ်နှုတ်တော်မူ၏ခံရဖို့ -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,အချိန်အထဲနဲ့ Status Submitted ရမည်။ +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,အချိန်အထဲနဲ့ Status Submitted ရမည်။ apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,serial မရှိပါ {0} ဆိုဂိုဒေါင်ပိုင်ပါဘူး apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,row # DocType: Purchase Invoice,In Words (Company Currency),စကား (ကုမ္ပဏီငွေကြေးစနစ်) တွင် @@ -1628,7 +1628,7 @@ DocType: Leave Application,Total Leave Days,စုစုပေါင်းထွ DocType: Email Digest,Note: Email will not be sent to disabled users,မှတ်ချက်: အီးမေးလ်မသန်မစွမ်းအသုံးပြုသူများထံသို့စေလွှတ်လိမ့်မည်မဟုတ်ပေ apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,ကုမ္ပဏီကိုရွေးချယ်ပါ ... DocType: Leave Control Panel,Leave blank if considered for all departments,အားလုံးဌာနများစဉ်းစားလျှင်အလွတ် Leave -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","အလုပ်အကိုင်အခွင့်အအမျိုးအစားများ (ရာသက်ပန်, စာချုပ်, အလုပ်သင်ဆရာဝန်စသည်တို့) ။" +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","အလုပ်အကိုင်အခွင့်အအမျိုးအစားများ (ရာသက်ပန်, စာချုပ်, အလုပ်သင်ဆရာဝန်စသည်တို့) ။" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} Item {1} သည်မသင်မနေရ DocType: Currency Exchange,From Currency,ငွေကြေးစနစ်ကနေ apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","atleast တယောက်အတန်းအတွက်ခွဲဝေငွေပမာဏ, ပြေစာ Type နှင့်ပြေစာနံပါတ်ကို select ကျေးဇူးပြု." @@ -1647,7 +1647,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,Process ကိုအတွက် DocType: Authorization Rule,Itemwise Discount,Itemwise လျှော့ DocType: Purchase Order Item,Reference Document Type,ကိုးကားစရာ Document ဖိုင် Type အမျိုးအစား -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} အရောင်းအမိန့် {1} ဆန့်ကျင် +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} အရောင်းအမိန့် {1} ဆန့်ကျင် DocType: Account,Fixed Asset,ပုံသေ Asset apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Serial Inventory DocType: Activity Type,Default Billing Rate,Default အနေနဲ့ငွေတောင်းခံလွှာနှုန်း @@ -1657,7 +1657,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,ငွေပေးချေမှုရမည့်မှအရောင်းအမိန့် DocType: Expense Claim Detail,Expense Claim Detail,စရိတ်တောင်းဆိုမှုများ Detail apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,အချိန် Logs နေသူများကဖန်တီး: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,မှန်ကန်သောအကောင့်ကို select လုပ်ပါ ကျေးဇူးပြု. +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,မှန်ကန်သောအကောင့်ကို select လုပ်ပါ ကျေးဇူးပြု. DocType: Item,Weight UOM,အလေးချိန် UOM DocType: Employee,Blood Group,လူအသွေး Group က DocType: Purchase Invoice Item,Page Break,စာမျက်နှာ Break @@ -1692,7 +1692,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM recursion: {0} {2} ၏မိဘသို့မဟုတ်ကလေးမဖွစျနိုငျ DocType: Production Order Operation,Completed Qty,ပြီးစီး Qty apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","{0} အဘို့, သာ debit အကောင့်အသစ်များ၏အခြားအကြွေး entry ကိုဆန့်ကျင်နှင့်ဆက်စပ်နိုင်" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,စျေးနှုန်းစာရင်း {0} ပိတ်ထားတယ် +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,စျေးနှုန်းစာရင်း {0} ပိတ်ထားတယ် DocType: Manufacturing Settings,Allow Overtime,အချိန်ပို Allow apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,Item {1} များအတွက်လိုအပ်သော {0} Serial Number ။ သငျသညျ {2} ထောက်ပံ့ကြပါပြီ။ DocType: Stock Reconciliation Item,Current Valuation Rate,လက်ရှိအကောက်ခွန်တန်ဖိုးသတ်မှတ်မည် Rate @@ -1743,7 +1743,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Barc apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,အမှုနံပါတ် 0 မဖြစ်နိုင် DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,သင်အရောင်းရေးအဖွဲ့နှင့်ရောင်းမည်မိတ်ဖက် (Channel ကိုမိတ်ဖက်) ရှိပါကသူတို့ tagged နှင့်အရောင်းလုပ်ဆောင်မှုအတွက်သူတို့ရဲ့ပံ့ပိုးထိန်းသိမ်းရန်နိုင်ပါတယ် DocType: Item,Show a slideshow at the top of the page,စာမျက်နှာ၏ထိပ်မှာတစ်ဆလိုက်ရှိုးပြရန် -DocType: Item,"Allow in Sales Order of type ""Service""",အမျိုးအစားအရောင်းအမိန့်အတွက် Allow "ဝန်ဆောင်မှု" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,စတိုးဆိုင်များ DocType: Time Log,Projects Manager,စီမံကိန်းများ Manager က DocType: Serial No,Delivery Time,ပို့ဆောင်ချိန် @@ -1758,6 +1757,7 @@ DocType: Rename Tool,Rename Tool,Tool ကို Rename apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Update ကိုကုန်ကျစရိတ် DocType: Item Reorder,Item Reorder,item Reorder apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,ပစ္စည်းလွှဲပြောင်း +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},item {0} {1} အတွက်အရောင်း item ဖြစ်ရပါမည် DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.",အဆိုပါစစ်ဆင်ရေးကိုသတ်မှတ်မှာ operating ကုန်ကျစရိတ်နှင့်သင်တို့၏စစ်ဆင်ရေးမှတစ်မူထူးခြားစစ်ဆင်ရေးမျှမပေး။ DocType: Purchase Invoice,Price List Currency,စျေးနှုန်း List ကိုငွေကြေးစနစ် DocType: Naming Series,User must always select,အသုံးပြုသူအမြဲရွေးချယ်ရမည် @@ -1778,7 +1778,7 @@ DocType: Appraisal,Employee,လုပ်သား apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,မှစ. သွင်းကုန်အီးမေးလ် apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,အသုံးပြုသူအဖြစ် Invite DocType: Features Setup,After Sale Installations,အရောင်း installation ပြီးသည့်နောက် -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} အပြည့်အဝကြေညာတာဖြစ်ပါတယ် +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} အပြည့်အဝကြေညာတာဖြစ်ပါတယ် DocType: Workstation Working Hour,End Time,အဆုံးအချိန် apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,အရောင်းသို့မဟုတ်ဝယ်ယူခြင်းအဘို့အစံစာချုပ်ဝေါဟာရများ။ apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,ဘောက်ချာအားဖြင့်အုပ်စု @@ -1804,7 +1804,7 @@ DocType: Upload Attendance,Attendance To Date,နေ့စွဲရန်တက apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),အရောင်းအီးမေးလ်က id သည် Setup ကိုအဝင် server ကို။ (ဥပမာ sales@example.com) DocType: Warranty Claim,Raised By,By ထမြောက်စေတော် DocType: Payment Gateway Account,Payment Account,ငွေပေးချေမှုရမည့်အကောင့် -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,ဆက်လက်ဆောင်ရွက်ရန်ကုမ္ပဏီသတ်မှတ် ကျေးဇူးပြု. +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,ဆက်လက်ဆောင်ရွက်ရန်ကုမ္ပဏီသတ်မှတ် ကျေးဇူးပြု. apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Accounts ကို receiver များတွင် Net က Change ကို apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,ပိတ် Compensatory DocType: Quality Inspection Reading,Accepted,လက်ခံထားတဲ့ @@ -1816,14 +1816,14 @@ DocType: Shipping Rule,Shipping Rule Label,သဘောင်္တင်ခ Rul apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,ကုန်ကြမ်းပစ္စည်းများအလွတ်မဖြစ်နိုင်။ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","ငွေတောင်းခံလွှာတစ်စက်ရေကြောင်းကို item များပါရှိသည်, စတော့ရှယ်ယာကို update မရနိုင်ပါ။" DocType: Newsletter,Test,စမ်းသပ် -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","လက်ရှိစတော့ရှယ်ယာအရောင်းအဒီအချက်ကိုသည်ရှိပါတယ်အမျှ \ သင် '' Serial No ရှိခြင်း '' ၏စံတန်ဖိုးများကိုပြောင်းလဲလို့မရဘူး, '' Batch မရှိပါဖူး '' နှင့် '' အကောက်ခွန်တန်ဖိုးသတ်မှတ်မည်နည်းနိဿယ '' စတော့အိတ် Item Is ''" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,လျင်မြန်စွာ Journal မှ Entry ' apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,BOM ဆိုတဲ့ item agianst ဖော်ပြခဲ့သောဆိုရင်နှုန်းကိုမပြောင်းနိုင်ပါ DocType: Employee,Previous Work Experience,ယခင်လုပ်ငန်းအတွေ့အကြုံ DocType: Stock Entry,For Quantity,ပမာဏများအတွက် apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},အတန်းမှာ Item {0} သည်စီစဉ်ထားသော Qty ကိုရိုက်သွင်းပါ {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} တင်သွင်းသည်မဟုတ် +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} တင်သွင်းသည်မဟုတ် apps/erpnext/erpnext/config/stock.py +18,Requests for items.,ပစ္စည်းများသည်တောင်းဆိုမှုများ။ DocType: Production Planning Tool,Separate production order will be created for each finished good item.,အသီးအသီးကောင်းဆောင်းပါးတပုဒ်ကိုလက်စသတ်သည်သီးခြားထုတ်လုပ်မှုအမိန့်ကိုဖန်တီးလိမ့်မည်။ DocType: Purchase Invoice,Terms and Conditions1,စည်းကမ်းချက်များနှင့် Conditions1 @@ -1848,6 +1848,7 @@ DocType: Notification Control,Expense Claim Approved Message,စရိတ်တ DocType: Email Digest,How frequently?,ဘယ်လိုမကြာခဏ? DocType: Purchase Receipt,Get Current Stock,လက်ရှိစတော့အိတ် Get apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,ပစ္စည်းများ၏ဘီလ်၏သစ်ပင်ကို +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,မာကုလက်ရှိ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},ပြုပြင်ထိန်းသိမ်းမှုစတင်နေ့စွဲ Serial No {0} သည်ပို့ဆောင်မှုနေ့စွဲခင်မဖွစျနိုငျ DocType: Production Order,Actual End Date,အမှန်တကယ် End Date ကို DocType: Authorization Rule,Applicable To (Role),(အခန်းက္ပ) ရန်သက်ဆိုင်သော @@ -1862,7 +1863,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,စာချုပ်ကုန်ဆုံးတော့နေ့စွဲအတူနေ့စွဲထက် သာ. ကြီးမြတ်ဖြစ်ရမည် DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,ကော်မရှင်များအတွက်ကုမ္ပဏီများကထုတ်ကုန်ရောင်းချတဲ့သူတစ်ဦးကိုတတိယပါတီဖြန့်ဖြူး / အရောင်း / ကော်မရှင်အေးဂျင့် / Affiliate / ပြန်လည်ရောင်းချသူ။ DocType: Customer Group,Has Child Node,ကလေး Node ရှိပါတယ် -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} ဝယ်ယူခြင်းအမိန့် {1} ဆန့်ကျင် +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} ဝယ်ယူခြင်းအမိန့် {1} ဆန့်ကျင် DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","ဒီနေရာမှာ static နဲ့ url parameters တွေကိုရိုက်ထည့်ပါ (ဥပမာ။ ပေးပို့သူ = ERPNext, အသုံးပြုသူအမည် = ERPNext, စကားဝှက် = 1234 စသည်တို့)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} မတက်ကြွဘဏ္ဍာရေးနှစ်တစ်နှစ်တာ။ အသေးစိတ်ကို {2} စစ်ဆေးပါ။ apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,ဒါဟာ ERPNext ကနေ Auto-generated ဥပမာတစ်ခုဝက်ဆိုက် @@ -1890,7 +1891,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Add or Deduct: Whether you want to add or deduct the tax.","အားလုံးဝယ်ယူခြင်းငွေကြေးကိစ္စရှင်းလင်းမှုမှလျှောက်ထားနိုင်ပါသည်က Standard အခွန် Simple template ။ * ဤ template ကိုအခွန်ဦးခေါင်းစာရင်းမဆံ့နိုင်ပြီးကိုလည်း "Shipping", "အာမခံ" စသည်တို့ကို "ကိုင်တွယ်ခြင်း" #### ကဲ့သို့အခြားစရိတ်အကြီးအကဲများသင်ဒီမှာသတ်မှတ်အဆိုပါအခွန်နှုန်းထားကိုအားလုံး ** ပစ္စည်းများများအတွက်စံအခွန်နှုန်းကဖွစျလိမျ့မညျမှတ်ချက် * ။ ကွဲပြားခြားနားသောနှုန်းထားများရှိသည် ** ပစ္စည်းများ ** ရှိပါတယ် အကယ်. သူတို့ ** Item ခွန်အတွက်ကဆက်ပြောသည်ရမည် ** ဇယားသည် ** Item ** မာစတာအတွက်။ ဒါဟာ ** စုစုပေါင်း ** Net ပေါ်မှာဖြစ်နိုင် (ထိုအခြေခံပမာဏ၏ပေါင်းလဒ်သည်) -:-Columns 1. တွက်ချက် Type ၏ #### ဖော်ပြချက်။ - ** ယခင် Row တွင်စုစုပေါင်း / ငွေပမာဏ ** (တဖြည်းဖြည်းတိုးပွားလာအခွန်သို့မဟုတ်စွဲချက်တွေအတွက်) ။ သင်သည်ဤ option ကိုရွေးချယ်ပါလျှင်, အခွန်ယခင်အတန်း (အခွန် table ထဲမှာ) ပမာဏသို့မဟုတ်စုစုပေါင်းတစ်ရာခိုင်နှုန်းအဖြစ်လျှောက်ထားပါလိမ့်မည်။ - ** (ဖော်ပြခဲ့သောကဲ့သို့) ** အမှန်တကယ်။ 2. အကောင့်အကြီးအကဲ: အခွန် / အုပ် (ရေကြောင်းနှင့်တူ) အနေနဲ့ဝင်ငွေသည်သို့မဟုတ်ကကုန်ကျစရိတ် Center ကဆန့်ကျင်ဘွတ်ကင်ရန်လိုအပ်ပါသည် expense အကယ်. : ဤအခွန် 3 ကုန်ကျစရိတ် Center ကကြိုတင်ဘွတ်ကင်လိမ့်မည်ဟူသောလက်အောက်ရှိအကောင့်လယ်ဂျာ။ 4. Description: (ကုန်ပို့လွှာ / quote တွေအတွက်ပုံနှိပ်လိမ့်မည်ဟု) အခွန်၏ဖော်ပြချက်။ 5. Rate: အခွန်နှုန်းက။ 6. ငွေပမာဏ: အခွန်ပမာဏ။ 7. စုစုပေါင်း: ဤအချက်မှတဖြည်းဖြည်းတိုးပွားများပြားလာစုစုပေါင်း။ 8. Row Enter: "ယခင် Row စုစုပေါင်း" အပေါ်အခြေခံပြီး အကယ်. သင်သည်ဤတွက်ချက်မှုတစ်ခုအခြေစိုက်စခန်းအဖြစ်ယူကြလိမ့်မည်ဟူသောအတန်းအရေအတွက် (default အနေနဲ့ယခင်အတန်းသည်) ကို select လုပ်ပေးနိုင်ပါတယ်။ 9. တွေအတွက်အခွန်သို့မဟုတ်တာဝန်ခံဖို့စဉ်းစားပါ: အခွန် / အုပ်အဘိုးပြတ် (စုစုပေါင်း၏မအစိတ်အပိုင်း) သည်သို့မဟုတ်သာစုစုပေါင်း (ပစ္စည်းမှတန်ဖိုးကိုထည့်သွင်းမမ) သို့မဟုတ်နှစ်ဦးစလုံးသည်သာလျှင်ဤအပိုင်းကိုသင်သတ်မှတ်နိုင်ပါတယ်။ 10. Add သို့မဟုတ်ထုတ်ယူ: သင်အခွန် add သို့မဟုတ်နှိမ်ချင်ဖြစ်စေ။" DocType: Purchase Receipt Item,Recd Quantity,Recd ပမာဏ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},အရောင်းအမိန့်အရေအတွက် {1} ထက်ပိုပစ္စည်း {0} မထုတ်လုပ်နိုင်သ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,စတော့အိတ် Entry '{0} တင်သွင်းသည်မဟုတ် +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,စတော့အိတ် Entry '{0} တင်သွင်းသည်မဟုတ် DocType: Payment Reconciliation,Bank / Cash Account,ဘဏ်မှ / ငွေအကောင့် DocType: Tax Rule,Billing City,ငွေတောင်းခံစီးတီး DocType: Global Defaults,Hide Currency Symbol,ငွေကြေးစနစ်သင်္ကေတဝှက် @@ -1916,7 +1917,7 @@ DocType: Salary Structure,Total Earning,စုစုပေါင်းဝင် DocType: Purchase Receipt,Time at which materials were received,ပစ္စည်းများလက်ခံရရှိခဲ့ကြသည်မှာအချိန် apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,အကြှနျုပျ၏လိပ်စာ DocType: Stock Ledger Entry,Outgoing Rate,outgoing Rate -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,"အစည်းအရုံး, အခက်အလက်မာစတာ။" +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,"အစည်းအရုံး, အခက်အလက်မာစတာ။" apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,သို့မဟုတ် DocType: Sales Order,Billing Status,ငွေတောင်းခံနဲ့ Status apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Utility ကိုအသုံးစရိတ်များ @@ -1954,7 +1955,7 @@ DocType: Bin,Reserved Quantity,Reserved ပမာဏ DocType: Landed Cost Voucher,Purchase Receipt Items,Receipt ပစ္စည်းများဝယ်ယူရန် apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,အထူးပြုလုပ်ခြင်း Form များ DocType: Account,Income Account,ဝင်ငွေခွန်အကောင့် -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,delivery +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,delivery DocType: Stock Reconciliation Item,Current Qty,လက်ရှိ Qty DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",ပုဒ်မကုန်ကျမှာ "ပစ္စည်းများအခြေတွင်အမျိုးမျိုးနှုန်း" ကိုကြည့်ပါ DocType: Appraisal Goal,Key Responsibility Area,Key ကိုတာဝန်သိမှုဧရိယာ @@ -1966,8 +1967,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,ဘ DocType: Notification Control,Purchase Order Message,အမိန့် Message ယ်ယူ DocType: Tax Rule,Shipping Country,သဘောင်္တင်ခနိုင်ငံဆိုင်ရာ DocType: Upload Attendance,Upload HTML,HTML ကို upload -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})",အမိန့် {1} ကို Grand စုစုပေါင်းထက် သာ. ကြီးမြတ် \ မဖွစျနိုငျ ({2}) ဆန့်ကျင်စုစုပေါင်းကြိုတင်မဲ ({0}) DocType: Employee,Relieving Date,နေ့စွဲ Relieving apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","စျေးနှုန်းနည်းဥပဒေအချို့သတ်မှတ်ချက်များအပေါ်အခြေခံပြီး, လျှော့စျေးရာခိုင်နှုန်းသတ်မှတ် / စျေးနှုန်း List ကို overwrite မှလုပ်ဖြစ်ပါတယ်။" DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,ဂိုဒေါင်သာစတော့အိတ် Entry / Delivery မှတ်ချက် / ဝယ်ယူခြင်းပြေစာကနေတဆင့်ပြောင်းလဲနိုင်ပါသည် @@ -1977,8 +1976,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,ဝ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","ရွေးချယ်ထားသည့်စျေးနှုန်းများ Rule 'စျေးနှုန်း' 'အဘို့သည်ဆိုပါကစျေးနှုန်း List ကို overwrite လုပ်သွားမှာ။ စျေးနှုန်း Rule စျေးနှုန်းနောက်ဆုံးစျေးနှုန်းဖြစ်ပါတယ်, ဒါကြောင့်အဘယ်သူမျှမကနောက်ထပ်လျှော့စျေးလျှောက်ထားရပါမည်။ ဒါကွောငျ့, အရောင်းအမိန့်, ဝယ်ယူခြင်းအမိန့်စသည်တို့ကဲ့သို့သောကိစ္စများကိုအတွက်ကြောင့်မဟုတ်ဘဲ '' စျေးနှုန်း List ကို Rate '' လယ်ပြင်ထက်, '' Rate '' လယ်ပြင်၌ခေါ်ယူသောအခါလိမ့်မည်။" apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Track စက်မှုလက်မှုလုပ်ငန်းရှင်များကအမျိုးအစားအားဖြင့် Leads ။ DocType: Item Supplier,Item Supplier,item ပေးသွင်း -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,အဘယ်သူမျှမသုတ်ရ Item Code ကိုရိုက်ထည့်ပေးပါ -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},{1} quotation_to {0} လို့တန်ဖိုးကို select ကျေးဇူးပြု. +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,အဘယ်သူမျှမသုတ်ရ Item Code ကိုရိုက်ထည့်ပေးပါ +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},{1} quotation_to {0} လို့တန်ဖိုးကို select ကျေးဇူးပြု. apps/erpnext/erpnext/config/selling.py +33,All Addresses.,အားလုံးသည်လိပ်စာ။ DocType: Company,Stock Settings,စတော့အိတ် Settings ကို apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","အောက်ပါဂုဏ်သတ္တိနှစ်မျိုးလုံးမှတ်တမ်းများအတွက်တူညီသော အကယ်. merge သာဖြစ်နိုင်ပါတယ်။ အုပ်စု, Root Type, ကုမ္ပဏီဖြစ်ပါတယ်" @@ -2001,7 +2000,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Cheques နံပါတ် DocType: Payment Tool Detail,Payment Tool Detail,ငွေပေးချေမှုရမည့် Tool ကို Detail ,Sales Browser,အရောင်း Browser ကို DocType: Journal Entry,Total Credit,စုစုပေါင်းချေးငွေ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},သတိပေးချက်: နောက်ထပ် {0} # {1} စတော့ရှယ်ယာ entry ကို {2} ဆန့်ကျင်ရှိတယျဆိုတာကို +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},သတိပေးချက်: နောက်ထပ် {0} # {1} စတော့ရှယ်ယာ entry ကို {2} ဆန့်ကျင်ရှိတယျဆိုတာကို apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,ဒေသဆိုင်ရာ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),ချေးငွေနှင့်ကြိုတင်ငွေ (ပိုင်ဆိုင်မှုများ) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,ငျြ့ရမညျအကွောငျး @@ -2021,8 +2020,8 @@ DocType: Price List,Price List Master,စျေးနှုန်း List ကိ DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,အားလုံးသည်အရောင်းငွေကြေးကိစ္စရှင်းလင်းမှုမျိုးစုံ ** အရောင်း Persons ဆန့်ကျင် tagged နိုင်ပါတယ် ** သင်ပစ်မှတ် ထား. စောင့်ကြည့်နိုင်အောင်။ ,S.O. No.,SO အမှတ် DocType: Production Order Operation,Make Time Log,အချိန်အထဲလုပ်ပါ -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,reorder အအရေအတွက်သတ်မှတ် ကျေးဇူးပြု. -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},ခဲထံမှ {0} ဖောက်သည်ဖန်တီး ကျေးဇူးပြု. +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,reorder အအရေအတွက်သတ်မှတ် ကျေးဇူးပြု. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},ခဲထံမှ {0} ဖောက်သည်ဖန်တီး ကျေးဇူးပြု. DocType: Price List,Applicable for Countries,နိုင်ငံများအဘို့သက်ဆိုင်သော apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,ကွန်ပျူတာများ apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,"ဒါကအမြစ်ဖောက်သည်အုပ်စုဖြစ်ပြီး, edited မရနိုင်ပါ။" @@ -2058,7 +2057,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),ငွ DocType: Payment Reconciliation Invoice,Outstanding Amount,ထူးချွန်ငွေပမာဏ DocType: Project Task,Working,အလုပ်အဖွဲ့ DocType: Stock Ledger Entry,Stock Queue (FIFO),စတော့အိတ်တန်းစီ (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,အချိန် Logs ကို select ပေးပါ။ +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,အချိန် Logs ကို select ပေးပါ။ apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} ကုမ္ပဏီ {1} ပိုင်ပါဘူး DocType: Account,Round Off,ပိတ် round ,Requested Qty,တောင်းဆိုထားသော Qty @@ -2096,7 +2095,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,သက်ဆိုင်ရာလုပ်ငန်း Entries Get apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,စတော့အိတ်သည်စာရင်းကိုင် Entry ' DocType: Sales Invoice,Sales Team1,အရောင်း Team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,item {0} မတည်ရှိပါဘူး +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,item {0} မတည်ရှိပါဘူး DocType: Sales Invoice,Customer Address,customer လိပ်စာ DocType: Payment Request,Recipient and Message,လက်ခံမဲ့သူကိုနဲ့ Message DocType: Purchase Invoice,Apply Additional Discount On,Apply နောက်ထပ်လျှော့တွင် @@ -2115,7 +2114,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,အသံတိတ်အီးမေးလ် apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","အစားအစာ, Beverage & ဆေးရွက်ကြီး" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL သို့မဟုတ် BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},သာ unbilled {0} ဆန့်ကျင်ငွေပေးချေမှုကိုဖြစ်စေနိုင်ပါတယ် +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},သာ unbilled {0} ဆန့်ကျင်ငွေပေးချေမှုကိုဖြစ်စေနိုင်ပါတယ် apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,ကော်မရှင်နှုန်းက 100 မှာထက် သာ. ကြီးမြတ်မဖွစျနိုငျ apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,နိမ့်ဆုံးစာရင်းအဆင့် DocType: Stock Entry,Subcontract,Subcontract @@ -2133,9 +2132,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Software apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,အရောင် DocType: Maintenance Visit,Scheduled,Scheduled apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","စတော့အိတ် Item ရှိ၏" ဘယ်မှာ Item ကို select "No" ဖြစ်ပါတယ်နှင့် "အရောင်း Item ရှိ၏" "ဟုတ်တယ်" ဖြစ်ပါတယ်မှတပါးအခြားသောကုန်ပစ္စည်း Bundle ကိုလည်းရှိ၏ ကျေးဇူးပြု. +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),အမိန့်ဆန့်ကျင်စုစုပေါင်းကြိုတင်မဲ ({0}) {1} ({2}) ကိုဂရန်းစုစုပေါင်းထက် သာ. ကြီးမြတ်မဖွစျနိုငျ DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,ညီလအတွင်းအနှံ့ပစ်မှတ်ဖြန့်ဝေရန်လစဉ်ဖြန့်ဖြူးကိုရွေးချယ်ပါ။ DocType: Purchase Invoice Item,Valuation Rate,အဘိုးပြတ် Rate -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,စျေးနှုန်း List ကိုငွေကြေးစနစ်ကိုမရွေးချယ် +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,စျေးနှုန်း List ကိုငွေကြေးစနစ်ကိုမရွေးချယ် apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,item Row {0}: ဝယ်ယူခြင်း Receipt {1} အထက် '' ဝယ်ယူလက်ခံ '' table ထဲမှာမတည်ရှိပါဘူး apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},ဝန်ထမ်း {0} ပြီးသား {1} {2} နှင့် {3} အကြားလျှောက်ထားခဲ့သည် apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Project မှ Start ကိုနေ့စွဲ @@ -2147,6 +2147,7 @@ DocType: Quality Inspection,Inspection Type,စစ်ဆေးရေး Type apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},{0} ကို select ကျေးဇူးပြု. DocType: C-Form,C-Form No,C-Form တွင်မရှိပါ DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,ထငျရှားတက်ရောက် apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,သုတေသီတစ်ဦး apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,ပို့သည့်ရှေ့တော်၌ထိုသတင်းလွှာကိုကယ်တင် ကျေးဇူးပြု. apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,အမည်သို့မဟုတ်အီးမေးလ်မသင်မနေရ @@ -2172,7 +2173,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,အတ DocType: Payment Gateway,Gateway,Gateway မှာ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,ပေးသွင်း> ပေးသွင်း Type apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,နေ့စွဲ relieving ရိုက်ထည့်ပေးပါ။ -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,တင်သွင်းနိုင်ပါတယ် '' Approved '' အဆင့်အတန်းနှင့်အတူ Applications ကိုသာ Leave apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,လိပ်စာခေါင်းစဉ်မဖြစ်မနေဖြစ်ပါတယ်။ DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,စုံစမ်းရေးအရင်းအမြစ်မဲဆွယ်စည်းရုံးရေးလျှင်ကင်ပိန်းအမည်ကိုထည့် @@ -2187,10 +2188,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,လက်ခံထားတဲ DocType: Bank Reconciliation Detail,Posting Date,Post date DocType: Item,Valuation Method,အဘိုးပြတ် Method ကို apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},{0} {1} ရန်အဘို့အငွေလဲနှုန်းရှာတွေ့ဖို့မအောင်မြင်ဘူး +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,မာကုတစ်ဝက်နေ့ DocType: Sales Invoice,Sales Team,အရောင်းရေးအဖွဲ့ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,entry ကို Duplicate DocType: Serial No,Under Warranty,အာမခံအောက်မှာ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[အမှား] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[အမှား] DocType: Sales Order,In Words will be visible once you save the Sales Order.,သင်အရောင်းအမိန့်ကိုကယ်တင်တစ်ချိန်ကစကားမြင်နိုင်ပါလိမ့်မည်။ ,Employee Birthday,ဝန်ထမ်းမွေးနေ့ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,အကျိုးတူ Capital ကို @@ -2213,6 +2215,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,လက်ရှိအရောင်းအနှင့်အတူကုန်ကျစရိတ် Center ကအုပ်စုအဖြစ်ပြောင်းလဲမပြနိုင် DocType: Account,Depreciation,တန်ဖိုး apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),ပေးသွင်းသူ (များ) +DocType: Employee Attendance Tool,Employee Attendance Tool,ဝန်ထမ်းတက်ရောက် Tool ကို DocType: Supplier,Credit Limit,ခရက်ဒစ်ကန့်သတ် apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,အရောင်းအဝယ်အမျိုးအစားကိုရွေးပါ DocType: GL Entry,Voucher No,ဘောက်ချာမရှိ @@ -2239,7 +2242,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,root account ကိုဖျက်ပစ်မရနိုင်ပါ ,Is Primary Address,မူလတန်းလိပ်စာဖြစ်ပါသည် DocType: Production Order,Work-in-Progress Warehouse,အလုပ်လုပ်-In-တိုးတက်ရေးပါတီဂိုဒေါင် -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},ကိုးကားစရာ # {0} {1} ရက်စွဲပါ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},ကိုးကားစရာ # {0} {1} ရက်စွဲပါ apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,လိပ်စာ Manage DocType: Pricing Rule,Item Code,item Code ကို DocType: Production Planning Tool,Create Production Orders,ထုတ်လုပ်မှုအမိန့် Create @@ -2266,7 +2269,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,ဘဏ်မှပြန်လ apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Updates ကိုရယူပါ apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,material တောင်းဆိုမှု {0} ကိုပယ်ဖျက်သို့မဟုတ်ရပ်တန့်နေသည် apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,အနည်းငယ်နမူနာမှတ်တမ်းများ Add -apps/erpnext/erpnext/config/hr.py +210,Leave Management,စီမံခန့်ခွဲမှု Leave +apps/erpnext/erpnext/config/hr.py +225,Leave Management,စီမံခန့်ခွဲမှု Leave apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,အကောင့်အားဖြင့်အုပ်စု DocType: Sales Order,Fully Delivered,အပြည့်အဝကိုကယ်နှုတ် DocType: Lead,Lower Income,lower ဝင်ငွေခွန် @@ -2281,6 +2284,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','' နေ့စွဲ မှစ. '' နေ့စွဲရန် '' နောက်မှာဖြစ်ရပါမည် ,Stock Projected Qty,စတော့အိတ် Qty စီမံကိန်း apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},customer {0} {1} သည်စီမံကိန်းပိုင်ပါဘူး +DocType: Employee Attendance Tool,Marked Attendance HTML,တခုတ်တရတက်ရောက် HTML ကို DocType: Sales Order,Customer's Purchase Order,customer ရဲ့အမိန့်ကိုဝယ်ယူ DocType: Warranty Claim,From Company,ကုမ္ပဏီအနေဖြင့် apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Value တစ်ခုသို့မဟုတ် Qty @@ -2345,6 +2349,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,ငွေလွှဲခြင်း apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,ဘဏ်မှအကောင့်ကို select ကျေးဇူးပြု. DocType: Newsletter,Create and Send Newsletters,သတင်းလွှာ Create နှင့် Send +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,အားလုံး Check DocType: Sales Order,Recurring Order,ထပ်တလဲလဲအမိန့် DocType: Company,Default Income Account,default ဝင်ငွေခွန်အကောင့် apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,ဖောက်သည်အုပ်စု / ဖောက်သည် @@ -2376,6 +2381,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,ဝယ်ယူခြ DocType: Item,Warranty Period (in days),(ရက်) ကိုအာမခံကာလ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,စစ်ဆင်ရေးကနေ Net ကငွေ apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,ဥပမာ VAT +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,ထုထည်ကြီးအတွက်မာကုန်ထမ်းတက်ရောက် apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,item 4 DocType: Journal Entry Account,Journal Entry Account,ဂျာနယ် Entry အကောင့် DocType: Shopping Cart Settings,Quotation Series,စျေးနှုန်းစီးရီး @@ -2520,14 +2526,14 @@ DocType: Task,Actual Start Date (via Time Logs),(အချိန် Logs ကန DocType: Stock Reconciliation Item,Before reconciliation,ပြန်လည်သင့်မြတ်ရေးမဖြစ်မီ apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},{0} မှ DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Added အခွန်အခများနှင့်စွပ်စွဲချက် (ကုမ္ပဏီငွေကြေးစနစ်) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,item ခွန် Row {0} type ကိုခွန်သို့မဟုတ်ဝင်ငွေခွန်သို့မဟုတ်သုံးစွဲမှုသို့မဟုတ်နှော၏အကောင့်ကိုရှိရမယ် +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,item ခွန် Row {0} type ကိုခွန်သို့မဟုတ်ဝင်ငွေခွန်သို့မဟုတ်သုံးစွဲမှုသို့မဟုတ်နှော၏အကောင့်ကိုရှိရမယ် DocType: Sales Order,Partly Billed,တစ်စိတ်တစ်ပိုင်းကြေညာ DocType: Item,Default BOM,default BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,အတည်ပြုရန်ကုမ္ပဏီ၏နာမ-type ကိုပြန်လည် ကျေးဇူးပြု. apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,စုစုပေါင်းထူးချွန် Amt DocType: Time Log Batch,Total Hours,စုစုပေါင်းနာရီ DocType: Journal Entry,Printing Settings,ပုံနှိပ်ခြင်းက Settings -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},စုစုပေါင်း Debit စုစုပေါင်းချေးငွေတန်းတူဖြစ်ရမည်။ အဆိုပါခြားနားချက် {0} သည် +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},စုစုပေါင်း Debit စုစုပေါင်းချေးငွေတန်းတူဖြစ်ရမည်။ အဆိုပါခြားနားချက် {0} သည် apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,မော်တော်ယာဉ် apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Delivery မှတ်ချက်ထံမှ DocType: Time Log,From Time,အချိန်ကနေ @@ -2573,7 +2579,7 @@ DocType: Purchase Invoice Item,Image View,image ကိုကြည့်ရန DocType: Issue,Opening Time,အချိန်ဖွင့်လှစ် apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,ကနေနှင့်လိုအပ်သည့်ရက်စွဲများရန် apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Securities မှ & ကုန်စည်ဒိုင် -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Variant များအတွက်တိုင်း၏ default အနေနဲ့ Unit မှ '' {0} '' Template: ထဲမှာရှိသကဲ့သို့တူညီသူဖြစ်ရမည် '' {1} '' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Variant များအတွက်တိုင်း၏ default အနေနဲ့ Unit မှ '' {0} '' Template: ထဲမှာရှိသကဲ့သို့တူညီသူဖြစ်ရမည် '' {1} '' DocType: Shipping Rule,Calculate Based On,အခြေတွင်တွက်ချက် DocType: Delivery Note Item,From Warehouse,ဂိုဒေါင်ထဲကနေ DocType: Purchase Taxes and Charges,Valuation and Total,အဘိုးပြတ်နှင့်စုစုပေါင်း @@ -2595,7 +2601,7 @@ DocType: Leave Application,Follow via Email,အီးမေးလ်ကနေတ DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,လျှော့ငွေပမာဏပြီးနောက်အခွန်ပမာဏ apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,ကလေးသူငယ်အကောင့်ကိုဒီအကောင့်ရှိနေပြီ။ သင်သည်ဤအကောင့်ကိုမဖျက်နိုင်ပါ။ apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,ပစ်မှတ် qty သို့မဟုတ်ပစ်မှတ်ပမာဏကိုဖြစ်စေမဖြစ်မနေဖြစ်ပါသည် -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},BOM Item {0} သည်တည်ရှိမရှိပါက default +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},BOM Item {0} သည်တည်ရှိမရှိပါက default apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,Post date ပထမဦးဆုံးကိုရွေးပါ ကျေးဇူးပြု. apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,နေ့စွဲဖွင့်လှစ်နေ့စွဲပိတ်ပြီးမတိုင်မှီဖြစ်သင့် DocType: Leave Control Panel,Carry Forward,Forward သယ် @@ -2672,7 +2678,7 @@ DocType: Leave Type,Is Encash,Encash ဖြစ်ပါသည် DocType: Purchase Invoice,Mobile No,မိုဘိုင်းလ်မရှိပါ DocType: Payment Tool,Make Journal Entry,ဂျာနယ် Entry 'ပါစေ DocType: Leave Allocation,New Leaves Allocated,ခွဲဝေနယူးရွက် -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Project သည်ပညာ data တွေကိုစျေးနှုန်းသည်မရရှိနိုင်ပါသည် +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Project သည်ပညာ data တွေကိုစျေးနှုန်းသည်မရရှိနိုင်ပါသည် DocType: Project,Expected End Date,မျှော်လင့်ထားသည့်အဆုံးနေ့စွဲ DocType: Appraisal Template,Appraisal Template Title,စိစစ်ရေး Template: ခေါင်းစဉ်မရှိ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,ကုန်သွယ်လုပ်ငန်းခွန် @@ -2720,6 +2726,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No., apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,တစ်ဦးကိုသတ်မှတ်ပေးပါ DocType: Offer Letter,Awaiting Response,စောင့်ဆိုင်းတုန့်ပြန် apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,အထက် +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,အချိန်အထဲ Billed သိရသည် DocType: Salary Slip,Earning & Deduction,ဝင်ငွေ & ထုတ်ယူ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,အကောင့်ကို {0} တစ်ဦးအုပ်စုမဖွစျနိုငျ apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,optional ။ ဒီ setting ကိုအမျိုးမျိုးသောငွေကြေးလွှဲပြောင်းမှုမှာ filter မှအသုံးပြုလိမ့်မည်။ @@ -2790,14 +2797,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,အောင်မြင်စွာဒီကုမ္ပဏီနှင့်ဆက်စပ်သောအားလုံးအရောင်းအဖျက်ပြီး! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,နေ့စွဲအပေါ်အဖြစ် apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,အစမ်းထား -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,default ဂိုဒေါင်စတော့ရှယ်ယာ Item တွေအတွက်မဖြစ်မနေဖြစ်ပါတယ်။ +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,default ဂိုဒေါင်စတော့ရှယ်ယာ Item တွေအတွက်မဖြစ်မနေဖြစ်ပါတယ်။ apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},လ {0} သည်လစာ၏ငွေပေးချေမှုရမည့်နှင့်တစ်နှစ် {1} DocType: Stock Settings,Auto insert Price List rate if missing,auto INSERT စျေးနှုန်းကိုစာရင်းနှုန်းကပျောက်ဆုံးနေဆဲလျှင် apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,စုစုပေါင်း Paid ငွေပမာဏ ,Transferred Qty,လွှဲပြောင်း Qty apps/erpnext/erpnext/config/learn.py +11,Navigating,Navigator apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,စီမံကိန်း -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,အချိန်အထဲ Batch လုပ်ပါ +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,အချိန်အထဲ Batch လုပ်ပါ apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,ထုတ်ပြန်သည် DocType: Project,Total Billing Amount (via Time Logs),(အချိန် Logs ကနေတဆင့်) စုစုပေါင်း Billing ငွေပမာဏ apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,ကျွန်ုပ်တို့သည်ဤ Item ရောင်းချ @@ -2805,7 +2812,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,အရေအတွက်ပါ 0 င်ထက် သာ. ကြီးမြတ်ဖြစ်သင့် DocType: Journal Entry,Cash Entry,ငွေသား Entry ' DocType: Sales Partner,Contact Desc,ဆက်သွယ်ရန် Desc -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","ကျပန်း, ဖျားနာစသည်တို့ကဲ့သို့သောအရွက်အမျိုးအစား" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","ကျပန်း, ဖျားနာစသည်တို့ကဲ့သို့သောအရွက်အမျိုးအစား" DocType: Email Digest,Send regular summary reports via Email.,အီးမေးလ်ကနေတဆင့်ပုံမှန်အကျဉ်းချုပ်အစီရင်ခံစာပေးပို့ပါ။ DocType: Brand,Item Manager,item Manager က DocType: Cost Center,Add rows to set annual budgets on Accounts.,Accounts ကိုအပေါ်နှစ်စဉ်ဘတ်ဂျက်တင်ထားရန်တန်းစီထည့်ပါ။ @@ -2820,7 +2827,7 @@ DocType: GL Entry,Party Type,ပါတီ Type apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,ကုန်ကြမ်းအဓိက Item အဖြစ်အတူတူမဖွစျနိုငျ DocType: Item Attribute Value,Abbreviation,အကျဉ်း apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,{0} ကန့်သတ်ထက်ကျော်လွန်ပြီးကတည်းက authroized မဟုတ် -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,လစာ template ကိုမာစတာ။ +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,လစာ template ကိုမာစတာ။ DocType: Leave Type,Max Days Leave Allowed,max Days ထွက်ခွာခွင့်ပြု apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,စျေးဝယ်လှည်းများအတွက်အခွန်နည်းဥပဒေ Set DocType: Payment Tool,Set Matching Amounts,Set စျေးကွက်ငွေပမာဏ @@ -2833,7 +2840,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,ခဲ DocType: Stock Settings,Role Allowed to edit frozen stock,အေးခဲစတော့ရှယ်ယာတည်းဖြတ်ရန် Allowed အခန်းကဏ္ဍ ,Territory Target Variance Item Group-Wise,နယ်မြေတွေကို Target ကကှဲလှဲ Item Group မှ-ပညာရှိ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,အားလုံးသည်ဖောက်သည်အဖွဲ့များ -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} မဖြစ်မနေဖြစ်ပါတယ်။ ဖြစ်ရင်ငွေကြေးစနစ်ချိန်းစံချိန် {1} {2} မှဖန်တီးသည်မဟုတ်။ +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} မဖြစ်မနေဖြစ်ပါတယ်။ ဖြစ်ရင်ငွေကြေးစနစ်ချိန်းစံချိန် {1} {2} မှဖန်တီးသည်မဟုတ်။ apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,အခွန် Template ကိုမဖြစ်မနေဖြစ်ပါတယ်။ apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,အကောင့်ကို {0}: မိဘအကောင့်ကို {1} မတည်ရှိပါဘူး DocType: Purchase Invoice Item,Price List Rate (Company Currency),စျေးနှုန်း List ကို Rate (ကုမ္ပဏီငွေကြေးစနစ်) @@ -2853,8 +2860,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,item ပညာရှိ ,Item-wise Price List Rate,item ပညာစျေးနှုန်း List ကို Rate apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,ပေးသွင်းစျေးနှုန်း DocType: Quotation,In Words will be visible once you save the Quotation.,သင်စျေးနှုန်းကိုကယ်တင်တစ်ချိန်ကစကားမြင်နိုင်ပါလိမ့်မည်။ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} ရပ်တန့်နေသည် -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Barcode {0} ပြီးသား Item {1} များတွင်အသုံးပြု +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} ရပ်တန့်နေသည် +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Barcode {0} ပြီးသား Item {1} များတွင်အသုံးပြု DocType: Lead,Add to calendar on this date,ဒီနေ့စွဲအပေါ်ပြက္ခဒိန်မှ Add apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,သင်္ဘောစရိတ်ပေါင်းထည့်သည်နည်းဥပဒေများ။ apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,လာမည့်အဖြစ်အပျက်များ @@ -2880,8 +2887,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling, apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Atleast တယောက်ဂိုဒေါင်မသင်မနေရ DocType: Serial No,Out of Warranty,အာမခံထဲက DocType: BOM Replace Tool,Replace,အစားထိုးဖို့ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} အရောင်းပြေစာ {1} ဆန့်ကျင် -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,တိုင်း၏ default အနေနဲ့ယူနစ်ကိုရိုက်ထည့်ပေးပါ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} အရောင်းပြေစာ {1} ဆန့်ကျင် +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,တိုင်း၏ default အနေနဲ့ယူနစ်ကိုရိုက်ထည့်ပေးပါ DocType: Purchase Invoice Item,Project Name,စီမံကိန်းအမည် DocType: Supplier,Mention if non-standard receivable account,Non-စံ receiver အကောင့်ကိုလျှင်ဖော်ပြထားခြင်း DocType: Journal Entry Account,If Income or Expense,ဝင်ငွေခွန်သို့မဟုတ်သုံးစွဲမှုမယ်ဆိုရင် @@ -2906,7 +2913,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,ဘဏ္ဍာရေးနှစ်တစ်နှစ်တာ: {0} တည်ရှိပါဘူး DocType: Currency Exchange,To Currency,ငွေကြေးစနစ်မှ DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,အောက်ပါအသုံးပြုသူများလုပ်ကွက်နေ့ရက်ကာလအဘို့ထွက်ခွာ Applications ကိုအတည်ပြုခွင့်ပြုပါ။ -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,သုံးစွဲမှုပြောဆိုချက်ကိုအမျိုးအစားများ။ +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,သုံးစွဲမှုပြောဆိုချက်ကိုအမျိုးအစားများ။ DocType: Item,Taxes,အခွန် apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Paid နှင့်မကယ်မနှုတ် DocType: Project,Default Cost Center,default ကုန်ကျစရိတ် Center က @@ -2936,7 +2943,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},row # {0}: Serial မရှိပါ {1} {2} {3} နှင့်ကိုက်ညီမပါဘူး apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,ကျပန်းထွက်ခွာ DocType: Batch,Batch ID,batch ID ကို -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},မှတ်စု: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},မှတ်စု: {0} ,Delivery Note Trends,Delivery မှတ်ချက်ခေတ်ရေစီးကြောင်း apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,This Week ရဲ့အကျဉ်းချုပ် apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} အတန်း {1} အတွက်ဝယ်ယူသို့မဟုတ် Sub-စာချုပ်ချုပ်ဆို Item ဖြစ်ရမည် @@ -2976,6 +2983,7 @@ DocType: Project Task,Pending Review,ဆိုင်းငံ့ထားပြ apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,ပေးဆောင်ရန်ဒီနေရာကိုနှိပ်ပါ DocType: Task,Total Expense Claim (via Expense Claim),(ကုန်ကျစရိတ်တောင်းဆိုမှုများကနေတဆင့်) စုစုပေါင်းကုန်ကျစရိတ်တောင်းဆိုမှုများ apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,customer Id +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,မာကုဒူးယောင် apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,အချိန်မှအချိန် မှစ. ထက် သာ. ကြီးမြတ်ဖြစ်ရမည် DocType: Journal Entry Account,Exchange Rate,ငွေလဲလှယ်နှုန်း apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,အရောင်းအမိန့် {0} တင်သွင်းသည်မဟုတ် @@ -3023,7 +3031,7 @@ DocType: Item Group,Default Expense Account,default သုံးစွဲမှ DocType: Employee,Notice (days),အသိပေးစာ (ရက်) DocType: Tax Rule,Sales Tax Template,အရောင်းခွန် Template ကို DocType: Employee,Encashment Date,Encashment နေ့စွဲ -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","ဘောက်ချာ Type ဝယ်ယူခြင်းအမိန့်, ဝယ်ယူခြင်းပြေစာသို့မဟုတ်ဂျာနယ် Entry တယောက်ဖြစ်ရပါမည်ဆန့်ကျင်" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","ဘောက်ချာ Type ဝယ်ယူခြင်းအမိန့်, ဝယ်ယူခြင်းပြေစာသို့မဟုတ်ဂျာနယ် Entry တယောက်ဖြစ်ရပါမည်ဆန့်ကျင်" DocType: Account,Stock Adjustment,စတော့အိတ် Adjustments apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},{0} - default လုပ်ဆောင်ချက်ကုန်ကျစရိတ်လုပ်ဆောင်ချက်ကအမျိုးအစားသည်တည်ရှိ DocType: Production Order,Planned Operating Cost,စီစဉ်ထားတဲ့ Operating ကုန်ကျစရိတ် @@ -3077,6 +3085,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Entry ပိတ်ရေးထား DocType: BOM,Rate Of Materials Based On,ပစ္စည်းများအခြေတွင်အမျိုးမျိုး rate apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,ပံ့ပိုးမှု Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,အားလုံးကို uncheck လုပ် apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},ကုမ္ပဏီဂိုဒေါင် {0} ပျောက်ဆုံးနေသည် DocType: POS Profile,Terms and Conditions,စည်းကမ်းနှင့်သတ်မှတ်ချက်များ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},နေ့စွဲဖို့ဘဏ္ဍာရေးနှစ်တစ်နှစ်တာအတွင်းတွင်သာဖြစ်သင့်သည်။ နေ့စွဲ = {0} နိုင်ရန်ယူဆ @@ -3098,7 +3107,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Default အဖြစ်ဒီဘဏ္ဍာရေးနှစ်တစ်နှစ်တာတင်ထားရန်, '' Default အဖြစ်သတ်မှတ်ပါ '' ကို click လုပ်ပါ" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),အထောက်အပံ့အီးမေးလ်က id သည် Setup ကိုအဝင် server ကို။ (ဥပမာ support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,ပြတ်လပ်မှု Qty -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,item မူကွဲ {0} အတူတူ Attribute တွေနှင့်အတူတည်ရှိမှု့ +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,item မူကွဲ {0} အတူတူ Attribute တွေနှင့်အတူတည်ရှိမှု့ DocType: Salary Slip,Salary Slip,လစာစလစ်ဖြတ်ပိုင်းပုံစံ apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,'' နေ့စွဲရန် '' လိုအပ်သည် DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","ကယ်နှုတ်တော်မူ၏ခံရဖို့အစုအထုပ်ကိုတနိုင်ငံအညွန့ထုပ်ပိုး Generate ။ package ကိုနံပါတ်, package ကို contents တွေကိုနှင့်၎င်း၏အလေးချိန်အကြောင်းကြားရန်အသုံးပြုခဲ့ကြသည်။" @@ -3146,7 +3155,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,ကြ DocType: Item Attribute Value,Attribute Value,attribute Value တစ်ခု apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","အီးမေးလ်က id ထူးခြားသောဖြစ်ရမည်, ပြီးသား {0} သည်တည်ရှိ" ,Itemwise Recommended Reorder Level,Itemwise Reorder အဆင့်အကြံပြုထား -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,ပထမဦးဆုံး {0} ကို select ကျေးဇူးပြု. +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,ပထမဦးဆုံး {0} ကို select ကျေးဇူးပြု. DocType: Features Setup,To get Item Group in details table,အသေးစိတ်အချက်အလက်များကို table ထဲမှာ Item Group မှရရန် apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,batch {0} Item ၏ {1} သက်တမ်းကုန်ဆုံးခဲ့သည်။ DocType: Sales Invoice,Commission,ကော်မရှင် @@ -3190,7 +3199,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,ထူးချွန် voucher Get DocType: Warranty Claim,Resolved By,အားဖြင့်ပြေလည် DocType: Appraisal,Start Date,စတင်သည့်ရက်စွဲ -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,တစ်ဦးကာလသည်အရွက်ခွဲဝေချထားပေးရန်။ +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,တစ်ဦးကာလသည်အရွက်ခွဲဝေချထားပေးရန်။ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,မှားယွင်းစွာရှင်းလင်း Cheques နှင့်စာရင်း apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,အတည်ပြုရန်ဤနေရာကိုနှိပ်ပါ apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,အကောင့်ကို {0}: သင့်မိဘအကောင့်ကိုတခုအဖြစ်သတ်မှတ်လို့မရပါဘူး @@ -3210,7 +3219,7 @@ DocType: Employee,Educational Qualification,ပညာရေးဆိုင်ရ DocType: Workstation,Operating Costs,operating ကုန်ကျစရိတ် DocType: Employee Leave Approver,Employee Leave Approver,ဝန်ထမ်းထွက်ခွာခွင့်ပြုချက် apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} အောင်မြင်စွာကျွန်တော်တို့ရဲ့သတင်းလွှာစာရင်းတွင်ထည့်သွင်းခဲ့သည်။ -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},row {0}: An Reorder entry ကိုပြီးသားဒီကိုဂိုဒေါင် {1} သည်တည်ရှိ +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},row {0}: An Reorder entry ကိုပြီးသားဒီကိုဂိုဒေါင် {1} သည်တည်ရှိ apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","ဆုံးရှုံးအဖြစ်စျေးနှုန်းကိုဖန်ဆင်းခဲ့ပြီးကြောင့်, ကြေညာလို့မရပါဘူး။" DocType: Purchase Taxes and Charges Template,Purchase Master Manager,ဝယ်ယူမဟာ Manager က apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,ထုတ်လုပ်မှုအမိန့် {0} တင်သွင်းရမည် @@ -3234,7 +3243,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,အရောင်းပြေစာ {0} ပြီးသားတင်သွင်းခဲ့ apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,ပြီးစီးနေ့စွဲ DocType: Purchase Invoice Item,Amount (Company Currency),ငွေပမာဏ (ကုမ္ပဏီငွေကြေးစနစ်) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,အစည်းအရုံးယူနစ် (ဌာန၏) သခင်သည်။ +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,အစည်းအရုံးယူနစ် (ဌာန၏) သခင်သည်။ apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,တရားဝင်မိုဘိုင်း nos ရိုက်ထည့်ပေးပါ DocType: Budget Detail,Budget Detail,ဘဏ္ဍာငွေအရအသုံး Detail apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,ပေးပို့ခြင်းမပြုမီသတင်းစကားကိုရိုက်ထည့်ပေးပါ @@ -3250,13 +3259,13 @@ DocType: Purchase Receipt Item,Received and Accepted,ရရှိထားသည ,Serial No Service Contract Expiry,serial No Service ကိုစာချုပ်သက်တမ်းကုန်ဆုံး DocType: Item,Unit of Measure Conversion,တိုင်းကူးပြောင်းခြင်း၏ယူနစ် apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,ဝန်ထမ်းမပြောင်းနိုင်ဘူး -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,သင်တစ်ချိန်တည်းမှာအတူတူအကောင့်ကိုချေးငွေနှင့်ငွေကြိုမပေးနိုငျ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,သင်တစ်ချိန်တည်းမှာအတူတူအကောင့်ကိုချေးငွေနှင့်ငွေကြိုမပေးနိုငျ DocType: Naming Series,Help HTML,HTML ကိုကူညီပါ apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},တာဝန်ပေးစုစုပေါင်း weightage 100% ဖြစ်သင့်သည်။ ဒါဟာ {0} သည် apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},{0} over- ခွင့် Item {1} သည်ကိုကူး DocType: Address,Name of person or organization that this address belongs to.,ဒီလိပ်စာကိုပိုင်ဆိုင်ကြောင်းလူတစ်ဦးသို့မဟုတ်အဖွဲ့အစည်း၏အမည်ပြောပါ။ apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,သင့်ရဲ့ပေးသွင်း -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,အရောင်းအမိန့်ကိုဖန်ဆင်းသည်အဖြစ်ပျောက်ဆုံးသွားသောအဖြစ်သတ်မှတ်လို့မရပါဘူး။ +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,အရောင်းအမိန့်ကိုဖန်ဆင်းသည်အဖြစ်ပျောက်ဆုံးသွားသောအဖြစ်သတ်မှတ်လို့မရပါဘူး။ apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,နောက်ထပ်လစာဖွဲ့စည်းပုံ {0} ဝန်ထမ်း {1} သည်တက်ကြွဖြစ်ပါတယ်။ သူ့ရဲ့အနေအထား '' မဝင် '' ဆက်လက်ဆောင်ရွက်စေပါလော့။ DocType: Purchase Invoice,Contact,ထိတှေ့ apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,မှစ. ရရှိထားသည့် @@ -3266,11 +3275,11 @@ DocType: Item,Has Serial No,Serial No ရှိပါတယ် DocType: Employee,Date of Issue,ထုတ်ဝေသည့်ရက်စွဲ apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: {0} {1} သည် မှစ. apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},row # {0}: ကို item များအတွက် Set ပေးသွင်း {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,website က Image ကို {0} ပစ္စည်းမှပူးတွဲပါ {1} မတွေ့ရှိနိုင် +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,website က Image ကို {0} ပစ္စည်းမှပူးတွဲပါ {1} မတွေ့ရှိနိုင် DocType: Issue,Content Type,content Type apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,ကွန်ပျူတာ DocType: Item,List this Item in multiple groups on the website.,Website တွင်အများအပြားအုပ်စုများ၌ဤ Item စာရင်း။ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,အခြားအငွေကြေးကိုနှင့်အတူအကောင့်အသစ်များ၏ခွင့်ပြုပါရန်ဘက်စုံငွေကြေးစနစ် option ကိုစစ်ဆေးပါ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,အခြားအငွေကြေးကိုနှင့်အတူအကောင့်အသစ်များ၏ခွင့်ပြုပါရန်ဘက်စုံငွေကြေးစနစ် option ကိုစစ်ဆေးပါ apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,item: {0} system ကိုအတွက်မတည်ရှိပါဘူး apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,သင်က Frozen တန်ဖိုးကိုသတ်မှတ်ခွင့်မဟုတ် DocType: Payment Reconciliation,Get Unreconciled Entries,Unreconciled Entries Get @@ -3280,14 +3289,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,ဒါကြ DocType: Delivery Note,To Warehouse,ဂိုဒေါင်မှ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},အကောင့်ကို {0} ဘဏ္ဍာရေးနှစ်များအတွက် {1} တစ်ကြိမ်ထက်ပိုပြီးဝသို့ဝင်ခဲ့သည် ,Average Commission Rate,ပျမ်းမျှအားဖြင့်ကော်မရှင် Rate -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'' ဟုတ်ကဲ့ '' Non-စတော့ရှယ်ယာကို item သည်မဖွစျနိုငျ '' Serial No ရှိခြင်း '' +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'' ဟုတ်ကဲ့ '' Non-စတော့ရှယ်ယာကို item သည်မဖွစျနိုငျ '' Serial No ရှိခြင်း '' apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,တက်ရောက်သူအနာဂတ်ရက်စွဲများကိုချောင်းမြောင်းမရနိုင်ပါ DocType: Pricing Rule,Pricing Rule Help,စျေးနှုန်း Rule အကူအညီ DocType: Purchase Taxes and Charges,Account Head,အကောင့်ဖွင့်ဦးခေါင်း apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,ပစ္စည်းများဆင်းသက်ကုန်ကျစရိတ်ကိုတွက်ချက်ဖို့အပိုဆောင်းကုန်ကျစရိတ်များကို Update apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,electrical DocType: Stock Entry,Total Value Difference (Out - In),(- ခုနှစ်တွင် Out) စုစုပေါင်းတန်ဖိုး Difference -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,row {0}: ငွေလဲနှုန်းမဖြစ်မနေဖြစ်ပါသည် +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,row {0}: ငွေလဲနှုန်းမဖြစ်မနေဖြစ်ပါသည် apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},အသုံးပြုသူ ID န်ထမ်း {0} သည်စွဲလမ်းခြင်းမ DocType: Stock Entry,Default Source Warehouse,default Source ကိုဂိုဒေါင် DocType: Item,Customer Code,customer Code ကို @@ -3306,15 +3315,15 @@ DocType: Notification Control,Sales Invoice Message,အရောင်းပြ apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,အကောင့်ကို {0} ပိတ်ပြီး type ကိုတာဝန်ဝတ္တရား / Equity ၏ဖြစ်ရပါမည် DocType: Authorization Rule,Based On,ပေါ်အခြေခံကာ DocType: Sales Order Item,Ordered Qty,အမိန့် Qty -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,item {0} ပိတ်ထားတယ် +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,item {0} ပိတ်ထားတယ် DocType: Stock Settings,Stock Frozen Upto,စတော့အိတ် Frozen အထိ apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},မှစ. နှင့်ကာလ {0} ထပ်တလဲလဲများအတွက်မဖြစ်မနေရက်စွဲများရန် period apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,စီမံကိန်းလှုပ်ရှားမှု / အလုပ်တစ်ခုကို။ -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,လစာစလစ် Generate +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,လစာစလစ် Generate apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","application များအတွက် {0} အဖြစ်ရွေးချယ်မယ်ဆိုရင်ဝယ်, checked ရမည်" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,လျော့စျေးက 100 ထက်လျော့နည်းဖြစ်ရမည် DocType: Purchase Invoice,Write Off Amount (Company Currency),ဟာ Off ရေးဖို့ပမာဏ (Company မှငွေကြေးစနစ်) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,row # {0}: set ကျေးဇူးပြု. reorder အအရေအတွက် +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,row # {0}: set ကျေးဇူးပြု. reorder အအရေအတွက် DocType: Landed Cost Voucher,Landed Cost Voucher,ကုန်ကျစရိတ်ဘောက်ချာဆင်းသက် apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},{0} set ကျေးဇူးပြု. DocType: Purchase Invoice,Repeat on Day of Month,Month ရဲ့နေ့တွင် Repeat @@ -3366,7 +3375,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,တိုးတက်ရေးပါတီဂိုဒေါင်ခုနှစ်တွင် Default အနေနဲ့သူ Work apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,စာရင်းကိုင်လုပ်ငန်းတွေအတွက် default setting များ။ apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,မျှော်လင့်ထားသည့်ရက်စွဲပစ္စည်းတောင်းဆိုမှုနေ့စွဲခင်မဖွစျနိုငျ -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,item {0} တစ်ခုအရောင်း Item ဖြစ်ရမည် +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,item {0} တစ်ခုအရောင်း Item ဖြစ်ရမည် DocType: Naming Series,Update Series Number,Update ကိုစီးရီးနံပါတ် DocType: Account,Equity,equity DocType: Sales Order,Printing Details,ပုံနှိပ် Details ကို @@ -3418,7 +3427,7 @@ DocType: Task,Review Date,ပြန်လည်ဆန်းစစ်ခြင် DocType: Purchase Invoice,Advance Payments,ငွေပေးချေရှေ့တိုး DocType: Purchase Taxes and Charges,On Net Total,Net ကစုစုပေါင်းတွင် apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,အတန်းအတွက်ပစ်မှတ်ဂိုဒေါင် {0} ထုတ်လုပ်မှုအမိန့်အဖြစ်အတူတူသာဖြစ်ရမည် -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,ငွေပေးချေမှုရမည့် Tool ကိုအသုံးပွုဖို့မရှိပါခွင့်ပြုချက် +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,ငွေပေးချေမှုရမည့် Tool ကိုအသုံးပွုဖို့မရှိပါခွင့်ပြုချက် apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,% s ထပ်တလဲလဲသည်သတ်မှတ်ထားသောမဟုတ် '' အမိန့်ကြော်ငြာစာအီးမေးလ်လိပ်စာ '' apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,ငွေကြေးအချို့သောအခြားငွေကြေးသုံးပြီး entries တွေကိုချမှတ်ပြီးနောက်ပြောင်းလဲသွားမရနိုငျ DocType: Company,Round Off Account,အကောင့်ပိတ် round @@ -3441,7 +3450,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,ကုန်ကြမ်းပေးသောပမာဏကနေ repacking / ထုတ်လုပ်ပြီးနောက်ရရှိသောတဲ့ item ၏အရေအတွက် DocType: Payment Reconciliation,Receivable / Payable Account,receiver / ပေးဆောင်အကောင့် DocType: Delivery Note Item,Against Sales Order Item,အရောင်းအမိန့် Item ဆန့်ကျင် -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},attribute က {0} များအတွက် Value ကို Attribute ကိုသတ်မှတ် ကျေးဇူးပြု. +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},attribute က {0} များအတွက် Value ကို Attribute ကိုသတ်မှတ် ကျေးဇူးပြု. DocType: Item,Default Warehouse,default ဂိုဒေါင် DocType: Task,Actual End Date (via Time Logs),(အချိန် Logs ကနေတဆင့်) အမှန်တကယ် End Date ကို apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},ဘဏ္ဍာငွေအရအသုံး Group မှအကောင့် {0} ဆန့်ကျင်တာဝန်ပေးမရနိုင်ပါ @@ -3466,10 +3475,10 @@ DocType: Lead,Blog Subscriber,ဘလော့ Subscriber apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,တန်ဖိုးများကိုအပေါ်အခြေခံပြီးအရောင်းအကနျ့သစည်းမျဉ်းစည်းကမ်းတွေကိုဖန်တီးပါ။ DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","checked, စုစုပေါင်းမျှမပါ။ အလုပ်အဖွဲ့ Days ၏အားလပ်ရက်ပါဝင်ပါလိမ့်မယ်, ဒီလစာ Per နေ့၏တန်ဖိုးကိုလျော့ချလိမ့်မည်" DocType: Purchase Invoice,Total Advance,စုစုပေါင်းကြိုတင်ထုတ် -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,အပြောင်းအလဲနဲ့လစာ +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,အပြောင်းအလဲနဲ့လစာ DocType: Opportunity Item,Basic Rate,အခြေခံပညာ Rate DocType: GL Entry,Credit Amount,အကြွေးပမာဏ -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,ပျောက်ဆုံးသွားသောအဖြစ် Set +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,ပျောက်ဆုံးသွားသောအဖြစ် Set apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,ငွေပေးချေမှုရမည့်ပြေစာမှတ်ချက် DocType: Supplier,Credit Days Based On,တွင် အခြေခံ. credit Days DocType: Tax Rule,Tax Rule,အခွန်စည်းမျဉ်း @@ -3499,7 +3508,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,လက်ခံခဲ့သည apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} တည်ရှိပါဘူး apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Customer များကြီးပြင်းဥပဒေကြမ်းများ။ apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,စီမံကိန်း Id -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},အတန်းမရှိ {0}: ပမာဏသုံးစွဲမှုတောင်းဆိုမှုများ {1} ဆန့်ကျင်ငွေပမာဏဆိုင်းငံ့ထားထက် သာ. ကြီးမြတ်မဖြစ်နိုင်။ ဆိုင်းငံ့ထားသောငွေပမာဏ {2} သည် +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},အတန်းမရှိ {0}: ပမာဏသုံးစွဲမှုတောင်းဆိုမှုများ {1} ဆန့်ကျင်ငွေပမာဏဆိုင်းငံ့ထားထက် သာ. ကြီးမြတ်မဖြစ်နိုင်။ ဆိုင်းငံ့ထားသောငွေပမာဏ {2} သည် apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,ကဆက်ပြောသည် {0} လစဉ်ကြေး ပေး. DocType: Maintenance Schedule,Schedule,ဇယား DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","ဒီအကုန်ကျစရိတ်စင်တာဘဏ္ဍာငွေအရအသုံး Define ။ ဘတ်ဂျက်အရေးယူတင်ထားရန်, "ကုမ္ပဏီစာရင်း" ကိုကြည့်ပါ" @@ -3560,19 +3569,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS ကိုယ်ရေးအချက်အလက်များ profile DocType: Payment Gateway Account,Payment URL Message,ငွေပေးချေမှုရမည့် URL ကိုကို Message apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","ဘတ်ဂျက် setting သည်ရာသီ, ပစ်မှတ်စသည်တို့" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,row {0}: ငွေပေးချေမှုရမည့်ငွေပမာဏထူးချွန်ငွေပမာဏထက် သာ. ကြီးမြတ်မဖွစျနိုငျ +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,row {0}: ငွေပေးချေမှုရမည့်ငွေပမာဏထူးချွန်ငွေပမာဏထက် သာ. ကြီးမြတ်မဖွစျနိုငျ apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,စုစုပေါင်း Unpaid -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,အချိန်အထဲ billable မဟုတ်ပါဘူး -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants",item {0} တဲ့ template ကိုသည်၎င်း၏မျိုးကွဲတွေထဲကရွေးချယ်ရန် +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,အချိန်အထဲ billable မဟုတ်ပါဘူး +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants",item {0} တဲ့ template ကိုသည်၎င်း၏မျိုးကွဲတွေထဲကရွေးချယ်ရန် apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,ဝယ်ယူ apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Net ကအခပေးအနုတ်လက္ခဏာမဖြစ်နိုင် -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,ထိုဆန့်ကျင် voucher ကို manually ရိုက်ထည့်ပေးပါ +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,ထိုဆန့်ကျင် voucher ကို manually ရိုက်ထည့်ပေးပါ DocType: SMS Settings,Static Parameters,static Parameter များကို DocType: Purchase Order,Advance Paid,ကြိုတင်မဲ Paid DocType: Item,Item Tax,item ခွန် apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,ပေးသွင်းဖို့ material apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,ယစ်မျိုးပြေစာ DocType: Expense Claim,Employees Email Id,န်ထမ်းအီးမေးလ် Id +DocType: Employee Attendance Tool,Marked Attendance,တခုတ်တရတက်ရောက် apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,လက်ရှိမှုစိစစ် apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,သင့်ရဲ့အဆက်အသွယ်မှအစုလိုက်အပြုံလိုက် SMS ပို့ DocType: Purchase Taxes and Charges,Consider Tax or Charge for,သည်အခွန်သို့မဟုတ်တာဝန်ခံဖို့စဉ်းစားပါ @@ -3595,7 +3605,7 @@ DocType: Item Attribute,Numeric Values,numeric တန်ဖိုးများ apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Logo ကို Attach DocType: Customer,Commission Rate,ကော်မရှင် Rate apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Variant Make -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,ဦးစီးဌာနကခွင့် applications များပိတ်ဆို့။ +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,ဦးစီးဌာနကခွင့် applications များပိတ်ဆို့။ apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,လှည်း Empty ဖြစ်ပါသည် DocType: Production Order,Actual Operating Cost,အမှန်တကယ် Operating ကုန်ကျစရိတ် apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,အမြစ်တည်းဖြတ်မရနိုင်ပါ။ @@ -3614,7 +3624,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,အရေအတွက်ကဤအဆင့်အောက်ကျလျှင်အလိုအလျှောက်ပစ္စည်းတောင်းဆိုမှုဖန်တီး ,Item-wise Purchase Register,item-ပညာရှိသောသူသည်ဝယ်ယူမှတ်ပုံတင်မည် DocType: Batch,Expiry Date,သက်တမ်းကုန်ဆုံးရက် -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","reorder အ level ကိုတင်ထားရန်, ကို item တစ်ခုဝယ်ယူပစ္စည်းသို့မဟုတ်ထုတ်လုပ်ခြင်းပစ္စည်းဖြစ်ရပါမည်" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","reorder အ level ကိုတင်ထားရန်, ကို item တစ်ခုဝယ်ယူပစ္စည်းသို့မဟုတ်ထုတ်လုပ်ခြင်းပစ္စည်းဖြစ်ရပါမည်" ,Supplier Addresses and Contacts,ပေးသွင်းလိပ်စာနှင့်ဆက်သွယ်ရန် apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,ပထမဦးဆုံးအမျိုးအစားလိုက်ကို select ကျေးဇူးပြု. apps/erpnext/erpnext/config/projects.py +18,Project master.,Project မှမာစတာ။ diff --git a/erpnext/translations/nl.csv b/erpnext/translations/nl.csv index 93768ce90f..910b9e21e8 100644 --- a/erpnext/translations/nl.csv +++ b/erpnext/translations/nl.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,Credit Company in Valu DocType: Delivery Note,Installation Status,Installatie Status apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Geaccepteerde + Verworpen Aantal moet gelijk zijn aan Ontvangen aantal zijn voor Artikel {0} DocType: Item,Supply Raw Materials for Purchase,Supply Grondstoffen voor Aankoop -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Artikel {0} moet een inkoopbaar artikel zijn +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Artikel {0} moet een inkoopbaar artikel zijn DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Download de Template, vul de juiste gegevens in en voeg het gewijzigde bestand bij. Alle data en toegewezen werknemer in de geselecteerde periode zullen in de sjabloon komen, met bestaande presentielijsten" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,ARtikel {0} is niet actief of heeft einde levensduur bereikt DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Zal worden bijgewerkt zodra verkoopfactuur is ingediend. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Om Belastingen op te nemen in het Artikeltarief in rij {0}, moeten de belastingen in rijen {1} ook worden opgenomen" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Instellingen voor HR Module +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Om Belastingen op te nemen in het Artikeltarief in rij {0}, moeten de belastingen in rijen {1} ook worden opgenomen" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Instellingen voor HR Module DocType: SMS Center,SMS Center,SMS Center DocType: BOM Replace Tool,New BOM,Nieuwe Eenheid apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Batch Tijd Logs voor Billing. @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,Select Voorwaarden DocType: Production Planning Tool,Sales Orders,Verkooporders DocType: Purchase Taxes and Charges,Valuation,Waardering ,Purchase Order Trends,Inkooporder Trends -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Toewijzen verloven voor het gehele jaar. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Toewijzen verloven voor het gehele jaar. DocType: Earning Type,Earning Type,Verdienen Type DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Uitschakelen Capacity Planning en Time Tracking DocType: Bank Reconciliation,Bank Account,Bankrekening @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Artikel Website Specificatie DocType: Payment Tool,Reference No,Referentienummer apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Verlof Geblokkeerd -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Artikel {0} heeft het einde van zijn levensduur bereikt op {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Artikel {0} heeft het einde van zijn levensduur bereikt op {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,jaar- DocType: Stock Reconciliation Item,Stock Reconciliation Item,Voorraad Afletteren Artikel DocType: Stock Entry,Sales Invoice No,Verkoopfactuur nr. @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,Minimum bestel aantal DocType: Pricing Rule,Supplier Type,Leverancier Type DocType: Item,Publish in Hub,Publiceren in Hub ,Terretory,Regio -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Artikel {0} is geannuleerd +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Artikel {0} is geannuleerd apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Materiaal Aanvraag DocType: Bank Reconciliation,Update Clearance Date,Werk Clearance Datum DocType: Item,Purchase Details,Inkoop Details @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Afgewezen Aantal DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Veld beschikbaar in Vrachtbrief, Offerte, Verkoopfactuur, Verkooporder" DocType: SMS Settings,SMS Sender Name,SMS Afzender naam DocType: Contact,Is Primary Contact,Is Primaire contactpersoon +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Time Log is gebundeld voor Billing DocType: Notification Control,Notification Control,Notificatie Beheer DocType: Lead,Suggestions,Suggesties DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Set Item Group-wise budgetten op dit gebied. U kunt ook seizoensinvloeden door de Distribution. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},Vul ouderaccount groep voor magazijn {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Betaling tegen {0} {1} kan niet groter zijn dan openstaande bedrag te zijn {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Betaling tegen {0} {1} kan niet groter zijn dan openstaande bedrag te zijn {2} DocType: Supplier,Address HTML,Adres HTML DocType: Lead,Mobile No.,Mobiel nummer DocType: Maintenance Schedule,Generate Schedule,Genereer Plan @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Gesynchroniseerd met Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Verkeerd Wachtwoord DocType: Item,Variant Of,Variant van -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Artikel {0} moet service-artikel zijn apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',Voltooide Aantal kan niet groter zijn dan 'Aantal aan Manufacture' DocType: Period Closing Voucher,Closing Account Head,Sluiten Account Hoofd DocType: Employee,External Work History,Externe Werk Geschiedenis @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,Nieuwsbrief DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Notificeer per e-mail bij automatisch aanmaken van Materiaal Aanvraag DocType: Journal Entry,Multi Currency,Valuta DocType: Payment Reconciliation Invoice,Invoice Type,Factuur Type -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Vrachtbrief +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Vrachtbrief apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Het opzetten van Belastingen apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,Betaling Bericht is gewijzigd nadat u het getrokken. Neem dan trekt het weer. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} twee keer opgenomen in Artikel BTW +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} twee keer opgenomen in Artikel BTW apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Samenvatting voor deze week en in afwachting van activiteiten DocType: Workstation,Rent Cost,Huurkosten apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Selecteer maand en jaar @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,Geldig voor Landen DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Alle import gerelateerde gebieden zoals valuta , wisselkoers , import totaal, import eindtotaal enz. zijn beschikbaar in aankoopbewijs Leverancier offerte, factuur , bestelbon enz." apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,Dit artikel is een sjabloon en kunnen niet worden gebruikt bij transacties. Item attributen zal worden gekopieerd naar de varianten tenzij 'No Copy' is ingesteld apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Totaal Bestel Beschouwd -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Werknemer aanduiding ( bijv. CEO , directeur enz. ) ." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Werknemer aanduiding ( bijv. CEO , directeur enz. ) ." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,Vul de 'Herhaal op dag van de maand' waarde in DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,Koers waarmee de Klant Valuta wordt omgerekend naar de basisvaluta van de klant. DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Verkrijgbaar in BOM , Delivery Note, aankoopfactuur, Productie Order , Bestelling , Kwitantie , verkoopfactuur , Sales Order , Voorraad Entry , Rooster" @@ -356,7 +356,7 @@ DocType: Workstation,Consumable Cost,Verbruikskosten apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) moet rol hebben 'Verlof Goedkeurder' hebben DocType: Purchase Receipt,Vehicle Date,Vehicle Data apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,medisch -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Reden voor het verliezen +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Reden voor het verliezen apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Werkstation is gesloten op de volgende data als per Holiday Lijst: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Kansen DocType: Employee,Single,Enkele @@ -384,14 +384,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Channel Partner DocType: Account,Old Parent,Oude Parent DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,Pas de inleidende tekst aan die meegaat als een deel van die e-mail. Elke transactie heeft een aparte inleidende tekst. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Neem geen symbolen (ex. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Sales Master Manager apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Algemene instellingen voor alle productieprocessen. DocType: Accounts Settings,Accounts Frozen Upto,Rekeningen bevroren tot DocType: SMS Log,Sent On,Verzonden op -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Kenmerk {0} meerdere keren geselecteerd in Attributes Tabel +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Kenmerk {0} meerdere keren geselecteerd in Attributes Tabel DocType: HR Settings,Employee record is created using selected field. ,Werknemer regel wordt gemaakt met behulp van geselecteerd veld. DocType: Sales Order,Not Applicable,Niet van toepassing -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Vakantie meester . +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Vakantie meester . DocType: Material Request Item,Required Date,Benodigd op datum DocType: Delivery Note,Billing Address,Factuuradres apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,Vul Artikelcode in. @@ -427,7 +428,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,Vul magazijn in waarvoor Materiaal Aanvragen zullen worden ingediend. DocType: Production Order,Additional Operating Cost,Additionele Operationele Kosten apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Cosmetica -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Om samen te voegen, moeten de volgende eigenschappen hetzelfde zijn voor beide artikelen" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Om samen te voegen, moeten de volgende eigenschappen hetzelfde zijn voor beide artikelen" DocType: Shipping Rule,Net Weight,Netto Gewicht DocType: Employee,Emergency Phone,Noodgeval Telefoonnummer ,Serial No Warranty Expiry,Serienummer Garantie Afloop @@ -483,17 +484,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Facturering en Delivery Status apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Terugkerende klanten DocType: Leave Control Panel,Allocate,Toewijzen -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Terugkerende verkoop +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Terugkerende verkoop DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Selecteer Verkooporders op basis waarvan u Productie Orders wilt maken. DocType: Item,Delivered by Supplier (Drop Ship),Geleverd door Leverancier (Drop Ship) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Salaris componenten. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Salaris componenten. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Database van potentiële klanten. DocType: Authorization Rule,Customer or Item,Klant of Item apps/erpnext/erpnext/config/crm.py +17,Customer database.,Klantenbestand. DocType: Quotation,Quotation To,Offerte Voor DocType: Lead,Middle Income,Modaal Inkomen apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Opening ( Cr ) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Standaard maateenheid voor post {0} kan niet direct worden gewijzigd, omdat je al enkele transactie (s) met een andere UOM hebben gemaakt. U moet een nieuwe post naar een andere Standaard UOM gebruik maken." +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Standaard maateenheid voor post {0} kan niet direct worden gewijzigd, omdat je al enkele transactie (s) met een andere UOM hebben gemaakt. U moet een nieuwe post naar een andere Standaard UOM gebruik maken." apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Toegekende bedrag kan niet negatief zijn DocType: Purchase Order Item,Billed Amt,Gefactureerd Bedr DocType: Warehouse,A logical Warehouse against which stock entries are made.,Een logisch Magazijn waartegen voorraadboekingen worden gemaakt. @@ -512,14 +513,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Verkoop Belasting en Toeslagen DocType: Employee,Organization Profile,organisatie Profiel apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,Stel een nummerreeks in voor Aanwezigheid via Setup > Nummerreeksen DocType: Employee,Reason for Resignation,Reden voor ontslag -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Sjabloon voor functioneringsgesprekken . +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Sjabloon voor functioneringsgesprekken . DocType: Payment Reconciliation,Invoice/Journal Entry Details,Factuur / Journal Entry Details apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1} ' niet in het boekjaar {2} DocType: Buying Settings,Settings for Buying Module,Instellingen voor het kopen van Module apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,Vul Kwitantie eerste DocType: Buying Settings,Supplier Naming By,Leverancier Benaming Door DocType: Activity Type,Default Costing Rate,Standaard Costing Rate -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Onderhoudsschema +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Onderhoudsschema apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Dan worden prijsregels uitgefilterd op basis van Klant, Klantgroep, Regio, Leverancier, Leverancier Type, Campagne, Verkooppartner, etc." apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Netto wijziging in Inventory DocType: Employee,Passport Number,Paspoortnummer @@ -558,7 +559,7 @@ DocType: Purchase Invoice,Quarterly,Kwartaal DocType: Selling Settings,Delivery Note Required,Vrachtbrief Verplicht DocType: Sales Order Item,Basic Rate (Company Currency),Basis Tarief (Bedrijfs Valuta) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush Grondstoffen gebaseerd op -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,Vul artikeldetails in +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,Vul artikeldetails in DocType: Purchase Receipt,Other Details,Andere Details DocType: Account,Accounts,Rekeningen apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Marketing @@ -571,7 +572,7 @@ DocType: Employee,Provide email id registered in company,Zorg voor een bedrijfs DocType: Hub Settings,Seller City,Verkoper Stad DocType: Email Digest,Next email will be sent on:,Volgende e-mail wordt verzonden op: DocType: Offer Letter Term,Offer Letter Term,Aanbod Letter Term -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Item heeft varianten. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Item heeft varianten. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Artikel {0} niet gevonden DocType: Bin,Stock Value,Voorraad Waarde apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Boom Type @@ -579,7 +580,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Aantal verbruikt per eenheid DocType: Serial No,Warranty Expiry Date,Garantie Vervaldatum DocType: Material Request Item,Quantity and Warehouse,Hoeveelheid en magazijn DocType: Sales Invoice,Commission Rate (%),Commissie Rate (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Tegen Voucher Typ een van Sales Order, verkoopfactuur of Inboeken moet zijn" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Tegen Voucher Typ een van Sales Order, verkoopfactuur of Inboeken moet zijn" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Ruimtevaart DocType: Journal Entry,Credit Card Entry,Credit Card Entry apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Taak Onderwerp @@ -666,10 +667,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Verplichting apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Gesanctioneerde bedrag kan niet groter zijn dan Claim Bedrag in Row {0}. DocType: Company,Default Cost of Goods Sold Account,Standaard kosten van verkochte goederen Account -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Prijslijst niet geselecteerd +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Prijslijst niet geselecteerd DocType: Employee,Family Background,Familie Achtergrond DocType: Process Payroll,Send Email,E-mail verzenden -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Waarschuwing: Invalid Attachment {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Waarschuwing: Invalid Attachment {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Geen toestemming DocType: Company,Default Bank Account,Standaard bankrekening apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Om te filteren op basis van Party, selecteer Party Typ eerst" @@ -697,7 +698,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Suppo DocType: Features Setup,"To enable ""Point of Sale"" features",Naar "Point of Sale" functies in te schakelen DocType: Bin,Moving Average Rate,Moving Average Rate DocType: Production Planning Tool,Select Items,Selecteer Artikelen -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} tegen Factuur {1} gedateerd {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} tegen Factuur {1} gedateerd {2} DocType: Maintenance Visit,Completion Status,Voltooiingsstatus DocType: Sales Invoice Item,Target Warehouse,Doel Magazijn DocType: Item,Allow over delivery or receipt upto this percent,Laat dan levering of ontvangst upto deze procent @@ -757,7 +758,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Wiss apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Kan Time Slot in de volgende {0} dagen voor Operatie vinden {1} DocType: Production Order,Plan material for sub-assemblies,Plan materiaal voor onderdelen apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,Stuklijst {0} moet actief zijn -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,Selecteer eerst het documenttype +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Selecteer eerst het documenttype apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Naar winkelwagen apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Annuleren Materiaal Bezoeken {0} voor het annuleren van deze Maintenance Visit DocType: Salary Slip,Leave Encashment Amount,Laat inning Bedrag @@ -775,7 +776,7 @@ DocType: Purchase Receipt,Range,Reeks DocType: Supplier,Default Payable Accounts,Standaard Crediteuren Accounts apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Werknemer {0} is niet actief of bestaat niet DocType: Features Setup,Item Barcode,Artikel Barcode -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Item Varianten {0} bijgewerkt +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Item Varianten {0} bijgewerkt DocType: Quality Inspection Reading,Reading 6,Meting 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Inkoopfactuur Voorschot DocType: Address,Shop,Winkelen @@ -798,7 +799,7 @@ DocType: Salary Slip,Total in words,Totaal in woorden DocType: Material Request Item,Lead Time Date,Lead Tijd Datum apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,is verplicht. Misschien is dit Valuta record niet gemaakt voor apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Rij #{0}: Voer serienummer in voor artikel {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Voor 'Product Bundel' items, Warehouse, Serienummer en Batch Geen zal worden beschouwd van de 'Packing List' tafel. Als Warehouse en Batch Geen zijn hetzelfde voor alle verpakking items voor welke 'Product Bundle' punt, kunnen die waarden in de belangrijkste Item tafel worden ingevoerd, wordt waarden worden gekopieerd naar "Packing List 'tafel." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Voor 'Product Bundel' items, Warehouse, Serienummer en Batch Geen zal worden beschouwd van de 'Packing List' tafel. Als Warehouse en Batch Geen zijn hetzelfde voor alle verpakking items voor welke 'Product Bundle' punt, kunnen die waarden in de belangrijkste Item tafel worden ingevoerd, wordt waarden worden gekopieerd naar "Packing List 'tafel." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Verzendingen naar klanten. DocType: Purchase Invoice Item,Purchase Order Item,Inkooporder Artikel apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Indirecte Inkomsten @@ -819,6 +820,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Selecteer Payroll Jaar en apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Ga naar de juiste groep (meestal Toepassing van fondsen> Vlottende activa> Bankrekeningen en maak een nieuwe account (door te klikken op Toevoegen kind) van het type "Bank" DocType: Workstation,Electricity Cost,elektriciteitskosten DocType: HR Settings,Don't send Employee Birthday Reminders,Stuur geen Werknemer verjaardagsherinneringen +,Employee Holiday Attendance,Werknemer Holiday Toeschouwers DocType: Opportunity,Walk In,Walk In apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Stock Inzendingen DocType: Item,Inspection Criteria,Inspectie Criteria @@ -841,7 +843,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,A DocType: Journal Entry Account,Expense Claim,Kostendeclaratie apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Aantal voor {0} DocType: Leave Application,Leave Application,Verlofaanvraag -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Verlof Toewijzing Tool +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Verlof Toewijzing Tool DocType: Leave Block List,Leave Block List Dates,Laat Block List Data DocType: Company,If Monthly Budget Exceeded (for expense account),Als Maandelijkse Budget overschreden (voor declaratierekening) DocType: Workstation,Net Hour Rate,Netto uurtarief @@ -851,7 +853,7 @@ DocType: Packing Slip Item,Packing Slip Item,Pakbon Artikel DocType: POS Profile,Cash/Bank Account,Kas/Bankrekening apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Verwijderde items met geen verandering in de hoeveelheid of waarde. DocType: Delivery Note,Delivery To,Leveren Aan -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Attributentabel is verplicht +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Attributentabel is verplicht DocType: Production Planning Tool,Get Sales Orders,Get Verkooporders apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} kan niet negatief zijn apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Korting @@ -915,7 +917,7 @@ DocType: SMS Center,Total Characters,Totaal Tekens apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},Selecteer BOM in BOM veld voor post {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-Form Factuurspecificatie DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Afletteren Factuur -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Bijdrage% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Bijdrage% DocType: Item,website page link,Website Paginalink DocType: Company,Company registration numbers for your reference. Tax numbers etc.,"Registratienummers van de onderneming voor uw referentie. Fiscale nummers, enz." DocType: Sales Partner,Distributor,Distributeur @@ -957,10 +959,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,Eenheid Omrekeningsfactor DocType: Stock Settings,Default Item Group,Standaard Artikelgroep apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Leverancierbestand DocType: Account,Balance Sheet,Balans -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Kostenplaats Item met Item Code ' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Kostenplaats Item met Item Code ' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,Uw verkoper krijgt een herinnering op deze datum om contact op te nemen met de klant apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Verdere accounts kan worden gemaakt onder groepen, maar items kunnen worden gemaakt tegen niet-Groepen" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Belastingen en andere inhoudingen op het salaris. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Belastingen en andere inhoudingen op het salaris. DocType: Lead,Lead,Lead DocType: Email Digest,Payables,Schulden DocType: Account,Warehouse,Magazijn @@ -977,10 +979,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Niet-afgeletterde B DocType: Global Defaults,Current Fiscal Year,Huidige fiscale jaar DocType: Global Defaults,Disable Rounded Total,Deactiveer Afgerond Totaal DocType: Lead,Call,Bellen -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'Invoer' kan niet leeg zijn +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'Invoer' kan niet leeg zijn apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Dubbele rij {0} met dezelfde {1} ,Trial Balance,Proefbalans -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Het opzetten van Werknemers +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Het opzetten van Werknemers apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","Rooster """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,Selecteer eerst een voorvoegsel apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,onderzoek @@ -989,7 +991,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,Gebruikers-ID apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Bekijk Grootboek apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Vroegst -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Een artikel Group bestaat met dezelfde naam , moet u de naam van het item of de naam van de artikelgroep" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Een artikel Group bestaat met dezelfde naam , moet u de naam van het item of de naam van de artikelgroep" DocType: Production Order,Manufacture against Sales Order,Produceren tegen Verkooporder apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Rest van de Wereld apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,De Punt {0} kan niet Batch hebben @@ -1014,7 +1016,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Afgewezen Magazijn DocType: GL Entry,Against Voucher,Tegen Voucher DocType: Item,Default Buying Cost Center,Standaard Inkoop kostenplaats apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Om het beste uit ERPNext krijgen, raden wij u aan wat tijd te nemen en te kijken deze hulp video's." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Artikel {0} moet verkoopartikel zijn +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Artikel {0} moet verkoopartikel zijn apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,naar DocType: Item,Lead Time in days,Levertijd in dagen ,Accounts Payable Summary,Crediteuren Samenvatting @@ -1040,7 +1042,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,landbouw apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Uw producten of diensten DocType: Mode of Payment,Mode of Payment,Wijze van betaling -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Website Afbeelding moet een publiek bestand of website URL +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Website Afbeelding moet een publiek bestand of website URL apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,Dit is een basis artikelgroep en kan niet worden bewerkt . DocType: Journal Entry Account,Purchase Order,Inkooporder DocType: Warehouse,Warehouse Contact Info,Magazijn Contact Info @@ -1051,7 +1053,7 @@ DocType: Serial No,Serial No Details,Serienummer Details DocType: Purchase Invoice Item,Item Tax Rate,Artikel BTW-tarief apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","Voor {0}, kan alleen credit accounts worden gekoppeld tegen een andere debetboeking" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Vrachtbrief {0} is niet ingediend -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Artikel {0} moet een uitbesteed artikel zijn +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Artikel {0} moet een uitbesteed artikel zijn apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Kapitaalgoederen apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Prijsbepalingsregel wordt eerst geselecteerd op basis van 'Toepassen op' veld, dat kan zijn artikel, artikelgroep of merk." DocType: Hub Settings,Seller Website,Verkoper Website @@ -1060,7 +1062,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Doel DocType: Sales Invoice Item,Edit Description,Bewerken Beschrijving apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Verwachte levertijd is minder dan gepland Start Date. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,voor Leverancier +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,voor Leverancier DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Instellen Account Type helpt bij het selecteren van deze account in transacties. DocType: Purchase Invoice,Grand Total (Company Currency),Grand Total (Company Munt) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Totaal Uitgaande @@ -1112,7 +1114,6 @@ DocType: Authorization Rule,Average Discount,Gemiddelde korting DocType: Address,Utilities,Utilities DocType: Purchase Invoice Item,Accounting,Boekhouding DocType: Features Setup,Features Setup,Features Setup -DocType: Item,Is Service Item,Is service-artikel apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Aanvraagperiode kan buiten verlof toewijzingsperiode niet DocType: Activity Cost,Projects,Projecten apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,Selecteer boekjaar @@ -1133,7 +1134,7 @@ DocType: Item,Maintain Stock,Handhaaf Stock apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Stock Entries al gemaakt voor de productieorder apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Netto wijziging in vaste activa DocType: Leave Control Panel,Leave blank if considered for all designations,Laat leeg indien overwogen voor alle aanduidingen -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Charge van het type ' Actual ' in rij {0} kan niet worden opgenomen in Item Rate +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Charge van het type ' Actual ' in rij {0} kan niet worden opgenomen in Item Rate apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Van Datetime DocType: Email Digest,For Company,Voor Bedrijf @@ -1142,8 +1143,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Verzenden Adres Naam apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Rekeningschema DocType: Material Request,Terms and Conditions Content,Algemene Voorwaarden Inhoud -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,mag niet groter zijn dan 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Artikel {0} is geen voorraadartikel +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,mag niet groter zijn dan 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Artikel {0} is geen voorraadartikel DocType: Maintenance Visit,Unscheduled,Ongeplande DocType: Employee,Owned,Eigendom DocType: Salary Slip Deduction,Depends on Leave Without Pay,Afhankelijk van onbetaald verlof @@ -1165,7 +1166,7 @@ Used for Taxes and Charges","Belasting detail tafel haalden van post meester als apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Werknemer kan niet rapporteren aan zichzelf. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Als de rekening is bevroren, kunnen boekingen alleen door daartoe bevoegde gebruikers gedaan worden." DocType: Email Digest,Bank Balance,Banksaldo -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Boekhouding Entry voor {0}: {1} kan alleen worden gedaan in valuta: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Boekhouding Entry voor {0}: {1} kan alleen worden gedaan in valuta: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Geen actieve salarisstructuur gevonden voor werknemer {0} en de maand DocType: Job Opening,"Job profile, qualifications required etc.","Functieprofiel, benodigde kwalificaties enz." DocType: Journal Entry Account,Account Balance,Rekeningbalans @@ -1182,7 +1183,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Uitbesteed we DocType: Shipping Rule Condition,To Value,Tot Waarde DocType: Supplier,Stock Manager,Stock Manager apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Bron magazijn is verplicht voor rij {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Pakbon +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Pakbon apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Kantoorhuur apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Instellingen SMS gateway apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Importeren mislukt! @@ -1226,7 +1227,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,Stuklijst Detail nr. DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Extra korting Bedrag (Company valuta) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Fout : {0} > {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,Maak nieuwe rekening van Rekeningschema. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Onderhoud Bezoek +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Onderhoud Bezoek apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Klant > Klantgroep > Regio DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Verkrijgbaar Aantal Batch bij Warehouse DocType: Time Log Batch Detail,Time Log Batch Detail,Tijd Log Batch Detail @@ -1235,7 +1236,7 @@ DocType: Leave Block List,Block Holidays on important days.,Blokeer Vakantie op ,Accounts Receivable Summary,Debiteuren Samenvatting apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,Stel User ID veld in een Werknemer record Werknemer Rol stellen DocType: UOM,UOM Name,Eenheid Naam -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Bijdrage Bedrag +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Bijdrage Bedrag DocType: Sales Invoice,Shipping Address,Verzendadres DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,Deze tool helpt u om te werken of te repareren de hoeveelheid en de waardering van de voorraad in het systeem. Het wordt meestal gebruikt om het systeem waarden en wat in uw magazijnen werkelijk bestaat synchroniseren. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,In Woorden zijn zichtbaar zodra u de vrachtbrief opslaat. @@ -1276,7 +1277,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Het kunnen identificeren van artikelen mbv een streepjescode. U kunt hiermee artikelen op Vrachtbrieven en Verkoopfacturen invoeren door de streepjescode van het artikel te scannen. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,E-mail opnieuw te verzenden Betaling DocType: Dependent Task,Dependent Task,Afhankelijke Task -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Conversiefactor voor Standaard meeteenheid moet 1 zijn in rij {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Conversiefactor voor Standaard meeteenheid moet 1 zijn in rij {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Verlof van type {0} kan niet langer zijn dan {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Probeer plan operaties voor X dagen van tevoren. DocType: HR Settings,Stop Birthday Reminders,Stop verjaardagsherinneringen @@ -1286,7 +1287,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} View apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Netto wijziging in cash DocType: Salary Structure Deduction,Salary Structure Deduction,Salaris Structuur Aftrek -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Eenheid {0} is meer dan eens ingevoerd in Conversie Factor Tabel +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Eenheid {0} is meer dan eens ingevoerd in Conversie Factor Tabel apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Betalingsverzoek bestaat al {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Kosten van Items Afgegeven apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Hoeveelheid mag niet meer zijn dan {0} @@ -1315,7 +1316,7 @@ DocType: BOM Item,BOM Item,Stuklijst Artikel DocType: Appraisal,For Employee,Voor Werknemer apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Rij {0}: Advance tegen Leverancier worden debiteren DocType: Company,Default Values,Standaard Waarden -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Rij {0}: Betaling bedrag kan niet negatief zijn +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Rij {0}: Betaling bedrag kan niet negatief zijn DocType: Expense Claim,Total Amount Reimbursed,Totaal bedrag terug! apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Tegen Leverancier Factuur {0} gedateerd {1} DocType: Customer,Default Price List,Standaard Prijslijst @@ -1343,8 +1344,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Gar DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Vervang een bepaalde BOM alle andere BOM waar het wordt gebruikt. Het zal de oude BOM koppeling te vervangen, kosten bij te werken en te regenereren ""BOM Explosie Item"" tabel als per nieuwe BOM" DocType: Shopping Cart Settings,Enable Shopping Cart,Inschakelen Winkelwagen DocType: Employee,Permanent Address,Vast Adres -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Artikel {0} moet een service-artikel zijn. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Voorschot betaald tegen {0} {1} kan niet groter zijn \ dan eindtotaal {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Selecteer artikelcode DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Verminderen Aftrek voor onbetaald verlof @@ -1400,12 +1400,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Hoofd apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Variant DocType: Naming Series,Set prefix for numbering series on your transactions,Instellen voorvoegsel voor nummerreeksen voor uw transacties +DocType: Employee Attendance Tool,Employees HTML,medewerkers HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Gestopte order kan niet worden geannuleerd. Terugdraaien om te annuleren . -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Default BOM ({0}) moet actief voor dit artikel of zijn template +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Default BOM ({0}) moet actief voor dit artikel of zijn template DocType: Employee,Leave Encashed?,Verlof verzilverd? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Opportunity Van veld is verplicht DocType: Item,Variants,Varianten -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Maak inkooporder +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Maak inkooporder DocType: SMS Center,Send To,Verzenden naar apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Er is niet genoeg verlofsaldo voor Verlof type {0} DocType: Payment Reconciliation Payment,Allocated amount,Toegewezen bedrag @@ -1506,7 +1507,7 @@ DocType: Sales Person,Name and Employee ID,Naam en Werknemer ID apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,Verloopdatum kan niet voor de Boekingsdatum zijn DocType: Website Item Group,Website Item Group,Website Artikel Groep apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Invoerrechten en Belastingen -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,Vul Peildatum in +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,Vul Peildatum in apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Payment Gateway account is niet geconfigureerd apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} betaling items kunnen niet worden gefilterd door {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,Tafel voor post die in Web Site zal worden getoond @@ -1527,7 +1528,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Oplossing Details DocType: Quality Inspection Reading,Acceptance Criteria,Acceptatiecriteria DocType: Item Attribute,Attribute Name,Attribuutnaam -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Artikel {0} moet verkoop- of service-artikel zijn in {1} DocType: Item Group,Show In Website,Toon in Website apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Groep DocType: Task,Expected Time (in hours),Verwachte Tijd (in uren) @@ -1559,7 +1559,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Verzendbedrag ,Pending Amount,In afwachting van Bedrag DocType: Purchase Invoice Item,Conversion Factor,Conversiefactor DocType: Purchase Order,Delivered,Geleverd -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Setup inkomende server voor banen e-id . ( b.v. jobs@example.com ) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Setup inkomende server voor banen e-id . ( b.v. jobs@example.com ) DocType: Purchase Receipt,Vehicle Number,Voertuig Aantal DocType: Purchase Invoice,The date on which recurring invoice will be stop,De datum waarop terugkerende factuur stopt apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Totaal toegewezen bladeren {0} kan niet lager zijn dan die reeds zijn goedgekeurd bladeren {1} voor de periode @@ -1576,7 +1576,7 @@ DocType: HR Settings,HR Settings,HR-instellingen apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Kostendeclaratie is in afwachting van goedkeuring. Alleen de Kosten Goedkeurder kan status bijwerken. DocType: Purchase Invoice,Additional Discount Amount,Extra korting Bedrag DocType: Leave Block List Allow,Leave Block List Allow,Laat Block List Laat -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abbr kan niet leeg of ruimte +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abbr kan niet leeg of ruimte apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Groep om Non-groep apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Sport apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Totaal Werkelijke @@ -1600,7 +1600,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},Eenheid Omrekeningsfactor is vereist in rij {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Klaring mag niet voor check datum in rij {0} DocType: Salary Slip,Deduction,Aftrek -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Item Prijs toegevoegd {0} in de prijslijst {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Item Prijs toegevoegd {0} in de prijslijst {1} DocType: Address Template,Address Template,Adres Sjabloon apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,Vul Employee Id van deze verkoper DocType: Territory,Classification of Customers by region,Indeling van de klanten per regio @@ -1617,7 +1617,7 @@ DocType: Employee,Date of Birth,Geboortedatum apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Artikel {0} is al geretourneerd DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,**Boekjaar** staat voor een financieel jaar. Alle boekingen en andere belangrijke transacties worden bijgehouden in **boekjaar**. DocType: Opportunity,Customer / Lead Address,Klant / Lead Adres -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Waarschuwing: Ongeldig SSL certificaat op attachment {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Waarschuwing: Ongeldig SSL certificaat op attachment {0} DocType: Production Order Operation,Actual Operation Time,Werkelijke Operatie Duur DocType: Authorization Rule,Applicable To (User),Van toepassing zijn op (Gebruiker) DocType: Purchase Taxes and Charges,Deduct,Aftrekken @@ -1634,7 +1634,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Splits Vrachtbrief in pakketten. apps/erpnext/erpnext/hooks.py +69,Shipments,Zendingen DocType: Purchase Order Item,To be delivered to customer,Om de klant te leveren -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Tijd Log Status moet worden ingediend. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Tijd Log Status moet worden ingediend. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,Serienummer {0} niet behoren tot een Warehouse apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Rij # DocType: Purchase Invoice,In Words (Company Currency),In Woorden (Bedrijfsvaluta) @@ -1651,7 +1651,7 @@ DocType: Leave Application,Total Leave Days,Totaal verlofdagen DocType: Email Digest,Note: Email will not be sent to disabled users,Opmerking: E-mail wordt niet verzonden naar uitgeschakelde gebruikers apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Selecteer Bedrijf ... DocType: Leave Control Panel,Leave blank if considered for all departments,Laat leeg indien dit voor alle afdelingen is -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Vormen van dienstverband (permanent, contract, stage, etc. ) ." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Vormen van dienstverband (permanent, contract, stage, etc. ) ." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} is verplicht voor Artikel {1} DocType: Currency Exchange,From Currency,Van Valuta apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Selecteer toegewezen bedrag, Factuur Type en factuurnummer in tenminste één rij" @@ -1670,7 +1670,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,In Process DocType: Authorization Rule,Itemwise Discount,Artikelgebaseerde Korting DocType: Purchase Order Item,Reference Document Type,Referentie Document Type -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} tegen Verkooporder {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} tegen Verkooporder {1} DocType: Account,Fixed Asset,Vast Activum apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Geserialiseerde Inventory DocType: Activity Type,Default Billing Rate,Default Billing Rate @@ -1680,7 +1680,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Sales om de betaling DocType: Expense Claim Detail,Expense Claim Detail,Kostendeclaratie Detail apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Tijd Logs gemaakt: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,Selecteer juiste account +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,Selecteer juiste account DocType: Item,Weight UOM,Gewicht Eenheid DocType: Employee,Blood Group,Bloedgroep DocType: Purchase Invoice Item,Page Break,Pagina-einde @@ -1715,7 +1715,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},Stuklijst recursie: {0} mag niet ouder of kind zijn van {2} DocType: Production Order Operation,Completed Qty,Voltooide Aantal apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","Voor {0}, kan alleen debet accounts worden gekoppeld tegen een andere creditering" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Prijslijst {0} is uitgeschakeld +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Prijslijst {0} is uitgeschakeld DocType: Manufacturing Settings,Allow Overtime,Laat Overwerk apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} serienummers vereist voor post {1}. U hebt verstrekt {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Huidige Valuation Rate @@ -1766,7 +1766,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Geen apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Zaak nr. mag geen 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,Als je Sales Team en Verkoop Partners (Channel Partners) ze kunnen worden gelabeld en onderhouden van hun bijdrage in de commerciële activiteit DocType: Item,Show a slideshow at the top of the page,Laat een diavoorstelling zien aan de bovenkant van de pagina -DocType: Item,"Allow in Sales Order of type ""Service""",Laat in Sales Order van het type "Service" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Winkels DocType: Time Log,Projects Manager,Projecten Manager DocType: Serial No,Delivery Time,Levertijd @@ -1781,6 +1780,7 @@ DocType: Rename Tool,Rename Tool,Hernoem Tool apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Kosten bijwerken DocType: Item Reorder,Item Reorder,Artikel opnieuw ordenen apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Verplaats Materiaal +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Punt {0} moet een Sales voorwerp in zijn {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Geef de operaties, operationele kosten en geef een unieke operatienummer aan uw activiteiten ." DocType: Purchase Invoice,Price List Currency,Prijslijst Valuta DocType: Naming Series,User must always select,Gebruiker moet altijd kiezen @@ -1801,7 +1801,7 @@ DocType: Appraisal,Employee,Werknemer apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Import e-mail van apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Uitnodigen als gebruiker DocType: Features Setup,After Sale Installations,Na Verkoop Installaties -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} is volledig gefactureerd +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} is volledig gefactureerd DocType: Workstation Working Hour,End Time,Eindtijd apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Standaard contractvoorwaarden voor Verkoop of Inkoop . apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Groep volgens Voucher @@ -1827,7 +1827,7 @@ DocType: Upload Attendance,Attendance To Date,Aanwezigheid graag: apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Setup inkomende server voor de verkoop e-id . ( b.v. sales@example.com ) DocType: Warranty Claim,Raised By,Opgevoed door DocType: Payment Gateway Account,Payment Account,Betaalrekening -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,Specificeer Bedrijf om verder te gaan +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,Specificeer Bedrijf om verder te gaan apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Netto wijziging in Debiteuren apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,compenserende Off DocType: Quality Inspection Reading,Accepted,Geaccepteerd @@ -1839,14 +1839,14 @@ DocType: Shipping Rule,Shipping Rule Label,Verzendregel Label apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Grondstoffen kan niet leeg zijn. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Kon niet bijwerken voorraad, factuur bevat daling van de scheepvaart punt." DocType: Newsletter,Test,Test -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Omdat er bestaande voorraad transacties voor deze post, \ u de waarden van het niet kunnen veranderen 'Heeft Serial No', 'Heeft Batch Nee', 'Is Stock Item' en 'Valuation Method'" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Quick Journal Entry apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,U kunt het tarief niet veranderen als een artikel Stuklijst-gerelateerd is. DocType: Employee,Previous Work Experience,Vorige Werkervaring DocType: Stock Entry,For Quantity,Voor Aantal apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},Vul Gepland Aantal in voor artikel {0} op rij {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} is niet ingediend +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} is niet ingediend apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Artikelaanvragen DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Een aparte Productie Order zal worden aangemaakt voor elk gereed product artikel DocType: Purchase Invoice,Terms and Conditions1,Algemene Voorwaarden1 @@ -1871,6 +1871,7 @@ DocType: Notification Control,Expense Claim Approved Message,Kostendeclaratie Go DocType: Email Digest,How frequently?,Hoe vaak? DocType: Purchase Receipt,Get Current Stock,Get Huidige voorraad apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Boom van de Bill of Materials +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Mark Present apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Onderhoud startdatum kan niet voor de leveringsdatum voor Serienummer {0} DocType: Production Order,Actual End Date,Werkelijke Einddatum DocType: Authorization Rule,Applicable To (Role),Van toepassing zijn op (Rol) @@ -1885,7 +1886,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Contract Einddatum moet groter zijn dan datum van indiensttreding zijn DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,Een derde partij distributeur / dealer / commissionair / affiliate / reseller die uw producten voor een commissie verkoopt. DocType: Customer Group,Has Child Node,Heeft onderliggende node -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} tegen Inkooporder {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} tegen Inkooporder {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Voer statische url parameters hier in (bijv. afzender=ERPNext, username = ERPNext, wachtwoord = 1234 enz.)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} is niet in het actieve fiscale jaar. Voor meer informatie kijk {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,"Dit is een voorbeeld website, automatisch gegenereerd door ERPNext" @@ -1933,7 +1934,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Toe te voegen of Trek: Of u wilt toevoegen of aftrekken van de belasting." DocType: Purchase Receipt Item,Recd Quantity,Benodigde hoeveelheid apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Kan niet meer produceren van Artikel {0} dan de Verkooporder hoeveelheid {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Stock Entry {0} is niet ingediend +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Stock Entry {0} is niet ingediend DocType: Payment Reconciliation,Bank / Cash Account,Bank- / Kasrekening DocType: Tax Rule,Billing City,Billing Stad DocType: Global Defaults,Hide Currency Symbol,Verberg Valutasymbool @@ -1959,7 +1960,7 @@ DocType: Salary Structure,Total Earning,Totale Winst DocType: Purchase Receipt,Time at which materials were received,Tijdstip waarop materialen zijn ontvangen apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Mijn Adressen DocType: Stock Ledger Entry,Outgoing Rate,Uitgaande Rate -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Organisatie tak meester . +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Organisatie tak meester . apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,of DocType: Sales Order,Billing Status,Factuur Status apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Utiliteitskosten @@ -1997,7 +1998,7 @@ DocType: Bin,Reserved Quantity,Gereserveerde Hoeveelheid DocType: Landed Cost Voucher,Purchase Receipt Items,Ontvangstbevestiging Artikelen apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Aanpassen Formulieren DocType: Account,Income Account,Inkomstenrekening -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Levering +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Levering DocType: Stock Reconciliation Item,Current Qty,Huidige Aantal DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",Zie "Rate Of Materials Based On" in Costing Sectie DocType: Appraisal Goal,Key Responsibility Area,Key verantwoordelijkheid Area @@ -2009,9 +2010,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,vou DocType: Notification Control,Purchase Order Message,Inkooporder Bericht DocType: Tax Rule,Shipping Country,Verzenden Land DocType: Upload Attendance,Upload HTML,Upload HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","Totaal vooraf ({0}) tegen Bestel {1} kan niet groter zijn \ - dan de Grand Total ({2})" DocType: Employee,Relieving Date,Ontslagdatum apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Prijsbepalingsregel overschrijft de prijslijst / defininieer een kortingspercentage, gebaseerd op een aantal criteria." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Magazijn kan alleen via Voorraad Invoer / Vrachtbrief / Ontvangstbewijs worden veranderd @@ -2021,8 +2019,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Inkom apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Als geselecteerde Pricing Regel is gemaakt voor 'Prijs', zal het Prijslijst overschrijven. Prijsstelling Regel prijs is de uiteindelijke prijs, dus geen verdere korting moet worden toegepast. Vandaar dat in transacties zoals Sales Order, Purchase Order etc, het zal worden opgehaald in 'tarief' veld, in plaats van het veld 'prijslijst Rate'." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Houd Leads bij per de industrie type. DocType: Item Supplier,Item Supplier,Artikel Leverancier -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,Vul de artikelcode in om batchnummer op te halen -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},Selecteer een waarde voor {0} quotation_to {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,Vul de artikelcode in om batchnummer op te halen +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},Selecteer een waarde voor {0} quotation_to {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Alle adressen. DocType: Company,Stock Settings,Voorraad Instellingen apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Samenvoegen kan alleen als volgende eigenschappen in beide registers. Is Group, Root Type, Company" @@ -2045,7 +2043,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Cheque nummer DocType: Payment Tool Detail,Payment Tool Detail,Betaling Tool Detail ,Sales Browser,Verkoop verkenner DocType: Journal Entry,Total Credit,Totaal Krediet -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Waarschuwing: Een andere {0} # {1} bestaat tegen voorraad binnenkomst {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Waarschuwing: Een andere {0} # {1} bestaat tegen voorraad binnenkomst {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Lokaal apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Leningen en voorschotten (Activa) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Debiteuren @@ -2065,8 +2063,8 @@ DocType: Price List,Price List Master,Prijslijst Master DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,"Alle Verkoop Transacties kunnen worden gelabeld tegen meerdere ** Sales Personen **, zodat u kunt instellen en controleren doelen." ,S.O. No.,VO nr DocType: Production Order Operation,Make Time Log,Maak Time Inloggen -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Stel reorder hoeveelheid -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},Maak Klant van Lead {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Stel reorder hoeveelheid +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},Maak Klant van Lead {0} DocType: Price List,Applicable for Countries,Toepasselijk voor Landen apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Computers apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,Dit is een basis klantgroep en kan niet worden bewerkt . @@ -2114,7 +2112,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Factur DocType: Payment Reconciliation Invoice,Outstanding Amount,Openstaand Bedrag DocType: Project Task,Working,Werkzaam DocType: Stock Ledger Entry,Stock Queue (FIFO),Voorraad rij (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Selecteer Time Logs. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Selecteer Time Logs. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} behoort niet tot Bedrijf {1} DocType: Account,Round Off,Afronden ,Requested Qty,Aangevraagde Hoeveelheid @@ -2152,7 +2150,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Haal relevante gegevens op apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Boekingen voor Voorraad DocType: Sales Invoice,Sales Team1,Verkoop Team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Artikel {0} bestaat niet +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Artikel {0} bestaat niet DocType: Sales Invoice,Customer Address,Klant Adres DocType: Payment Request,Recipient and Message,Ontvanger en bericht DocType: Purchase Invoice,Apply Additional Discount On,Breng Extra Korting op @@ -2171,7 +2169,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Mute-mail apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Voeding, Drank en Tabak" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL of BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Kan alleen tegen betaling te maken ongefactureerde {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Kan alleen tegen betaling te maken ongefactureerde {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Commissietarief kan niet groter zijn dan 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Minimum voorraadniveau DocType: Stock Entry,Subcontract,Subcontract @@ -2189,9 +2187,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,software apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Colour DocType: Maintenance Visit,Scheduled,Geplande apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Selecteer Item, waar "Is Stock Item" is "Nee" en "Is Sales Item" is "Ja" en er is geen enkel ander product Bundle" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Totaal vooraf ({0}) tegen Orde {1} kan niet groter zijn dan de Grand totaal zijn ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Selecteer Maandelijkse Distribution om ongelijk te verdelen doelen in heel maanden. DocType: Purchase Invoice Item,Valuation Rate,Waardering Tarief -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Prijslijst Valuta nog niet geselecteerd +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Prijslijst Valuta nog niet geselecteerd apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,Item Rij {0}: Kwitantie {1} bestaat niet in bovenstaande tabel 'Aankoopfacturen' apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Werknemer {0} heeft reeds gesolliciteerd voor {1} tussen {2} en {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Project Start Datum @@ -2203,6 +2202,7 @@ DocType: Quality Inspection,Inspection Type,Inspectie Type apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},Selecteer {0} DocType: C-Form,C-Form No,C-vorm nr. DocType: BOM,Exploded_items,Uitgeklapte Artikelen +DocType: Employee Attendance Tool,Unmarked Attendance,ongemarkeerde Attendance apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,onderzoeker apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,Sla de nieuwsbrief op voor het verzenden apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Naam of E-mail is verplicht @@ -2228,7 +2228,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Bevesti DocType: Payment Gateway,Gateway,Poort apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Leverancier > Leverancier Type apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Vul het verlichten datum . -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,Alleen Verlofaanvragen met de status 'Goedgekeurd' kunnen worden ingediend apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Adres titel is verplicht. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,Voer de naam van de campagne in als bron van onderzoek Campagne is @@ -2243,10 +2243,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Geaccepteerd Magazijn DocType: Bank Reconciliation Detail,Posting Date,Plaatsingsdatum DocType: Item,Valuation Method,Waardering Methode apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Niet in staat om wisselkoers voor {0} te vinden {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Mark Halve dag DocType: Sales Invoice,Sales Team,Verkoop Team apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Dubbele invoer DocType: Serial No,Under Warranty,Binnen Garantie -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Fout] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Fout] DocType: Sales Order,In Words will be visible once you save the Sales Order.,In Woorden zijn zichtbaar zodra u de Verkooporder opslaat. ,Employee Birthday,Werknemer Verjaardag apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Venture Capital @@ -2269,6 +2270,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,Kostenplaats met bestaande transacties kan niet worden omgezet in groep DocType: Account,Depreciation,Afschrijvingskosten apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Leverancier(s) +DocType: Employee Attendance Tool,Employee Attendance Tool,Employee Attendance Tool DocType: Supplier,Credit Limit,Kredietlimiet apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Selecteer type transactie DocType: GL Entry,Voucher No,Voucher nr. @@ -2295,7 +2297,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Root-account kan niet worden verwijderd ,Is Primary Address,Is Primair Adres DocType: Production Order,Work-in-Progress Warehouse,Onderhanden Werk Magazijn -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Referentie #{0} gedateerd {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Referentie #{0} gedateerd {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Beheren Adressen DocType: Pricing Rule,Item Code,Artikelcode DocType: Production Planning Tool,Create Production Orders,Maak Productieorders @@ -2322,7 +2324,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Bank Aflettering apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Krijg Updates apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Materiaal Aanvraag {0} is geannuleerd of gestopt apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Voeg een paar voorbeeld records toe -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Laat management +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Laat management apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Groeperen volgens Rekening DocType: Sales Order,Fully Delivered,Volledig geleverd DocType: Lead,Lower Income,Lager inkomen @@ -2337,6 +2339,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','Van Datum' moet na 'Tot Datum' zijn ,Stock Projected Qty,Verwachte voorraad hoeveelheid apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Klant {0} behoort niet tot project {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Marked Attendance HTML DocType: Sales Order,Customer's Purchase Order,Klant Bestelling DocType: Warranty Claim,From Company,Van Bedrijf apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Waarde of Aantal @@ -2401,6 +2404,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,overboeking apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,Selecteer Bankrekening DocType: Newsletter,Create and Send Newsletters,Maken en verzenden Nieuwsbrieven +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Controleer alle DocType: Sales Order,Recurring Order,Terugkerende Bestel DocType: Company,Default Income Account,Standaard Inkomstenrekening apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Klantengroep / Klant @@ -2432,6 +2436,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Terug Tegen Purchase I DocType: Item,Warranty Period (in days),Garantieperiode (in dagen) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,De netto kasstroom uit operationele activiteiten apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,bijv. BTW +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Mark werknemer aanwezigheid in bulk apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Punt 4 DocType: Journal Entry Account,Journal Entry Account,Journal Entry Account DocType: Shopping Cart Settings,Quotation Series,Offerte Series @@ -2577,14 +2582,14 @@ DocType: Task,Actual Start Date (via Time Logs),Werkelijke Startdatum (via Time DocType: Stock Reconciliation Item,Before reconciliation,Voordat verzoening apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Naar {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Belastingen en Toeslagen toegevoegd (Bedrijfsvaluta) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Item Tax Rij {0} moet rekening houden met het type belasting of inkomsten of uitgaven of Chargeable +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Item Tax Rij {0} moet rekening houden met het type belasting of inkomsten of uitgaven of Chargeable DocType: Sales Order,Partly Billed,Deels Gefactureerd DocType: Item,Default BOM,Standaard Stuklijst apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,Gelieve re-type bedrijfsnaam te bevestigen apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Totale uitstaande Amt DocType: Time Log Batch,Total Hours,Totaal Uren DocType: Journal Entry,Printing Settings,Instellingen afdrukken -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Totaal Debet moet gelijk zijn aan Totaal Credit. Het verschil is {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Totaal Debet moet gelijk zijn aan Totaal Credit. Het verschil is {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Automotive apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Van Vrachtbrief DocType: Time Log,From Time,Van Tijd @@ -2630,7 +2635,7 @@ DocType: Purchase Invoice Item,Image View,Afbeelding Bekijken DocType: Issue,Opening Time,Opening Tijd apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,Van en naar data vereist apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Securities & Commodity Exchanges -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Standaard maateenheid voor Variant '{0}' moet hetzelfde zijn als in zijn Template '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Standaard maateenheid voor Variant '{0}' moet hetzelfde zijn als in zijn Template '{1}' DocType: Shipping Rule,Calculate Based On,Berekenen gebaseerd op DocType: Delivery Note Item,From Warehouse,Van Warehouse DocType: Purchase Taxes and Charges,Valuation and Total,Waardering en Totaal @@ -2652,7 +2657,7 @@ DocType: Leave Application,Follow via Email,Volg via e-mail DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Belasting bedrag na korting apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Onderliggende rekening bestaat voor deze rekening. U kunt deze niet verwijderen . apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Ofwel doelwit aantal of streefbedrag is verplicht -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},Er bestaat geen standaard Stuklijst voor Artikel {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},Er bestaat geen standaard Stuklijst voor Artikel {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,Selecteer Boekingsdatum eerste apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Openingsdatum moeten vóór Sluitingsdatum DocType: Leave Control Panel,Carry Forward,Carry Forward @@ -2730,7 +2735,7 @@ DocType: Leave Type,Is Encash,Is incasseren DocType: Purchase Invoice,Mobile No,Mobiel nummer DocType: Payment Tool,Make Journal Entry,Maak Journal Entry DocType: Leave Allocation,New Leaves Allocated,Nieuwe Verloven Toegewezen -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Projectgegevens zijn niet beschikbaar voor Offertes +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Projectgegevens zijn niet beschikbaar voor Offertes DocType: Project,Expected End Date,Verwachte einddatum DocType: Appraisal Template,Appraisal Template Title,Beoordeling Template titel apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,commercieel @@ -2778,6 +2783,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,In apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Specificeer een DocType: Offer Letter,Awaiting Response,Wachten op antwoord apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Boven +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Time Log is gefactureerd DocType: Salary Slip,Earning & Deduction,Verdienen & Aftrek apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Rekening {0} kan geen groep zijn apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Optioneel. Deze instelling wordt gebruikt om te filteren op diverse transacties . @@ -2848,14 +2854,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Succesvol verwijderd alle transacties met betrekking tot dit bedrijf! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Op Date apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,proeftijd -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Standaard Magazijn is verplicht voor voorraadartikel . +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Standaard Magazijn is verplicht voor voorraadartikel . apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Betaling van salaris voor de maand {0} en jaar {1} DocType: Stock Settings,Auto insert Price List rate if missing,Auto insert Prijslijst tarief als vermist apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Totale betaalde bedrag ,Transferred Qty,Verplaatst Aantal apps/erpnext/erpnext/config/learn.py +11,Navigating,Navigeren apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,planning -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Maak tijd Inloggen Batch +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Maak tijd Inloggen Batch apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Uitgegeven DocType: Project,Total Billing Amount (via Time Logs),Totaal factuurbedrag (via Time Logs) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Wij verkopen dit artikel @@ -2863,7 +2869,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Hoeveelheid moet groter zijn dan 0 DocType: Journal Entry,Cash Entry,Cash Entry DocType: Sales Partner,Contact Desc,Contact Omschr -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Type verloven zoals, buitengewoon, ziekte, etc." +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Type verloven zoals, buitengewoon, ziekte, etc." DocType: Email Digest,Send regular summary reports via Email.,Stuur regelmatige samenvattende rapporten via e-mail. DocType: Brand,Item Manager,Item Manager DocType: Cost Center,Add rows to set annual budgets on Accounts.,Rijen toevoegen om jaarlijkse begrotingen op Rekeningen in te stellen. @@ -2878,7 +2884,7 @@ DocType: GL Entry,Party Type,partij Type apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Grondstof kan niet hetzelfde zijn als hoofdartikel DocType: Item Attribute Value,Abbreviation,Afkorting apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Niet toegestaan aangezien {0} grenzen overschrijdt -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Salaris sjabloon stam . +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Salaris sjabloon stam . DocType: Leave Type,Max Days Leave Allowed,Max Dagen Verlof toegestaan apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Stel Tax Regel voor winkelmandje DocType: Payment Tool,Set Matching Amounts,Stel Matching Bedragen @@ -2891,7 +2897,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Offerte DocType: Stock Settings,Role Allowed to edit frozen stock,Rol toegestaan om bevroren voorraden bewerken ,Territory Target Variance Item Group-Wise,Regio Doel Variance Artikel Groepsgewijs apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Alle Doelgroepen -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} is verplicht. Misschien is Valuta Koers record niet gemaakt voor {1} naar {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} is verplicht. Misschien is Valuta Koers record niet gemaakt voor {1} naar {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Belasting Template is verplicht. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Rekening {0}: Bovenliggende rekening {1} bestaat niet DocType: Purchase Invoice Item,Price List Rate (Company Currency),Prijslijst Tarief (Bedrijfsvaluta) @@ -2911,8 +2917,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Artikelgebaseerde BTW D ,Item-wise Price List Rate,Artikelgebaseerde Prijslijst Tarief apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Leverancier Offerte DocType: Quotation,In Words will be visible once you save the Quotation.,In Woorden zijn zichtbaar zodra u de Offerte opslaat. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} is gestopt -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Barcode {0} is al in gebruik in post {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} is gestopt +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Barcode {0} is al in gebruik in post {1} DocType: Lead,Add to calendar on this date,Toevoegen aan agenda op deze datum apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Regels voor het toevoegen van verzendkosten. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,aankomende evenementen @@ -2939,8 +2945,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,St apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Tenminste een magazijn is verplicht DocType: Serial No,Out of Warranty,Uit de garantie DocType: BOM Replace Tool,Replace,Vervang -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} tegen verkoopfactuur {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Vul Standaard eenheid in +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} tegen verkoopfactuur {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Vul Standaard eenheid in DocType: Purchase Invoice Item,Project Name,Naam van het project DocType: Supplier,Mention if non-standard receivable account,Vermelden of niet-standaard te ontvangen rekening DocType: Journal Entry Account,If Income or Expense,Indien Inkomsten (baten) of Uitgaven (lasten) @@ -2965,7 +2971,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Boekjaar: {0} bestaat niet DocType: Currency Exchange,To Currency,Naar Valuta DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Laat de volgende gebruikers te keuren Verlof Aanvragen voor blok dagen. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Typen Onkostendeclaraties. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Typen Onkostendeclaraties. DocType: Item,Taxes,Belastingen apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Betaalde en niet geleverd DocType: Project,Default Cost Center,Standaard Kostenplaats @@ -2995,7 +3001,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Rij # {0}: Serienummer {1} komt niet overeen met {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Casual Leave DocType: Batch,Batch ID,Partij ID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Opmerking : {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Opmerking : {0} ,Delivery Note Trends,Vrachtbrief Trends apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Samenvatting van deze week apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} moet een gekocht of uitbesteed artikel zijn in rij {1} @@ -3035,6 +3041,7 @@ DocType: Project Task,Pending Review,In afwachting van Beoordeling apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Klik hier om te betalen DocType: Task,Total Expense Claim (via Expense Claim),Total Expense Claim (via Expense Claim) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Customer Id +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Mark Afwezig apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Om tijd groter dan Van Time moet zijn DocType: Journal Entry Account,Exchange Rate,Wisselkoers apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Verkooporder {0} is niet ingediend @@ -3082,7 +3089,7 @@ DocType: Item Group,Default Expense Account,Standaard Kostenrekening DocType: Employee,Notice (days),Kennisgeving ( dagen ) DocType: Tax Rule,Sales Tax Template,Sales Tax Template DocType: Employee,Encashment Date,Betalingsdatum -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Tegen Voucher Typ een van Purchase Order, Aankoop Factuur of Inboeken moet zijn" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Tegen Voucher Typ een van Purchase Order, Aankoop Factuur of Inboeken moet zijn" DocType: Account,Stock Adjustment,Voorraad aanpassing apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Default Activiteit Kosten bestaat voor Activity Type - {0} DocType: Production Order,Planned Operating Cost,Geplande bedrijfskosten @@ -3136,6 +3143,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Schrijf Off Entry DocType: BOM,Rate Of Materials Based On,Prijs van materialen op basis van apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Support Analyse +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Verwijder het vinkje bij alle apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Bedrijf ontbreekt in magazijnen {0} DocType: POS Profile,Terms and Conditions,Algemene Voorwaarden apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},Tot Datum moet binnen het boekjaar vallenn. Ervan uitgaande dat Tot Datum = {0} @@ -3157,7 +3165,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Om dit boekjaar in te stellen als standaard, klik op 'Als standaard instellen'" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Setup inkomende server voor ondersteuning e-id . ( b.v. support@example.com ) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Tekort Aantal -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Item variant {0} bestaat met dezelfde kenmerken +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Item variant {0} bestaat met dezelfde kenmerken DocType: Salary Slip,Salary Slip,Salarisstrook apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,'Tot Datum' is vereist DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Genereren van pakbonnen voor pakketten te leveren. Gebruikt voor pakket nummer, inhoud van de verpakking en het gewicht te melden." @@ -3205,7 +3213,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Bekijk DocType: Item Attribute Value,Attribute Value,Eigenschap Waarde apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","E-mail ID moet uniek zijn, bestaat al voor {0}" ,Itemwise Recommended Reorder Level,Artikelgebaseerde Aanbevolen Bestelniveau -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,Selecteer eerst {0} +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,Selecteer eerst {0} DocType: Features Setup,To get Item Group in details table,Om Artikelgroep in details tabel te plaatsen apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Batch {0} van Item {1} is verlopen. DocType: Sales Invoice,Commission,commissie @@ -3260,7 +3268,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Krijg Outstanding Vouchers DocType: Warranty Claim,Resolved By,Opgelost door DocType: Appraisal,Start Date,Startdatum -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Toewijzen bladeren voor een periode . +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Toewijzen bladeren voor een periode . apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Cheques en Deposito verkeerd ontruimd apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Klik hier om te controleren apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Rekening {0}: U kunt niet de rekening zelf toewijzen als bovenliggende rekening @@ -3280,7 +3288,7 @@ DocType: Employee,Educational Qualification,Educatieve Kwalificatie DocType: Workstation,Operating Costs,Bedrijfskosten DocType: Employee Leave Approver,Employee Leave Approver,Werknemer Verlof Fiatteur apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} is succesvol toegevoegd aan onze nieuwsbrief lijst. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Rij {0}: Er bestaat al een nabestelling voor dit magazijn {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Rij {0}: Er bestaat al een nabestelling voor dit magazijn {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Kan niet als verloren verklaren, omdat Offerte is gemaakt." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Aankoop Master Manager apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Productie Order {0} moet worden ingediend @@ -3304,7 +3312,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Verkoopfactuur {0} is al ingediend apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Voltooiingsdatum DocType: Purchase Invoice Item,Amount (Company Currency),Bedrag (Company Munt) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Organisatie -eenheid (departement) meester. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Organisatie -eenheid (departement) meester. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Voer geldige mobiele nummers in DocType: Budget Detail,Budget Detail,Budget Detail apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,Vul bericht in alvorens te verzenden @@ -3320,13 +3328,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Ontvangen en geaccepteerd ,Serial No Service Contract Expiry,Serienummer Service Contract Afloop DocType: Item,Unit of Measure Conversion,Eenheid van Meet Conversie apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Werknemer kan niet worden gewijzigd -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,U kunt niet hetzelfde bedrag crediteren en debiteren op hetzelfde moment +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,U kunt niet hetzelfde bedrag crediteren en debiteren op hetzelfde moment DocType: Naming Series,Help HTML,Help HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Totaal toegewezen gewicht moet 100% zijn. Het is {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Korting voor over-{0} gekruist voor post {1} DocType: Address,Name of person or organization that this address belongs to.,Naam van de persoon of organisatie waartoe dit adres behoort. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Uw Leveranciers -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,"Kan niet als Verloren instellen, omdat er al een Verkoop Order is gemaakt." +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,"Kan niet als Verloren instellen, omdat er al een Verkoop Order is gemaakt." apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,Een ander loongebouw {0} is actief voor de werknemer {1}. Maak dan de status 'Inactief' om door te gaan. DocType: Purchase Invoice,Contact,Contact apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Gekregen van @@ -3336,11 +3344,11 @@ DocType: Item,Has Serial No,Heeft Serienummer DocType: Employee,Date of Issue,Datum van afgifte apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: Van {0} voor {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Rij # {0}: Stel Leverancier voor punt {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Website Afbeelding {0} verbonden aan Item {1} kan niet worden gevonden +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Website Afbeelding {0} verbonden aan Item {1} kan niet worden gevonden DocType: Issue,Content Type,Content Type apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Computer DocType: Item,List this Item in multiple groups on the website.,Lijst deze post in meerdere groepen op de website. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,Kijk Valuta optie om rekeningen met andere valuta toestaan +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,Kijk Valuta optie om rekeningen met andere valuta toestaan apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Item: {0} bestaat niet in het systeem apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,U bent niet bevoegd om Bevroren waarde in te stellen DocType: Payment Reconciliation,Get Unreconciled Entries,Haal onafgeletterde transacties op @@ -3350,14 +3358,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Wat doet het DocType: Delivery Note,To Warehouse,Tot Magazijn apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Rekening {0} is meer dan één keer ingevoerd voor het boekjaar {1} ,Average Commission Rate,Gemiddelde Commissie Rate -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'Heeft Serienummer' kan niet 'ja' zijn voor niet- voorraad artikel +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'Heeft Serienummer' kan niet 'ja' zijn voor niet- voorraad artikel apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Aanwezigheid kan niet aangemerkt worden voor toekomstige data DocType: Pricing Rule,Pricing Rule Help,Prijsbepalingsregel Help DocType: Purchase Taxes and Charges,Account Head,Hoofdrekening apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Actualiseren extra kosten voor landde kosten van artikelen te berekenen apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,elektrisch DocType: Stock Entry,Total Value Difference (Out - In),Totale waarde Verschil (Out - In) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Rij {0}: Wisselkoers is verplicht +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Rij {0}: Wisselkoers is verplicht apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},Gebruikers-ID niet ingesteld voor Werknemer {0} DocType: Stock Entry,Default Source Warehouse,Standaard Bronmagazijn DocType: Item,Customer Code,Klantcode @@ -3376,15 +3384,15 @@ DocType: Notification Control,Sales Invoice Message,Verkoopfactuur bericht apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Sluiten account {0} moet van het type aansprakelijkheid / Equity zijn DocType: Authorization Rule,Based On,Gebaseerd op DocType: Sales Order Item,Ordered Qty,Besteld Aantal -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Punt {0} is uitgeschakeld +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Punt {0} is uitgeschakeld DocType: Stock Settings,Stock Frozen Upto,Voorraad Bevroren Tot apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Periode Van en periode te data verplicht voor terugkerende {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Project activiteit / taak. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Genereer Salarisstroken +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Genereer Salarisstroken apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Aankopen moeten worden gecontroleerd, indien ""VAN TOEPASSING VOOR"" is geselecteerd als {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Korting moet minder dan 100 zijn DocType: Purchase Invoice,Write Off Amount (Company Currency),Schrijf Off Bedrag (Company Munt) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Rij # {0}: Stel nabestelling hoeveelheid +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Rij # {0}: Stel nabestelling hoeveelheid DocType: Landed Cost Voucher,Landed Cost Voucher,Vrachtkosten Voucher apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},Stel {0} in DocType: Purchase Invoice,Repeat on Day of Month,Herhaal dit op dag van de maand @@ -3436,7 +3444,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Standaard Work In Progress Warehouse apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Standaardinstellingen voor boekhoudkundige transacties. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Verwachte datum kan niet voor de Material Aanvraagdatum -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Artikel {0} moet een verkoopbaar artikel zijn +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Artikel {0} moet een verkoopbaar artikel zijn DocType: Naming Series,Update Series Number,Bijwerken Serienummer DocType: Account,Equity,Vermogen DocType: Sales Order,Printing Details,Afdrukken Details @@ -3488,7 +3496,7 @@ DocType: Task,Review Date,Herzieningsdatum DocType: Purchase Invoice,Advance Payments,Advance Payments DocType: Purchase Taxes and Charges,On Net Total,Op Netto Totaal apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Doel magazijn in rij {0} moet hetzelfde zijn als productieorder -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Geen toestemming om Betaling Tool gebruiken +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Geen toestemming om Betaling Tool gebruiken apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,'Notificatie E-mailadressen' niet gespecificeerd voor terugkerende %s apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Valuta kan niet na het maken van data met behulp van een andere valuta worden veranderd DocType: Company,Round Off Account,Afronden Account @@ -3511,7 +3519,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Hoeveelheid product verkregen na productie / herverpakken van de gegeven hoeveelheden grondstoffen DocType: Payment Reconciliation,Receivable / Payable Account,Vorderingen / Crediteuren Account DocType: Delivery Note Item,Against Sales Order Item,Tegen Sales Order Item -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},Geef aub attribuut Waarde voor kenmerk {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},Geef aub attribuut Waarde voor kenmerk {0} DocType: Item,Default Warehouse,Standaard Magazijn DocType: Task,Actual End Date (via Time Logs),Werkelijke Einddatum (via Time Logs) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Budget kan niet tegen Group rekening worden toegewezen {0} @@ -3536,10 +3544,10 @@ DocType: Lead,Blog Subscriber,Blog Abonnee apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Regels maken om transacties op basis van waarden te beperken. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Indien aangevinkt, Totaal niet. van Werkdagen zal omvatten feestdagen, en dit zal de waarde van het salaris per dag te verminderen" DocType: Purchase Invoice,Total Advance,Totaal Voorschot -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Processing Payroll +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Processing Payroll DocType: Opportunity Item,Basic Rate,Basis Tarief DocType: GL Entry,Credit Amount,Credit Bedrag -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Instellen als Verloren +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Instellen als Verloren apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Betaling Ontvangst Opmerking DocType: Supplier,Credit Days Based On,Credit dagen op basis van DocType: Tax Rule,Tax Rule,Belasting Regel @@ -3569,7 +3577,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Geaccepteerd Aantal apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} bestaat niet apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Factureren aan Klanten apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Project Id -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Rij Geen {0}: Bedrag kan niet groter zijn dan afwachting Bedrag tegen Expense conclusie {1} zijn. In afwachting van Bedrag is {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Rij Geen {0}: Bedrag kan niet groter zijn dan afwachting Bedrag tegen Expense conclusie {1} zijn. In afwachting van Bedrag is {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} abonnees toegevoegd DocType: Maintenance Schedule,Schedule,Plan DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Definieer begroting voor deze kostenplaats. De begroting actie, zie "Company List"" @@ -3630,19 +3638,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS Profiel DocType: Payment Gateway Account,Payment URL Message,Betaling URL Bericht apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Seizoensgebondenheid voor het vaststellen van budgetten, doelstellingen etc." -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Rij {0}: kan Betaling bedrag niet groter is dan openstaande bedrag zijn +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Rij {0}: kan Betaling bedrag niet groter is dan openstaande bedrag zijn apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Totaal Onbetaalde -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Tijd Log is niet factureerbaar -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Item {0} is een sjabloon, selecteert u één van de varianten" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Tijd Log is niet factureerbaar +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Item {0} is een sjabloon, selecteert u één van de varianten" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Koper apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Nettoloon kan niet negatief zijn -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Gelieve handmatig invoeren van de Against Vouchers +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Gelieve handmatig invoeren van de Against Vouchers DocType: SMS Settings,Static Parameters,Statische Parameters DocType: Purchase Order,Advance Paid,Voorschot Betaald DocType: Item,Item Tax,Artikel Belasting apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Materiaal aan Leverancier apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Accijnzen Factuur DocType: Expense Claim,Employees Email Id,Medewerkers E-mail ID +DocType: Employee Attendance Tool,Marked Attendance,Gemarkeerde Attendance apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Kortlopende Schulden apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Stuur massa SMS naar uw contacten DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Overweeg belasting of heffing voor @@ -3665,7 +3674,7 @@ DocType: Item Attribute,Numeric Values,Numerieke waarden apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Bevestig Logo DocType: Customer,Commission Rate,Commissie Rate apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Maak Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Blok verlaten toepassingen per afdeling. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Blok verlaten toepassingen per afdeling. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Winkelwagen is leeg DocType: Production Order,Actual Operating Cost,Werkelijke operationele kosten apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Root kan niet worden bewerkt . @@ -3684,7 +3693,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,Maak automatisch Materiaal aanvragen als de hoeveelheid lager niveau ,Item-wise Purchase Register,Artikelgebaseerde Inkoop Register DocType: Batch,Expiry Date,Vervaldatum -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Om bestelniveau stellen, moet onderdeel van een aankoop Item of Manufacturing Item zijn" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Om bestelniveau stellen, moet onderdeel van een aankoop Item of Manufacturing Item zijn" ,Supplier Addresses and Contacts,Leverancier Adressen en Contacten apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,Selecteer eerst een Categorie apps/erpnext/erpnext/config/projects.py +18,Project master.,Project stam. diff --git a/erpnext/translations/no.csv b/erpnext/translations/no.csv index e91fafbbc0..7ccd15a8d0 100644 --- a/erpnext/translations/no.csv +++ b/erpnext/translations/no.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,Kreditt i selskapet Va DocType: Delivery Note,Installation Status,Installasjon Status apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Akseptert + Avvist Antall må være lik mottatt kvantum for Element {0} DocType: Item,Supply Raw Materials for Purchase,Leverer råvare til Purchase -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Elementet {0} må være et kjøp varen +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Elementet {0} må være et kjøp varen DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Last ned mal, fyll riktige data og fest den endrede filen. Alle datoer og ansatt kombinasjon i den valgte perioden vil komme i malen, med eksisterende møteprotokoller" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,Element {0} er ikke aktiv eller slutten av livet er nådd DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Vil bli oppdatert etter Sales Faktura sendes inn. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","For å inkludere skatt i rad {0} i Element rente, skatt i rader {1} må også inkluderes" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Innstillinger for HR Module +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","For å inkludere skatt i rad {0} i Element rente, skatt i rader {1} må også inkluderes" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Innstillinger for HR Module DocType: SMS Center,SMS Center,SMS-senter DocType: BOM Replace Tool,New BOM,New BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Batch Tid Logger for fakturering. @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,Velg Vilkår DocType: Production Planning Tool,Sales Orders,Salgsordrer DocType: Purchase Taxes and Charges,Valuation,Verdivurdering ,Purchase Order Trends,Innkjøpsordre Trender -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Bevilge blader for året. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Bevilge blader for året. DocType: Earning Type,Earning Type,Tjene Type DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Deaktiver kapasitetsplanlegging og Time Tracking DocType: Bank Reconciliation,Bank Account,Bankkonto @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Sak Nettsted Spesifikasjon DocType: Payment Tool,Reference No,Referansenummer apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,La Blokkert -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Element {0} har nådd slutten av livet på {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Element {0} har nådd slutten av livet på {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Årlig DocType: Stock Reconciliation Item,Stock Reconciliation Item,Stock Avstemming Element DocType: Stock Entry,Sales Invoice No,Salg Faktura Nei @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,Minimum Antall DocType: Pricing Rule,Supplier Type,Leverandør Type DocType: Item,Publish in Hub,Publisere i Hub ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Element {0} er kansellert +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Element {0} er kansellert apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Materialet Request DocType: Bank Reconciliation,Update Clearance Date,Oppdater Lagersalg Dato DocType: Item,Purchase Details,Kjøps Detaljer @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Avvist Antall DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Feltet tilgjengelig i følgeseddel, sitat, salgsfaktura, Salgsordre" DocType: SMS Settings,SMS Sender Name,SMS Sender Name DocType: Contact,Is Primary Contact,Er Primær kontaktperson +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Tid Logg blitt dosert for Billing DocType: Notification Control,Notification Control,Varsling kontroll DocType: Lead,Suggestions,Forslag DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Set varegruppe-messig budsjetter på dette territoriet. Du kan også inkludere sesongvariasjoner ved å sette Distribution. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},Skriv inn forelder kontogruppe for lageret {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Betaling mot {0} {1} kan ikke være større enn utestående beløp {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Betaling mot {0} {1} kan ikke være større enn utestående beløp {2} DocType: Supplier,Address HTML,Adresse HTML DocType: Lead,Mobile No.,Mobile No. DocType: Maintenance Schedule,Generate Schedule,Generere Schedule @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Synkronisert Med Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Feil Passord DocType: Item,Variant Of,Variant av -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Elementet {0} må være service Element apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',Fullført Antall kan ikke være større enn "Antall å Manufacture ' DocType: Period Closing Voucher,Closing Account Head,Lukke konto Leder DocType: Employee,External Work History,Ekstern Work History @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,Nyhetsbrev DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Varsle på e-post om opprettelse av automatisk Material Request DocType: Journal Entry,Multi Currency,Multi Valuta DocType: Payment Reconciliation Invoice,Invoice Type,Faktura Type -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Levering Note +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Levering Note apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Sette opp skatter apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,Betaling Entry har blitt endret etter at du trakk den. Kan trekke det igjen. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} registrert to ganger i pkt Skatte +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} registrert to ganger i pkt Skatte apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Oppsummering for denne uken og ventende aktiviteter DocType: Workstation,Rent Cost,Rent Cost apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Velg måned og år @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,Gyldig for Land DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Alle import relaterte felt som valuta, valutakurs, import totalt, import grand total etc er tilgjengelig i kvitteringen Leverandør sitat, fakturaen, innkjøpsordre etc." apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"Denne varen er en mal, og kan ikke brukes i transaksjoner. Element attributter vil bli kopiert over i varianter med mindre 'No Copy' er satt" apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Total Bestill Regnes -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Ansatt betegnelse (f.eks CEO, direktør etc.)." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Ansatt betegnelse (f.eks CEO, direktør etc.)." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,Skriv inn 'Gjenta på dag i måneden' feltverdi DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,Hastigheten som Kunden Valuta omdannes til kundens basisvaluta DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Tilgjengelig i BOM, følgeseddel, fakturaen, produksjonsordre, innkjøpsordre, kvitteringen Salg Faktura, Salgsordre, Stock Entry, Timeregistrering" @@ -355,7 +355,7 @@ DocType: Workstation,Consumable Cost,Forbrukskostnads apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) må ha rollen «La Godkjenner ' DocType: Purchase Receipt,Vehicle Date,Vehicle Dato apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Medisinsk -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Grunnen for å tape +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Grunnen for å tape apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Workstation er stengt på følgende datoer som per Holiday Liste: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Muligheter DocType: Employee,Single,Enslig @@ -383,14 +383,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Channel Partner DocType: Account,Old Parent,Gammel Parent DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,Tilpass innledende tekst som går som en del av e-posten. Hver transaksjon har en egen innledende tekst. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Ikke ta med symboler (ex. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Sales Master manager apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Globale innstillinger for alle produksjonsprosesser. DocType: Accounts Settings,Accounts Frozen Upto,Regnskap Frozen Opp DocType: SMS Log,Sent On,Sendte På -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Attributtet {0} valgt flere ganger i attributter Table +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Attributtet {0} valgt flere ganger i attributter Table DocType: HR Settings,Employee record is created using selected field. ,Ansatt posten er opprettet ved hjelp av valgte feltet. DocType: Sales Order,Not Applicable,Gjelder ikke -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Holiday mester. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Holiday mester. DocType: Material Request Item,Required Date,Nødvendig Dato DocType: Delivery Note,Billing Address,Fakturaadresse apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,Skriv inn Element Code. @@ -426,7 +427,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,Skriv inn Warehouse hvor Material Request vil bli hevet DocType: Production Order,Additional Operating Cost,Ekstra driftskostnader apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Kosmetikk -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Å fusjonere, må følgende egenskaper være lik for begge elementene" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Å fusjonere, må følgende egenskaper være lik for begge elementene" DocType: Shipping Rule,Net Weight,Netto Vekt DocType: Employee,Emergency Phone,Emergency Phone ,Serial No Warranty Expiry,Ingen garanti Utløpsserie @@ -481,17 +482,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Fakturering og levering Status apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Gjenta kunder DocType: Leave Control Panel,Allocate,Bevilge -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Sales Return +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Sales Return DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Velg salgsordrer som du ønsker å opprette produksjonsordrer. DocType: Item,Delivered by Supplier (Drop Ship),Levert av Leverandør (Drop Ship) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Lønn komponenter. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Lønn komponenter. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Database med potensielle kunder. DocType: Authorization Rule,Customer or Item,Kunden eller Element apps/erpnext/erpnext/config/crm.py +17,Customer database.,Kundedatabase. DocType: Quotation,Quotation To,Sitat Å DocType: Lead,Middle Income,Middle Income apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Åpning (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Standard Enhet for Element {0} kan ikke endres direkte fordi du allerede har gjort noen transaksjon (er) med en annen målenheter. Du må opprette et nytt element for å bruke et annet standardmålenheter. +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Standard Enhet for Element {0} kan ikke endres direkte fordi du allerede har gjort noen transaksjon (er) med en annen målenheter. Du må opprette et nytt element for å bruke et annet standardmålenheter. apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Bevilget beløpet kan ikke være negativ DocType: Purchase Order Item,Billed Amt,Billed Amt DocType: Warehouse,A logical Warehouse against which stock entries are made.,En logisk Warehouse mot som lager oppføringer er gjort. @@ -510,14 +511,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Salgs Skatter og avgifter DocType: Employee,Organization Profile,Organisasjonsprofil apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,Vennligst oppsett nummerering serien for Oppmøte via Setup> Nummerering Series DocType: Employee,Reason for Resignation,Grunnen til Resignasjon -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Mal for medarbeidersamtaler. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Mal for medarbeidersamtaler. DocType: Payment Reconciliation,Invoice/Journal Entry Details,Faktura / Journal Entry Detaljer apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} {1} ikke i regnskapsåret {2} DocType: Buying Settings,Settings for Buying Module,Innstillinger for kjøp Module apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,Skriv inn Kjøpskvittering først DocType: Buying Settings,Supplier Naming By,Leverandør Naming Av DocType: Activity Type,Default Costing Rate,Standard Koster Rate -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Vedlikeholdsplan +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Vedlikeholdsplan apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Da reglene for prissetting filtreres ut basert på Kunden, Kundens Group, Territory, leverandør, leverandør Type, Kampanje, Sales Partner etc." apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Netto endring i varelager DocType: Employee,Passport Number,Passnummer @@ -556,7 +557,7 @@ DocType: Purchase Invoice,Quarterly,Quarterly DocType: Selling Settings,Delivery Note Required,Levering Note Påkrevd DocType: Sales Order Item,Basic Rate (Company Currency),Basic Rate (Company Valuta) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Spylings Råvare basert på -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,Skriv inn elementdetaljer +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,Skriv inn elementdetaljer DocType: Purchase Receipt,Other Details,Andre detaljer DocType: Account,Accounts,Kontoer apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Markedsføring @@ -569,7 +570,7 @@ DocType: Employee,Provide email id registered in company,Gi e-id registrert i se DocType: Hub Settings,Seller City,Selger by DocType: Email Digest,Next email will be sent on:,Neste post vil bli sendt på: DocType: Offer Letter Term,Offer Letter Term,Tilby Letter Term -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Elementet har varianter. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Elementet har varianter. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Element {0} ikke funnet DocType: Bin,Stock Value,Stock Verdi apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Tre Type @@ -577,7 +578,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Antall som forbrukes per enhet DocType: Serial No,Warranty Expiry Date,Garantiutløpsdato DocType: Material Request Item,Quantity and Warehouse,Kvantitet og Warehouse DocType: Sales Invoice,Commission Rate (%),Kommisjonen Rate (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Mot Voucher Type må være en av salgsordre, salgsfaktura eller bilagsregistrering" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Mot Voucher Type må være en av salgsordre, salgsfaktura eller bilagsregistrering" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Aerospace DocType: Journal Entry,Credit Card Entry,Kredittkort Entry apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Task Subject @@ -645,10 +646,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Ansvar apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Sanksjonert Beløpet kan ikke være større enn krav Beløp i Rad {0}. DocType: Company,Default Cost of Goods Sold Account,Standard varekostnader konto -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Prisliste ikke valgt +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Prisliste ikke valgt DocType: Employee,Family Background,Familiebakgrunn DocType: Process Payroll,Send Email,Send E-Post -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Advarsel: Ugyldig Vedlegg {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Advarsel: Ugyldig Vedlegg {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Ingen tillatelse DocType: Company,Default Bank Account,Standard Bank Account apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Hvis du vil filtrere basert på partiet, velger partiet Skriv inn først" @@ -676,7 +677,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Støt DocType: Features Setup,"To enable ""Point of Sale"" features",For å aktivere "Point of Sale" funksjoner DocType: Bin,Moving Average Rate,Moving Gjennomsnittlig pris DocType: Production Planning Tool,Select Items,Velg Items -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} mot Bill {1} datert {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} mot Bill {1} datert {2} DocType: Maintenance Visit,Completion Status,Completion Status DocType: Sales Invoice Item,Target Warehouse,Target Warehouse DocType: Item,Allow over delivery or receipt upto this percent,Tillat løpet levering eller mottak opp denne prosent @@ -736,7 +737,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Valu apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Å finne tidsluke i de neste {0} dager for Operation klarer {1} DocType: Production Order,Plan material for sub-assemblies,Plan materiale for sub-assemblies apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} må være aktiv -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,Velg dokumenttypen først +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Velg dokumenttypen først apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Goto vognen apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Avbryt Material Besøk {0} før den sletter denne Maintenance Visit DocType: Salary Slip,Leave Encashment Amount,La Encashment Beløp @@ -754,7 +755,7 @@ DocType: Purchase Receipt,Range,Område DocType: Supplier,Default Payable Accounts,Standard Leverandørgjeld apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Ansatt {0} er ikke aktiv eller ikke eksisterer DocType: Features Setup,Item Barcode,Sak Barcode -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Sak Varianter {0} oppdatert +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Sak Varianter {0} oppdatert DocType: Quality Inspection Reading,Reading 6,Reading 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Fakturaen Advance DocType: Address,Shop,Butikk @@ -777,7 +778,7 @@ DocType: Salary Slip,Total in words,Totalt i ord DocType: Material Request Item,Lead Time Date,Lead Tid Dato apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,er obligatorisk. Kanskje Valutaveksling posten ikke er skapt for apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Row # {0}: Vennligst oppgi serienummer for varen {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","For 'Produkt Bundle' elementer, Warehouse, serienummer og Batch Ingen vil bli vurdert fra "Pakkeliste" bord. Hvis Warehouse og Batch Ingen er lik for alle pakking elementer for noen "Product Bundle 'elementet, kan disse verdiene legges inn i hoved Sak bordet, vil verdiene bli kopiert til" Pakkeliste "bord." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","For 'Produkt Bundle' elementer, Warehouse, serienummer og Batch Ingen vil bli vurdert fra "Pakkeliste" bord. Hvis Warehouse og Batch Ingen er lik for alle pakking elementer for noen "Product Bundle 'elementet, kan disse verdiene legges inn i hoved Sak bordet, vil verdiene bli kopiert til" Pakkeliste "bord." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Forsendelser til kunder. DocType: Purchase Invoice Item,Purchase Order Item,Innkjøpsordre Element apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Indirekte inntekt @@ -798,6 +799,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Velg Lønn år og måned apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Gå til den aktuelle gruppen (vanligvis Application of Funds> Omløpsmidler> bankkontoer og opprette en ny konto (ved å klikke på Legg Child) av typen "Bank" DocType: Workstation,Electricity Cost,Elektrisitet Cost DocType: HR Settings,Don't send Employee Birthday Reminders,Ikke send Employee bursdagspåminnelser +,Employee Holiday Attendance,Medarbeider Holiday Oppmøte DocType: Opportunity,Walk In,Gå Inn apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Aksje Entries DocType: Item,Inspection Criteria,Inspeksjon Kriterier @@ -820,7 +822,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,A DocType: Journal Entry Account,Expense Claim,Expense krav apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Antall for {0} DocType: Leave Application,Leave Application,La Application -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,La Allocation Tool +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,La Allocation Tool DocType: Leave Block List,Leave Block List Dates,La Block List Datoer DocType: Company,If Monthly Budget Exceeded (for expense account),Hvis Månedlig budsjett Skredet (for regning) DocType: Workstation,Net Hour Rate,Netto timepris @@ -830,7 +832,7 @@ DocType: Packing Slip Item,Packing Slip Item,Pakking Slip Element DocType: POS Profile,Cash/Bank Account,Cash / Bank Account apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Fjernet elementer med ingen endring i mengde eller verdi. DocType: Delivery Note,Delivery To,Levering Å -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Attributt tabellen er obligatorisk +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Attributt tabellen er obligatorisk DocType: Production Planning Tool,Get Sales Orders,Få salgsordrer apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} kan ikke være negativ apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Rabatt @@ -894,7 +896,7 @@ DocType: SMS Center,Total Characters,Totalt tegn apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},Vennligst velg BOM i BOM felt for Element {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-Form Faktura Detalj DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Betaling Avstemming Faktura -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Bidrag% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Bidrag% DocType: Item,website page link,nettside lenke DocType: Company,Company registration numbers for your reference. Tax numbers etc.,Firmaregistreringsnumre som referanse. Skatte tall osv DocType: Sales Partner,Distributor,Distributør @@ -936,10 +938,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,Målenheter Omregningsfaktor DocType: Stock Settings,Default Item Group,Standard varegruppe apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Leverandør database. DocType: Account,Balance Sheet,Balanse -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Koste Center For Element med Element kode ' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Koste Center For Element med Element kode ' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,Din selger vil få en påminnelse på denne datoen for å kontakte kunden apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Ytterligere kontoer kan gjøres under grupper, men oppføringene kan gjøres mot ikke-grupper" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Skatt og andre lønnstrekk. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Skatt og andre lønnstrekk. DocType: Lead,Lead,Lead DocType: Email Digest,Payables,Gjeld DocType: Account,Warehouse,Warehouse @@ -956,10 +958,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Avstemte Betalingso DocType: Global Defaults,Current Fiscal Year,Værende regnskapsår DocType: Global Defaults,Disable Rounded Total,Deaktiver Avrundet Total DocType: Lead,Call,Call -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'Innlegg' kan ikke være tomt +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'Innlegg' kan ikke være tomt apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Duplicate rad {0} med samme {1} ,Trial Balance,Balanse Trial -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Sette opp ansatte +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Sette opp ansatte apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid """,Grid " apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,Vennligst velg først prefiks apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Forskning @@ -968,7 +970,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,Bruker-ID apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Vis Ledger apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Tidligste -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","En varegruppe eksisterer med samme navn, må du endre elementnavnet eller endre navn varegruppen" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","En varegruppe eksisterer med samme navn, må du endre elementnavnet eller endre navn varegruppen" DocType: Production Order,Manufacture against Sales Order,Produserer mot kundeordre apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Resten Av Verden apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,Element {0} kan ikke ha Batch @@ -993,7 +995,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Avvist Warehouse DocType: GL Entry,Against Voucher,Mot Voucher DocType: Item,Default Buying Cost Center,Standard Kjøpe kostnadssted apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","For å få det beste ut av ERPNext, anbefaler vi at du tar litt tid og se på disse hjelpevideoer." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Elementet {0} må være Sales Element +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Elementet {0} må være Sales Element apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,til DocType: Item,Lead Time in days,Lead Tid i dager ,Accounts Payable Summary,Leverandørgjeld Sammendrag @@ -1019,7 +1021,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Landbruk apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Dine produkter eller tjenester DocType: Mode of Payment,Mode of Payment,Modus for betaling -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Website Bilde bør være en offentlig fil eller nettside URL +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Website Bilde bør være en offentlig fil eller nettside URL apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,Dette er en rot varegruppe og kan ikke redigeres. DocType: Journal Entry Account,Purchase Order,Bestilling DocType: Warehouse,Warehouse Contact Info,Warehouse Kontaktinfo @@ -1030,7 +1032,7 @@ DocType: Serial No,Serial No Details,Serie ingen opplysninger DocType: Purchase Invoice Item,Item Tax Rate,Sak Skattesats apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry",For {0} kan bare kredittkontoer kobles mot en annen belastning oppføring apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Levering Note {0} er ikke innsendt -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Elementet {0} må være en underleverandør Element +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Elementet {0} må være en underleverandør Element apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Capital Equipments apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Prising Rule først valgt basert på "Apply On-feltet, som kan være varen, varegruppe eller Brand." DocType: Hub Settings,Seller Website,Selger Hjemmeside @@ -1039,7 +1041,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Mål DocType: Sales Invoice Item,Edit Description,Rediger Beskrivelse apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Forventet Leveringsdato er mindre enn planlagt startdato. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,For Leverandør +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,For Leverandør DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Stille Kontotype hjelper i å velge denne kontoen i transaksjoner. DocType: Purchase Invoice,Grand Total (Company Currency),Grand Total (Selskap Valuta) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Total Utgående @@ -1091,7 +1093,6 @@ DocType: Authorization Rule,Average Discount,Gjennomsnittlig Rabatt DocType: Address,Utilities,Verktøy DocType: Purchase Invoice Item,Accounting,Regnskap DocType: Features Setup,Features Setup,Funksjoner Setup -DocType: Item,Is Service Item,Er Tjenesten Element apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Tegningsperioden kan ikke være utenfor permisjon tildeling periode DocType: Activity Cost,Projects,Prosjekter apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,Vennligst velg regnskapsår @@ -1112,7 +1113,7 @@ DocType: Item,Maintain Stock,Oppretthold Stock apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Arkiv Innlegg allerede opprettet for produksjonsordre apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Netto endring i Fixed Asset DocType: Leave Control Panel,Leave blank if considered for all designations,La stå tom hvis vurderes for alle betegnelser -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Charge of type 'Actual' i rad {0} kan ikke inkluderes i Element Ranger +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Charge of type 'Actual' i rad {0} kan ikke inkluderes i Element Ranger apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Fra Datetime DocType: Email Digest,For Company,For selskapet @@ -1121,8 +1122,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Leveringsadresse Navn apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Konto DocType: Material Request,Terms and Conditions Content,Betingelser innhold -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,kan ikke være større enn 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Element {0} er ikke en lagervare +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,kan ikke være større enn 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Element {0} er ikke en lagervare DocType: Maintenance Visit,Unscheduled,Ikke planlagt DocType: Employee,Owned,Eies DocType: Salary Slip Deduction,Depends on Leave Without Pay,Avhenger La Uten Pay @@ -1143,7 +1144,7 @@ Used for Taxes and Charges","Tax detalj tabell hentet fra elementet Hoved som en apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Arbeidstaker kan ikke rapportere til seg selv. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Hvis kontoen er fryst, er oppføringer lov til begrensede brukere." DocType: Email Digest,Bank Balance,Bank Balanse -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Regnskap Entry for {0}: {1} kan bare gjøres i valuta: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Regnskap Entry for {0}: {1} kan bare gjøres i valuta: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Ingen aktive Lønn Struktur funnet for arbeidstaker {0} og måneden DocType: Job Opening,"Job profile, qualifications required etc.","Jobb profil, kvalifikasjoner som kreves etc." DocType: Journal Entry Account,Account Balance,Saldo @@ -1160,7 +1161,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Sub Assemblie DocType: Shipping Rule Condition,To Value,I Value DocType: Supplier,Stock Manager,Stock manager apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Kilde lageret er obligatorisk for rad {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Pakkseddel +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Pakkseddel apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Kontor Leie apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Oppsett SMS gateway-innstillinger apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Import mislyktes! @@ -1204,7 +1205,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM Detail Nei DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Ekstra rabatt Beløp (Selskap Valuta) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Feil: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,Opprett ny konto fra kontoplanen. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Vedlikehold Visit +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Vedlikehold Visit apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Kunde> Kunde Group> Territory DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Tilgjengelig Batch Antall på Warehouse DocType: Time Log Batch Detail,Time Log Batch Detail,Tid Logg Batch Detalj @@ -1213,7 +1214,7 @@ DocType: Leave Block List,Block Holidays on important days.,Block Ferie på vikt ,Accounts Receivable Summary,Kundefordringer Sammendrag apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,Vennligst angi bruker-ID-feltet i en Employee rekord å sette Employee Rolle DocType: UOM,UOM Name,Målenheter Name -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Bidrag Beløp +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Bidrag Beløp DocType: Sales Invoice,Shipping Address,Sendingsadresse DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,Dette verktøyet hjelper deg til å oppdatere eller fikse mengde og verdsetting av aksjer i systemet. Det er vanligvis brukes til å synkronisere systemverdier og hva som faktisk eksisterer i ditt varehus. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,I Ord vil være synlig når du lagrer følgeseddel. @@ -1254,7 +1255,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Å spore elementer ved hjelp av strekkoden. Du vil være i stand til å legge inn elementer i følgeseddel og salgsfaktura ved å skanne strekkoden på varen. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Sende Betaling Email DocType: Dependent Task,Dependent Task,Avhengig Task -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Omregningsfaktor for standard Enhet må være en i rad {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Omregningsfaktor for standard Enhet må være en i rad {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Permisjon av typen {0} kan ikke være lengre enn {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Prøv å planlegge operasjoner for X dager i forveien. DocType: HR Settings,Stop Birthday Reminders,Stop bursdagspåminnelser @@ -1264,7 +1265,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Vis apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Netto endring i kontanter DocType: Salary Structure Deduction,Salary Structure Deduction,Lønn Struktur Fradrag -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Enhet {0} har blitt lagt inn mer enn én gang i omregningsfaktor tabell +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Enhet {0} har blitt lagt inn mer enn én gang i omregningsfaktor tabell apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Betaling Request allerede eksisterer {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Cost of Utstedte Items apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Antall må ikke være mer enn {0} @@ -1293,7 +1294,7 @@ DocType: BOM Item,BOM Item,BOM Element DocType: Appraisal,For Employee,For Employee apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Rad {0}: Advance mot Leverandøren skal belaste DocType: Company,Default Values,Standardverdier -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Rad {0}: Betaling beløpet kan ikke være negativ +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Rad {0}: Betaling beløpet kan ikke være negativ DocType: Expense Claim,Total Amount Reimbursed,Totalbeløp Refusjon apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Mot Leverandør Faktura {0} datert {1} DocType: Customer,Default Price List,Standard Prisliste @@ -1321,8 +1322,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Gar DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Erstatte en bestemt BOM i alle andre stykklister der det brukes. Det vil erstatte den gamle BOM link, oppdatere kostnader og regenerere "BOM Explosion Item" bord som per ny BOM" DocType: Shopping Cart Settings,Enable Shopping Cart,Aktiver Handlevogn DocType: Employee,Permanent Address,Permanent Adresse -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Elementet {0} må være en service varen. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Advance betalt mot {0} {1} kan ikke være større \ enn Totalsum {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Velg elementet kode DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Reduser Fradrag for permisjon uten lønn (LWP) @@ -1378,12 +1378,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Hoved apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Variant DocType: Naming Series,Set prefix for numbering series on your transactions,Still prefiks for nummerering serien på dine transaksjoner +DocType: Employee Attendance Tool,Employees HTML,ansatte HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Stoppet rekkefølge kan ikke bli kansellert. Døves å avbryte. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Standard BOM ({0}) må være aktiv for denne varen eller dens mal +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Standard BOM ({0}) må være aktiv for denne varen eller dens mal DocType: Employee,Leave Encashed?,Permisjon encashed? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Opportunity Fra-feltet er obligatorisk DocType: Item,Variants,Varianter -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Gjør innkjøpsordre +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Gjør innkjøpsordre DocType: SMS Center,Send To,Send Til apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Det er ikke nok permisjon balanse for La Type {0} DocType: Payment Reconciliation Payment,Allocated amount,Bevilget beløp @@ -1483,7 +1484,7 @@ DocType: Sales Person,Name and Employee ID,Navn og Employee ID apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,Due Date kan ikke være før konteringsdato DocType: Website Item Group,Website Item Group,Website varegruppe apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Skatter og avgifter -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,Skriv inn Reference dato +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,Skriv inn Reference dato apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Betaling Gateway-konto er ikke konfigurert apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} oppføringer betalings kan ikke bli filtrert av {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,Tabell for element som vil bli vist på nettsiden @@ -1504,7 +1505,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Oppløsning Detaljer DocType: Quality Inspection Reading,Acceptance Criteria,Akseptkriterier DocType: Item Attribute,Attribute Name,Attributt navn -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Elementet {0} må være salgs- eller service Element i {1} DocType: Item Group,Show In Website,Show I Website apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Gruppe DocType: Task,Expected Time (in hours),Forventet tid (i timer) @@ -1536,7 +1536,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Fraktbeløp ,Pending Amount,Avventer Beløp DocType: Purchase Invoice Item,Conversion Factor,Omregningsfaktor DocType: Purchase Order,Delivered,Levert -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Oppsett innkommende server for jobbene e-id. (F.eks jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Oppsett innkommende server for jobbene e-id. (F.eks jobs@example.com) DocType: Purchase Receipt,Vehicle Number,Vehicle Number DocType: Purchase Invoice,The date on which recurring invoice will be stop,Datoen som tilbakevendende faktura vil bli stoppe apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Totalt bevilget blader {0} kan ikke være mindre enn allerede godkjente blader {1} for perioden @@ -1553,7 +1553,7 @@ DocType: HR Settings,HR Settings,HR-innstillinger apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Expense krav venter på godkjenning. Bare den Expense Godkjenner kan oppdatere status. DocType: Purchase Invoice,Additional Discount Amount,Ekstra rabatt Beløp DocType: Leave Block List Allow,Leave Block List Allow,La Block List Tillat -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abbr kan ikke være tomt eller plass +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abbr kan ikke være tomt eller plass apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Gruppe til Non-gruppe apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Sport apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Total Actual @@ -1577,7 +1577,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},Målenheter Omregningsfaktor er nødvendig i rad {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Klaring dato kan ikke være før innsjekking dato i rad {0} DocType: Salary Slip,Deduction,Fradrag -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Varen Pris lagt for {0} i Prisliste {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Varen Pris lagt for {0} i Prisliste {1} DocType: Address Template,Address Template,Adresse Mal apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,Skriv inn Employee Id av denne salgs person DocType: Territory,Classification of Customers by region,Klassifisering av kunder etter region @@ -1594,7 +1594,7 @@ DocType: Employee,Date of Birth,Fødselsdato apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Element {0} er allerede returnert DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** Regnskapsår ** representerer et regnskapsår. Alle regnskapspostene og andre store transaksjoner spores mot ** regnskapsår **. DocType: Opportunity,Customer / Lead Address,Kunde / Lead Adresse -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Advarsel: Ugyldig SSL-sertifikat på vedlegg {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Advarsel: Ugyldig SSL-sertifikat på vedlegg {0} DocType: Production Order Operation,Actual Operation Time,Selve Operasjon Tid DocType: Authorization Rule,Applicable To (User),Gjelder til (User) DocType: Purchase Taxes and Charges,Deduct,Trekke @@ -1611,7 +1611,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Split følgeseddel i pakker. apps/erpnext/erpnext/hooks.py +69,Shipments,Forsendelser DocType: Purchase Order Item,To be delivered to customer,Som skal leveres til kunde -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Tid Logg Status må sendes inn. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Tid Logg Status må sendes inn. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,Serial No {0} tilhører ikke noen Warehouse apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Row # DocType: Purchase Invoice,In Words (Company Currency),I Words (Company Valuta) @@ -1628,7 +1628,7 @@ DocType: Leave Application,Total Leave Days,Totalt La Days DocType: Email Digest,Note: Email will not be sent to disabled users,Merk: E-post vil ikke bli sendt til funksjonshemmede brukere apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Velg Company ... DocType: Leave Control Panel,Leave blank if considered for all departments,La stå tom hvis vurderes for alle avdelinger -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Typer arbeid (fast, kontrakt, lærling etc.)." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Typer arbeid (fast, kontrakt, lærling etc.)." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} er obligatorisk for Element {1} DocType: Currency Exchange,From Currency,Fra Valuta apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Vennligst velg avsatt beløp, fakturatype og fakturanummer i minst én rad" @@ -1647,7 +1647,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,Igang DocType: Authorization Rule,Itemwise Discount,Itemwise Rabatt DocType: Purchase Order Item,Reference Document Type,Reference Document Type -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} mot Salgsordre {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} mot Salgsordre {1} DocType: Account,Fixed Asset,Fast Asset apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Serialisert Lager DocType: Activity Type,Default Billing Rate,Standard Billing pris @@ -1657,7 +1657,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Salgsordre til betaling DocType: Expense Claim Detail,Expense Claim Detail,Expense krav Detalj apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Tid Logger opprettet: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,Velg riktig konto +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,Velg riktig konto DocType: Item,Weight UOM,Vekt målenheter DocType: Employee,Blood Group,Blodgruppe DocType: Purchase Invoice Item,Page Break,Page Break @@ -1692,7 +1692,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM rekursjon: {0} kan ikke være forelder eller barn av {2} DocType: Production Order Operation,Completed Qty,Fullført Antall apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry",For {0} kan bare belastning kontoer knyttes opp mot en annen kreditt oppføring -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Prisliste {0} er deaktivert +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Prisliste {0} er deaktivert DocType: Manufacturing Settings,Allow Overtime,Tillat Overtid apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} serienumre som kreves for Element {1}. Du har gitt {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Nåværende Verdivurdering Rate @@ -1743,7 +1743,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Inge apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Sak nr kan ikke være 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,Hvis du har salgsteam og salg Partners (Channel Partners) de kan merkes og vedlikeholde sitt bidrag i salgsaktivitet DocType: Item,Show a slideshow at the top of the page,Vis en lysbildeserie på toppen av siden -DocType: Item,"Allow in Sales Order of type ""Service""",Tillate i salgsordre av type "Service" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Butikker DocType: Time Log,Projects Manager,Prosjekter manager DocType: Serial No,Delivery Time,Leveringstid @@ -1758,6 +1757,7 @@ DocType: Rename Tool,Rename Tool,Rename Tool apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Oppdater Cost DocType: Item Reorder,Item Reorder,Sak Omgjøre apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Transfer Material +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Element {0} må være en Sales element i {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Spesifiser drift, driftskostnadene og gi en unik Operation nei til driften." DocType: Purchase Invoice,Price List Currency,Prisliste Valuta DocType: Naming Series,User must always select,Brukeren må alltid velge @@ -1778,7 +1778,7 @@ DocType: Appraisal,Employee,Ansatt apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Import E-post fra apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Inviter som User DocType: Features Setup,After Sale Installations,Etter kjøp Installasjoner -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} er fullt fakturert +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} er fullt fakturert DocType: Workstation Working Hour,End Time,Sluttid apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Standard kontraktsvilkår for salg eller kjøp. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Grupper etter Voucher @@ -1804,7 +1804,7 @@ DocType: Upload Attendance,Attendance To Date,Oppmøte To Date apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Oppsett innkommende server for salg e-id. (F.eks sales@example.com) DocType: Warranty Claim,Raised By,Raised By DocType: Payment Gateway Account,Payment Account,Betaling konto -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,Vennligst oppgi selskapet å fortsette +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,Vennligst oppgi selskapet å fortsette apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Netto endring i kundefordringer apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Kompenserende Off DocType: Quality Inspection Reading,Accepted,Akseptert @@ -1816,14 +1816,14 @@ DocType: Shipping Rule,Shipping Rule Label,Shipping Rule Etikett apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Råvare kan ikke være blank. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Kunne ikke oppdatere lager, inneholder faktura slippe frakt element." DocType: Newsletter,Test,Test -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Ettersom det er eksisterende lagertransaksjoner for dette elementet, \ du ikke kan endre verdiene for «Har Serial No ',' Har Batch No ',' Er Stock Element" og "verdsettelsesmetode '" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Hurtig Journal Entry apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,Du kan ikke endre prisen dersom BOM nevnt agianst ethvert element DocType: Employee,Previous Work Experience,Tidligere arbeidserfaring DocType: Stock Entry,For Quantity,For Antall apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},Skriv inn Planned Antall for Element {0} på rad {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} ikke er sendt +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} ikke er sendt apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Forespørsler om elementer. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Separat produksjonsordre vil bli opprettet for hvert ferdige godt element. DocType: Purchase Invoice,Terms and Conditions1,Vilkår og forhold 1 @@ -1848,6 +1848,7 @@ DocType: Notification Control,Expense Claim Approved Message,Expense krav Godkje DocType: Email Digest,How frequently?,Hvor ofte? DocType: Purchase Receipt,Get Current Stock,Få Current Stock apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Tree of Bill of Materials +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Mark Present apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Vedlikehold startdato kan ikke være før leveringsdato for Serial No {0} DocType: Production Order,Actual End Date,Selve sluttdato DocType: Authorization Rule,Applicable To (Role),Gjelder til (Role) @@ -1862,7 +1863,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Kontraktssluttdato må være større enn tidspunktet for inntreden DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,En tredjepart distributør / forhandler / kommisjonær / agent / forhandler som selger selskaper produkter for en kommisjon. DocType: Customer Group,Has Child Node,Har Child Node -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} mot innkjøpsordre {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} mot innkjøpsordre {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Skriv inn statiske webadresseparametere her (F.eks. Avsender = ERPNext, brukernavn = ERPNext, passord = 1234 etc.)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} ikke i noen aktiv regnskapsåret. For mer informasjon sjekk {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Dette er et eksempel nettsiden automatisk generert fra ERPNext @@ -1890,7 +1891,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Add or Deduct: Whether you want to add or deduct the tax.","Standard skatt mal som kan brukes på alle kjøpstransaksjoner. Denne malen kan inneholde liste over skatte hoder og også andre utgifter hoder som "Shipping", "Forsikring", "Håndtering" osv #### Note Skattesatsen du definerer her vil være standard skattesats for alle ** Items * *. Hvis det er ** Elementer ** som har forskjellige priser, må de legges i ** Sak Skatt ** bord i ** Sak ** mester. #### Beskrivelse av kolonner 1. Beregning Type: - Dette kan være på ** Net Total ** (som er summen av grunnbeløpet). - ** På Forrige Row Total / Beløp ** (for kumulative skatter eller avgifter). Hvis du velger dette alternativet, vil skatten bli brukt som en prosentandel av forrige rad (i skattetabellen) eller en total. - ** Faktisk ** (som nevnt). 2. Account Head: Konto hovedbok der denne skatten vil bli bokført 3. Cost Center: Hvis skatt / avgift er en inntekt (som frakt) eller utgifter det må bestilles mot et kostnadssted. 4. Beskrivelse: Beskrivelse av skatt (som vil bli skrevet ut i fakturaer / sitater). 5. Ranger: skattesats. 6. Beløp: Skatt beløp. 7. Totalt: Akkumulert total til dette punktet. 8. Angi Row: Dersom basert på "Forrige Row Total" du kan velge radnummeret som vil bli tatt som en base for denne beregningen (standard er den forrige rad). 9. Vurdere Skatte eller Charge for: I denne delen kan du angi om skatt / avgift er kun for verdivurdering (ikke en del av total) eller bare for total (ikke tilføre verdi til elementet) eller for begge. 10. legge til eller trekke: Enten du ønsker å legge til eller trekke skatt." DocType: Purchase Receipt Item,Recd Quantity,Recd Antall apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Kan ikke produsere mer Element {0} enn Salgsordre kvantitet {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Stock Entry {0} er ikke innsendt +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Stock Entry {0} er ikke innsendt DocType: Payment Reconciliation,Bank / Cash Account,Bank / minibank konto DocType: Tax Rule,Billing City,Fakturering By DocType: Global Defaults,Hide Currency Symbol,Skjule Valutasymbol @@ -1916,7 +1917,7 @@ DocType: Salary Structure,Total Earning,Total Tjene DocType: Purchase Receipt,Time at which materials were received,Tidspunktet for når materialene ble mottatt apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Mine adresser DocType: Stock Ledger Entry,Outgoing Rate,Utgående Rate -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Organisering gren mester. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Organisering gren mester. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,eller DocType: Sales Order,Billing Status,Billing Status apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Utility Utgifter @@ -1954,7 +1955,7 @@ DocType: Bin,Reserved Quantity,Reservert Antall DocType: Landed Cost Voucher,Purchase Receipt Items,Kvitteringen Items apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Tilpasse Forms DocType: Account,Income Account,Inntekt konto -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Levering +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Levering DocType: Stock Reconciliation Item,Current Qty,Nåværende Antall DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",Se "Rate Of materialer basert på" i Costing Seksjon DocType: Appraisal Goal,Key Responsibility Area,Key Ansvar Område @@ -1966,8 +1967,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,Kup DocType: Notification Control,Purchase Order Message,Innkjøpsordre Message DocType: Tax Rule,Shipping Country,Shipping Land DocType: Upload Attendance,Upload HTML,Last opp HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})",Total forhånd ({0}) mot Bestill {1} kan ikke være større \ enn Grand Total ({2}) DocType: Employee,Relieving Date,Lindrende Dato apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Prising Rule er laget for å overskrive Prisliste / definere rabattprosenten, basert på noen kriterier." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Lageret kan bare endres via Stock Entry / følgeseddel / Kjøpskvittering @@ -1977,8 +1976,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Innte apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Hvis valgt Pricing Rule er laget for 'Pris', det vil overskrive Prisliste. Priser Rule prisen er den endelige prisen, så ingen ytterligere rabatt bør påføres. Derfor, i transaksjoner som Salgsordre, innkjøpsordre osv, det vil bli hentet i "Valuta-feltet, heller enn" Prisliste Valuta-feltet." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Spor Leads etter bransje Type. DocType: Item Supplier,Item Supplier,Sak Leverandør -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,Skriv inn Element kode for å få batch no -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},Velg en verdi for {0} quotation_to {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,Skriv inn Element kode for å få batch no +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},Velg en verdi for {0} quotation_to {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Alle adresser. DocType: Company,Stock Settings,Aksje Innstillinger apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Sammenslåing er bare mulig hvis følgende egenskaper er samme i begge postene. Er Group, Root Type, Company" @@ -2001,7 +2000,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Sjekk Antall DocType: Payment Tool Detail,Payment Tool Detail,Betaling Tool Detail ,Sales Browser,Salg Browser DocType: Journal Entry,Total Credit,Total Credit -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Advarsel: Another {0} # {1} finnes mot aksje oppføring {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Advarsel: Another {0} # {1} finnes mot aksje oppføring {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Lokal apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Utlån (Eiendeler) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Skyldnere @@ -2021,8 +2020,8 @@ DocType: Price List,Price List Master,Prisliste Master DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,Alle salgstransaksjoner kan være merket mot flere ** Salgs Personer ** slik at du kan stille inn og overvåke mål. ,S.O. No.,SO No. DocType: Production Order Operation,Make Time Log,Gjør Tid Logg -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Vennligst sett omgjøring kvantitet -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},Opprett Customer fra Lead {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Vennligst sett omgjøring kvantitet +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},Opprett Customer fra Lead {0} DocType: Price List,Applicable for Countries,Gjelder for Land apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Datamaskiner apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,"Dette er en rot kundegruppe, og kan ikke redigeres." @@ -2058,7 +2057,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Billin DocType: Payment Reconciliation Invoice,Outstanding Amount,Utestående Beløp DocType: Project Task,Working,Arbeids DocType: Stock Ledger Entry,Stock Queue (FIFO),Stock Queue (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Vennligst velg Time Logger. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Vennligst velg Time Logger. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} ikke tilhører selskapet {1} DocType: Account,Round Off,Avrunde ,Requested Qty,Spurt Antall @@ -2096,7 +2095,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Få Relevante Entries apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Regnskap Entry for Stock DocType: Sales Invoice,Sales Team1,Salg TEAM1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Element {0} finnes ikke +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Element {0} finnes ikke DocType: Sales Invoice,Customer Address,Kunde Adresse DocType: Payment Request,Recipient and Message,Mottaker og melding DocType: Purchase Invoice,Apply Additional Discount On,Påfør Ytterligere rabatt på @@ -2115,7 +2114,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Demp Email apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Mat, drikke og tobakk" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL eller BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Kan bare gjøre betaling mot fakturert {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Kan bare gjøre betaling mot fakturert {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Kommisjon kan ikke være større enn 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Minimum lagerbeholdning DocType: Stock Entry,Subcontract,Underentrepriser @@ -2133,9 +2132,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Programvar apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Farge DocType: Maintenance Visit,Scheduled,Planlagt apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Vennligst velg Element der "Er Stock Item" er "Nei" og "Er Sales Item" er "Ja", og det er ingen andre Product Bundle" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Total forhånd ({0}) mot Bestill {1} kan ikke være større enn totalsummen ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Velg Månedlig Distribusjon til ujevnt fordele målene gjennom måneder. DocType: Purchase Invoice Item,Valuation Rate,Verdivurdering Rate -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Prisliste Valuta ikke valgt +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Prisliste Valuta ikke valgt apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,Sak Rad {0}: Kjøpskvittering {1} finnes ikke i ovenfor 'innkjøps Receipts' bord apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Ansatt {0} har allerede søkt om {1} mellom {2} og {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Prosjekt startdato @@ -2147,6 +2147,7 @@ DocType: Quality Inspection,Inspection Type,Inspeksjon Type apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},Vennligst velg {0} DocType: C-Form,C-Form No,C-Form Nei DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,Umerket Oppmøte apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Forsker apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,Ta vare på Nyhetsbrev før sending apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Navn eller E-post er obligatorisk @@ -2172,7 +2173,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Bekreft DocType: Payment Gateway,Gateway,Inngangsport apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Leverandør> Leverandør Type apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Skriv inn lindrende dato. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,Kun La Applikasjoner med status "Godkjent" kan sendes inn apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Adresse Tittel er obligatorisk. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,Skriv inn navnet på kampanjen hvis kilden til henvendelsen er kampanje @@ -2187,10 +2188,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Akseptert Warehouse DocType: Bank Reconciliation Detail,Posting Date,Publiseringsdato DocType: Item,Valuation Method,Verdsettelsesmetode apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Å finne kursen for {0} klarer {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Mark Half Day DocType: Sales Invoice,Sales Team,Sales Team apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Duplicate entry DocType: Serial No,Under Warranty,Under Garanti -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Error] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Error] DocType: Sales Order,In Words will be visible once you save the Sales Order.,I Ord vil være synlig når du lagrer kundeordre. ,Employee Birthday,Ansatt Bursdag apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Venture Capital @@ -2213,6 +2215,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,Kostnadssted med eksisterende transaksjoner kan ikke konverteres til gruppen DocType: Account,Depreciation,Avskrivninger apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Leverandør (er) +DocType: Employee Attendance Tool,Employee Attendance Tool,Employee Oppmøte Tool DocType: Supplier,Credit Limit,Kredittgrense apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Velg type transaksjon DocType: GL Entry,Voucher No,Kupong Ingen @@ -2239,7 +2242,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Root-kontoen kan ikke slettes ,Is Primary Address,Er Hovedadresse DocType: Production Order,Work-in-Progress Warehouse,Work-in-progress Warehouse -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Reference # {0} datert {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Reference # {0} datert {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Administrer Adresser DocType: Pricing Rule,Item Code,Sak Kode DocType: Production Planning Tool,Create Production Orders,Opprett produksjonsordrer @@ -2266,7 +2269,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Bankavstemming apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Få oppdateringer apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Materialet Request {0} blir kansellert eller stoppet apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Legg et par eksempler på poster -apps/erpnext/erpnext/config/hr.py +210,Leave Management,La Ledelse +apps/erpnext/erpnext/config/hr.py +225,Leave Management,La Ledelse apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Grupper etter Account DocType: Sales Order,Fully Delivered,Fullt Leveres DocType: Lead,Lower Income,Lavere inntekt @@ -2281,6 +2284,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"Fra dato" må være etter 'To Date' ,Stock Projected Qty,Lager Antall projiserte apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Kunden {0} ikke hører til prosjektet {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Merket Oppmøte HTML DocType: Sales Order,Customer's Purchase Order,Kundens innkjøpsordre DocType: Warranty Claim,From Company,Fra Company apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Verdi eller Stk @@ -2345,6 +2349,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Wire Transfer apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,Vennligst velg Bank Account DocType: Newsletter,Create and Send Newsletters,Lag og send nyhetsbrev +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Sjekk alt DocType: Sales Order,Recurring Order,Gjentakende Bestill DocType: Company,Default Income Account,Standard Inntekt konto apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Kunden Group / Kunde @@ -2376,6 +2381,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Tilbake mot fakturaen DocType: Item,Warranty Period (in days),Garantiperioden (i dager) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Netto kontantstrøm fra driften apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,reskontroførsel +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Mark Employee Oppmøte i Bulk apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Sak 4 DocType: Journal Entry Account,Journal Entry Account,Journal Entry konto DocType: Shopping Cart Settings,Quotation Series,Sitat Series @@ -2520,14 +2526,14 @@ DocType: Task,Actual Start Date (via Time Logs),Faktisk startdato (via Time Logg DocType: Stock Reconciliation Item,Before reconciliation,Før avstemming apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Til {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Skatter og avgifter legges (Company Valuta) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Sak Skatte Rad {0} må ha konto for type skatt eller inntekt eller kostnad eller Charge +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Sak Skatte Rad {0} må ha konto for type skatt eller inntekt eller kostnad eller Charge DocType: Sales Order,Partly Billed,Delvis Fakturert DocType: Item,Default BOM,Standard BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,Vennligst re-type firmanavn for å bekrefte apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Total Outstanding Amt DocType: Time Log Batch,Total Hours,Totalt antall timer DocType: Journal Entry,Printing Settings,Utskriftsinnstillinger -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Total debet må være lik samlet kreditt. Forskjellen er {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Total debet må være lik samlet kreditt. Forskjellen er {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Automotive apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Fra følgeseddel DocType: Time Log,From Time,Fra Time @@ -2573,7 +2579,7 @@ DocType: Purchase Invoice Item,Image View,Bilde Vis DocType: Issue,Opening Time,Åpning Tid apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,Fra og Til dato kreves apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Verdipapirer og råvarebørser -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Standard Enhet for Variant {0} må være samme som i malen {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Standard Enhet for Variant {0} må være samme som i malen {1} DocType: Shipping Rule,Calculate Based On,Beregn basert på DocType: Delivery Note Item,From Warehouse,Fra Warehouse DocType: Purchase Taxes and Charges,Valuation and Total,Verdivurdering og Total @@ -2595,7 +2601,7 @@ DocType: Leave Application,Follow via Email,Følg via e-post DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Skattebeløp Etter Rabattbeløp apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Barnekonto som finnes for denne kontoen. Du kan ikke slette denne kontoen. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Enten målet stk eller mål beløpet er obligatorisk -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},Ingen standard BOM finnes for Element {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},Ingen standard BOM finnes for Element {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,Vennligst velg Publiseringsdato først apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Åpningsdato bør være før påmeldingsfristens utløp DocType: Leave Control Panel,Carry Forward,Fremføring @@ -2672,7 +2678,7 @@ DocType: Leave Type,Is Encash,Er encash DocType: Purchase Invoice,Mobile No,Mobile No DocType: Payment Tool,Make Journal Entry,Gjør Journal Entry DocType: Leave Allocation,New Leaves Allocated,Nye Leaves Avsatt -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Prosjekt-messig data er ikke tilgjengelig for prisanslag +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Prosjekt-messig data er ikke tilgjengelig for prisanslag DocType: Project,Expected End Date,Forventet sluttdato DocType: Appraisal Template,Appraisal Template Title,Appraisal Mal Tittel apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Commercial @@ -2720,6 +2726,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,In apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Vennligst oppgi en DocType: Offer Letter,Awaiting Response,Venter på svar apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Fremfor +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Tid Logg har blitt fakturert DocType: Salary Slip,Earning & Deduction,Tjene & Fradrag apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Konto {0} kan ikke være en gruppe apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Valgfritt. Denne innstillingen vil bli brukt for å filtrere i forskjellige transaksjoner. @@ -2790,14 +2797,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Slettet alle transaksjoner knyttet til dette selskapet! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Som på dato apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Prøvetid -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Standard Warehouse er obligatorisk for lagervare. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Standard Warehouse er obligatorisk for lagervare. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Utbetaling av lønn for måneden {0} og år {1} DocType: Stock Settings,Auto insert Price List rate if missing,Auto innsats Prisliste rente hvis mangler apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Totalt innbetalt beløp ,Transferred Qty,Overført Antall apps/erpnext/erpnext/config/learn.py +11,Navigating,Navigere apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Planlegging -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Gjør Tid Logg Batch +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Gjør Tid Logg Batch apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Utstedt DocType: Project,Total Billing Amount (via Time Logs),Total Billing Beløp (via Time Logger) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Vi selger denne vare @@ -2805,7 +2812,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Mengden skal være større enn 0 DocType: Journal Entry,Cash Entry,Cash Entry DocType: Sales Partner,Contact Desc,Kontakt Desc -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Type blader som casual, syke etc." +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Type blader som casual, syke etc." DocType: Email Digest,Send regular summary reports via Email.,Send vanlige oppsummeringsrapporter via e-post. DocType: Brand,Item Manager,Sak manager DocType: Cost Center,Add rows to set annual budgets on Accounts.,Legg rekker å sette årlige budsjettene på Kontoer. @@ -2820,7 +2827,7 @@ DocType: GL Entry,Party Type,Partiet Type apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Råstoff kan ikke være det samme som hoved Element DocType: Item Attribute Value,Abbreviation,Forkortelse apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Ikke authroized siden {0} overskrider grensene -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Lønn mal mester. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Lønn mal mester. DocType: Leave Type,Max Days Leave Allowed,Max Dager La tillatt apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Still skatteregel for shopping cart DocType: Payment Tool,Set Matching Amounts,Sett matchende Beløp @@ -2833,7 +2840,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Sitater DocType: Stock Settings,Role Allowed to edit frozen stock,Rolle tillatt å redigere frossen lager ,Territory Target Variance Item Group-Wise,Territorium Target Avviks varegruppe-Wise apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Alle kundegrupper -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} er obligatorisk. Kanskje Valutaveksling posten ikke er skapt for {1} til {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} er obligatorisk. Kanskje Valutaveksling posten ikke er skapt for {1} til {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Skatt Mal er obligatorisk. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Konto {0}: Parent konto {1} finnes ikke DocType: Purchase Invoice Item,Price List Rate (Company Currency),Prisliste Rate (Selskap Valuta) @@ -2853,8 +2860,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Sak Wise Skatt Detalj ,Item-wise Price List Rate,Element-messig Prisliste Ranger apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Leverandør sitat DocType: Quotation,In Words will be visible once you save the Quotation.,I Ord vil være synlig når du lagrer Tilbud. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} er stoppet -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Barcode {0} allerede brukt i Element {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} er stoppet +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Barcode {0} allerede brukt i Element {1} DocType: Lead,Add to calendar on this date,Legg til i kalender på denne datoen apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Regler for å legge til fraktkostnader. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Kommende arrangementer @@ -2880,8 +2887,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,St apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Minst én lageret er obligatorisk DocType: Serial No,Out of Warranty,Ut av Garanti DocType: BOM Replace Tool,Replace,Erstatt -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} mot Sales Faktura {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Skriv inn standard måleenhet +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} mot Sales Faktura {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Skriv inn standard måleenhet DocType: Purchase Invoice Item,Project Name,Prosjektnavn DocType: Supplier,Mention if non-standard receivable account,Nevn hvis ikke-standard fordring konto DocType: Journal Entry Account,If Income or Expense,Dersom inntekt eller kostnad @@ -2906,7 +2913,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Fiscal Year: {0} ikke eksisterer DocType: Currency Exchange,To Currency,Å Valuta DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Tillat følgende brukere å godkjenne La Applications for blokk dager. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Typer av Expense krav. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Typer av Expense krav. DocType: Item,Taxes,Skatter apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Betalt og ikke levert DocType: Project,Default Cost Center,Standard kostnadssted @@ -2936,7 +2943,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Row # {0}: Serial No {1} samsvarer ikke med {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Casual La DocType: Batch,Batch ID,Batch ID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Merk: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Merk: {0} ,Delivery Note Trends,Levering Note Trender apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Denne ukens oppsummering apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} må være et Kjøpt eller underleverandør til element i rad {1} @@ -2976,6 +2983,7 @@ DocType: Project Task,Pending Review,Avventer omtale apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Klikk her for å betale DocType: Task,Total Expense Claim (via Expense Claim),Total Expense krav (via Expense krav) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Kunde-ID +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Mark Fraværende apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Å må Tid være større enn fra Time DocType: Journal Entry Account,Exchange Rate,Vekslingskurs apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Salgsordre {0} er ikke innsendt @@ -3023,7 +3031,7 @@ DocType: Item Group,Default Expense Account,Standard kostnadskonto DocType: Employee,Notice (days),Varsel (dager) DocType: Tax Rule,Sales Tax Template,Merverdiavgift Mal DocType: Employee,Encashment Date,Encashment Dato -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Mot Voucher Type må være en av innkjøpsordre, fakturaen eller bilagsregistrering" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Mot Voucher Type må være en av innkjøpsordre, fakturaen eller bilagsregistrering" DocType: Account,Stock Adjustment,Stock Adjustment apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Standard Aktivitet Kostnad finnes for Aktivitetstype - {0} DocType: Production Order,Planned Operating Cost,Planlagt driftskostnader @@ -3077,6 +3085,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Skriv Off Entry DocType: BOM,Rate Of Materials Based On,Valuta materialer basert på apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Støtte Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Fjern haken ved alle apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Selskapet er mangler i varehus {0} DocType: POS Profile,Terms and Conditions,Vilkår og betingelser apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},To Date bør være innenfor regnskapsåret. Antar To Date = {0} @@ -3098,7 +3107,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","For å sette dette regnskapsåret som standard, klikk på "Angi som standard '" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Oppsett innkommende server for støtte e-id. (F.eks support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Mangel Antall -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Sak variant {0} finnes med samme attributtene +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Sak variant {0} finnes med samme attributtene DocType: Salary Slip,Salary Slip,Lønn Slip apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,'To Date' er påkrevd DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Generere pakksedler for pakker som skal leveres. Brukes til å varsle pakke nummer, innholdet i pakken og vekten." @@ -3146,7 +3155,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Vis Lea DocType: Item Attribute Value,Attribute Value,Attributtverdi apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","E-id må være unikt, finnes allerede for {0}" ,Itemwise Recommended Reorder Level,Itemwise Anbefalt Omgjøre nivå -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,Vennligst velg {0} først +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,Vennligst velg {0} først DocType: Features Setup,To get Item Group in details table,For å få varen Group i detaljer tabellen apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Batch {0} av Element {1} er utløpt. DocType: Sales Invoice,Commission,Kommisjon @@ -3190,7 +3199,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Få Utestående Kuponger DocType: Warranty Claim,Resolved By,Løst Av DocType: Appraisal,Start Date,Startdato -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Bevilge blader for en periode. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Bevilge blader for en periode. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Sjekker og Innskudd feil ryddet apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Klikk her for å verifisere apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Konto {0}: Du kan ikke tildele seg selv som forelder konto @@ -3210,7 +3219,7 @@ DocType: Employee,Educational Qualification,Pedagogiske Kvalifikasjoner DocType: Workstation,Operating Costs,Driftskostnader DocType: Employee Leave Approver,Employee Leave Approver,Ansatt La Godkjenner apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} har blitt lagt inn i vår nyhetsbrevliste. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Rad {0}: En Omgjøre oppføring finnes allerede for dette lageret {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Rad {0}: En Omgjøre oppføring finnes allerede for dette lageret {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Kan ikke erklære som tapt, fordi tilbudet er gjort." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Kjøp Master manager apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Produksjonsordre {0} må sendes @@ -3234,7 +3243,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Salg Faktura {0} er allerede innsendt apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Ferdigstillelse Dato DocType: Purchase Invoice Item,Amount (Company Currency),Beløp (Selskap Valuta) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Organisasjonsenhet (departement) mester. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Organisasjonsenhet (departement) mester. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Skriv inn et gyldig mobil nos DocType: Budget Detail,Budget Detail,Budsjett Detalj apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,Skriv inn meldingen før du sender @@ -3250,13 +3259,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Mottatt og akseptert ,Serial No Service Contract Expiry,Serial No Service kontraktsutløp DocType: Item,Unit of Measure Conversion,Måleenhet Conversion apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Arbeidstaker kan ikke endres -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Du kan ikke kreditt- og debet samme konto samtidig +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Du kan ikke kreditt- og debet samme konto samtidig DocType: Naming Series,Help HTML,Hjelp HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Total weightage tilordnet skal være 100%. Det er {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Fradrag for over- {0} krysset for Element {1} DocType: Address,Name of person or organization that this address belongs to.,Navn på person eller organisasjon som denne adressen tilhører. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Dine Leverandører -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,Kan ikke settes som tapt som Salgsordre er gjort. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,Kan ikke settes som tapt som Salgsordre er gjort. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,En annen Lønn Struktur {0} er aktiv for arbeidstaker {1}. Vennligst sin status "Inaktiv" for å fortsette. DocType: Purchase Invoice,Contact,Kontakt apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Mottatt fra @@ -3266,11 +3275,11 @@ DocType: Item,Has Serial No,Har Serial No DocType: Employee,Date of Issue,Utstedelsesdato apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: Fra {0} for {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Row # {0}: Sett Leverandør for elementet {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Website Bilde {0} festet til Element {1} kan ikke finnes +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Website Bilde {0} festet til Element {1} kan ikke finnes DocType: Issue,Content Type,Innholdstype apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Datamaskin DocType: Item,List this Item in multiple groups on the website.,Liste denne vare i flere grupper på nettstedet. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,Vennligst sjekk Multi Valuta alternativet for å tillate kontoer med andre valuta +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,Vennligst sjekk Multi Valuta alternativet for å tillate kontoer med andre valuta apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Sak: {0} finnes ikke i systemet apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Du er ikke autorisert til å sette Frozen verdi DocType: Payment Reconciliation,Get Unreconciled Entries,Få avstemte Entries @@ -3280,14 +3289,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Hva gjør de DocType: Delivery Note,To Warehouse,Til Warehouse apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Konto {0} har blitt lagt inn mer enn en gang for regnskapsåret {1} ,Average Commission Rate,Gjennomsnittlig kommisjon -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,«Har Serial No 'kan ikke være' Ja 'for ikke-lagervare +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,«Har Serial No 'kan ikke være' Ja 'for ikke-lagervare apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Oppmøte kan ikke merkes for fremtidige datoer DocType: Pricing Rule,Pricing Rule Help,Prising Rule Hjelp DocType: Purchase Taxes and Charges,Account Head,Account Leder apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Oppdater ekstra kostnader for å beregne inntakskost annonser apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Elektrisk DocType: Stock Entry,Total Value Difference (Out - In),Total verdi Difference (ut -) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Rad {0}: Exchange Rate er obligatorisk +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Rad {0}: Exchange Rate er obligatorisk apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},Bruker-ID ikke satt for Employee {0} DocType: Stock Entry,Default Source Warehouse,Standardkilde Warehouse DocType: Item,Customer Code,Kunden Kode @@ -3306,15 +3315,15 @@ DocType: Notification Control,Sales Invoice Message,Salgsfaktura Message apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Lukke konto {0} må være av typen Ansvar / Egenkapital DocType: Authorization Rule,Based On,Basert På DocType: Sales Order Item,Ordered Qty,Bestilte Antall -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Element {0} er deaktivert +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Element {0} er deaktivert DocType: Stock Settings,Stock Frozen Upto,Stock Frozen Opp apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Periode Fra og perioden Til dato obligatoriske for gjentakende {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Prosjektet aktivitet / oppgave. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Generere lønnsslipper +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Generere lønnsslipper apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Kjøper må sjekkes, hvis dette gjelder for er valgt som {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Rabatt må være mindre enn 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Skriv Off Beløp (Selskap Valuta) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Row # {0}: Vennligst sett omgjøring kvantitet +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Row # {0}: Vennligst sett omgjøring kvantitet DocType: Landed Cost Voucher,Landed Cost Voucher,Landed Cost Voucher apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},Vennligst sett {0} DocType: Purchase Invoice,Repeat on Day of Month,Gjenta på dag i måneden @@ -3366,7 +3375,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Standard Work In Progress Warehouse apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Standardinnstillingene for regnskapsmessige transaksjoner. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Forventet Datoen kan ikke være før Material Request Dato -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Elementet {0} må være en Sales Element +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Elementet {0} må være en Sales Element DocType: Naming Series,Update Series Number,Update-serien Nummer DocType: Account,Equity,Egenkapital DocType: Sales Order,Printing Details,Utskrift Detaljer @@ -3418,7 +3427,7 @@ DocType: Task,Review Date,Omtale Dato DocType: Purchase Invoice,Advance Payments,Forskudd DocType: Purchase Taxes and Charges,On Net Total,On Net Total apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Target lager i rad {0} må være samme som produksjonsordre -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Ingen tillatelse til å bruke Betaling Tool +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Ingen tillatelse til å bruke Betaling Tool apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,Varslings E-postadresser som ikke er spesifisert for gjentakende% s apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Valuta kan ikke endres etter at oppføringer ved hjelp av en annen valuta DocType: Company,Round Off Account,Rund av konto @@ -3441,7 +3450,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Antall element oppnådd etter produksjon / nedpakking fra gitte mengder råvarer DocType: Payment Reconciliation,Receivable / Payable Account,Fordringer / gjeld konto DocType: Delivery Note Item,Against Sales Order Item,Mot kundeordreposisjon -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},Vennligst oppgi data Verdi for attributtet {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},Vennligst oppgi data Verdi for attributtet {0} DocType: Item,Default Warehouse,Standard Warehouse DocType: Task,Actual End Date (via Time Logs),Selve Sluttdato (via Time Logger) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Budsjettet kan ikke overdras mot gruppekonto {0} @@ -3466,10 +3475,10 @@ DocType: Lead,Blog Subscriber,Blogg Subscriber apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Lage regler for å begrense transaksjoner basert på verdier. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Hvis det er merket, Total nei. arbeidsdager vil omfatte helligdager, og dette vil redusere verdien av Lønn per dag" DocType: Purchase Invoice,Total Advance,Total Advance -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Processing Lønn +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Processing Lønn DocType: Opportunity Item,Basic Rate,Basic Rate DocType: GL Entry,Credit Amount,Credit Beløp -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Sett som tapte +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Sett som tapte apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Betaling Kvittering Note DocType: Supplier,Credit Days Based On,Kreditt Days Based On DocType: Tax Rule,Tax Rule,Skatt Rule @@ -3499,7 +3508,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Akseptert Antall apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} ikke eksisterer apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Regninger hevet til kundene. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Prosjekt Id -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Row Nei {0}: Beløpet kan ikke være større enn utestående beløpet mot Expense krav {1}. Avventer Beløp er {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Row Nei {0}: Beløpet kan ikke være større enn utestående beløpet mot Expense krav {1}. Avventer Beløp er {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} abonnenter lagt DocType: Maintenance Schedule,Schedule,Tidsplan DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Definer Budsjett for denne kostnadssted. Slik stiller budsjett handling, se "Selskapet List"" @@ -3560,19 +3569,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS Profile DocType: Payment Gateway Account,Payment URL Message,Betaling URL Message apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Sesong for å sette budsjetter, mål etc." -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Rad {0}: Betalingsbeløp kan ikke være større enn utestående beløp +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Rad {0}: Betalingsbeløp kan ikke være større enn utestående beløp apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Total Ubetalte -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Tid Log er ikke fakturerbar -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Element {0} er en mal, kan du velge en av variantene" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Tid Log er ikke fakturerbar +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Element {0} er en mal, kan du velge en av variantene" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Kjøper apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Nettolønn kan ikke være negativ -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Vennligst oppgi Against Kuponger manuelt +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Vennligst oppgi Against Kuponger manuelt DocType: SMS Settings,Static Parameters,Statiske Parametere DocType: Purchase Order,Advance Paid,Advance Betalt DocType: Item,Item Tax,Sak Skatte apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Materiale til Leverandør apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Vesenet Faktura DocType: Expense Claim,Employees Email Id,Ansatte Email Id +DocType: Employee Attendance Tool,Marked Attendance,merket Oppmøte apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Kortsiktig gjeld apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Sende masse SMS til kontaktene dine DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Tenk Skatte eller Charge for @@ -3595,7 +3605,7 @@ DocType: Item Attribute,Numeric Values,Numeriske verdier apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Fest Logo DocType: Customer,Commission Rate,Kommisjon apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Gjør Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Block permisjon applikasjoner ved avdelingen. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Block permisjon applikasjoner ved avdelingen. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Handlevognen er tom DocType: Production Order,Actual Operating Cost,Faktiske driftskostnader apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Root kan ikke redigeres. @@ -3614,7 +3624,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,Automatisk opprette Material Forespørsel om kvantitet faller under dette nivået ,Item-wise Purchase Register,Element-messig Purchase Register DocType: Batch,Expiry Date,Utløpsdato -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Slik stiller omgjøring nivå, må varen være en innkjøpsenhet eller Manufacturing Element" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Slik stiller omgjøring nivå, må varen være en innkjøpsenhet eller Manufacturing Element" ,Supplier Addresses and Contacts,Leverandør Adresser og kontakter apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,Vennligst første velg kategori apps/erpnext/erpnext/config/projects.py +18,Project master.,Prosjektet mester. diff --git a/erpnext/translations/pl.csv b/erpnext/translations/pl.csv index ef3af48e64..9abf080b60 100644 --- a/erpnext/translations/pl.csv +++ b/erpnext/translations/pl.csv @@ -88,7 +88,7 @@ apps/erpnext/erpnext/stock/doctype/item_attribute/item_attribute.py +56,"Attribu exist with this Attribute.",Atrybut Wartość {0} nie może być usunięty z {1} jako element Warianty \ istnieje z tym atrybutem. apps/erpnext/erpnext/accounts/doctype/account/account.js +27,This is a root account and cannot be edited., DocType: BOM,Operations,Działania -apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +38,Cannot set authorization on basis of Discount for {0}, +apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +38,Cannot set authorization on basis of Discount for {0},Nie można ustawić autoryzacji na podstawie Zniżki dla {0} DocType: Bin,Quantity Requested for Purchase,Ilość zaproponowana do Zakupu DocType: Rename Tool,"Attach .csv file with two columns, one for the old name and one for the new name","Dołączyć plik .csv z dwoma kolumnami, po jednym dla starej nazwy i jeden dla nowej nazwy" DocType: Packed Item,Parent Detail docname, @@ -164,14 +164,14 @@ DocType: Journal Entry Account,Credit in Company Currency,Kredyt w walucie Spó DocType: Delivery Note,Installation Status,Status instalacji apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Ilość Przyjętych + Odrzuconych musi odpowiadać ilości Odebranych (Element {0}) DocType: Item,Supply Raw Materials for Purchase,Dostawa surowce Skupu -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item, +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item, DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Pobierz szablon, wypełnić odpowiednie dane i dołączyć zmodyfikowanego pliku. Wszystko daty i pracownik połączenie w wybranym okresie przyjdzie w szablonie, z istniejącymi rekordy frekwencji" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached, DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Zostanie zaktualizowane po wysłaniu Faktury Sprzedaży -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included", -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module, +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included", +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module, DocType: SMS Center,SMS Center,Centrum SMS DocType: BOM Replace Tool,New BOM,Nowe zestawienie materiałowe apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Batch Czas Logi do fakturowania. @@ -199,7 +199,7 @@ DocType: Offer Letter,Select Terms and Conditions,Wybierz Regulamin DocType: Production Planning Tool,Sales Orders,Zlecenia sprzedaży DocType: Purchase Taxes and Charges,Valuation,Wycena ,Purchase Order Trends,Trendy Zamówienia Kupna -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Przydziel zwolnienia dla roku. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Przydziel zwolnienia dla roku. DocType: Earning Type,Earning Type,Typ Dochodu DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Wyłącz Planowanie Pojemność i Time Tracking DocType: Bank Reconciliation,Bank Account,Konto bankowe @@ -237,7 +237,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification, DocType: Payment Tool,Reference No,Nr Odniesienia apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Urlop Zablokowany -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1}, +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1}, apps/erpnext/erpnext/accounts/utils.py +341,Annual,Roczny DocType: Stock Reconciliation Item,Stock Reconciliation Item,Uzgodnienia Stanu Pozycja DocType: Stock Entry,Sales Invoice No,Nr faktury sprzedażowej @@ -249,7 +249,7 @@ DocType: Item,Minimum Order Qty,Minimalna wartość zamówienia DocType: Pricing Rule,Supplier Type,Typ dostawcy DocType: Item,Publish in Hub,Publikowanie w Hub ,Terretory,Terytorium -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled, +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled, apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Zamówienie produktu DocType: Bank Reconciliation,Update Clearance Date, DocType: Item,Purchase Details,Szczegóły zakupu @@ -261,11 +261,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Odrzucona Ilość DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Pole dostępne w Dowodzie Dostawy, Wycenie, Fakturze Sprzedaży, Zamówieniu Sprzedaży" DocType: SMS Settings,SMS Sender Name,Nazwa nadawcy SMS DocType: Contact,Is Primary Contact, +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Czas Zaloguj została batched dla Billing DocType: Notification Control,Notification Control,Kontrola Wypowiedzenia DocType: Lead,Suggestions,Sugestie DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution., apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},Proszę wprowadzić grupę konto rodzica magazynowy {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Płatność przed {0} {1} nie może być większa niż kwota kredytu pozostała {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Płatność przed {0} {1} nie może być większa niż kwota kredytu pozostała {2} DocType: Supplier,Address HTML,Adres HTML DocType: Lead,Mobile No.,Nr tel. Komórkowego DocType: Maintenance Schedule,Generate Schedule,Utwórz Harmonogram @@ -282,7 +283,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Synchronizowane z piastą apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Niepoprawne hasło DocType: Item,Variant Of,Wariant -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item, apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',"Zakończono Ilość nie może być większa niż ""Ilość w produkcji""" DocType: Period Closing Voucher,Closing Account Head, DocType: Employee,External Work History,Historia Zewnętrzna Pracy @@ -294,10 +294,10 @@ DocType: Newsletter,Newsletter,Newsletter DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Informuj za pomocą Maila (automatyczne) DocType: Journal Entry,Multi Currency,Wielu Waluta DocType: Payment Reconciliation Invoice,Invoice Type,Typ faktury -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Dowód dostawy +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Dowód dostawy apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Konfigurowanie podatki apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,Wpis płatności został zmodyfikowany po ściągnięciu. Proszę ściągnąć ponownie. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} dwa razy wprowadzone w podatku produktu +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} dwa razy wprowadzone w podatku produktu apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Podsumowanie na ten tydzień i działań toczących DocType: Workstation,Rent Cost,Koszt Wynajmu apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Wybierz miesiąc i rok @@ -308,7 +308,7 @@ DocType: Shipping Rule,Valid for Countries,Ważny dla krajów DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Wszystkie powiązane pola importu jak waluty, kursy wymiany, łącznie eksportu, wywozu sumy całkowitej itp są dostępne w dokumencie dostawy, POS, Cenniku, fakturze Sprzedaży, zamówieniu sprzedaży itp" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"Pozycja ta jest szablon i nie mogą być wykorzystywane w transakcjach. Atrybuty pozycji zostaną skopiowane nad do wariantów chyba ""Nie Kopiuj"" jest ustawiony" apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Zamówienie razem Uważany -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Stanowisko pracownika (np. Dyrektor Generalny, Dyrektor)" +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Stanowisko pracownika (np. Dyrektor Generalny, Dyrektor)" apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value, DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,Stawka przy użyciu której Waluta Klienta jest konwertowana do podstawowej waluty klienta DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Dostępne w BOM, dowód dostawy, faktura zakupu, zamówienie produkcji, zamówienie zakupu, faktury sprzedaży, zlecenia sprzedaży, Stan początkowy, ewidencja czasu pracy" @@ -357,7 +357,7 @@ DocType: Workstation,Consumable Cost,Koszt Konsumpcyjny apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) musi mieć rolę 'Leave Approver' DocType: Purchase Receipt,Vehicle Date,Pojazd Data apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Medyczny -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Powód straty +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Powód straty apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Stacja robocza jest zamknięta w następujących terminach wg listy wakacje: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Możliwości DocType: Employee,Single,Pojedynczy @@ -385,14 +385,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner, DocType: Account,Old Parent,Stary obiekt nadrzędny DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text., +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Nie zawierają symbole (np. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Główny Menadżer Sprzedaży apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Globalne ustawienia dla wszystkich procesów produkcyjnych. DocType: Accounts Settings,Accounts Frozen Upto,Konta zamrożone do DocType: SMS Log,Sent On, -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Atrybut {0} wybrane atrybuty kilka razy w tabeli +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Atrybut {0} wybrane atrybuty kilka razy w tabeli DocType: HR Settings,Employee record is created using selected field. ,Rekord pracownika tworzony jest przy użyciu zaznaczonego pola. DocType: Sales Order,Not Applicable,Nie dotyczy -apps/erpnext/erpnext/config/hr.py +140,Holiday master., +apps/erpnext/erpnext/config/hr.py +148,Holiday master., DocType: Material Request Item,Required Date, DocType: Delivery Note,Billing Address,Adres Faktury apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,Proszę wpisać Kod Produktu @@ -428,7 +429,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised, DocType: Production Order,Additional Operating Cost,Dodatkowy koszt operacyjny apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Kosmetyki -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items", +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items", DocType: Shipping Rule,Net Weight,Waga netto DocType: Employee,Emergency Phone,Telefon bezpieczeństwa ,Serial No Warranty Expiry, @@ -485,17 +486,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Fakturowanie i dostawy status apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Powtarzający się klient DocType: Leave Control Panel,Allocate,Przydziel -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Zwrot sprzedaży +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Zwrot sprzedaży DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders., DocType: Item,Delivered by Supplier (Drop Ship),Dostarczane przez Dostawcę (Drop Ship) -apps/erpnext/erpnext/config/hr.py +120,Salary components., +apps/erpnext/erpnext/config/hr.py +128,Salary components., apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Baza danych potencjalnych klientów. DocType: Authorization Rule,Customer or Item,Klient lub przedmiotu apps/erpnext/erpnext/config/crm.py +17,Customer database.,Baza danych klientów. DocType: Quotation,Quotation To,Wycena dla DocType: Lead,Middle Income,Średni Dochód apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Otwarcie (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Domyślnie Jednostka miary dla pozycji {0} nie może być zmieniana bezpośrednio, ponieważ masz już jakąś transakcję (y) z innym UOM. Musisz utworzyć nowy obiekt, aby użyć innego domyślnego UOM." +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Domyślnie Jednostka miary dla pozycji {0} nie może być zmieniana bezpośrednio, ponieważ masz już jakąś transakcję (y) z innym UOM. Musisz utworzyć nowy obiekt, aby użyć innego domyślnego UOM." apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Przydzielona kwota nie może być ujemna DocType: Purchase Order Item,Billed Amt,Rozliczona Ilość DocType: Warehouse,A logical Warehouse against which stock entries are made.,Logiczny Magazyn przeciwny do zapisów. @@ -514,14 +515,14 @@ DocType: Sales Invoice,Sales Taxes and Charges, DocType: Employee,Organization Profile,Profil organizacji apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series, DocType: Employee,Reason for Resignation,Powód rezygnacji -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals., +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals., DocType: Payment Reconciliation,Invoice/Journal Entry Details,Szczegóły Faktury / Wpisu dziennika apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' nie w roku podatkowym {2} DocType: Buying Settings,Settings for Buying Module,Ustawienia Zakup modułu apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,Proszę wpierw wprowadzić dokument zakupu DocType: Buying Settings,Supplier Naming By, DocType: Activity Type,Default Costing Rate,Domyślnie Costing Cena -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Plan Konserwacji +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Plan Konserwacji apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Następnie wycena Zasady są filtrowane na podstawie Klienta, grupy klientów, Terytorium, dostawcy, dostawca, typu kampanii, Partner Sales itp" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Zmiana netto stanu zapasów DocType: Employee,Passport Number, @@ -560,7 +561,7 @@ DocType: Purchase Invoice,Quarterly,Kwartalnie DocType: Selling Settings,Delivery Note Required,Dowód dostawy jest wymagany DocType: Sales Order Item,Basic Rate (Company Currency),Podstawowy wskaźnik (Waluta Firmy) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Płukanie surowce na podstawie -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,Proszę wpisać Szczegóły Przedmiotu +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,Proszę wpisać Szczegóły Przedmiotu DocType: Purchase Receipt,Other Details,Pozostałe szczegóły DocType: Account,Accounts,Księgowość apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Marketing @@ -573,7 +574,7 @@ DocType: Employee,Provide email id registered in company, DocType: Hub Settings,Seller City,Sprzedawca Miasto DocType: Email Digest,Next email will be sent on:, DocType: Offer Letter Term,Offer Letter Term,Oferta List Term -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Pozycja ma warianty. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Pozycja ma warianty. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found, DocType: Bin,Stock Value, apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type, @@ -581,7 +582,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Ilość skonsumowana na Jednos DocType: Serial No,Warranty Expiry Date,Data upływu gwarancji DocType: Material Request Item,Quantity and Warehouse,Ilość i magazyn DocType: Sales Invoice,Commission Rate (%),Wartość prowizji (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Podstawą księgowania może być tu Zlecenie sprzedaży, Faktura sprzedaży lub Zapis księgowy" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Podstawą księgowania może być tu Zlecenie sprzedaży, Faktura sprzedaży lub Zapis księgowy" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Lotnictwo DocType: Journal Entry,Credit Card Entry,Wejście kart kredytowych apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Temat zadania @@ -668,10 +669,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Zobowiązania apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Usankcjonowane Kwota nie może być większa niż ilość roszczenia w wierszu {0}. DocType: Company,Default Cost of Goods Sold Account,Domyślne Konto Wartości Dóbr Sprzedanych -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Cennik nie wybrany +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Cennik nie wybrany DocType: Employee,Family Background,Tło rodzinne DocType: Process Payroll,Send Email, -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Warning: Invalid Załącznik {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Warning: Invalid Załącznik {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Brak uprawnień DocType: Company,Default Bank Account,Domyślne konto bankowe apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Aby filtrować na podstawie partii, wybierz Party Wpisz pierwsze" @@ -699,7 +700,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers., DocType: Features Setup,"To enable ""Point of Sale"" features",Aby włączyć "punkt sprzedaży" funkcje DocType: Bin,Moving Average Rate, DocType: Production Planning Tool,Select Items,Wybierz Elementy -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} przed rachunkiem {1} z dnia {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} przed rachunkiem {1} z dnia {2} DocType: Maintenance Visit,Completion Status,Status ukończenia DocType: Sales Invoice Item,Target Warehouse, DocType: Item,Allow over delivery or receipt upto this percent,Pozostawić na dostawę lub odbiór zapisu do tego procent @@ -759,9 +760,9 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Gł apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Nie udało się znaleźć wolnego przedziału czasu w najbliższych {0} dniach do pracy {1} DocType: Production Order,Plan material for sub-assemblies,Materiał plan podzespołów apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} musi być aktywny -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,Najpierw wybierz typ dokumentu +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Najpierw wybierz typ dokumentu apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Idź do koszyka -apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit, +apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Anuluj Fizyczne Wizyty {0} zanim anulujesz Wizytę Pośrednią DocType: Salary Slip,Leave Encashment Amount, apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +209,Serial No {0} does not belong to Item {1}, DocType: Purchase Receipt Item Supplied,Required Qty,Wymagana ilość @@ -777,7 +778,7 @@ DocType: Purchase Receipt,Range,Przedział DocType: Supplier,Default Payable Accounts,Domyślne Konto Płatności apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Pracownik {0} jest nieaktywny lub nie istnieje DocType: Features Setup,Item Barcode,Kod kreskowy -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Pozycja Warianty {0} zaktualizowane +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Pozycja Warianty {0} zaktualizowane DocType: Quality Inspection Reading,Reading 6,Odczyt 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance, DocType: Address,Shop,Sklep @@ -800,7 +801,7 @@ DocType: Salary Slip,Total in words, DocType: Material Request Item,Lead Time Date,Termin realizacji apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,jest obowiązkowe. Może rekord Wymiana walut nie jest stworzony dla apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Wiersz # {0}: Proszę podać nr seryjny dla pozycji {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Dla pozycji "Produkt Bundle", magazyn, nr seryjny i numer partii będą rozpatrywane z "packing list" tabeli. Jeśli magazynowe oraz Batch Nie są takie same dla wszystkich elementów Opakowanie do pozycji każdego "produkt Bundle", wartości te mogą zostać wpisane do tabeli głównej pozycji, wartości zostaną skopiowane do "packing list" tabeli." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Dla pozycji "Produkt Bundle", magazyn, nr seryjny i numer partii będą rozpatrywane z "packing list" tabeli. Jeśli magazynowe oraz Batch Nie są takie same dla wszystkich elementów Opakowanie do pozycji każdego "produkt Bundle", wartości te mogą zostać wpisane do tabeli głównej pozycji, wartości zostaną skopiowane do "packing list" tabeli." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Dostawy do klientów. DocType: Purchase Invoice Item,Purchase Order Item,Przedmiot Zamówienia Kupna apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Przychody pośrednie @@ -821,6 +822,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Wybierz Płace rok i mies apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Idź do odpowiedniej grupy (zwykle wykorzystania funduszy> Aktywa obrotowe> rachunków bankowych i utworzyć nowe konto (klikając na Dodaj Child) typu "Bank" DocType: Workstation,Electricity Cost,Koszt energii elekrycznej DocType: HR Settings,Don't send Employee Birthday Reminders,Nie wysyłaj przypomnień o urodzinach Pracowników +,Employee Holiday Attendance,Pracownik Frekwencja na wakacje DocType: Opportunity,Walk In,Wejście apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Zbiory Wpisy DocType: Item,Inspection Criteria,Kryteria kontrolne @@ -843,7 +845,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,O DocType: Journal Entry Account,Expense Claim,Zwrot Kosztów apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Ilość dla {0} DocType: Leave Application,Leave Application,Wniosek o Urlop -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Narzędzie do przydziału urlopu +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Narzędzie do przydziału urlopu DocType: Leave Block List,Leave Block List Dates, DocType: Company,If Monthly Budget Exceeded (for expense account),Jeśli budżet miesięczny Przekroczone (dla rachunku kosztów) DocType: Workstation,Net Hour Rate,Stawka godzinowa Netto @@ -853,7 +855,7 @@ DocType: Packing Slip Item,Packing Slip Item,Pozycja listu przewozowego DocType: POS Profile,Cash/Bank Account,Konto Kasa / Bank apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Usunięte pozycje bez zmian w ilości lub wartości. DocType: Delivery Note,Delivery To,Dostawa do -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Stół atrybut jest obowiązkowy +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Stół atrybut jest obowiązkowy DocType: Production Planning Tool,Get Sales Orders,Pobierz zamówienia sprzedaży apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} nie może być ujemna apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Zniżka (rabat) @@ -917,7 +919,7 @@ DocType: SMS Center,Total Characters,Wszystkich Postacie apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},Proszę wybrać LM w dziedzinie BOM dla pozycji {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail, DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Płatność Wyrównawcza Faktury -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Udział % +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Udział % DocType: Item,website page link,link do strony WWW DocType: Company,Company registration numbers for your reference. Tax numbers etc., DocType: Sales Partner,Distributor,Dystrybutor @@ -959,10 +961,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,Współczynnik konwersji jedn DocType: Stock Settings,Default Item Group,Domyślna Grupa Przedmiotów apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Baza dostawców DocType: Account,Balance Sheet,Arkusz Bilansu -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Centrum kosztów dla Przedmiotu z Kodem Przedmiotu ' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Centrum kosztów dla Przedmiotu z Kodem Przedmiotu ' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer, apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Dalsze relacje mogą być wykonane w ramach grup, ale wpisy mogą być wykonane przed spoza grup" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions., +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions., DocType: Lead,Lead,Trop DocType: Email Digest,Payables, DocType: Account,Warehouse,Magazyn @@ -979,10 +981,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Szczegóły płatno DocType: Global Defaults,Current Fiscal Year,Obecny rok fiskalny DocType: Global Defaults,Disable Rounded Total,Wyłącz Zaokrąglanie Sumy DocType: Lead,Call,Połączenie -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,Pole 'Wpisy' nie może być puste +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,Pole 'Wpisy' nie może być puste apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Wiersz zduplikowany {0} z tym samym {1} ,Trial Balance,Zestawienie obrotów i sald -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Konfigurowanie Pracownicy +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Konfigurowanie Pracownicy apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid """, apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first, apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Badania @@ -991,7 +993,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,ID Użytkownika apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Podgląd księgi apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Najwcześniejszy -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group",Istnieje element Grupy o takiej nazwie. Zmień nazwę elementu lub tamtej Grupy. +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group",Istnieje element Grupy o takiej nazwie. Zmień nazwę elementu lub tamtej Grupy. DocType: Production Order,Manufacture against Sales Order, apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Reszta świata apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,Element {0} nie może mieć Batch @@ -1016,7 +1018,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Odrzucony Magazyn DocType: GL Entry,Against Voucher,Dowód księgowy DocType: Item,Default Buying Cost Center,Domyślne Centrum Kosztów Kupowania apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Aby uzyskać najlepsze z ERPNext, zalecamy, aby poświęcić trochę czasu i oglądać te filmy pomoc." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item, +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item, apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,do DocType: Item,Lead Time in days,Czas oczekiwania w dniach ,Accounts Payable Summary,Zobowiązania Podsumowanie @@ -1042,7 +1044,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Rolnictwo apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Twoje Produkty lub Usługi DocType: Mode of Payment,Mode of Payment,Rodzaj płatności -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Strona Obraz powinien być plik publiczny lub adres witryny +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Strona Obraz powinien być plik publiczny lub adres witryny apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited., DocType: Journal Entry Account,Purchase Order,Zamówienie kupna DocType: Warehouse,Warehouse Contact Info,Dane kontaktowe dla magazynu @@ -1053,7 +1055,7 @@ DocType: Serial No,Serial No Details,Szczegóły numeru seryjnego DocType: Purchase Invoice Item,Item Tax Rate,Stawka podatku dla tej pozycji apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","Dla {0}, tylko rachunki kredytowe mogą być połączone z innym wejściem debetowej" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Dowód dostawy {0} nie został wysłany -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item, +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item, apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments, apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Wycena Zasada jest najpierw wybiera się na podstawie ""Zastosuj Na"" polu, które może być pozycja, poz Grupa lub Marka." DocType: Hub Settings,Seller Website,Sprzedawca WWW @@ -1062,7 +1064,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Cel DocType: Sales Invoice Item,Edit Description,Edytuj opis apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Oczekiwany Dostawa Data jest mniejszy niż planowane daty rozpoczęcia. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,Dla dostawcy +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,Dla dostawcy DocType: Account,Setting Account Type helps in selecting this Account in transactions., DocType: Purchase Invoice,Grand Total (Company Currency),Całkowita suma (w walucie firmy) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Razem Wychodzące @@ -1114,7 +1116,6 @@ DocType: Authorization Rule,Average Discount,Średni rabat DocType: Address,Utilities, DocType: Purchase Invoice Item,Accounting,Księgowość DocType: Features Setup,Features Setup,Ustawienia właściwości -DocType: Item,Is Service Item,Jest usługą apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Okres aplikacja nie może być okres alokacji urlopu poza DocType: Activity Cost,Projects,Projekty apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,Wybierz Rok Podatkowy @@ -1135,7 +1136,7 @@ DocType: Item,Maintain Stock,Utrzymanie Zapasów apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Zbiory wpisy już utworzone dla Produkcji Zakonu apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Zmiana netto stanu trwałego DocType: Leave Control Panel,Leave blank if considered for all designations,Zostaw puste jeśli jest to rozważane dla wszystkich nominacji -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate, +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate, apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Od DateTime DocType: Email Digest,For Company,Dla firmy @@ -1144,8 +1145,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Adres do wysyłki Nazwa apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Plan Kont DocType: Material Request,Terms and Conditions Content,Zawartość regulaminu -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,nie może być większa niż 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item, +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,nie może być większa niż 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item, DocType: Maintenance Visit,Unscheduled,Nieplanowany DocType: Employee,Owned,Zawłaszczony DocType: Salary Slip Deduction,Depends on Leave Without Pay,Zależy od urlopu bezpłatnego @@ -1167,7 +1168,7 @@ Used for Taxes and Charges","Podatki pobierane z tabeli szczegółów mistrza po apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Pracownik nie może odpowiadać do samego siebie. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Jeśli konto jest zamrożone, zapisy mogą wykonywać tylko wyznaczone osoby." DocType: Email Digest,Bank Balance,Saldo bankowe -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Wprowadzenia danych księgowych dla {0}: {1} może być dokonywane wyłącznie w walucie: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Wprowadzenia danych księgowych dla {0}: {1} może być dokonywane wyłącznie w walucie: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Brak aktywnego Struktura znaleziono pracownika wynagrodzenie {0} i miesiąca DocType: Job Opening,"Job profile, qualifications required etc.","Profil pracy, wymagane kwalifikacje itp." DocType: Journal Entry Account,Account Balance,Bilans konta @@ -1184,7 +1185,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies, DocType: Shipping Rule Condition,To Value, DocType: Supplier,Stock Manager,Kierownik magazynu apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0}, -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,List przewozowy +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,List przewozowy apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Wydatki na wynajem apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Konfiguracja ustawień bramki SMS apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!, @@ -1228,7 +1229,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM Numer DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Dodatkowa kwota rabatu (waluta firmy) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Błąd: {0} > {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts., -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Wizyta Konserwacji +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Wizyta Konserwacji apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Klient > Grupa klientów > Terytorium DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Dostępne w Warehouse partii Ilość DocType: Time Log Batch Detail,Time Log Batch Detail, @@ -1237,7 +1238,7 @@ DocType: Leave Block List,Block Holidays on important days.,Blok Wakacje na waż ,Accounts Receivable Summary,Należności Podsumowanie apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,Proszę ustawić pole ID użytkownika w rekordzie pracownika do roli pracownika zestawu DocType: UOM,UOM Name,Nazwa Jednostki Miary -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Kwota udziału +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Kwota udziału DocType: Sales Invoice,Shipping Address,Adres dostawy DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,To narzędzie pomaga uaktualnić lub ustalić ilość i wycenę akcji w systemie. To jest zwykle używany do synchronizacji wartości systemowych i co rzeczywiście istnieje w magazynach. DocType: Delivery Note,In Words will be visible once you save the Delivery Note., @@ -1278,7 +1279,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item., apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Wyślij ponownie płatności E-mail DocType: Dependent Task,Dependent Task,Zadanie zależne -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Współczynnikiem konwersji dla domyślnej Jednostki Pomiaru musi być 1 w rzędzie {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Współczynnikiem konwersji dla domyślnej Jednostki Pomiaru musi być 1 w rzędzie {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Urlop typu {0} nie może być dłuższy niż {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Spróbuj planowania operacji dla X dni wcześniej. DocType: HR Settings,Stop Birthday Reminders, @@ -1288,7 +1289,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Zobacz apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Zmiana netto stanu środków pieniężnych DocType: Salary Structure Deduction,Salary Structure Deduction, -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Jednostka miary {0} została wprowadzona więcej niż raz w Tabelce Współczynnika Konwersji +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Jednostka miary {0} została wprowadzona więcej niż raz w Tabelce Współczynnika Konwersji apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Płatność Zapytanie już istnieje {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Koszt Emitowanych Przedmiotów apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Ilość nie może być większa niż {0} @@ -1317,7 +1318,7 @@ DocType: BOM Item,BOM Item, DocType: Appraisal,For Employee,Dla pracownika apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Wiersz {0}: Advance przed Dostawcę należy obciążyć DocType: Company,Default Values,Domyślne Wartości -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Wiersz {0}: kwota płatności nie może być ujemna +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Wiersz {0}: kwota płatności nie może być ujemna DocType: Expense Claim,Total Amount Reimbursed,Całkowitej kwoty zwrotów apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Przeciwko Dostawcę faktury {0} {1} dnia DocType: Customer,Default Price List,Domyślna List Cen @@ -1345,8 +1346,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Ros DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Wymień szczególną LM w innych LM, gdzie jest wykorzystywana. Będzie on zastąpić stary związek BOM, aktualizować koszty i zregenerować ""Item"" eksplozją BOM tabeli jak na nowym BOM" DocType: Shopping Cart Settings,Enable Shopping Cart,Włącz Koszyk DocType: Employee,Permanent Address,Stały adres -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item., -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Zaliczki wypłaconej przed {0} {1} nie może być większa \ niż RAZEM {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Wybierz kod produktu DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Zmniejsz potrącenie za Bezpłatny Urlop @@ -1402,12 +1402,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Główny apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Wariant DocType: Naming Series,Set prefix for numbering series on your transactions, +DocType: Employee Attendance Tool,Employees HTML,Pracownicy HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel., -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Domyślnie Wykaz Materiałów ({0}) musi być aktywny dla tej pozycji lub jej szablonu +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Domyślnie Wykaz Materiałów ({0}) musi być aktywny dla tej pozycji lub jej szablonu DocType: Employee,Leave Encashed?, apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Szansa Od pola jest obowiązkowe DocType: Item,Variants,Warianty -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order, +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order, DocType: SMS Center,Send To, apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0}, DocType: Payment Reconciliation Payment,Allocated amount,Przyznana kwota @@ -1461,7 +1462,7 @@ apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.py +119,Quantity fo ,Sales Invoice Trends, DocType: Leave Application,Apply / Approve Leaves,Zastosuj / Zatwierdź liście apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +23,For,Dla -apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +90,Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total', +apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +90,Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total',"Może odnosić się do wierdza tylko wtedy, gdy typ opłata jest ""Poprzedniej Wartości Wiersza Suma"" lub ""poprzedniego wiersza Razem""" DocType: Sales Order Item,Delivery Warehouse,Magazyn Dostawa DocType: Stock Settings,Allowance Percent,Dopuszczalny procent DocType: SMS Settings,Message Parameter,Parametr Wiadomości @@ -1508,14 +1509,14 @@ DocType: Sales Person,Name and Employee ID,Imię i Identyfikator Pracownika apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,Termin nie może być po Dacie Umieszczenia DocType: Website Item Group,Website Item Group,Grupa przedmiotów strony WWW apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Podatki i cła -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date, +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date, apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Gateway płatności konto nie jest skonfigurowany apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} wpisy płatności nie mogą być filtrowane przez {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,"Tabela dla pozycji, które zostaną pokazane w Witrynie" DocType: Purchase Order Item Supplied,Supplied Qty,Dostarczane szt DocType: Material Request Item,Material Request Item, apps/erpnext/erpnext/config/stock.py +98,Tree of Item Groups., -apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +100,Cannot refer row number greater than or equal to current row number for this Charge type, +apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +100,Cannot refer row number greater than or equal to current row number for this Charge type,Nie można wskazać numeru wiersza większego lub równego numerowi dla tego typu Opłaty ,Item-wise Purchase History, apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +152,Red,Czerwony apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +228,Please click on 'Generate Schedule' to fetch Serial No added for Item {0}, @@ -1529,7 +1530,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details, DocType: Quality Inspection Reading,Acceptance Criteria,Kryteria akceptacji DocType: Item Attribute,Attribute Name,Nazwa atrybutu -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1}, DocType: Item Group,Show In Website,Pokaż na stronie internetowej apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Grupa DocType: Task,Expected Time (in hours),Oczekiwany czas (w godzinach) @@ -1561,7 +1561,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Ilość dostawy ,Pending Amount,Kwota Oczekiwana DocType: Purchase Invoice Item,Conversion Factor,Współczynnik konwersji DocType: Purchase Order,Delivered,Dostarczono -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com), +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com), DocType: Purchase Receipt,Vehicle Number,Numer pojazdu DocType: Purchase Invoice,The date on which recurring invoice will be stop, apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Liczba przyznanych liście {0} nie może być mniejsza niż już zatwierdzonych liści {1} w okresie @@ -1578,7 +1578,7 @@ DocType: HR Settings,HR Settings,Ustawienia HR apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Zwrot Kosztów jest w oczekiwaniu na potwierdzenie. Tylko osoba zatwierdzająca wydatki może uaktualnić status. DocType: Purchase Invoice,Additional Discount Amount,Kwota dodatkowego rabatu DocType: Leave Block List Allow,Leave Block List Allow, -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Skrót nie może być pusty lub być spacją +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Skrót nie może być pusty lub być spacją apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Grupa do Non-Group apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports, apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Razem Rzeczywisty @@ -1602,7 +1602,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},Współczynnik konwersji jednostki miary jest wymagany w rzędzie {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0}, DocType: Salary Slip,Deduction,Odliczenie -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Pozycja Cena dodany do {0} w Cenniku {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Pozycja Cena dodany do {0} w Cenniku {1} DocType: Address Template,Address Template,Szablon Adresu apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,Proszę podać ID pracownika tej osoby ze sprzedaży DocType: Territory,Classification of Customers by region,Klasyfikacja Klientów od regionu @@ -1619,7 +1619,7 @@ DocType: Employee,Date of Birth,Data urodzenia apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned, DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** Rok finansowy** reprezentuje rok finansowy. Wszystkie zapisy księgowe oraz inne znaczące transakcje są śledzone przed ** roku podatkowego **. DocType: Opportunity,Customer / Lead Address,Adres Klienta / Tropu -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Ostrzeżenie: Nieprawidłowy certyfikat SSL na przywiązanie {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Ostrzeżenie: Nieprawidłowy certyfikat SSL na przywiązanie {0} DocType: Production Order Operation,Actual Operation Time,Rzeczywisty Czas pracy DocType: Authorization Rule,Applicable To (User),Stosowne dla (Użytkownik) DocType: Purchase Taxes and Charges,Deduct,Odlicz @@ -1636,7 +1636,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages., apps/erpnext/erpnext/hooks.py +69,Shipments,Przesyłki DocType: Purchase Order Item,To be delivered to customer,Być dostarczone do klienta -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Czas Zaloguj status musi być złożony. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Czas Zaloguj status musi być złożony. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,Numer seryjny: {0} nie należy do żadnej Warehouse apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Wiersz # DocType: Purchase Invoice,In Words (Company Currency), @@ -1653,7 +1653,7 @@ DocType: Leave Application,Total Leave Days, DocType: Email Digest,Note: Email will not be sent to disabled users, apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Wybierz firmą ... DocType: Leave Control Panel,Leave blank if considered for all departments,Zostaw puste jeśli jest to rozważane dla wszystkich departamentów -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).", +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).", apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} jest obowiązkowe dla elementu {1} DocType: Currency Exchange,From Currency,Od Waluty apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Proszę wybrać Przyznana kwota, faktury i faktury Rodzaj numer w conajmniej jednym rzędzie" @@ -1663,7 +1663,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +40,Others,Inni apps/erpnext/erpnext/templates/includes/product_page.js +65,Cannot find a matching Item. Please select some other value for {0}.,Nie możesz znaleźć pasujący element. Proszę wybrać jakąś inną wartość dla {0}. DocType: POS Profile,Taxes and Charges,Podatki i opłaty DocType: Item,"A Product or a Service that is bought, sold or kept in stock.","Produkt lub usługa, która jest kupiona, sprzedana lub przechowywana w magazynie." -apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +94,Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row, +apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +94,Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row,"Nie można wybrać typu opłaty jako ""Sumy Poprzedniej Komórki"" lub ""Całkowitej kwoty poprzedniej Komórki"" w pierwszym rzędzie" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +12,Banking,Bankowość apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +38,Please click on 'Generate Schedule' to get schedule, apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +300,New Cost Center,Nowe Centrum Kosztów @@ -1672,7 +1672,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process, DocType: Authorization Rule,Itemwise Discount, DocType: Purchase Order Item,Reference Document Type,Oznaczenie typu dokumentu -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} przed Zleceniem Sprzedaży {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} przed Zleceniem Sprzedaży {1} DocType: Account,Fixed Asset,Trwała własność apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Inwentaryzacja w odcinkach DocType: Activity Type,Default Billing Rate,Domyślnie Cena płatności @@ -1682,7 +1682,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Płatności do zamówienia sprzedaży DocType: Expense Claim Detail,Expense Claim Detail,Szczegóły o zwrotach kosztów apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Czas Logi utworzone: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,Proszę wybrać prawidłową konto +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,Proszę wybrać prawidłową konto DocType: Item,Weight UOM,Waga jednostkowa DocType: Employee,Blood Group,Grupa Krwi DocType: Purchase Invoice Item,Page Break,Znak końca strony @@ -1717,7 +1717,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2}, DocType: Production Order Operation,Completed Qty,Ukończona wartość apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","Dla {0}, tylko rachunki płatnicze mogą być połączone z innym wejściem kredytową" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Cennik {0} jest wyłączony +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Cennik {0} jest wyłączony DocType: Manufacturing Settings,Allow Overtime,Pozwól Nadgodziny apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} Numery seryjne wymagane dla pozycji {1}. Podałeś {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Aktualny Wycena Cena @@ -1768,7 +1768,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Nie apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Numer sprawy nie może wynosić 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity, DocType: Item,Show a slideshow at the top of the page, -DocType: Item,"Allow in Sales Order of type ""Service""",Pozwól się zlecenia sprzedaży typu "Serwis" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores, DocType: Time Log,Projects Manager,Kierownik Projektów DocType: Serial No,Delivery Time,Czas dostawy @@ -1783,6 +1782,7 @@ DocType: Rename Tool,Rename Tool,Zmień nazwę narzędzia apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Zaktualizuj Koszt DocType: Item Reorder,Item Reorder, apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material, +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Element {0} musi być pozycja sprzedaży w {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.", DocType: Purchase Invoice,Price List Currency,Waluta cennika DocType: Naming Series,User must always select,Użytkownik musi zawsze zaznaczyć @@ -1803,7 +1803,7 @@ DocType: Appraisal,Employee,Pracownik apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Importowania wiadomości z apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Zaproś jako Użytkownik DocType: Features Setup,After Sale Installations,Posprzedażowe -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} jest w pełni rozliczone +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} jest w pełni rozliczone DocType: Workstation Working Hour,End Time,Czas zakończenia apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase., apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Grupuj według Podstawy księgowania @@ -1829,7 +1829,7 @@ DocType: Upload Attendance,Attendance To Date,Frekwencja - usługa do dnia apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com), DocType: Warranty Claim,Raised By,Wywołany przez DocType: Payment Gateway Account,Payment Account,Konto Płatność -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,Sprecyzuj firmę aby przejść dalej +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,Sprecyzuj firmę aby przejść dalej apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Zmiana netto stanu należności apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off, DocType: Quality Inspection Reading,Accepted,Przyjęte @@ -1841,14 +1841,14 @@ DocType: Shipping Rule,Shipping Rule Label, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Surowce nie może być puste. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Nie można zaktualizować akcji, faktura zawiera upuść element wysyłki." DocType: Newsletter,Test, -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Jak są istniejące transakcji giełdowych dla tej pozycji, \ nie można zmienić wartości "Czy numer seryjny", "Czy Batch Nie ',' Czy Pozycja Zdjęcie" i "Metoda wyceny"" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Szybkie Księgowanie apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item, DocType: Employee,Previous Work Experience,Poprzednie doświadczenie zawodowe DocType: Stock Entry,For Quantity,Dla Ilości apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1}, -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} nie zostało dodane +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} nie zostało dodane apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Zamówienia produktów. DocType: Production Planning Tool,Separate production order will be created for each finished good item., DocType: Purchase Invoice,Terms and Conditions1, @@ -1873,6 +1873,7 @@ DocType: Notification Control,Expense Claim Approved Message,Widomość o zwrota DocType: Email Digest,How frequently?,Jak często? DocType: Purchase Receipt,Get Current Stock,Pobierz aktualny stan magazynowy apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Drzewo Bill of Materials +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Mark Present apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Początek daty konserwacji nie może być wcześniejszy od daty numeru seryjnego {0} DocType: Production Order,Actual End Date,Rzeczywista Data Zakończenia DocType: Authorization Rule,Applicable To (Role),Stosowne dla (Rola) @@ -1887,7 +1888,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Końcowa data kontraktu musi być większa od Daty Członkowstwa DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,"Dystrybutor strona trzecia / handlowiec / prowizji agenta / partner / sprzedawcę, który sprzedaje produkty firm z tytułu prowizji." DocType: Customer Group,Has Child Node, -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} przed Zamówieniem Zakupu {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} przed Zamówieniem Zakupu {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Wpisz parametry statycznego URL tutaj (np. nadawca=ERPNext, nazwa użytkownika=ERPNext, hasło=1234 itd.)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} nie w każdym aktywnym roku podatkowego. Aby uzyskać więcej informacji sprawdź {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext, @@ -1935,7 +1936,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Dodać lub odjąć: Czy chcesz dodać lub odjąć podatek." DocType: Purchase Receipt Item,Recd Quantity,Zapisana Ilość apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Nie można wyprodukować więcej przedmiotów {0} niż wartość {1} na Zamówieniu -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Zdjęcie Wejście {0} nie jest składany +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Zdjęcie Wejście {0} nie jest składany DocType: Payment Reconciliation,Bank / Cash Account,Konto Bank / Gotówka DocType: Tax Rule,Billing City,Rozliczenia Miasto DocType: Global Defaults,Hide Currency Symbol,Ukryj symbol walutowy @@ -1961,7 +1962,7 @@ DocType: Salary Structure,Total Earning, DocType: Purchase Receipt,Time at which materials were received, apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Moje adresy DocType: Stock Ledger Entry,Outgoing Rate,Wychodzące Cena -apps/erpnext/erpnext/config/hr.py +100,Organization branch master., +apps/erpnext/erpnext/config/hr.py +108,Organization branch master., apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,lub DocType: Sales Order,Billing Status,Status Faktury apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Wydatki na usługi komunalne @@ -1999,7 +2000,7 @@ DocType: Bin,Reserved Quantity,Zarezerwowana ilość DocType: Landed Cost Voucher,Purchase Receipt Items,Przedmioty Potwierdzenia Zakupu apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Dostosowywanie formularzy DocType: Account,Income Account,Konto przychodów -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Dostarczanie +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Dostarczanie DocType: Stock Reconciliation Item,Current Qty,Obecna ilość DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section", DocType: Appraisal Goal,Key Responsibility Area,Kluczowy obszar obowiązków @@ -2011,9 +2012,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,Bon DocType: Notification Control,Purchase Order Message,Wiadomość Zamówienia Kupna DocType: Tax Rule,Shipping Country,Wysyłka Kraj DocType: Upload Attendance,Upload HTML,Wyślij HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","Suma zaliczki ({0}) przeciwko Zakonu {1} nie może być większa niż Wielkie \ - Razem ({2})" DocType: Employee,Relieving Date,Data zwolnienia apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Wycena Zasada jest nadpisanie cennik / określenie procentowego rabatu, w oparciu o pewne kryteria." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Magazyn może być tylko zmieniony poprzez Wpis Asortymentu / Notę Dostawy / Potwierdzenie zakupu @@ -2023,8 +2021,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Podat apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Jeśli wybrana reguła Wycena jest dla 'Cena' spowoduje zastąpienie cennik. Zasada jest cena Wycena ostateczna cena, więc dalsze zniżki powinny być stosowane. W związku z tym, w transakcjach takich jak zlecenia sprzedaży, zamówienia itp, będzie pobrana w polu ""stopa"", a nie polu ""Cennik stopa""." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type., DocType: Item Supplier,Item Supplier,Dostawca -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,Proszę wprowadzić Kod Produktu w celu przyporządkowania serii -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},Proszę wprowadzić wartość dla wyceny {0} {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,Proszę wprowadzić Kod Produktu w celu przyporządkowania serii +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},Proszę wprowadzić wartość dla wyceny {0} {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Wszystkie adresy DocType: Company,Stock Settings,Ustawienia magazynu apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Połączenie jest możliwe tylko wtedy, gdy następujące właściwości są takie same w obu płyt. Czy Grupa Root Typ, Firma" @@ -2047,7 +2045,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Numer czeku DocType: Payment Tool Detail,Payment Tool Detail,Szczegóły Narzędzia Płatności ,Sales Browser, DocType: Journal Entry,Total Credit, -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Ostrzeżenie: Inny {0} # {1} istnieje we wpisie asortymentu {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Ostrzeżenie: Inny {0} # {1} istnieje we wpisie asortymentu {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Lokalne apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Inwestycje finansowe i udzielone pożyczki (aktywa) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Dłużnicy @@ -2067,8 +2065,8 @@ DocType: Price List,Price List Master,Ustawienia Cennika DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,"Wszystkie transakcje sprzedaży mogą być oznaczone przed wieloma ** Osoby sprzedaży **, dzięki czemu można ustawić i monitorować cele." ,S.O. No., DocType: Production Order Operation,Make Time Log,Dodać do czasu Zaloguj -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Proszę ustawić ilość zmienić kolejność -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0}, +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Proszę ustawić ilość zmienić kolejność +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0}, DocType: Price List,Applicable for Countries,Zastosowanie dla krajów apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Komputery apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited., @@ -2116,7 +2114,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Faktur DocType: Payment Reconciliation Invoice,Outstanding Amount,Zaległa Ilość DocType: Project Task,Working,Pracuje DocType: Stock Ledger Entry,Stock Queue (FIFO), -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Proszę wybrać Time Logs. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Proszę wybrać Time Logs. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} nie należy do firmy {1} DocType: Account,Round Off,Zaokrąglić ,Requested Qty, @@ -2154,7 +2152,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Pobierz odpowiednie pozycje apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Zapis księgowy dla zapasów DocType: Sales Invoice,Sales Team1, -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist, +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist, DocType: Sales Invoice,Customer Address,Adres klienta DocType: Payment Request,Recipient and Message,Odbiorca i Message DocType: Purchase Invoice,Apply Additional Discount On,Zastosuj dodatkowe zniżki na @@ -2173,7 +2171,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Wyciszenie email apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Żywność, Trunki i Tytoń" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL albo BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Mogą jedynie wpłaty przed Unbilled {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Mogą jedynie wpłaty przed Unbilled {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Wartość prowizji nie może być większa niż 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Minimalny poziom zapasów DocType: Stock Entry,Subcontract,Zlecenie @@ -2191,9 +2189,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Oprogramow apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Kolor DocType: Maintenance Visit,Scheduled,Zaplanowane apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Proszę wybrać produkt, gdzie "Czy Pozycja Zdjęcie" brzmi "Nie" i "Czy Sales Item" brzmi "Tak", a nie ma innego Bundle wyrobów" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Suma zaliczki ({0}) Na zamówienie {1} nie może być większa od ogólnej sumy ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Wybierz dystrybucji miesięcznej się nierównomiernie rozprowadzić cele całej miesięcy. DocType: Purchase Invoice Item,Valuation Rate,Wskaźnik wyceny -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected, +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected, apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,Pozycja Wiersz {0}: Zakup Otrzymanie {1} nie istnieje w tabeli powyżej Zakup kwitów '' apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Pracownik {0} już się ubiegał o {1} między {2} a {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Data startu projektu @@ -2205,6 +2204,7 @@ DocType: Quality Inspection,Inspection Type,Typ kontroli apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},Proszę wybrać {0} DocType: C-Form,C-Form No, DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,Nieoznakowany Frekwencja apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher, apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending, apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Imię lub E-mail jest obowiązkowe @@ -2230,7 +2230,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Potwier DocType: Payment Gateway,Gateway,Przejście apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Dostawca> Typ dostawcy apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date., -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted, apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Podanie adresu jest wymagane DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,Wpisz nazwę przeprowadzanej kampanii jeżeli źródło pytania jest kampanią @@ -2245,10 +2245,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Przyjęty Magazyn DocType: Bank Reconciliation Detail,Posting Date,Data publikacji DocType: Item,Valuation Method,Metoda wyceny apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Nie można znaleźć kurs wymiany dla {0} {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Oznacz pół dnia DocType: Sales Invoice,Sales Team, apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Wpis zduplikowany DocType: Serial No,Under Warranty,Pod Gwarancją -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Błąd] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Błąd] DocType: Sales Order,In Words will be visible once you save the Sales Order., ,Employee Birthday,Data urodzenia pracownika apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Kapitał wysokiego ryzyka @@ -2271,6 +2272,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,Centrum Kosztów z istniejącą transakcją nie może być przekształcone w grupę DocType: Account,Depreciation,Spadek wartości apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Dostawca(y) +DocType: Employee Attendance Tool,Employee Attendance Tool,Pracownik Frekwencja Narzędzie DocType: Supplier,Credit Limit, apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Wybierz rodzaj transakcji DocType: GL Entry,Voucher No,Nr Podstawy księgowania @@ -2297,7 +2299,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted, ,Is Primary Address,Czy Podstawowy Adres DocType: Production Order,Work-in-Progress Warehouse,Magazyn z produkcją w toku -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Odnośnik #{0} wpisano z datą {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Odnośnik #{0} wpisano z datą {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Zarządzaj adresy DocType: Pricing Rule,Item Code,Kod identyfikacyjny DocType: Production Planning Tool,Create Production Orders,Utwórz Zamówienie produkcji @@ -2324,7 +2326,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Uzgodnienia z wyciągiem bankow apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Pobierz aktualizacje apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped, apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Dodaj kilka rekordów przykładowe -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Zarządzanie urlopami +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Zarządzanie urlopami apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Grupuj według konta DocType: Sales Order,Fully Delivered,Całkowicie Dostarczono DocType: Lead,Lower Income, @@ -2339,6 +2341,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',Pole 'Od daty' musi następować później niż 'Do daty' ,Stock Projected Qty, apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Klient {0} nie należy do projektu {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Zaznaczony Frekwencja HTML DocType: Sales Order,Customer's Purchase Order,Klienta Zamówienia DocType: Warranty Claim,From Company,Od Firmy apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Wartość albo Ilość @@ -2388,7 +2391,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +101 DocType: Item,Inspection Required,Wymagana kontrola DocType: Purchase Invoice Item,PR Detail, DocType: Sales Order,Fully Billed,Całkowicie Rozliczone -apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +20,Cash In Hand, +apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +20,Cash In Hand,Zapłata w gotówce apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +120,Delivery warehouse required for stock item {0},Dostawa wymagane dla magazynu pozycji magazynie {0} DocType: Packing Slip,The gross weight of the package. Usually net weight + packaging material weight. (for print), DocType: Accounts Settings,Users with this role are allowed to set frozen accounts and create / modify accounting entries against frozen accounts,Użytkownicy z tą rolą mogą ustawiać zamrożone konta i tworzyć / modyfikować wpisy księgowe dla zamrożonych kont @@ -2403,6 +2406,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Przelew apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,Wybierz konto Bankowe DocType: Newsletter,Create and Send Newsletters,Utwórz i wyślij biuletyny +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Zaznacz wszystkie DocType: Sales Order,Recurring Order,Powtarzające się Zamówienie DocType: Company,Default Income Account,Domyślne konto przychodów apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Grupa Klientów / Klient @@ -2434,6 +2438,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Powrót Against dowodu DocType: Item,Warranty Period (in days),Okres gwarancji (w dniach) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Środki pieniężne netto z działalności operacyjnej apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,np. VAT +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Frekwencja Mark urzędnik luzem apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Pozycja 4 DocType: Journal Entry Account,Journal Entry Account,Konto zapisu DocType: Shopping Cart Settings,Quotation Series,Serie Wyeceny @@ -2578,14 +2583,14 @@ DocType: Task,Actual Start Date (via Time Logs),Rzeczywista Data Rozpoczęcia (p DocType: Stock Reconciliation Item,Before reconciliation,Przed pojednania apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Do {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency), -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable, +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable, DocType: Sales Order,Partly Billed,Częściowo Zapłacono DocType: Item,Default BOM,Domyślny Wykaz Materiałów apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,"Proszę ponownie wpisz nazwę firmy, aby potwierdzić" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Razem Najlepszy Amt DocType: Time Log Batch,Total Hours, DocType: Journal Entry,Printing Settings,Ustawienia drukowania -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0}, +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0}, apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive, apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Od Dowodu Dostawy DocType: Time Log,From Time,Od czasu @@ -2632,7 +2637,7 @@ DocType: Purchase Invoice Item,Image View, DocType: Issue,Opening Time,Czas Otwarcia apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,Daty Od i Do są wymagane apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges, -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',"Domyślne jednostki miary dla wariantu "{0}" musi być taki sam, jak w szablonie '{1}'" +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',"Domyślne jednostki miary dla wariantu "{0}" musi być taki sam, jak w szablonie '{1}'" DocType: Shipping Rule,Calculate Based On,Obliczone na podstawie DocType: Delivery Note Item,From Warehouse,Od Warehouse DocType: Purchase Taxes and Charges,Valuation and Total,Wycena i kwota całkowita @@ -2654,7 +2659,7 @@ DocType: Leave Application,Follow via Email,Odpowiedz za pomocą E-maila DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount, apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,To konto zawiera konta podrzędne. Nie można usunąć takiego konta. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Wymagana jest ilość lub kwota docelowa -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0}, +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0}, apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,Najpierw wybierz zamieszczenia Data apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Data otwarcia powinien być przed Dniem Zamknięcia DocType: Leave Control Panel,Carry Forward,Przeniesienie @@ -2665,7 +2670,7 @@ DocType: Item,Item Code for Suppliers,Rzecz kod dla dostawców DocType: Issue,Raised By (Email),Wywołany przez (Email) apps/erpnext/erpnext/setup/setup_wizard/default_website.py +72,General,Ogólne apps/erpnext/erpnext/public/js/setup_wizard.js +168,Attach Letterhead,Załącz blankiet firmowy -apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +272,Cannot deduct when category is for 'Valuation' or 'Valuation and Total', +apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +272,Cannot deduct when category is for 'Valuation' or 'Valuation and Total',"Nie można wywnioskować, kiedy kategoria dotyczy ""Ocena"" a kiedy ""Oceny i Total""" apps/erpnext/erpnext/public/js/setup_wizard.js +214,"List your tax heads (e.g. VAT, Customs etc; they should have unique names) and their standard rates. This will create a standard template, which you can edit and add more later.","Lista głowy podatkowe (np podatku VAT, ceł itp powinny mieć unikatowe nazwy) i ich standardowe stawki. Spowoduje to utworzenie standardowego szablonu, który można edytować i dodać później." apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +230,Serial Nos Required for Serialized Item {0}, DocType: Journal Entry,Bank Entry,Wpis Banku @@ -2732,7 +2737,7 @@ DocType: Leave Type,Is Encash, DocType: Purchase Invoice,Mobile No,Nr tel. Komórkowego DocType: Payment Tool,Make Journal Entry,Dodać Journal Entry DocType: Leave Allocation,New Leaves Allocated, -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation, +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation, DocType: Project,Expected End Date,Spodziewana data końcowa DocType: Appraisal Template,Appraisal Template Title,Tytuł szablonu oceny apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Komercyjny @@ -2780,6 +2785,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No., apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Sprecyzuj DocType: Offer Letter,Awaiting Response,Oczekuje na Odpowiedź apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Powyżej +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Czas Zaloguj została Zapowiadane DocType: Salary Slip,Earning & Deduction,Dochód i Odliczenie apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Konto {0} nie może być Grupą (kontem dzielonym) apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Opcjonalne. Te Ustawienie będzie użyte w filtrze dla różnych transacji. @@ -2816,7 +2822,7 @@ DocType: Item Group,HTML / Banner that will show on the top of product list., DocType: Shipping Rule,Specify conditions to calculate shipping amount,Określ warunki do obliczenia kwoty wysyłki apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +121,Add Child,Dodaj Dziecko DocType: Accounts Settings,Role Allowed to Set Frozen Accounts & Edit Frozen Entries,Rola dozwolone ustawić zamrożonych kont i Edytuj Mrożone wpisy -apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +52,Cannot convert Cost Center to ledger as it has child nodes, +apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +52,Cannot convert Cost Center to ledger as it has child nodes,"Nie można przekonwertować centrum kosztów do księgi głównej, jak to ma węzły potomne" apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +37,Serial #,Serial # apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +87,Commission on Sales,Prowizja od sprzedaży DocType: Offer Letter Term,Value / Description,Wartość / Opis @@ -2850,14 +2856,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Pomyślnie usunięte wszystkie transakcje związane z tą firmą! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,W sprawie daty apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation, -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Domyślny magazyn jest obowiązkowy dla przedmiotu z asortymentu. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Domyślny magazyn jest obowiązkowy dla przedmiotu z asortymentu. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Płatność pensji za miesiąć {0} i rok {1} DocType: Stock Settings,Auto insert Price List rate if missing,"Cennik stopy wkładka auto, jeśli brakuje" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Kwota całkowita Płatny ,Transferred Qty, apps/erpnext/erpnext/config/learn.py +11,Navigating,Nawigacja apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Planowanie -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Dodać Czas Zaloguj Batch +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Dodać Czas Zaloguj Batch apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Wydany DocType: Project,Total Billing Amount (via Time Logs),Łączna kwota płatności (przez Time Logs) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Sprzedajemy ten przedmiot @@ -2865,7 +2871,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Ilość powinna być większa niż 0 DocType: Journal Entry,Cash Entry,Wpis gotówkowy DocType: Sales Partner,Contact Desc,Opis kontaktu -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.", +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.", DocType: Email Digest,Send regular summary reports via Email.,Wyślij regularne raporty podsumowujące poprzez e-mail. DocType: Brand,Item Manager,Pozycja menedżera DocType: Cost Center,Add rows to set annual budgets on Accounts.,Dodaj nowe wiersze aby ustawić roczne budżety na Koncie @@ -2880,7 +2886,7 @@ DocType: GL Entry,Party Type,Typ Grupy apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Surowiec nie może być taki sam jak główny Przedmiot DocType: Item Attribute Value,Abbreviation,Skrót apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits, -apps/erpnext/erpnext/config/hr.py +115,Salary template master., +apps/erpnext/erpnext/config/hr.py +123,Salary template master., DocType: Leave Type,Max Days Leave Allowed, apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Ustaw Reguła podatkowa do koszyka DocType: Payment Tool,Set Matching Amounts,Ustaw Dopasowane Kwoty @@ -2893,7 +2899,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Wycena DocType: Stock Settings,Role Allowed to edit frozen stock, ,Territory Target Variance Item Group-Wise, apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Wszystkie grupy klientów -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,"{0} jest obowiązkowe. Możliwe, że rekord Wymiana walut nie jest utworzony dla {1} do {2}." +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,"{0} jest obowiązkowe. Możliwe, że rekord Wymiana walut nie jest utworzony dla {1} do {2}." apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Szablon podatkowa jest obowiązkowe. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Konto {0}: Konto nadrzędne {1} nie istnieje DocType: Purchase Invoice Item,Price List Rate (Company Currency),Wartość w cenniku (waluta firmy) @@ -2913,8 +2919,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail, ,Item-wise Price List Rate, apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation, DocType: Quotation,In Words will be visible once you save the Quotation., -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} jest zatrzymany -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Kod kreskowy {0} jest już używana dla przedmiotu {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} jest zatrzymany +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Kod kreskowy {0} jest już używana dla przedmiotu {1} DocType: Lead,Add to calendar on this date,Dodaj do kalendarza pod tą datą apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs., apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,nadchodzące wydarzenia @@ -2941,8 +2947,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling, apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Co najmniej jeden magazyn jest wymagany DocType: Serial No,Out of Warranty,Poza Gwarancją DocType: BOM Replace Tool,Replace, -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} na fakturę sprzedaży {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Proszę wpisać domyślną jednostkę miary +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} na fakturę sprzedaży {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Proszę wpisać domyślną jednostkę miary DocType: Purchase Invoice Item,Project Name,Nazwa projektu DocType: Supplier,Mention if non-standard receivable account,"Wspomnieć, jeśli nie standardowe konto należności" DocType: Journal Entry Account,If Income or Expense, @@ -2967,7 +2973,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Rok fiskalny: {0} nie istnieje DocType: Currency Exchange,To Currency, DocType: Leave Block List,Allow the following users to approve Leave Applications for block days., -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim., +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim., DocType: Item,Taxes,Podatki apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Płatny i niedostarczone DocType: Project,Default Cost Center,Domyślne Centrum Kosztów @@ -2997,7 +3003,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Wiersz # {0}: Numer seryjny: {1} nie jest zgodny z {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Urlop okolicznościowy DocType: Batch,Batch ID,Identyfikator Partii -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Uwaga: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Uwaga: {0} ,Delivery Note Trends,Trendy Dowodów Dostawy apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Podsumowanie W tym tygodniu apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1}, @@ -3037,6 +3043,7 @@ DocType: Project Task,Pending Review,Czekający na rewizję apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,"Kliknij tutaj, aby zapłacić" DocType: Task,Total Expense Claim (via Expense Claim),Razem zwrotu kosztów (przez Kosztów zastrzeżenia) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,ID klienta +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Oznacz Nieobecna apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Do czasu musi być większy niż czas From DocType: Journal Entry Account,Exchange Rate,Kurs wymiany apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Zlecenie Sprzedaży {0} nie jest jeszcze złożone @@ -3084,7 +3091,7 @@ DocType: Item Group,Default Expense Account,Domyślne konto rozchodów DocType: Employee,Notice (days),Wymówienie (dni) DocType: Tax Rule,Sales Tax Template,Szablon Podatek od sprzedaży DocType: Employee,Encashment Date,Data Inkaso -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Podstawą księgowania może być tu Zamówienie zakupu, Faktura zakupu lub Zapis księgowy" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Podstawą księgowania może być tu Zamówienie zakupu, Faktura zakupu lub Zapis księgowy" DocType: Account,Stock Adjustment,Koszty braków apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Istnieje Domyślnie aktywny Koszt rodzajów działalności - {0} DocType: Production Order,Planned Operating Cost,Planowany koszt operacyjny @@ -3138,12 +3145,13 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Wpis Odpisu DocType: BOM,Rate Of Materials Based On,Stawka Materiałów Wzorowana na apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics, +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Odznacz wszystkie apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Brakująca firma w magazynach {0} DocType: POS Profile,Terms and Conditions,Regulamin apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},Aby Data powinna być w tym roku podatkowym. Zakładając To Date = {0} DocType: Employee,"Here you can maintain height, weight, allergies, medical concerns etc", DocType: Leave Block List,Applies to Company,Dotyczy Firmy -apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +175,Cannot cancel because submitted Stock Entry {0} exists, +apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +175,Cannot cancel because submitted Stock Entry {0} exists,"Nie można anulować, ponieważ wskazane Wprowadzenie na magazyn {0} istnieje" DocType: Purchase Invoice,In Words,Słownie apps/erpnext/erpnext/hr/doctype/employee/employee.py +213,Today is {0}'s birthday!,Dziś jest {0} 'urodziny! DocType: Production Planning Tool,Material Request For Warehouse, @@ -3159,7 +3167,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'", apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com), apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Niedobór szt -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Pozycja wariant {0} istnieje z samymi atrybutami +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Pozycja wariant {0} istnieje z samymi atrybutami DocType: Salary Slip,Salary Slip, apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,'Do daty' jest wymaganym polem DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Utwórz paski na opakowania do dostawy. Używane do informacji o numerze opakowania, zawartości i wadze." @@ -3207,7 +3215,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Zobacz DocType: Item Attribute Value,Attribute Value,Wartość atrybutu apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","Email ID nie może się powtarzać, ten już zajęty dla {0}" ,Itemwise Recommended Reorder Level, -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,Proszę najpierw wybrać {0} +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,Proszę najpierw wybrać {0} DocType: Features Setup,To get Item Group in details table, apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Batch {0} pozycji {1} wygasł. DocType: Sales Invoice,Commission,Prowizja @@ -3262,7 +3270,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Pobierz zaległe Kupony DocType: Warranty Claim,Resolved By, DocType: Appraisal,Start Date, -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Przydziel zwolnienia dla tego okresu. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Przydziel zwolnienia dla tego okresu. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Czeki i Depozyty nieprawidłowo rozliczone apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,"Kliknij tutaj, aby zweryfikować" apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Konto {0}: Nie można przypisać siebie jako konta nadrzędnego @@ -3282,7 +3290,7 @@ DocType: Employee,Educational Qualification,Kwalifikacje edukacyjne DocType: Workstation,Operating Costs,Koszty operacyjne DocType: Employee Leave Approver,Employee Leave Approver,Zgoda na zwolnienie dla pracownika apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} został pomyślnie dodany do naszego newslettera. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},"Wiersz {0}: Zapis ponownego zamawiania dla tego magazynu, {1}" +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},"Wiersz {0}: Zapis ponownego zamawiania dla tego magazynu, {1}" apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.",Nie można zadeklarować jako zagubiony z powodu utworzenia kwotacji DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Główny Menadżer Zakupów apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted, @@ -3306,7 +3314,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Faktura Sprzedaży {0} została już wprowadzona apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Data ukończenia DocType: Purchase Invoice Item,Amount (Company Currency),Kwota (Waluta firmy) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master., +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master., apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos, DocType: Budget Detail,Budget Detail,Szczegóły Budżetu apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,Proszę wpisać wiadomość przed wysłaniem @@ -3322,13 +3330,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Otrzymano i zaakceptowano ,Serial No Service Contract Expiry, DocType: Item,Unit of Measure Conversion,Jednostka miary Conversion apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Pracownik nie może być zmieniony -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Nie można wykonywać zapisów po stronie debetowej oraz kredytowej tego samego konta w jednym czasie +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Nie można wykonywać zapisów po stronie debetowej oraz kredytowej tego samego konta w jednym czasie DocType: Naming Series,Help HTML, apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0}, apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Zniżki dla nadmiernie {0} przeszedł na pozycję {1} DocType: Address,Name of person or organization that this address belongs to.,Imię odoby lub organizacji do której należy adres. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Twoi Dostawcy -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made., +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,Nie można ustawić jako Utracone Zamówienia Sprzedaży apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,"Innym Wynagrodzenie Struktura {0} jest aktywny przez pracownika {1}. Należy się jej status ""nieaktywny"", aby kontynuować." DocType: Purchase Invoice,Contact,Kontakt apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Otrzymane od @@ -3338,11 +3346,11 @@ DocType: Item,Has Serial No,Posiada numer seryjny DocType: Employee,Date of Issue,Data wydania apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: od {0} do {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Wiersz # {0}: Ustaw Dostawca dla pozycji {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Strona Obraz {0} dołączone do pozycji {1} nie można znaleźć +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Strona Obraz {0} dołączone do pozycji {1} nie można znaleźć DocType: Issue,Content Type,Typ zawartości apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Komputer DocType: Item,List this Item in multiple groups on the website., -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,"Proszę sprawdzić multi opcji walutowych, aby umożliwić rachunki w innych walutach" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,"Proszę sprawdzić multi opcji walutowych, aby umożliwić rachunki w innych walutach" apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Pozycja: {0} nie istnieje w systemie apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Nie masz uprawnień do ustawienia zamrożenej wartości DocType: Payment Reconciliation,Get Unreconciled Entries,Pobierz Wpisy nieuzgodnione @@ -3352,14 +3360,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Co to robi? DocType: Delivery Note,To Warehouse,Do magazynu apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Konto {0} zostało wprowadzone więcej niż raz dla roku podatkowego {1} ,Average Commission Rate,Średnia prowizja -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,Numer seryjny nie jest dostępny dla pozycji niemagazynowych +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,Numer seryjny nie jest dostępny dla pozycji niemagazynowych apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Usługa nie może być oznaczana na przyszłość DocType: Pricing Rule,Pricing Rule Help,Wycena Zasada Pomoc DocType: Purchase Taxes and Charges,Account Head,Konto główne apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Zaktualizuj dodatkowe koszty do obliczenia całkowitego kosztu operacji apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Elektryczne DocType: Stock Entry,Total Value Difference (Out - In),Całkowita Wartość Różnica (Out - In) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Wiersz {0}: Kurs wymiany jest obowiązkowe +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Wiersz {0}: Kurs wymiany jest obowiązkowe apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},ID Użytkownika nie ustawiony dla Pracownika {0} DocType: Stock Entry,Default Source Warehouse,Domyślny magazyn źródłowy DocType: Item,Customer Code,Kod Klienta @@ -3378,15 +3386,15 @@ DocType: Notification Control,Sales Invoice Message, apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Zamknięcie konta {0} musi być typu odpowiedzialności / Equity DocType: Authorization Rule,Based On,Bazujący na DocType: Sales Order Item,Ordered Qty,Ilość Zamówiona -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Element {0} jest wyłączony +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Element {0} jest wyłączony DocType: Stock Settings,Stock Frozen Upto, apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Okres Okres Od i Do dat obowiązkowych dla powtarzających {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Czynność / zadanie projektu -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Utwórz Paski Wypłaty +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Utwórz Paski Wypłaty apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Zakup musi być sprawdzona, jeśli dotyczy wybrano jako {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Zniżka musi wynosić mniej niż 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Napisz Off Kwota (Spółka Waluta) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Wiersz # {0}: Proszę ustawić ilość zmienić kolejność +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Wiersz # {0}: Proszę ustawić ilość zmienić kolejność DocType: Landed Cost Voucher,Landed Cost Voucher,Koszt kuponu apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},Ustaw {0} DocType: Purchase Invoice,Repeat on Day of Month, @@ -3439,7 +3447,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Domyślnie Work In Progress Warehouse apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Domyślne ustawienia dla transakcji księgowych apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Spodziewana data nie może być wcześniejsza od daty prośby o materiał -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item, +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item, DocType: Naming Series,Update Series Number,Zaktualizuj Numer Serii DocType: Account,Equity,Kapitał własny DocType: Sales Order,Printing Details,Szczegóły Drukarnie @@ -3491,7 +3499,7 @@ DocType: Task,Review Date, DocType: Purchase Invoice,Advance Payments,Zaliczki DocType: Purchase Taxes and Charges,On Net Total,Na podstawie Kwoty Netto apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order, -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Brak uprawnień do korzystania z narzędzi płatności +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Brak uprawnień do korzystania z narzędzi płatności apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,Adres e-mail dla 'Powiadomień' nie został podany dla powracających %s apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Waluta nie może być zmieniony po dokonaniu wpisów używając innej walucie DocType: Company,Round Off Account,Konto kwot zaokrągleń @@ -3514,7 +3522,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Ilość produktu otrzymanego po produkcji / przepakowaniu z podanych ilości surowców DocType: Payment Reconciliation,Receivable / Payable Account,Konto Należności / Zobowiązań DocType: Delivery Note Item,Against Sales Order Item,Na podstawie pozycji zamówienia sprzedaży -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},Proszę podać wartość atrybutu dla atrybutu {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},Proszę podać wartość atrybutu dla atrybutu {0} DocType: Item,Default Warehouse,Domyślny magazyn DocType: Task,Actual End Date (via Time Logs),Rzeczywista Data zakończenia (przez Time Logs) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Budżet nie może być przypisany do rachunku grupy {0} @@ -3539,10 +3547,10 @@ DocType: Lead,Blog Subscriber,Subskrybent Bloga apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values., DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day", DocType: Purchase Invoice,Total Advance, -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Tworzenie listy płac +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Tworzenie listy płac DocType: Opportunity Item,Basic Rate,Podstawowy wskaźnik DocType: GL Entry,Credit Amount,Kwota kredytu -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost, +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost, apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Otrzymanie płatności Uwaga DocType: Supplier,Credit Days Based On,Dni kredytowe w oparciu o DocType: Tax Rule,Tax Rule,Reguła podatkowa @@ -3572,7 +3580,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Przyjęta Ilość apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} nie istnieje apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Rachunki dla klientów. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Projekt Id -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Wiersz nr {0}: Kwota nie może być większa niż oczekiwaniu Kwota wobec Kosztów zastrzeżenia {1}. W oczekiwaniu Kwota jest {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Wiersz nr {0}: Kwota nie może być większa niż oczekiwaniu Kwota wobec Kosztów zastrzeżenia {1}. W oczekiwaniu Kwota jest {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} abonentów dodano DocType: Maintenance Schedule,Schedule,Harmonogram DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Definiowanie budżetu tego centrum kosztów. Aby ustawić działania budżetu, patrz "Lista Spółka"" @@ -3587,7 +3595,7 @@ apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +99,Employee relieved DocType: Item,"Selecting ""Yes"" will give a unique identity to each entity of this item which can be viewed in the Serial No master.","Wybranie ""Tak"" pozwoli w unikalny sposób identyfikować każdą pojedynczą sztukę tej rzeczy i która będzie mogła być przeglądana w sekcji Nr Seryjny" apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +39,Appraisal {0} created for Employee {1} in the given date range,Ocena {0} utworzona dla Pracownika {1} w datach od-do DocType: Employee,Education,Wykształcenie -DocType: Selling Settings,Campaign Naming By, +DocType: Selling Settings,Campaign Naming By,Nazwa Kampanii Przez DocType: Employee,Current Address Is,Obecny adres to apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +223,"Optional. Sets company's default currency, if not specified.","Opcjonalny. Ustawia domyślną walutę firmy, jeśli nie podano." DocType: Address,Office,Biuro @@ -3633,19 +3641,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS profilu DocType: Payment Gateway Account,Payment URL Message,Płatność URL Wiadomość apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Sezonowość ustalania budżetów, cele itd." -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Wiersz {0}: Płatność Kwota nie może być większa niż kwota kredytu pozostała +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Wiersz {0}: Płatność Kwota nie może być większa niż kwota kredytu pozostała apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Razem Niezapłacone -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Czas nie jest rozliczanych Zaloguj -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Element {0} jest szablon, należy wybrać jedną z jego odmian" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Czas nie jest rozliczanych Zaloguj +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Element {0} jest szablon, należy wybrać jedną z jego odmian" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Kupujący apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Stawka Netto nie może być na minusie -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Proszę wprowadzić ręcznie z dowodami +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Proszę wprowadzić ręcznie z dowodami DocType: SMS Settings,Static Parameters, DocType: Purchase Order,Advance Paid,Zaliczka DocType: Item,Item Tax,Podatek dla tej pozycji apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Materiał do Dostawcy apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Akcyza Faktura DocType: Expense Claim,Employees Email Id,Email ID pracownika +DocType: Employee Attendance Tool,Marked Attendance,Oznaczone Obecność apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Bieżące Zobowiązania apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts, DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Rozwać Podatek albo Opłatę za @@ -3668,7 +3677,7 @@ DocType: Item Attribute,Numeric Values,Wartości liczbowe apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Załącz Logo DocType: Customer,Commission Rate,Wartość prowizji apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Bądź Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Zablokuj wnioski urlopowe według departamentów +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Zablokuj wnioski urlopowe według departamentów apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Koszyk jest pusty DocType: Production Order,Actual Operating Cost,Rzeczywisty koszt operacyjny apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited., @@ -3687,7 +3696,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,"Automatyczne tworzenie Materiał wniosku, jeżeli ilość spada poniżej tego poziomu" ,Item-wise Purchase Register, DocType: Batch,Expiry Date,Data ważności -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Aby ustawić poziom zmienić kolejność, element musi być pozycja nabycia lub przedmiotu" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Aby ustawić poziom zmienić kolejność, element musi być pozycja nabycia lub przedmiotu" ,Supplier Addresses and Contacts, apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,Proszę najpierw wybrać kategorię apps/erpnext/erpnext/config/projects.py +18,Project master.,Dyrektor projektu diff --git a/erpnext/translations/pt-BR.csv b/erpnext/translations/pt-BR.csv index 1c7f3dcdb6..b3cb163c95 100644 --- a/erpnext/translations/pt-BR.csv +++ b/erpnext/translations/pt-BR.csv @@ -164,14 +164,14 @@ DocType: Journal Entry Account,Credit in Company Currency,Crédito em Moeda Empr DocType: Delivery Note,Installation Status,Estado da Instalação apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},A qtd Aceita + Rejeitado deve ser igual a quantidade recebida para o item {0} DocType: Item,Supply Raw Materials for Purchase,Abastecimento de Matérias-Primas para a Compra -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Item {0} deve ser um item de compra +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Item {0} deve ser um item de compra DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Baixe o Template, preencha os dados apropriados e anexe o arquivo modificado. Todas as datas, os empregados e suas combinações para o período selecionado viram com o modelo, incluindo os registros já existentes." apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,Item {0} não está ativo ou fim de vida útil foi atingido DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Será atualizado após a fatura de vendas ser Submetida. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Para incluir impostos na linha {0} na taxa de Item, os impostos em linhas {1} também deve ser incluída" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Configurações para o Módulo de RH +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Para incluir impostos na linha {0} na taxa de Item, os impostos em linhas {1} também deve ser incluída" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Configurações para o Módulo de RH DocType: SMS Center,SMS Center,Centro de SMS DocType: BOM Replace Tool,New BOM,Nova LDM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Batch Logs Tempo para o faturamento. @@ -199,7 +199,7 @@ DocType: Offer Letter,Select Terms and Conditions,Selecione os Termos e Condiç DocType: Production Planning Tool,Sales Orders,Pedidos de Vendas DocType: Purchase Taxes and Charges,Valuation,Avaliação ,Purchase Order Trends,Ordem de Compra Trends -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Alocar licenças para o ano. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Alocar licenças para o ano. DocType: Earning Type,Earning Type,Tipo de Ganho DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Planejamento de Capacidade Desativar e controle de tempo DocType: Bank Reconciliation,Bank Account,Conta Bancária @@ -237,7 +237,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Especificação do Site do Item DocType: Payment Tool,Reference No,Número de referência apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Licenças Bloqueadas -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Item {0} chegou ao fim da vida em {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Item {0} chegou ao fim da vida em {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Anual DocType: Stock Reconciliation Item,Stock Reconciliation Item,Da Reconciliação item DocType: Stock Entry,Sales Invoice No,Nº da Nota Fiscal de Venda @@ -249,7 +249,7 @@ DocType: Item,Minimum Order Qty,Pedido Mínimo DocType: Pricing Rule,Supplier Type,Tipo de Fornecedor DocType: Item,Publish in Hub,Publicar em Hub ,Terretory,terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Item {0} é cancelada +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Item {0} é cancelada apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Pedido de material DocType: Bank Reconciliation,Update Clearance Date,Atualizar Data Liquidação DocType: Item,Purchase Details,Detalhes da compra @@ -261,11 +261,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Quantidade rejeitada DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Campo disponível na Guia de Remessa, Cotação, Nota Fiscal de Venda, Ordem de Venda" DocType: SMS Settings,SMS Sender Name,Nome do remetente do SMS DocType: Contact,Is Primary Contact,É o contato principal +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Tempo Log foi em lote para Faturamento DocType: Notification Control,Notification Control,Controle de Notificação DocType: Lead,Suggestions,Sugestões DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,"Definir orçamentos para Grupos de Itens neste território. Você também pode incluir a sazonalidade, defininda na Distribuição." apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},Digite grupo conta pai para armazém {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Pagamento contra {0} {1} não pode ser maior do que Outstanding Montante {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Pagamento contra {0} {1} não pode ser maior do que Outstanding Montante {2} DocType: Supplier,Address HTML,Endereço HTML DocType: Lead,Mobile No.,Telefone Celular. DocType: Maintenance Schedule,Generate Schedule,Gerar Agenda @@ -282,7 +283,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Sincronizado com o Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Senha Incorreta DocType: Item,Variant Of,Variante de -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Item {0} deve ser item de serviço apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',"Qtde concluida não pode ser maior do que ""Qtde de Fabricação""" DocType: Period Closing Voucher,Closing Account Head,Conta de Fechamento DocType: Employee,External Work History,Histórico Profissional no Exterior @@ -294,10 +294,10 @@ DocType: Newsletter,Newsletter,Boletim informativo DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Notificar por e-mail sobre a criação de Pedido de material automático DocType: Journal Entry,Multi Currency,Multi Moeda DocType: Payment Reconciliation Invoice,Invoice Type,Tipo de Fatura -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Guia de Remessa +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Guia de Remessa apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Configurando Impostos apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,"Entrada de pagamento foi modificado depois que você puxou-o. Por favor, puxe-o novamente." -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} entrou duas vezes no Imposto do Item +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} entrou duas vezes no Imposto do Item apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Resumo para esta semana e atividades pendentes DocType: Workstation,Rent Cost,Rent Custo apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Selecione mês e ano @@ -308,7 +308,7 @@ DocType: Shipping Rule,Valid for Countries,Válido para Países DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Todos os campos de relacionados à importação, como moeda, taxa de conversão, total geral de importação, total de importação etc estão disponíveis no Recibo de compra, fornecedor de cotação, fatura de compra, ordem de compra, etc." apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,Este artigo é um modelo e não podem ser usados em transações. Atributos item será copiado para as variantes a menos 'No Copy' é definido apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Order Total Considerado -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Designação do empregado (por exemplo, CEO , diretor , etc.)" +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Designação do empregado (por exemplo, CEO , diretor , etc.)" apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,"Por favor, digite 'Repeat no Dia do Mês ' valor do campo" DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,Taxa na qual a moeda do cliente é convertida para a moeda base do cliente DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Disponível em LDM, Nota de Entrega, Fatura de Compra, Ordem de Produção, Ordem de Compra, Recibo de compra, Nota Fiscal de Venda, Ordem de Venda, Entrada no Estoque, Quadro de Horários" @@ -357,7 +357,7 @@ DocType: Workstation,Consumable Cost,Custo dos consumíveis apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) deve ter a função 'Aprovador de Licenças' DocType: Purchase Receipt,Vehicle Date,Veículo Data apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Medicamentos -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Motivo para perder +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Motivo para perder apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},"Workstation é fechado nas seguintes datas, conforme lista do feriado: {0}" apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Oportunidades DocType: Employee,Single,Único @@ -385,14 +385,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Parceiro de Canal DocType: Account,Old Parent,Pai Velho DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,Personalize o texto introdutório que vai como uma parte do que e-mail. Cada transação tem um texto introdutório separado. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Não inclua símbolos (ex. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Gerente de Vendas Mestre apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,As configurações globais para todos os processos de fabricação. DocType: Accounts Settings,Accounts Frozen Upto,Contas congeladas até DocType: SMS Log,Sent On,Enviado em -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Atributo {0} selecionada várias vezes na tabela de atributos +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Atributo {0} selecionada várias vezes na tabela de atributos DocType: HR Settings,Employee record is created using selected field. ,Registro de empregado é criado usando o campo selecionado. DocType: Sales Order,Not Applicable,Não Aplicável -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Mestre férias . +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Mestre férias . DocType: Material Request Item,Required Date,Data Obrigatória DocType: Delivery Note,Billing Address,Endereço de Cobrança apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,"Por favor, insira o Código Item." @@ -428,7 +429,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,"Por favor, indique Armazém para que Pedido de materiais serão levantados" DocType: Production Order,Additional Operating Cost,Custo Operacional Adicional apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Cosméticos -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Para mesclar , seguintes propriedades devem ser os mesmos para ambos os itens" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Para mesclar , seguintes propriedades devem ser os mesmos para ambos os itens" DocType: Shipping Rule,Net Weight,Peso Líquido DocType: Employee,Emergency Phone,Telefone de emergência ,Serial No Warranty Expiry,Vencimento da Garantia com Nº de Série @@ -483,17 +484,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Faturamento e Entrega Estado apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Repita os clientes DocType: Leave Control Panel,Allocate,Alocar -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Retorno de Vendas +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Retorno de Vendas DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Selecione as Ordens de Venda a partir das quais você deseja criar Ordens de Produção. DocType: Item,Delivered by Supplier (Drop Ship),Entregue por Fornecedor (Drop Ship) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Componentes salariais. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Componentes salariais. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Banco de dados de clientes potenciais. DocType: Authorization Rule,Customer or Item,Cliente ou Item apps/erpnext/erpnext/config/crm.py +17,Customer database.,Banco de Dados de Clientes DocType: Quotation,Quotation To,Cotação para DocType: Lead,Middle Income,Rendimento Médio apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Abertura (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Unidade de medida padrão para item {0} não pode ser alterado diretamente porque você já fez alguma transação (s) com outro UOM. Você precisará criar um novo item para usar um UOM padrão diferente. +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Unidade de medida padrão para item {0} não pode ser alterado diretamente porque você já fez alguma transação (s) com outro UOM. Você precisará criar um novo item para usar um UOM padrão diferente. apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Montante alocado não pode ser negativo DocType: Purchase Order Item,Billed Amt,Valor Faturado DocType: Warehouse,A logical Warehouse against which stock entries are made.,Um Depósito lógico contra o qual as entradas de estoque são feitas. @@ -512,14 +513,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Impostos e Taxas sobre Vendas DocType: Employee,Organization Profile,Perfil da Organização apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,"Por favor, configure série de numeração para Participação em Configurar> numeração Series" DocType: Employee,Reason for Resignation,Motivo para Demissão -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Modelo para avaliação de desempenho . +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Modelo para avaliação de desempenho . DocType: Payment Reconciliation,Invoice/Journal Entry Details,Invoice / Journal Entry Detalhes apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' não localizado no Ano Fiscal {2} DocType: Buying Settings,Settings for Buying Module,Configurações para o Módulo de Compras apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,Digite Recibo de compra primeiro DocType: Buying Settings,Supplier Naming By,Fornecedor de nomeação DocType: Activity Type,Default Costing Rate,Preço de Custo Padrão -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Programação da Manutenção +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Programação da Manutenção apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Então Preços Regras são filtradas com base no Cliente, Grupo de Clientes, Território, fornecedor, fornecedor Tipo, Campanha, Parceiro de vendas etc" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Mudança na Net Inventory DocType: Employee,Passport Number,Número do Passaporte @@ -558,7 +559,7 @@ DocType: Purchase Invoice,Quarterly,Trimestralmente DocType: Selling Settings,Delivery Note Required,Guia de Remessa Obrigatória DocType: Sales Order Item,Basic Rate (Company Currency),Taxa Básica (Moeda da Empresa) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush Matérias-Primas Based On -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,Por favor insira os detalhes do item +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,Por favor insira os detalhes do item DocType: Purchase Receipt,Other Details,Outros detalhes DocType: Account,Accounts,Contas apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,marketing @@ -571,7 +572,7 @@ DocType: Employee,Provide email id registered in company,Fornecer Endereço de E DocType: Hub Settings,Seller City,Cidade do Vendedor DocType: Email Digest,Next email will be sent on:,Próximo e-mail será enviado em: DocType: Offer Letter Term,Offer Letter Term,Termos da Carta de Oferta -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Item tem variantes. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Item tem variantes. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Item {0} não foi encontrado DocType: Bin,Stock Value,Valor do Estoque apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Tipo de árvore @@ -579,7 +580,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Qtde. consumida por unidade DocType: Serial No,Warranty Expiry Date,Data de validade da garantia DocType: Material Request Item,Quantity and Warehouse,Quantidade e Armazém DocType: Sales Invoice,Commission Rate (%),Taxa de Comissão (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Contra Comprovante Tipo deve ser um dos Pedidos de Vendas, Vendas Nota Fiscal ou do Diário" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Contra Comprovante Tipo deve ser um dos Pedidos de Vendas, Vendas Nota Fiscal ou do Diário" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Aeroespacial DocType: Journal Entry,Credit Card Entry,Registro de cartão de crédito apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Assunto da Tarefa @@ -666,10 +667,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,responsabilidade apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Montante Sanctioned não pode ser maior do que na Reivindicação Montante Fila {0}. DocType: Company,Default Cost of Goods Sold Account,Custo padrão de Conta Produtos Vendidos -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Lista de Preço não selecionado +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Lista de Preço não selecionado DocType: Employee,Family Background,Antecedentes familiares DocType: Process Payroll,Send Email,Enviar Email -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Aviso: Anexo inválido {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Aviso: Anexo inválido {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Nenhuma permissão DocType: Company,Default Bank Account,Conta Bancária Padrão apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Para filtrar baseado em Festa, selecione Partido Escreva primeiro" @@ -697,7 +698,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Supor DocType: Features Setup,"To enable ""Point of Sale"" features",Para ativar "Point of Sale" recursos DocType: Bin,Moving Average Rate,Taxa da Média Móvel DocType: Production Planning Tool,Select Items,Selecione itens -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} contra duplicata {1} na data {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} contra duplicata {1} na data {2} DocType: Maintenance Visit,Completion Status,Estado de Conclusão DocType: Sales Invoice Item,Target Warehouse,Almoxarifado de destino DocType: Item,Allow over delivery or receipt upto this percent,Permitir sobre a entrega ou recebimento até esta cento @@ -757,7 +758,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Taxa apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Incapaz de encontrar entalhe Tempo nos próximos {0} dias para a Operação {1} DocType: Production Order,Plan material for sub-assemblies,Material de Plano de sub-conjuntos apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} deve ser ativo -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,"Por favor, selecione o tipo de documento primeiro" +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,"Por favor, selecione o tipo de documento primeiro" apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Goto carrinho apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Cancelar Materiais Visitas {0} antes de cancelar este Manutenção Visita DocType: Salary Slip,Leave Encashment Amount,Valor das Licenças cobradas @@ -775,7 +776,7 @@ DocType: Purchase Receipt,Range,Alcance DocType: Supplier,Default Payable Accounts,Contas a Pagar Padrão apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Empregado {0} não está ativo ou não existe DocType: Features Setup,Item Barcode,Código de barras do Item -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Variantes item {0} atualizado +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Variantes item {0} atualizado DocType: Quality Inspection Reading,Reading 6,Leitura 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Antecipação da Nota Fiscal de Compra DocType: Address,Shop,Loja @@ -798,7 +799,7 @@ DocType: Salary Slip,Total in words,Total por extenso DocType: Material Request Item,Lead Time Date,Prazo de entrega apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,é obrigatório. Talvez o registro de taxas de câmbios não está criado para apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Row # {0}: Favor especificar Sem Serial para item {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Para os itens 'pacote de produtos ", Armazém, Serial e não há Batch Não será considerada a partir do' Packing List 'tabela. Se Warehouse e Batch Não são as mesmas para todos os itens de embalagem para qualquer item de 'Bundle Produto', esses valores podem ser inseridos na tabela do item principal, os valores serão copiados para 'Packing List' tabela." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Para os itens 'pacote de produtos ", Armazém, Serial e não há Batch Não será considerada a partir do' Packing List 'tabela. Se Warehouse e Batch Não são as mesmas para todos os itens de embalagem para qualquer item de 'Bundle Produto', esses valores podem ser inseridos na tabela do item principal, os valores serão copiados para 'Packing List' tabela." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Os embarques para os clientes. DocType: Purchase Invoice Item,Purchase Order Item,Item da Ordem de Compra apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Resultado indirecto @@ -819,6 +820,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Selecione Payroll ano e m apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Vá para o grupo apropriado (geralmente Aplicação de Fundos> Ativo Circulante> Contas Bancárias e criar uma nova conta (clicando em Adicionar filho) do tipo "Banco" DocType: Workstation,Electricity Cost,Custo de Energia Elétrica DocType: HR Settings,Don't send Employee Birthday Reminders,Não envie aos empregados lembretes de aniversários +,Employee Holiday Attendance,Empregado Presença de férias DocType: Opportunity,Walk In,Caminhe em apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Entradas de Stock DocType: Item,Inspection Criteria,Critérios de Inspeção @@ -841,7 +843,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,O DocType: Journal Entry Account,Expense Claim,Pedido de Reembolso de Despesas apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Qtde para {0} DocType: Leave Application,Leave Application,Solicitação de Licenças -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Ferramenta de Alocação de Licenças +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Ferramenta de Alocação de Licenças DocType: Leave Block List,Leave Block List Dates,Deixe as datas Lista de Bloqueios DocType: Company,If Monthly Budget Exceeded (for expense account),Se orçamento mensal excedido (por conta de despesas) DocType: Workstation,Net Hour Rate,Net Hour Taxa @@ -851,7 +853,7 @@ DocType: Packing Slip Item,Packing Slip Item,Item da Guia de Remessa DocType: POS Profile,Cash/Bank Account,Conta do Caixa/Banco apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Itens removidos sem nenhuma alteração na quantidade ou valor. DocType: Delivery Note,Delivery To,Entregar para -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,A tabela de atributos é obrigatório +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,A tabela de atributos é obrigatório DocType: Production Planning Tool,Get Sales Orders,Obter Ordens de Venda apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} não pode ser negativo apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Desconto @@ -915,7 +917,7 @@ DocType: SMS Center,Total Characters,Total de Personagens apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},"Por favor, selecione no campo BOM BOM por item {0}" DocType: C-Form Invoice Detail,C-Form Invoice Detail,Detalhe Fatura do Formulário-C DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Reconciliação O pagamento da fatura -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Contribuição% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Contribuição% DocType: Item,website page link,link da página do site DocType: Company,Company registration numbers for your reference. Tax numbers etc.,"Números de registro da empresa para sua referência. Exemplo: CNPJ, IE, etc" DocType: Sales Partner,Distributor,Distribuidor @@ -957,10 +959,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,Fator de Conversão da UDM DocType: Stock Settings,Default Item Group,Grupo de Itens padrão apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Banco de dados do Fornecedor. DocType: Account,Balance Sheet,Balanço -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Centro de Custos para Item com Código ' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Centro de Custos para Item com Código ' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,Seu vendedor receberá um lembrete nesta data para contatar o cliente apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Outras contas podem ser feitas em grupos, mas as entradas podem ser feitas contra os não-Groups" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Impostos e outras deduções salariais. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Impostos e outras deduções salariais. DocType: Lead,Lead,Cliente em Potencial DocType: Email Digest,Payables,Contas a pagar DocType: Account,Warehouse,Armazém @@ -977,10 +979,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Unreconciled Detalh DocType: Global Defaults,Current Fiscal Year,Ano Fiscal Atual DocType: Global Defaults,Disable Rounded Total,Desativar total arredondado DocType: Lead,Call,Chamar -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'Entradas' não pode estar vazio +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'Entradas' não pode estar vazio apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Linha duplicada {0} com o mesmo {1} ,Trial Balance,Balancete -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Configurando Empregados +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Configurando Empregados apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","Grid """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,Por favor seleccione prefixo primeiro apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,pesquisa @@ -989,7 +991,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,ID de Usuário apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Ver Ledger apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Mais antigas -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Um grupo de itens existe com o mesmo nome, por favor, mude o nome do item ou mude o nome do grupo de itens" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Um grupo de itens existe com o mesmo nome, por favor, mude o nome do item ou mude o nome do grupo de itens" DocType: Production Order,Manufacture against Sales Order,Fabricação contra a Ordem de Venda apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Resto do mundo apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,O item {0} não pode ter Batch @@ -1014,7 +1016,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Almoxarifado Rejeitado DocType: GL Entry,Against Voucher,Contra o Comprovante DocType: Item,Default Buying Cost Center,Compra Centro de Custo Padrão apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Para tirar o melhor proveito de ERPNext, recomendamos que você levar algum tempo e assistir a esses vídeos de ajuda." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Item {0} deve ser item de vendas +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Item {0} deve ser item de vendas apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,para DocType: Item,Lead Time in days,Prazo de entrega em dias ,Accounts Payable Summary,Resumo do Contas a Pagar @@ -1040,7 +1042,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Agricultura apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Seus produtos ou serviços DocType: Mode of Payment,Mode of Payment,Forma de Pagamento -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Site de imagem deve ser um arquivo público ou URL do site +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Site de imagem deve ser um arquivo público ou URL do site apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,Este é um grupo de itens de raiz e não pode ser editada. DocType: Journal Entry Account,Purchase Order,Ordem de Compra DocType: Warehouse,Warehouse Contact Info,Informações de Contato do Almoxarifado @@ -1051,7 +1053,7 @@ DocType: Serial No,Serial No Details,Detalhes do Nº de Série DocType: Purchase Invoice Item,Item Tax Rate,Taxa de Imposto do Item apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","Por {0}, apenas as contas de crédito pode ser ligado contra outro lançamento de débito" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Guia de Remessa {0} não foi submetida -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Item {0} deve ser um item do sub- contratados +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Item {0} deve ser um item do sub- contratados apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Equipamentos Capitais apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Regra de Preços é o primeiro selecionado com base em ""Aplicar On 'campo, que pode ser Item, item de grupo ou Marca." DocType: Hub Settings,Seller Website,Site do Vendedor @@ -1060,7 +1062,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Meta DocType: Sales Invoice Item,Edit Description,Editar Descrição apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Data de entrega esperada é menor do que o planejado Data de Início. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,para Fornecedor +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,para Fornecedor DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Definir o Tipo de Conta ajuda na seleção desta Conta nas transações. DocType: Purchase Invoice,Grand Total (Company Currency),Grande Total (moeda da empresa) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Sainte total @@ -1112,7 +1114,6 @@ DocType: Authorization Rule,Average Discount,Desconto Médio DocType: Address,Utilities,Serviços Públicos DocType: Purchase Invoice Item,Accounting,Contabilidade DocType: Features Setup,Features Setup,Configuração de características -DocType: Item,Is Service Item,É item de serviço apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Período de aplicação não pode ser período de atribuição de licença fora DocType: Activity Cost,Projects,Projetos apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,Por favor seleccione o Ano Fiscal @@ -1133,7 +1134,7 @@ DocType: Item,Maintain Stock,Manter Estoque apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Banco de entradas já criadas para ordem de produção apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Alteração Líquida da Imobilização DocType: Leave Control Panel,Leave blank if considered for all designations,Deixe em branco se considerado para todas as designações -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Charge do tipo ' real ' na linha {0} não pode ser incluído no item Taxa +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Charge do tipo ' real ' na linha {0} não pode ser incluído no item Taxa apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,A partir de data e hora DocType: Email Digest,For Company,Para a Empresa @@ -1142,8 +1143,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Endereço para envio Nome apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Plano de Contas DocType: Material Request,Terms and Conditions Content,Conteúdos dos Termos e Condições -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,não pode ser maior do que 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Item {0} não é um item de estoque +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,não pode ser maior do que 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Item {0} não é um item de estoque DocType: Maintenance Visit,Unscheduled,Sem agendamento DocType: Employee,Owned,Pertencente DocType: Salary Slip Deduction,Depends on Leave Without Pay,Depende de licença sem vencimento @@ -1165,7 +1166,7 @@ Used for Taxes and Charges","Detalhe da tabela de imposto obtido a partir mestre apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Empregado não pode denunciar a si mesmo. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Se a conta for congelada , as entradas são permitidos aos usuários restritos." DocType: Email Digest,Bank Balance,Saldo bancário -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Contabilidade de entrada para {0}: {1} só pode ser feito em moeda: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Contabilidade de entrada para {0}: {1} só pode ser feito em moeda: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Sem Estrutura salarial para o empregado ativo encontrado {0} eo mês DocType: Job Opening,"Job profile, qualifications required etc.","Perfil da Vaga , qualificações exigidas , etc" DocType: Journal Entry Account,Account Balance,Saldo da conta @@ -1182,7 +1183,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Sub Assemblé DocType: Shipping Rule Condition,To Value,Ao Valor DocType: Supplier,Stock Manager,Da Gerente apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Origem do Warehouse é obrigatória para a linha {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Guia de Remessa +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Guia de Remessa apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Aluguel do Escritório apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Configurações de gateway SMS Setup apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Falha na importação ! @@ -1226,7 +1227,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,Nº do detalhe da LDM DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Total do Disconto adicional (moeda da empresa) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Erro: {0} > {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,"Por favor, crie uma nova conta de Plano de Contas ." -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Visita de manutenção +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Visita de manutenção apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Cliente> Grupo Cliente> Território DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Lote disponível Qtde no Warehouse DocType: Time Log Batch Detail,Time Log Batch Detail,Tempo Log Detail Batch @@ -1235,7 +1236,7 @@ DocType: Leave Block List,Block Holidays on important days.,Bloco Feriados em di ,Accounts Receivable Summary,Resumo do Contas a Receber apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,"Por favor, defina o campo ID do usuário em um registro de empregado para definir Função Funcionário" DocType: UOM,UOM Name,Nome da UDM -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Contribuição Total +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Contribuição Total DocType: Sales Invoice,Shipping Address,Endereço de envio DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,Esta ferramenta ajuda você a atualizar ou corrigir a quantidade ea valorização das ações no sistema. Ele é geralmente usado para sincronizar os valores do sistema e que realmente existe em seus armazéns. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,Por extenso será visível quando você salvar a Guia de Remessa. @@ -1276,7 +1277,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Para rastrear itens usando código de barras. Você será capaz de inserir itens na Guia de Remessa e Nota Fiscal de Venda através do escaneamento do código de barras do item. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Pagamento reenviar Email DocType: Dependent Task,Dependent Task,Tarefa dependente -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Fator de conversão de unidade de medida padrão deve ser 1 na linha {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Fator de conversão de unidade de medida padrão deve ser 1 na linha {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Deixar do tipo {0} não pode ser maior que {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Tente planear operações para X dias de antecedência. DocType: HR Settings,Stop Birthday Reminders,Parar Aniversário Lembretes @@ -1286,7 +1287,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Visão apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Mudança líquida em dinheiro DocType: Salary Structure Deduction,Salary Structure Deduction,Dedução da Estrutura Salarial -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Unidade de Medida {0} foi inserida mais de uma vez na Tabela de Conversão de Fator +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Unidade de Medida {0} foi inserida mais de uma vez na Tabela de Conversão de Fator apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Pedido de Pagamento já existe {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Custo dos Produtos Enviados apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Quantidade não deve ser mais do que {0} @@ -1315,7 +1316,7 @@ DocType: BOM Item,BOM Item,Item da LDM DocType: Appraisal,For Employee,Para o Colaborador apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Row {0}: Avanço contra o Fornecedor deve ser debitar DocType: Company,Default Values,Valores Padrão -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Row {0}: Valor do pagamento não pode ser negativo +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Row {0}: Valor do pagamento não pode ser negativo DocType: Expense Claim,Total Amount Reimbursed,Montante total reembolsado apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Contra Fornecedor Invoice {0} {1} datada DocType: Customer,Default Price List,Lista de Preços padrão @@ -1343,8 +1344,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Rec DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Substituir um especial BOM em todas as outras listas de materiais em que é utilizado. Ele irá substituir o antigo link BOM, atualizar o custo e regenerar ""BOM Explosão item"" mesa como por nova BOM" DocType: Shopping Cart Settings,Enable Shopping Cart,Ativar Carrinho DocType: Employee,Permanent Address,Endereço permanente -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Item {0} deve ser um item de serviço . -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Adiantamento pago contra {0} {1} não pode ser maior do que o Total Geral {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Por favor seleccione código do item DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Reduzir Dedução por licença sem vencimento (LWP) @@ -1400,12 +1400,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Principal apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Variante DocType: Naming Series,Set prefix for numbering series on your transactions,Definir prefixo para séries de numeração em suas transações +DocType: Employee Attendance Tool,Employees HTML,funcionários HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Parado ordem não pode ser cancelado. Desentupir para cancelar. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,LDM Padrão ({0}) precisa estar ativo para este item ou o seu modelo +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,LDM Padrão ({0}) precisa estar ativo para este item ou o seu modelo DocType: Employee,Leave Encashed?,Licenças Cobradas? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Oportunidade De O campo é obrigatório DocType: Item,Variants,Variantes -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Criar ordem de compra +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Criar ordem de compra DocType: SMS Center,Send To,Enviar para apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Não há o suficiente equilíbrio pela licença Tipo {0} DocType: Payment Reconciliation Payment,Allocated amount,Quantidade atribuída @@ -1506,7 +1507,7 @@ DocType: Sales Person,Name and Employee ID,Nome e identificação do funcionári apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,Due Date não pode ser antes de Postar Data DocType: Website Item Group,Website Item Group,Grupo de Itens do site apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Impostos e Contribuições -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,"Por favor, indique data de referência" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,"Por favor, indique data de referência" apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Gateway de Pagamento de Conta não está configurado apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} entradas de pagamento não podem ser filtrados por {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,Tabela para o item que será mostrado no Web Site @@ -1527,7 +1528,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Detalhes da Resolução DocType: Quality Inspection Reading,Acceptance Criteria,Critérios de Aceitação DocType: Item Attribute,Attribute Name,Nome do atributo -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Item {0} deve ser de Vendas ou Atendimento item em {1} DocType: Item Group,Show In Website,Mostrar No Site apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Grupo DocType: Task,Expected Time (in hours),Tempo esperado (em horas) @@ -1559,7 +1559,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Valor do transporte ,Pending Amount,Enquanto aguarda Valor DocType: Purchase Invoice Item,Conversion Factor,Fator de Conversão DocType: Purchase Order,Delivered,Entregue -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Configuração do servidor de entrada para os trabalhos de identificação do email . ( por exemplo jobs@example.com ) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Configuração do servidor de entrada para os trabalhos de identificação do email . ( por exemplo jobs@example.com ) DocType: Purchase Receipt,Vehicle Number,Número de veículos DocType: Purchase Invoice,The date on which recurring invoice will be stop,A data em que fatura recorrente será interrompida apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Total de folhas alocados {0} não pode ser menos do que as folhas já aprovados {1} para o período @@ -1576,7 +1576,7 @@ DocType: HR Settings,HR Settings,Configurações de RH apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Despesa reivindicação está pendente de aprovação . Somente o aprovador Despesa pode atualizar status. DocType: Purchase Invoice,Additional Discount Amount,Total do Disconto adicional DocType: Leave Block List Allow,Leave Block List Allow,Deixe Lista de Bloqueios Permitir -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abbr não pode estar em branco ou espaço +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abbr não pode estar em branco ou espaço apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Grupo de Não-Grupo apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,esportes apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Total real @@ -1600,7 +1600,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},Fator de Conversão de UDM é necessário na linha {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Apuramento data não pode ser anterior à data de verificação na linha {0} DocType: Salary Slip,Deduction,Dedução -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Item Preço adicionada para {0} na lista de preços {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Item Preço adicionada para {0} na lista de preços {1} DocType: Address Template,Address Template,Modelo de endereço apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,Digite Employee Id desta pessoa de vendas DocType: Territory,Classification of Customers by region,Classificação dos clientes por região @@ -1617,7 +1617,7 @@ DocType: Employee,Date of Birth,Data de Nascimento apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Item {0} já foi devolvido DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,O **Ano Fiscal** representa um exercício financeiro. Todos os lançamentos contábeis e outras transações principais são rastreadas contra o **Ano Fiscal**. DocType: Opportunity,Customer / Lead Address,Endereço do Cliente/Cliente em Potencial -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Aviso: certificado SSL inválido no anexo {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Aviso: certificado SSL inválido no anexo {0} DocType: Production Order Operation,Actual Operation Time,Tempo Real da Operação DocType: Authorization Rule,Applicable To (User),Aplicável Para (Usuário) DocType: Purchase Taxes and Charges,Deduct,Deduzir @@ -1634,7 +1634,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Dividir Guia de Remessa em pacotes. apps/erpnext/erpnext/hooks.py +69,Shipments,Os embarques DocType: Purchase Order Item,To be delivered to customer,Para ser entregue ao cliente -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Tempo Log Estado devem ser apresentadas. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Tempo Log Estado devem ser apresentadas. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,O Serial No {0} não pertence a nenhum Warehouse apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Row # DocType: Purchase Invoice,In Words (Company Currency),In Words (Moeda Company) @@ -1651,7 +1651,7 @@ DocType: Leave Application,Total Leave Days,Total de dias de licença DocType: Email Digest,Note: Email will not be sent to disabled users,Nota: e-mails não serão enviado para usuários desabilitados apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Selecione Empresa ... DocType: Leave Control Panel,Leave blank if considered for all departments,Deixe em branco se considerado para todos os departamentos -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Tipos de emprego ( permanente , contrato, etc estagiário ) ." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Tipos de emprego ( permanente , contrato, etc estagiário ) ." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} é obrigatório para o item {1} DocType: Currency Exchange,From Currency,De Moeda apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Por favor, selecione montante atribuído, tipo de fatura e número da fatura em pelo menos uma fileira" @@ -1670,7 +1670,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,Em Processo DocType: Authorization Rule,Itemwise Discount,Desconto relativo ao Item DocType: Purchase Order Item,Reference Document Type,Referência Tipo de Documento -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} contra a Ordem de Venda {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} contra a Ordem de Venda {1} DocType: Account,Fixed Asset,ativos Fixos apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Inventário Serialized DocType: Activity Type,Default Billing Rate,Preço de Faturamento Padrão @@ -1680,7 +1680,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Pedido de Vendas para pagamento DocType: Expense Claim Detail,Expense Claim Detail,Detalhe do Pedido de Reembolso de Despesas apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Time Logs criado: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,"Por favor, selecione conta correta" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,"Por favor, selecione conta correta" DocType: Item,Weight UOM,UDM de Peso DocType: Employee,Blood Group,Grupo sanguíneo DocType: Purchase Invoice Item,Page Break,Quebra de página @@ -1715,7 +1715,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},LDM recursão: {0} não pode ser pai ou filho de {2} DocType: Production Order Operation,Completed Qty,Qtde concluída apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","Por {0}, apenas as contas de débito pode ser ligado contra outra entrada crédito" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Preço de {0} está desativado +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Preço de {0} está desativado DocType: Manufacturing Settings,Allow Overtime,Permitir Overtime apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} número de série é necessário para item {1}. Você forneceu {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Taxa Atual de Avaliação @@ -1766,7 +1766,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Nenh apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Caso n não pode ser 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,Se você tiver Equipe de Vendas e Parceiros de Venda (Parceiros de Canal) eles podem ser marcadas e manter suas contribuições na atividade de vendas DocType: Item,Show a slideshow at the top of the page,Mostrar uma apresentação de slides no topo da página -DocType: Item,"Allow in Sales Order of type ""Service""",Permitir na Ordem de venda do tipo "Serviço" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Lojas DocType: Time Log,Projects Manager,Gerente de Projetos DocType: Serial No,Delivery Time,Prazo de entrega @@ -1781,6 +1780,7 @@ DocType: Rename Tool,Rename Tool,Ferramenta de Renomear apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Atualize o custo DocType: Item Reorder,Item Reorder,Item Reordenar apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,transferência de Material +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Item {0} deve ser um item de vendas em {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Especificar as operações , custos operacionais e dar uma operação única não às suas operações." DocType: Purchase Invoice,Price List Currency,Moeda da Lista de Preços DocType: Naming Series,User must always select,O Usuário deve sempre selecionar @@ -1801,7 +1801,7 @@ DocType: Appraisal,Employee,Colaborador apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Importar e-mail do apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Convidar como Usuário DocType: Features Setup,After Sale Installations,Instalações Pós-Venda -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} está totalmente faturado +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} está totalmente faturado DocType: Workstation Working Hour,End Time,End Time apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Termos do contrato padrão para vendas ou compra. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Grupo pela Vale @@ -1827,7 +1827,7 @@ DocType: Upload Attendance,Attendance To Date,Data Final de Comparecimento apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Configuração do servidor de entrada de e-mail id vendas. ( por exemplo sales@example.com ) DocType: Warranty Claim,Raised By,Levantadas por DocType: Payment Gateway Account,Payment Account,Conta de Pagamento -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,"Por favor, especifique Empresa proceder" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,"Por favor, especifique Empresa proceder" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Variação Líquida em Contas a Receber apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,compensatória Off DocType: Quality Inspection Reading,Accepted,Aceito @@ -1839,14 +1839,14 @@ DocType: Shipping Rule,Shipping Rule Label,Rótudo da Regra de Envio apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Matérias-primas não pode ficar em branco. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Não foi possível atualizar estoque, fatura contém gota artigo do transporte." DocType: Newsletter,Test,Teste -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Como existem transações com ações existentes para este item, \ não é possível alterar os valores de 'não tem Serial', 'Tem Lote n', 'é Stock item "e" Método de avaliação'" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Breve Journal Entry apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,Você não pode alterar a taxa de se BOM mencionado em algum item DocType: Employee,Previous Work Experience,Experiência anterior de trabalho DocType: Stock Entry,For Quantity,Para Quantidade apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},"Por favor, indique Planned Qt para item {0} na linha {1}" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} não foi enviado +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} não foi enviado apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Os pedidos de itens. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Uma Ordem de Produção separada será criada para cada item acabado. DocType: Purchase Invoice,Terms and Conditions1,Termos e Condições @@ -1871,6 +1871,7 @@ DocType: Notification Control,Expense Claim Approved Message,Mensagem de aprova DocType: Email Digest,How frequently?,Com que frequência? DocType: Purchase Receipt,Get Current Stock,Obter Estoque atual apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Árvore da Bill of Materials +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Mark Present apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Manutenção data de início não pode ser anterior à data de entrega para Serial Não {0} DocType: Production Order,Actual End Date,Data Final Real DocType: Authorization Rule,Applicable To (Role),Aplicável Para (Função) @@ -1885,7 +1886,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Data de Encerramento do Contrato deve ser maior que Data de Inicio DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,Um distribuidor de terceiros / revendedor / comissão do agente / filial / revendedor que vende os produtos de empresas de uma comissão. DocType: Customer Group,Has Child Node,Tem nó filho -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} contra a Ordem de Compra {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} contra a Ordem de Compra {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Digite os parâmetros da URL estática aqui (por exemplo remetente=ERPNext, usuario=ERPNext, senha=1234, etc)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} não consta em nenhum Ano Fiscal Ativo. Para mais detalhes consulte {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Este é um exemplo website auto- gerada a partir ERPNext @@ -1933,7 +1934,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Adicionar ou deduzir: Se você quer adicionar ou deduzir o imposto." DocType: Purchase Receipt Item,Recd Quantity,Quantidade Recebida apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Não é possível produzir mais item {0} do que a quantidade Ordem de Vendas {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Da entrada {0} não é apresentado +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Da entrada {0} não é apresentado DocType: Payment Reconciliation,Bank / Cash Account,Banco / Conta Caixa DocType: Tax Rule,Billing City,Faturamento Cidade DocType: Global Defaults,Hide Currency Symbol,Ocultar Símbolo de Moeda @@ -1959,7 +1960,7 @@ DocType: Salary Structure,Total Earning,Total de Ganhos DocType: Purchase Receipt,Time at which materials were received,Horário em que os materiais foram recebidos apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Os meus endereços DocType: Stock Ledger Entry,Outgoing Rate,Taxa de saída -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Mestre Organização ramo . +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Mestre Organização ramo . apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,ou DocType: Sales Order,Billing Status,Estado do Faturamento apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Despesas com Serviços Públicos @@ -1997,7 +1998,7 @@ DocType: Bin,Reserved Quantity,Quantidade Reservada DocType: Landed Cost Voucher,Purchase Receipt Items,Itens do Recibo de Compra apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Formas de personalização DocType: Account,Income Account,Conta de Receitas -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Entrega +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Entrega DocType: Stock Reconciliation Item,Current Qty,Qtde atual DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",Consulte "taxa de materiais baseados em" no Custeio Seção DocType: Appraisal Goal,Key Responsibility Area,Área Chave de Responsabilidade @@ -2009,9 +2010,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,val DocType: Notification Control,Purchase Order Message,Mensagem da Ordem de Compra DocType: Tax Rule,Shipping Country,O envio País DocType: Upload Attendance,Upload HTML,Carregar HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","Antecedência Total ({0}) contra a Ordem {1} não pode ser maior do que o Grand \ - Total ({2})" DocType: Employee,Relieving Date,Data da Liberação apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Regra de preços é feita para substituir Lista de Preços / define percentual de desconto, com base em alguns critérios." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Armazém só pode ser alterado através de entrada / entrega da nota / recibo de compra @@ -2021,8 +2019,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Impos apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Se regra de preços selecionado é feita por 'preço', ele irá substituir Lista de Preços. Preço regra de preço é o preço final, de forma que nenhum desconto adicional deve ser aplicada. Assim, em operações como a Ordem de Vendas, Ordem de Compra etc, será buscado no campo ""taxa"", ao invés de campo ""Lista de Preços Rate '." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,"Rastreia Clientes em Potencial, por Segmento." DocType: Item Supplier,Item Supplier,Fornecedor do Item -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,"Por favor, insira o Código Item para obter lotes não" -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},Por favor seleccione um valor para {0} {1} quotation_to +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,"Por favor, insira o Código Item para obter lotes não" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},Por favor seleccione um valor para {0} {1} quotation_to apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Todos os Endereços. DocType: Company,Stock Settings,Configurações da apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","A fusão só é possível se seguintes propriedades são as mesmas em ambos os registros. É Group, tipo de raiz, Company" @@ -2045,7 +2043,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Número do cheque DocType: Payment Tool Detail,Payment Tool Detail,Detalhe ferramenta de pagamento ,Sales Browser,Navegador de Vendas DocType: Journal Entry,Total Credit,Crédito Total -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Aviso: Outra {0} # {1} existe contra entrada de material {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Aviso: Outra {0} # {1} existe contra entrada de material {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,local apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Empréstimos e Adiantamentos (Ativo ) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Devedores @@ -2065,8 +2063,8 @@ DocType: Price List,Price List Master,Lista de Preços Mestre DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,Todas as transações de vendas pode ser marcado contra várias pessoas das vendas ** ** para que você pode definir e monitorar as metas. ,S.O. No.,Número de S.O. DocType: Production Order Operation,Make Time Log,Make Time Log -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,"Por favor, defina a quantidade de reabastecimento" -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},"Por favor, crie um Cliente apartir do Cliente em Potencial {0}" +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,"Por favor, defina a quantidade de reabastecimento" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},"Por favor, crie um Cliente apartir do Cliente em Potencial {0}" DocType: Price List,Applicable for Countries,Aplicável para os Países apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Computadores apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,Este é um grupo de clientes de raiz e não pode ser editada. @@ -2114,7 +2112,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Fatura DocType: Payment Reconciliation Invoice,Outstanding Amount,Quantia em aberto DocType: Project Task,Working,Trabalhando DocType: Stock Ledger Entry,Stock Queue (FIFO),Fila do estoque (PEPS) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Por favor seleccione Tempo Logs. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Por favor seleccione Tempo Logs. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} não pertence à empresa {1} DocType: Account,Round Off,Termine ,Requested Qty,solicitado Qtde @@ -2152,7 +2150,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Obter entradas relevantes apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Lançamento Contábil de Estoque DocType: Sales Invoice,Sales Team1,Equipe de Vendas 1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Item {0} não existe +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Item {0} não existe DocType: Sales Invoice,Customer Address,Endereço do Cliente DocType: Payment Request,Recipient and Message,Destinatário ea mensagem DocType: Purchase Invoice,Apply Additional Discount On,Aplicar desconto adicional em @@ -2171,7 +2169,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Mudo Email apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Alimentos, Bebidas e Fumo" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL ou BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Só pode fazer o pagamento contra a faturar {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Só pode fazer o pagamento contra a faturar {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Taxa de comissão não pode ser maior do que 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Nível Mínimo Inventory DocType: Stock Entry,Subcontract,Subcontratar @@ -2189,9 +2187,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Software apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Cor DocType: Maintenance Visit,Scheduled,Agendado apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Por favor, selecione o item em que "é o estoque item" é "Não" e "é o item Vendas" é "Sim" e não há nenhum outro pacote de produtos" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Avanço total ({0}) contra Pedido {1} não pode ser maior do que o total geral ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Selecione distribuição mensal para distribuir desigualmente alvos através meses. DocType: Purchase Invoice Item,Valuation Rate,Taxa de Avaliação -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Lista de Preço Moeda não selecionado +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Lista de Preço Moeda não selecionado apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,Row item {0}: Recibo de compra {1} não existe em cima da tabela 'recibos de compra' apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Empregado {0} já solicitou {1} {2} entre e {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Data de início do Projeto @@ -2203,6 +2202,7 @@ DocType: Quality Inspection,Inspection Type,Tipo de Inspeção apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},Por favor seleccione {0} DocType: C-Form,C-Form No,Nº do Formulário-C DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,Presença Unmarked apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,investigador apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,"Por favor, salve o Boletim informativo antes de enviar" apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Nome ou E-mail é obrigatório @@ -2228,7 +2228,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Confirm DocType: Payment Gateway,Gateway,Porta de entrada apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Fornecedor> Fornecedor Tipo apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,"Por favor, indique data alívio ." -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,"Só Deixar Aplicações com status ""Aprovado"" podem ser submetidos" apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Titulo do Endereço é obrigatório. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,Digite o nome da campanha se o motivo da consulta foi uma campanha. @@ -2243,10 +2243,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Almoxarifado Aceito DocType: Bank Reconciliation Detail,Posting Date,Data da Postagem DocType: Item,Valuation Method,Método de Avaliação apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Incapaz de encontrar a taxa de câmbio para {0} para {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Mark Meio Dia DocType: Sales Invoice,Sales Team,Equipe de Vendas apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,duplicar entrada DocType: Serial No,Under Warranty,Sob Garantia -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Erro] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Erro] DocType: Sales Order,In Words will be visible once you save the Sales Order.,Por extenso será visível quando você salvar a Ordem de Venda. ,Employee Birthday,Aniversário dos Funcionários apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Capital de Risco @@ -2269,6 +2270,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,Centro de custo com as operações existentes não podem ser convertidos em grupo DocType: Account,Depreciation,depreciação apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Fornecedor (s) +DocType: Employee Attendance Tool,Employee Attendance Tool,Ferramenta de comparecimento do empregado DocType: Supplier,Credit Limit,Limite de Crédito apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Selecione o tipo de transação DocType: GL Entry,Voucher No,Nº do comprovante @@ -2295,7 +2297,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Conta root não pode ser excluído ,Is Primary Address,É primário Endereço DocType: Production Order,Work-in-Progress Warehouse,Armazém Work-in-Progress -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Referência # {0} {1} datado +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Referência # {0} {1} datado apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Gerenciar endereços DocType: Pricing Rule,Item Code,Código do Item DocType: Production Planning Tool,Create Production Orders,Criar Ordens de Produção @@ -2322,7 +2324,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Reconciliação Bancária apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Obter atualizações apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Pedido de material {0} é cancelado ou interrompido apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Adicione alguns registros de exemplo -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Gestão de Licenças +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Gestão de Licenças apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Grupo por Conta DocType: Sales Order,Fully Delivered,Totalmente entregue DocType: Lead,Lower Income,Baixa Renda @@ -2337,6 +2339,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',A 'Data Final' deve ser posterior a 'Data Inicial' ,Stock Projected Qty,Banco Projetada Qtde apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Cliente {0} não pertence ao projeto {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Presença marcante HTML DocType: Sales Order,Customer's Purchase Order,Ordem de Compra do Cliente DocType: Warranty Claim,From Company,Da Empresa apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Valor ou Quantidade @@ -2401,6 +2404,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,por transferência bancária apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,Por favor selecione a Conta Bancária DocType: Newsletter,Create and Send Newsletters,Criar e enviar email marketing +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Verifique todos DocType: Sales Order,Recurring Order,Ordem Recorrente DocType: Company,Default Income Account,Conta de Rendimento padrão apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Grupo de Cliente/Cliente @@ -2432,6 +2436,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Regresso contra factur DocType: Item,Warranty Period (in days),Período de Garantia (em dias) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Caixa Líquido de Operações apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,por exemplo IVA +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Presença Mark empregado em massa apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Item 4 DocType: Journal Entry Account,Journal Entry Account,Conta Journal Entry DocType: Shopping Cart Settings,Quotation Series,Cotação Series @@ -2577,14 +2582,14 @@ DocType: Task,Actual Start Date (via Time Logs),Data de início real (via Time L DocType: Stock Reconciliation Item,Before reconciliation,Antes de reconciliação apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Para {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Impostos e taxas Adicionado (Moeda Company) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Item Imposto Row {0} deve ter em conta tipo de imposto ou de renda ou de despesa ou carregável +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Item Imposto Row {0} deve ter em conta tipo de imposto ou de renda ou de despesa ou carregável DocType: Sales Order,Partly Billed,Parcialmente faturado DocType: Item,Default BOM,LDM Padrão apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,"Por favor, re-tipo o nome da empresa para confirmar" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Total de Outstanding Amt DocType: Time Log Batch,Total Hours,Total de Horas DocType: Journal Entry,Printing Settings,Configurações de impressão -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Débito total deve ser igual ao total de crédito. +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Débito total deve ser igual ao total de crédito. apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,automotivo apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,De Nota de Entrega DocType: Time Log,From Time,From Time @@ -2631,7 +2636,7 @@ DocType: Purchase Invoice Item,Image View,Ver imagem DocType: Issue,Opening Time,Horário de abertura apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,De e datas necessárias apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Valores Mobiliários e Bolsas de Mercadorias -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Unidade de medida padrão para a variante '{0}' deve ser o mesmo que no modelo '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Unidade de medida padrão para a variante '{0}' deve ser o mesmo que no modelo '{1}' DocType: Shipping Rule,Calculate Based On,Calcule Baseado em DocType: Delivery Note Item,From Warehouse,Do Armazém DocType: Purchase Taxes and Charges,Valuation and Total,Valorização e Total @@ -2653,7 +2658,7 @@ DocType: Leave Application,Follow via Email,Siga por e-mail DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Total de Impostos Depois Montante do Desconto apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Conta Criança existe para esta conta. Você não pode excluir esta conta. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Ou qty alvo ou valor alvo é obrigatório -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},Não existe LDM padrão para o item {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},Não existe LDM padrão para o item {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,"Por favor, selecione Data de lançamento primeiro" apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Abrindo data deve ser antes da Data de Fechamento DocType: Leave Control Panel,Carry Forward,Encaminhar @@ -2731,7 +2736,7 @@ DocType: Leave Type,Is Encash,É cobrança DocType: Purchase Invoice,Mobile No,Telefone Celular DocType: Payment Tool,Make Journal Entry,Faça Journal Entry DocType: Leave Allocation,New Leaves Allocated,Novas Licenças alocadas -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Dados do projecto -wise não está disponível para Cotação +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Dados do projecto -wise não está disponível para Cotação DocType: Project,Expected End Date,Data Final prevista DocType: Appraisal Template,Appraisal Template Title,Título do Modelo de Avaliação apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Comercial @@ -2779,6 +2784,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,Re apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,"Por favor, especifique um" DocType: Offer Letter,Awaiting Response,Aguardando resposta apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Acima +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Tempo Log foi faturada DocType: Salary Slip,Earning & Deduction,Ganho & Dedução apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,A Conta {0} não pode ser um Grupo apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Opcional . Esta configuração será usada para filtrar em várias transações. @@ -2849,14 +2855,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Excluído com sucesso todas as transacções relacionadas com esta empresa! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Como em Data apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,provação -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Armazém padrão é obrigatório para estoque Item. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Armazém padrão é obrigatório para estoque Item. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Pagamento de salário para o mês {0} e {1} ano DocType: Stock Settings,Auto insert Price List rate if missing,Inserir automaticamente o preço na lista de preço se não houver nenhum. apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Montante total pago ,Transferred Qty,transferido Qtde apps/erpnext/erpnext/config/learn.py +11,Navigating,Navegação apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,planejamento -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Criar tempo de log +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Criar tempo de log apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Emitido DocType: Project,Total Billing Amount (via Time Logs),Valor Total do faturamento (via Time Logs) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Nós vendemos este item @@ -2864,7 +2870,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Quantidade deve ser maior do que 0 DocType: Journal Entry,Cash Entry,Entrada de Caixa DocType: Sales Partner,Contact Desc,Descrição do Contato -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Tipo de licenças como casual, doença, etc." +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Tipo de licenças como casual, doença, etc." DocType: Email Digest,Send regular summary reports via Email.,Enviar relatórios periódicos de síntese via e-mail. DocType: Brand,Item Manager,Item Manager DocType: Cost Center,Add rows to set annual budgets on Accounts.,Adicione linhas para definir orçamentos anuais nas Contas. @@ -2879,7 +2885,7 @@ DocType: GL Entry,Party Type,Tipo de Festa apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Matéria-prima não pode ser o mesmo como o principal item DocType: Item Attribute Value,Abbreviation,Abreviatura apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Não authroized desde {0} excede os limites -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Modelo Mestre de Salário . +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Modelo Mestre de Salário . DocType: Leave Type,Max Days Leave Allowed,Período máximo de Licença apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Conjunto de regras de imposto por carrinho de compras DocType: Payment Tool,Set Matching Amounts,Definir os montantes a condizer @@ -2892,7 +2898,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Cotaç DocType: Stock Settings,Role Allowed to edit frozen stock,Papel permissão para editar estoque congelado ,Territory Target Variance Item Group-Wise,Território Alvo Variance item Group-wise apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Todos os grupos de clientes -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} é obrigatório. Talvez o valor de câmbio não exista de {1} para {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} é obrigatório. Talvez o valor de câmbio não exista de {1} para {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Template imposto é obrigatório. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Conta {0}: A Conta Pai {1} não existe DocType: Purchase Invoice Item,Price List Rate (Company Currency),Preço Taxa List (moeda da empresa) @@ -2912,8 +2918,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Detalhe Imposto item S ,Item-wise Price List Rate,-Item sábio Preço de Taxa apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Cotação do Fornecedor DocType: Quotation,In Words will be visible once you save the Quotation.,Por extenso será visível quando você salvar a cotação. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} está parado -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Código de barras {0} já utilizado em item {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} está parado +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Código de barras {0} já utilizado em item {1} DocType: Lead,Add to calendar on this date,Adicionar ao calendário nesta data apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Regras para adicionar os custos de envio . apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Próximos Eventos @@ -2940,8 +2946,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,ve apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Pelo menos um almoxarifado é obrigatório DocType: Serial No,Out of Warranty,Fora de Garantia DocType: BOM Replace Tool,Replace,Substituir -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} contra Nota Fiscal de Vendas {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Por favor entre unidade de medida padrão +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} contra Nota Fiscal de Vendas {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Por favor entre unidade de medida padrão DocType: Purchase Invoice Item,Project Name,Nome do Projeto DocType: Supplier,Mention if non-standard receivable account,Mencione se não padronizado conta a receber DocType: Journal Entry Account,If Income or Expense,Se a renda ou Despesa @@ -2966,7 +2972,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Ano Fiscal: {0} não existe DocType: Currency Exchange,To Currency,A Moeda DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Permitir que os usuários a seguir para aprovar aplicações deixam para os dias de bloco. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Tipos de reembolso de despesas. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Tipos de reembolso de despesas. DocType: Item,Taxes,Impostos apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Pago e não entregue DocType: Project,Default Cost Center,Centro de Custo Padrão @@ -2996,7 +3002,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Row # {0}: Número de ordem {1} não coincide com {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Casual Deixar DocType: Batch,Batch ID,ID do Lote -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Nota : {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Nota : {0} ,Delivery Note Trends,Nota de entrega Trends apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Resumo da Semana apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} deve ser um item comprado ou subcontratado na linha {1} @@ -3036,6 +3042,7 @@ DocType: Project Task,Pending Review,Revisão pendente apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Clique aqui para pagar DocType: Task,Total Expense Claim (via Expense Claim),Reivindicação Despesa Total (via Despesa Claim) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Id do Cliente +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Mark Ausente apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Para Tempo deve ser maior From Time DocType: Journal Entry Account,Exchange Rate,Taxa de Câmbio apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Ordem de Vendas {0} não é submetido @@ -3083,7 +3090,7 @@ DocType: Item Group,Default Expense Account,Conta Padrão de Despesa DocType: Employee,Notice (days),Aviso Prévio ( dias) DocType: Tax Rule,Sales Tax Template,Template Imposto sobre Vendas DocType: Employee,Encashment Date,Data da cobrança -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Contra Comprovante Tipo deve ser um dos Pedido de Compra, nota fiscal de compra ou do Diário" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Contra Comprovante Tipo deve ser um dos Pedido de Compra, nota fiscal de compra ou do Diário" DocType: Account,Stock Adjustment,Banco de Ajuste apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Existe Atividade Custo Padrão para o Tipo de Atividade - {0} DocType: Production Order,Planned Operating Cost,Planejado Custo Operacional @@ -3137,6 +3144,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Escrever Off Entry DocType: BOM,Rate Of Materials Based On,Taxa de materiais com base em apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Análise de Pós-Vendas +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Desmarcar todos apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Não exite uma empresa relacionada nos armazéns {0} DocType: POS Profile,Terms and Conditions,Termos e Condições apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},Para data deve ser dentro do exercício social. Assumindo Para Date = {0} @@ -3158,7 +3166,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Para definir esse Ano Fiscal como padrão , clique em ' Definir como padrão '" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Configuração do servidor de entrada de emails para suporte. ( por exemplo pos-vendas@examplo.com.br ) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Escassez Qtde -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Variante item {0} existe com os mesmos atributos +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Variante item {0} existe com os mesmos atributos DocType: Salary Slip,Salary Slip,Folha de pagamento apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,'Data Final' é necessária DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Gerar deslizamentos de embalagem para os pacotes a serem entregues. Usado para notificar número do pacote, o conteúdo do pacote e seu peso." @@ -3206,7 +3214,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Veja os DocType: Item Attribute Value,Attribute Value,Atributo Valor apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","ID de e-mail deve ser único, já existe para {0}" ,Itemwise Recommended Reorder Level,Itemwise Recomendado nível de reposição -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,Por favor seleccione {0} primeiro +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,Por favor seleccione {0} primeiro DocType: Features Setup,To get Item Group in details table,Para obter Grupo de Itens na tabela de detalhes apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Lote {0} de {1} item expirou. DocType: Sales Invoice,Commission,Comissão @@ -3261,7 +3269,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Obter Circulação Vouchers DocType: Warranty Claim,Resolved By,Resolvido por DocType: Appraisal,Start Date,Data de Início -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Alocar licenças por um período. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Alocar licenças por um período. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Cheques e Depósitos apagada incorretamente apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Clique aqui para verificar apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Conta {0}: Você não pode definir ela mesma como uma conta principal @@ -3281,7 +3289,7 @@ DocType: Employee,Educational Qualification,Qualificação Educacional DocType: Workstation,Operating Costs,Custos Operacionais DocType: Employee Leave Approver,Employee Leave Approver,Licença do Funcionário Aprovada apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} foi adicionada com sucesso à nossa lista Newsletter. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Row {0}: Uma entrada de reabastecimento já existe para este armazém {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Row {0}: Uma entrada de reabastecimento já existe para este armazém {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Não pode declarar como perdido , porque Cotação foi feita." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Compra Mestre Gerente apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Ordem de produção {0} deve ser apresentado @@ -3305,7 +3313,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Fatura de vendas {0} já foi apresentado apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Data de Conclusão DocType: Purchase Invoice Item,Amount (Company Currency),Amount (Moeda Company) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Organização unidade (departamento) mestre. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Organização unidade (departamento) mestre. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,"Por favor, indique nn móveis válidos" DocType: Budget Detail,Budget Detail,Detalhe do Orçamento apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,Por favor introduza a mensagem antes de enviá- @@ -3321,13 +3329,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Recebeu e aceitou ,Serial No Service Contract Expiry,Vencimento do Contrato de Serviço com Nº de Série DocType: Item,Unit of Measure Conversion,Unidade de Conversão de Medida apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Empregado não pode ser alterado -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Você não pode ter débito e crédito na mesma conta +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Você não pode ter débito e crédito na mesma conta DocType: Naming Series,Help HTML,Ajuda HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Weightage total atribuído deve ser de 100 %. É {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Provisão para over-{0} cruzou para item {1} DocType: Address,Name of person or organization that this address belongs to.,Nome da pessoa ou organização a que este endereço pertence. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Seus Fornecedores -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,Não é possível definir como perdida como ordem de venda é feita. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,Não é possível definir como perdida como ordem de venda é feita. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,"Outra estrutura Salário {0} está ativo para empregado {1}. Por favor, faça o seu estatuto ""inativos"" para prosseguir." DocType: Purchase Invoice,Contact,Contato apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Recebido de @@ -3337,11 +3345,11 @@ DocType: Item,Has Serial No,Tem nº de Série DocType: Employee,Date of Issue,Data de Emissão apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: A partir de {0} para {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Row # {0}: Jogo Fornecedor para o item {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Site Imagem {0} anexada ao Item {1} não pode ser encontrado +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Site Imagem {0} anexada ao Item {1} não pode ser encontrado DocType: Issue,Content Type,Tipo de Conteúdo apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Computador DocType: Item,List this Item in multiple groups on the website.,Listar este item em vários grupos no site. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,"Por favor, verifique multi opção de moeda para permitir que contas com outra moeda" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,"Por favor, verifique multi opção de moeda para permitir que contas com outra moeda" apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Item: {0} não existe no sistema apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Você não está autorizado para definir o valor congelado DocType: Payment Reconciliation,Get Unreconciled Entries,Obter Unreconciled Entradas @@ -3351,14 +3359,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,O que isto f DocType: Delivery Note,To Warehouse,Para Almoxarifado apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},A Conta {0} foi inserida mais de uma vez para o ano fiscal {1} ,Average Commission Rate,Taxa de Comissão Média -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'Tem Número Serial' não pode ser confirmado para itens sem controle de estoque +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'Tem Número Serial' não pode ser confirmado para itens sem controle de estoque apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Comparecimento não pode ser marcado para datas futuras DocType: Pricing Rule,Pricing Rule Help,Regra Preços Ajuda DocType: Purchase Taxes and Charges,Account Head,Conta apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Atualize custos adicionais para calcular o custo desembarcado de itens apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,elétrico DocType: Stock Entry,Total Value Difference (Out - In),Diferença Valor Total (Out - In) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Row {0}: Taxa de Câmbio é obrigatória +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Row {0}: Taxa de Câmbio é obrigatória apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},ID do usuário não definido para Funcionário {0} DocType: Stock Entry,Default Source Warehouse,Almoxarifado da origem padrão DocType: Item,Customer Code,Código do Cliente @@ -3377,15 +3385,15 @@ DocType: Notification Control,Sales Invoice Message,Mensagem da Nota Fiscal de V apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Fechando Conta {0} deve ser do tipo de responsabilidade / Patrimônio Líquido DocType: Authorization Rule,Based On,Baseado em DocType: Sales Order Item,Ordered Qty,ordenada Qtde -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Item {0} está desativada +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Item {0} está desativada DocType: Stock Settings,Stock Frozen Upto,Estoque congelado até apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Período Do período Para datas e obrigatórias para os recorrentes {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Atividade / tarefa do projeto. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Gerar Folhas de Pagamento +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Gerar Folhas de Pagamento apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Compra deve ser verificada, se for caso disso nos items selecionados como {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Desconto deve ser inferior a 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Escrever Off Montante (Companhia de moeda) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,"Row # {0}: Por favor, defina a quantidade de reabastecimento" +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,"Row # {0}: Por favor, defina a quantidade de reabastecimento" DocType: Landed Cost Voucher,Landed Cost Voucher,Landed Comprovante Custo apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},Defina {0} DocType: Purchase Invoice,Repeat on Day of Month,Repita no Dia do Mês @@ -3438,7 +3446,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Padrão trabalho no armazém Progresso apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,As configurações padrão para as transações contábeis. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Data prevista não pode ser antes de Material Data do Pedido -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Item {0} deve ser um item de vendas +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Item {0} deve ser um item de vendas DocType: Naming Series,Update Series Number,Atualizar Números de Séries DocType: Account,Equity,equidade DocType: Sales Order,Printing Details,Imprimir detalhes @@ -3490,7 +3498,7 @@ DocType: Task,Review Date,Data da Revisão DocType: Purchase Invoice,Advance Payments,Adiantamentos DocType: Purchase Taxes and Charges,On Net Total,No Total Líquido apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Warehouse de destino na linha {0} deve ser o mesmo que ordem de produção -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Sem permissão para usar ferramenta de pagamento +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Sem permissão para usar ferramenta de pagamento apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,O 'Endereço de Email para Notificação' não foi especificado para %s recorrente apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Moeda não pode ser alterada depois de fazer entradas usando alguma outra moeda DocType: Company,Round Off Account,Termine Conta @@ -3513,7 +3521,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Quantidade do item obtido após a fabricação / reembalagem a partir de determinadas quantidades de matéria-prima DocType: Payment Reconciliation,Receivable / Payable Account,Receber Conta / Payable DocType: Delivery Note Item,Against Sales Order Item,Contra a Ordem de venda do item -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},"Por favor, especifique Atributo Valor para o atributo {0}" +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},"Por favor, especifique Atributo Valor para o atributo {0}" DocType: Item,Default Warehouse,Armazém padrão DocType: Task,Actual End Date (via Time Logs),Data de Encerramento Real (via Registros de Tempo) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Orçamento não pode ser atribuído contra a conta de grupo {0} @@ -3538,10 +3546,10 @@ DocType: Lead,Blog Subscriber,Assinante do Blog apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Criar regras para restringir operações com base em valores. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Se marcado, não total. de dias de trabalho vai incluir férias, e isso vai reduzir o valor de salário por dia" DocType: Purchase Invoice,Total Advance,Antecipação Total -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Processamento de folha de pagamento +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Processamento de folha de pagamento DocType: Opportunity Item,Basic Rate,Taxa Básica DocType: GL Entry,Credit Amount,Total de crédito -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Definir como perdida +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Definir como perdida apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,O pagamento Recibo Nota DocType: Supplier,Credit Days Based On,Dias crédito com base em DocType: Tax Rule,Tax Rule,Regra imposto @@ -3571,7 +3579,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Quantidade Aceita apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} não existe apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Faturas levantdas para Clientes. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Id Projeto -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Nenhuma linha {0}: Valor não pode ser superior a pendência Montante contra Despesa reivindicação {1}. Montante pendente é {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Nenhuma linha {0}: Valor não pode ser superior a pendência Montante contra Despesa reivindicação {1}. Montante pendente é {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} assinantes acrescentados DocType: Maintenance Schedule,Schedule,Agendar DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Definir orçamento para este centro de custo. Para definir a ação orçamento, consulte "Lista de Empresas"" @@ -3632,19 +3640,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS Perfil DocType: Payment Gateway Account,Payment URL Message,Pagamento URL Mensagem apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Sazonalidade para definição de orçamentos, metas etc." -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Row {0}: valor do pagamento não pode ser maior do que a quantidade Outstanding +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Row {0}: valor do pagamento não pode ser maior do que a quantidade Outstanding apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Total de Unpaid -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Tempo Log não é cobrável -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Item {0} é um modelo, por favor selecione uma de suas variantes" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Tempo Log não é cobrável +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Item {0} é um modelo, por favor selecione uma de suas variantes" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Comprador apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Salário líquido não pode ser negativo -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,"Por favor, indique o Contra Vouchers manualmente" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,"Por favor, indique o Contra Vouchers manualmente" DocType: SMS Settings,Static Parameters,Parâmetros estáticos DocType: Purchase Order,Advance Paid,Adiantamento pago DocType: Item,Item Tax,Imposto do Item apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Material a Fornecedor apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Excise Invoice DocType: Expense Claim,Employees Email Id,Endereços de e-mail dos Funcionários +DocType: Employee Attendance Tool,Marked Attendance,Presença marcante apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Passivo Circulante apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Enviar SMS em massa para seus contatos DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Considere Imposto ou Encargo para @@ -3667,7 +3676,7 @@ DocType: Item Attribute,Numeric Values,Os valores numéricos apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Anexar Logo DocType: Customer,Commission Rate,Taxa de Comissão apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Faça Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Bloquear licenças por departamento. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Bloquear licenças por departamento. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,O carrinho está vazio DocType: Production Order,Actual Operating Cost,Custo Operacional Real apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Root não pode ser editado . @@ -3686,7 +3695,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,Criar automaticamente um pedido de material se a quantidade for inferior a este nível ,Item-wise Purchase Register,Item-wise Compra Register DocType: Batch,Expiry Date,Data de validade -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Para definir o nível de reabastecimento, o item deve ser um item de compra ou Manufacturing item" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Para definir o nível de reabastecimento, o item deve ser um item de compra ou Manufacturing item" ,Supplier Addresses and Contacts,Fornecedor Endereços e contatos apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,Por favor seleccione Categoria primeira apps/erpnext/erpnext/config/projects.py +18,Project master.,Cadastro de Projeto. diff --git a/erpnext/translations/pt.csv b/erpnext/translations/pt.csv index 621c5b6189..1a7671ee1d 100644 --- a/erpnext/translations/pt.csv +++ b/erpnext/translations/pt.csv @@ -164,14 +164,14 @@ DocType: Journal Entry Account,Credit in Company Currency,Crédito em Moeda Empr DocType: Delivery Note,Installation Status,Status da instalação apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Aceite + Qty Rejeitada deve ser igual a quantidade recebida por item {0} DocType: Item,Supply Raw Materials for Purchase,Abastecimento de Matérias-Primas para a Compra -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Item {0} deve ser um item de compra +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Item {0} deve ser um item de compra DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Baixe o Template, preencha os dados apropriados e anexe o arquivo modificado. Todas as datas e empregado combinação no período selecionado virá no modelo, com registros de freqüência existentes" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,Item {0} não está ativo ou fim de vida útil foi atingido DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Será atualizado após a factura de venda é submetido. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Para incluir impostos na linha {0} na taxa de Item, os impostos em linhas {1} também deve ser incluída" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Configurações para o Módulo HR +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Para incluir impostos na linha {0} na taxa de Item, os impostos em linhas {1} também deve ser incluída" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Configurações para o Módulo HR DocType: SMS Center,SMS Center,SMS Center DocType: BOM Replace Tool,New BOM,Novo BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Batch Logs Tempo para o faturamento. @@ -199,7 +199,7 @@ DocType: Offer Letter,Select Terms and Conditions,Selecione os Termos e Condiç DocType: Production Planning Tool,Sales Orders,Pedidos de Vendas DocType: Purchase Taxes and Charges,Valuation,Avaliação ,Purchase Order Trends,Ordem de Compra Trends -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Atribuír licença para o ano. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Atribuír licença para o ano. DocType: Earning Type,Earning Type,Ganhando Tipo DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Planejamento de Capacidade Desativar e controle de tempo DocType: Bank Reconciliation,Bank Account,Conta bancária @@ -237,7 +237,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Especificação Site item DocType: Payment Tool,Reference No,Número de referência apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Deixe Bloqueados -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Item {0} chegou ao fim da vida em {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Item {0} chegou ao fim da vida em {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,anual DocType: Stock Reconciliation Item,Stock Reconciliation Item,Da Reconciliação item DocType: Stock Entry,Sales Invoice No,Vendas factura n @@ -249,7 +249,7 @@ DocType: Item,Minimum Order Qty,Qtde mínima DocType: Pricing Rule,Supplier Type,Tipo de fornecedor DocType: Item,Publish in Hub,Publicar em Hub ,Terretory,terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Item {0} é cancelada +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Item {0} é cancelada apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Pedido de material DocType: Bank Reconciliation,Update Clearance Date,Atualize Data Liquidação DocType: Item,Purchase Details,Detalhes de compra @@ -261,11 +261,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Quantidade rejeitado DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Campo disponível na nota de entrega, cotação, nota fiscal de venda, Ordem de vendas" DocType: SMS Settings,SMS Sender Name,Nome do remetente SMS DocType: Contact,Is Primary Contact,É Contato Principal +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Tempo Log foi agrupadas para Faturamento DocType: Notification Control,Notification Control,Controle de Notificação DocType: Lead,Suggestions,Sugestões DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,"Definir item Group-wise orçamentos sobre este território. Você também pode incluir sazonalidade, definindo a distribuição." apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},Digite grupo conta pai para armazém {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Pagamento contra {0} {1} não pode ser maior do que Outstanding Montante {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Pagamento contra {0} {1} não pode ser maior do que Outstanding Montante {2} DocType: Supplier,Address HTML,Endereço HTML DocType: Lead,Mobile No.,Mobile No. DocType: Maintenance Schedule,Generate Schedule,Gerar Agende @@ -282,7 +283,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Sincronizado com o Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Senha Incorreta DocType: Item,Variant Of,Variante de -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Item {0} deve ser item de serviço apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',"Concluído Qtde não pode ser maior do que ""Qtde de Fabricação""" DocType: Period Closing Voucher,Closing Account Head,Fechando Chefe Conta DocType: Employee,External Work History,Histórico Profissional no Exterior @@ -294,10 +294,10 @@ DocType: Newsletter,Newsletter,Boletim informativo DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Notificar por e-mail sobre a criação de Pedido de material automático DocType: Journal Entry,Multi Currency,Multi Moeda DocType: Payment Reconciliation Invoice,Invoice Type,Tipo de Fatura -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Guia de remessa +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Guia de remessa apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Configurando Impostos apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,"Entrada de pagamento foi modificado depois que você puxou-o. Por favor, puxe-o novamente." -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} entrou duas vezes no item Imposto +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} entrou duas vezes no item Imposto apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Resumo para esta semana e atividades pendentes DocType: Workstation,Rent Cost,Kosten huur apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Selecione mês e ano @@ -308,7 +308,7 @@ DocType: Shipping Rule,Valid for Countries,Válido para Países DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Todos os campos exportados tais como, moeda, taxa de conversão, total de exportação, total de exportação final e etc, estão disponíveis no Recibo de compra, Orçamento, factura, ordem de compra e etc." apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,Este artigo é um modelo e não podem ser usados em transações. Atributos item será copiado para as variantes a menos 'No Copy' é definido apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Order Total Considerado -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Designação do empregado (por exemplo, CEO , diretor , etc.)" +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Designação do empregado (por exemplo, CEO , diretor , etc.)" apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,"Por favor, digite 'Repeat no Dia do Mês ' valor do campo" DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,Taxa em que moeda do cliente é convertido para a moeda base de cliente DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Disponível em BOM, nota de entrega , factura de compra , ordem de produção , ordem de compra , Recibo de compra , nota fiscal de venda , ordem de venda , Stock entrada , quadro de horários" @@ -357,7 +357,7 @@ DocType: Workstation,Consumable Cost,verbruiksartikelen Cost apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) deve ter regra 'Aprovar ausência' DocType: Purchase Receipt,Vehicle Date,Veículo Data apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,médico -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Reden voor het verliezen +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Reden voor het verliezen apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},"Workstation é fechado nas seguintes datas, conforme lista do feriado: {0}" apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Oportunidades DocType: Employee,Single,Único @@ -385,14 +385,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Parceiro de Canal DocType: Account,Old Parent,Pai Velho DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,Personalize o texto introdutório que vai como uma parte do que e-mail. Cada transação tem um texto separado introdutório. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Não inclua símbolos (ex. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Gerente de Vendas Mestre apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,As configurações globais para todos os processos de fabricação. DocType: Accounts Settings,Accounts Frozen Upto,Contas congeladas Upto DocType: SMS Log,Sent On,Enviado em -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Atributo {0} selecionada várias vezes na tabela de atributos +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Atributo {0} selecionada várias vezes na tabela de atributos DocType: HR Settings,Employee record is created using selected field. ,Registro de empregado é criado usando o campo selecionado. DocType: Sales Order,Not Applicable,Não Aplicável -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Férias Principais. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Férias Principais. DocType: Material Request Item,Required Date,Data Obrigatória DocType: Delivery Note,Billing Address,Endereço de Cobrança apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,Vul Item Code . @@ -428,7 +429,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,Vul Warehouse waarvoor Materiaal Request zal worden verhoogd DocType: Production Order,Additional Operating Cost,Custo Operacional adicionais apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Cosméticos -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Te fuseren , moeten volgende eigenschappen hetzelfde zijn voor beide posten" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Te fuseren , moeten volgende eigenschappen hetzelfde zijn voor beide posten" DocType: Shipping Rule,Net Weight,Peso Líquido DocType: Employee,Emergency Phone,Emergency Phone ,Serial No Warranty Expiry,Caducidade Não Serial Garantia @@ -486,17 +487,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Faturamento e Entrega Estado apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Repita os clientes DocType: Leave Control Panel,Allocate,Atribuír -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Vendas Retorno +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Vendas Retorno DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Selecione Ordens de venda a partir do qual você deseja criar ordens de produção. DocType: Item,Delivered by Supplier (Drop Ship),Entregue por Fornecedor (Drop Ship) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Componentes salariais. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Componentes salariais. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Banco de dados de clientes potenciais. DocType: Authorization Rule,Customer or Item,Cliente ou Item apps/erpnext/erpnext/config/crm.py +17,Customer database.,Banco de dados do cliente. DocType: Quotation,Quotation To,Orçamento Para DocType: Lead,Middle Income,Rendimento Médio apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Abertura (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Unidade de medida padrão para item {0} não pode ser alterado diretamente porque você já fez alguma transação (s) com outro UOM. Você precisará criar um novo item para usar um UOM padrão diferente. +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Unidade de medida padrão para item {0} não pode ser alterado diretamente porque você já fez alguma transação (s) com outro UOM. Você precisará criar um novo item para usar um UOM padrão diferente. apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Montante atribuído não pode ser negativo DocType: Purchase Order Item,Billed Amt,Faturado Amt DocType: Warehouse,A logical Warehouse against which stock entries are made.,Um armazém lógico contra o qual as entradas em existências são feitas. @@ -515,14 +516,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Vendas Impostos e Taxas DocType: Employee,Organization Profile,Perfil da Organização apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,"Por favor, configure série de numeração para Participação em Configurar> numeração Series" DocType: Employee,Reason for Resignation,Motivo para Demissão -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Modelo para avaliação de desempenho . +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Modelo para avaliação de desempenho . DocType: Payment Reconciliation,Invoice/Journal Entry Details,Invoice / Journal Entry Detalhes apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' não se encontra no ano fiscal de {2} DocType: Buying Settings,Settings for Buying Module,Definições para comprar Module apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,Digite Recibo de compra primeiro DocType: Buying Settings,Supplier Naming By,Fornecedor de nomeação DocType: Activity Type,Default Costing Rate,A taxa de custeio padrão -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Programação de Manutenção +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Programação de Manutenção apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Então Preços Regras são filtradas com base no Cliente, Grupo de Clientes, Território, fornecedor, fornecedor Tipo, Campanha, Parceiro de vendas etc" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Mudança na Net Inventory DocType: Employee,Passport Number,Número do Passaporte @@ -561,7 +562,7 @@ DocType: Purchase Invoice,Quarterly,Trimestral DocType: Selling Settings,Delivery Note Required,Nota de Entrega Obrigatório DocType: Sales Order Item,Basic Rate (Company Currency),Taxa Básica (Moeda Company) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush Matérias-Primas Based On -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,Por favor insira os detalhes do item +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,Por favor insira os detalhes do item DocType: Purchase Receipt,Other Details,Outros detalhes DocType: Account,Accounts,Contas apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,marketing @@ -574,7 +575,7 @@ DocType: Employee,Provide email id registered in company,Fornecer ID e-mail regi DocType: Hub Settings,Seller City,Vendedor Cidade DocType: Email Digest,Next email will be sent on:,Próximo e-mail será enviado em: DocType: Offer Letter Term,Offer Letter Term,Oferecer Carta Term -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Item tem variantes. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Item tem variantes. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Item {0} não foi encontrado DocType: Bin,Stock Value,Valor da apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,boom Type @@ -582,7 +583,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Qtde consumida por unidade DocType: Serial No,Warranty Expiry Date,Data de validade da garantia DocType: Material Request Item,Quantity and Warehouse,Quantidade e Armazém DocType: Sales Invoice,Commission Rate (%),Comissão Taxa (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Contra Comprovante Tipo deve ser um dos Ordem de Vendas, Fatura ou Diário" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Contra Comprovante Tipo deve ser um dos Ordem de Vendas, Fatura ou Diário" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,aeroespaço DocType: Journal Entry,Credit Card Entry,Entrada de cartão de crédito apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Tarefa Assunto @@ -669,10 +670,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,responsabilidade apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Montante Sanctioned não pode ser maior do que na Reivindicação Montante Fila {0}. DocType: Company,Default Cost of Goods Sold Account,Custo padrão de Conta Produtos Vendidos -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Lista de Preço não selecionado +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Lista de Preço não selecionado DocType: Employee,Family Background,Antecedentes familiares DocType: Process Payroll,Send Email,Enviar E-mail -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Aviso: Anexo inválido {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Aviso: Anexo inválido {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Nenhuma permissão DocType: Company,Default Bank Account,Conta Bancária Padrão apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Para filtrar baseado em Festa, selecione Partido Escreva primeiro" @@ -700,7 +701,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Supor DocType: Features Setup,"To enable ""Point of Sale"" features",Para ativar "Point of Sale" recursos DocType: Bin,Moving Average Rate,Movendo Taxa Média DocType: Production Planning Tool,Select Items,Selecione itens -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} contra conta {1} com a data de {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} contra conta {1} com a data de {2} DocType: Maintenance Visit,Completion Status,Status de conclusão DocType: Sales Invoice Item,Target Warehouse,Armazém alvo DocType: Item,Allow over delivery or receipt upto this percent,Permitir sobre a entrega ou recebimento até esta cento @@ -760,7 +761,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Mest apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Incapaz de encontrar entalhe Tempo nos próximos {0} dias para a Operação {1} DocType: Production Order,Plan material for sub-assemblies,Material de Plano de sub-conjuntos apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} deve ser ativo -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,"Por favor, selecione o tipo de documento primeiro" +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,"Por favor, selecione o tipo de documento primeiro" apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Goto carrinho apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Cancelar Materiais Visitas {0} antes de cancelar este Manutenção Visita DocType: Salary Slip,Leave Encashment Amount,Deixe Quantidade cobrança @@ -778,7 +779,7 @@ DocType: Purchase Receipt,Range,Alcance DocType: Supplier,Default Payable Accounts,Contas a Pagar Padrão apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Empregado {0} não está ativo ou não existe DocType: Features Setup,Item Barcode,Código de barras do item -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Variantes item {0} atualizado +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Variantes item {0} atualizado DocType: Quality Inspection Reading,Reading 6,Leitura 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Compra Antecipada Fatura DocType: Address,Shop,Loja @@ -801,7 +802,7 @@ DocType: Salary Slip,Total in words,Total em palavras DocType: Material Request Item,Lead Time Date,Chumbo Data Hora apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,é mandatório. Talvez recorde de câmbios não é criado para apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Row # {0}: Favor especificar Sem Serial para item {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Para os itens 'pacote de produtos ", Armazém, Serial e não há Batch Não será considerada a partir do' Packing List 'tabela. Se Warehouse e Batch Não são as mesmas para todos os itens de embalagem para qualquer item de 'Bundle Produto', esses valores podem ser inseridos na tabela do item principal, os valores serão copiados para 'Packing List' tabela." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Para os itens 'pacote de produtos ", Armazém, Serial e não há Batch Não será considerada a partir do' Packing List 'tabela. Se Warehouse e Batch Não são as mesmas para todos os itens de embalagem para qualquer item de 'Bundle Produto', esses valores podem ser inseridos na tabela do item principal, os valores serão copiados para 'Packing List' tabela." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Os embarques para os clientes. DocType: Purchase Invoice Item,Purchase Order Item,Comprar item Ordem apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Resultado indirecto @@ -822,6 +823,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Selecione Payroll ano e m apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Vá para o grupo apropriado (geralmente Aplicação de Fundos> Ativo Circulante> Contas Bancárias e criar uma nova conta (clicando em Adicionar filho) do tipo "Banco" DocType: Workstation,Electricity Cost,elektriciteitskosten DocType: HR Settings,Don't send Employee Birthday Reminders,Stuur geen Werknemer verjaardagsherinneringen +,Employee Holiday Attendance,Presença de férias do empregado DocType: Opportunity,Walk In,Entrar apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Entradas de Stock DocType: Item,Inspection Criteria,Critérios de inspeção @@ -844,7 +846,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,O DocType: Journal Entry Account,Expense Claim,Relatório de Despesas apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Qtde para {0} DocType: Leave Application,Leave Application,Deixe Aplicação -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Deixe Ferramenta de Alocação +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Deixe Ferramenta de Alocação DocType: Leave Block List,Leave Block List Dates,Deixe as datas Lista de Bloqueios DocType: Company,If Monthly Budget Exceeded (for expense account),Se orçamento mensal excedido (por conta de despesas) DocType: Workstation,Net Hour Rate,Net Hour Taxa @@ -854,7 +856,7 @@ DocType: Packing Slip Item,Packing Slip Item,Embalagem item deslizamento DocType: POS Profile,Cash/Bank Account,Caixa / Banco Conta apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Itens removidos sem nenhuma alteração na quantidade ou valor. DocType: Delivery Note,Delivery To,Entrega -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Tabela de atributo é obrigatório +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Tabela de atributo é obrigatório DocType: Production Planning Tool,Get Sales Orders,Obter Ordem de Vendas apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} não pode ser negativo apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Desconto @@ -918,7 +920,7 @@ DocType: SMS Center,Total Characters,Total de Personagens apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},"Por favor, selecione no campo BOM BOM por item {0}" DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-Form Detalhe Fatura DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Reconciliação O pagamento da fatura -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Contribuição% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Contribuição% DocType: Item,website page link,link da página site DocType: Company,Company registration numbers for your reference. Tax numbers etc.,"Números da empresa de registro para sua referência. Números fiscais, etc" DocType: Sales Partner,Distributor,Distribuidor @@ -960,10 +962,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM Fator de Conversão DocType: Stock Settings,Default Item Group,Grupo Item padrão apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Banco de dados de fornecedores. DocType: Account,Balance Sheet,Balanço -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Centro de custo para item com o Código do item ' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Centro de custo para item com o Código do item ' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,Seu vendedor receberá um lembrete sobre esta data para contato com o cliente apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Outras contas podem ser feitas em grupos, mas as entradas podem ser feitas contra os não-Groups" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Fiscais e deduções salariais outros. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Fiscais e deduções salariais outros. DocType: Lead,Lead,Conduzir DocType: Email Digest,Payables,Contas a pagar DocType: Account,Warehouse,Armazém @@ -980,10 +982,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Unreconciled Detalh DocType: Global Defaults,Current Fiscal Year,Atual Exercício DocType: Global Defaults,Disable Rounded Total,Desativar total arredondado DocType: Lead,Call,Chamar -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,' Entradas ' não pode estar vazio +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,' Entradas ' não pode estar vazio apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Linha duplicada {0} com o mesmo {1} ,Trial Balance,Balancete -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Configurando Empregados +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Configurando Empregados apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","Grid """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,Por favor seleccione prefixo primeiro apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,pesquisa @@ -992,7 +994,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,ID de utilizador apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Ver Diário apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Mais Cedo -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Um grupo de itens existe com o mesmo nome, por favor, mude o nome do item ou mudar o nome do grupo de itens" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Um grupo de itens existe com o mesmo nome, por favor, mude o nome do item ou mudar o nome do grupo de itens" DocType: Production Order,Manufacture against Sales Order,Fabricação contra a Ordem de Vendas apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Resto do mundo apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,O item {0} não pode ter Batch @@ -1017,7 +1019,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Armazém rejeitado DocType: GL Entry,Against Voucher,Contra Vale DocType: Item,Default Buying Cost Center,Compra Centro de Custo Padrão apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Para tirar o melhor proveito de ERPNext, recomendamos que você levar algum tempo e assistir a esses vídeos de ajuda." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Item {0} deve ser item de vendas +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Item {0} deve ser item de vendas apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,para DocType: Item,Lead Time in days,Tempo de entrega em dias ,Accounts Payable Summary,Resumo das Contas a Pagar @@ -1043,7 +1045,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Agricultura apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Uw producten of diensten DocType: Mode of Payment,Mode of Payment,Modo de Pagamento -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Site de imagem deve ser um arquivo público ou URL do site +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Site de imagem deve ser um arquivo público ou URL do site apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,Dit is een hoofditem groep en kan niet worden bewerkt . DocType: Journal Entry Account,Purchase Order,Ordem de Compra DocType: Warehouse,Warehouse Contact Info,Armazém Informações de Contato @@ -1054,7 +1056,7 @@ DocType: Serial No,Serial No Details,Serial Detalhes Nenhum DocType: Purchase Invoice Item,Item Tax Rate,Taxa de Imposto item apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","Por {0}, apenas as contas de crédito pode ser ligado contra outro lançamento de débito" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Entrega Nota {0} não é submetido -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Item {0} deve ser um item do sub- contratados +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Item {0} deve ser um item do sub- contratados apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Equipamentos Capitais apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Regra de Preços é o primeiro selecionado com base em ""Aplicar On 'campo, que pode ser Item, item de grupo ou Marca." DocType: Hub Settings,Seller Website,Vendedor Site @@ -1063,7 +1065,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Meta DocType: Sales Invoice Item,Edit Description,Editar Descrição apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Data de entrega esperada é menor do que o planejado Data de Início. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,voor Leverancier +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,voor Leverancier DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Tipo de conta Definir ajuda na seleção desta conta em transações. DocType: Purchase Invoice,Grand Total (Company Currency),Grande Total (moeda da empresa) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Sainte total @@ -1115,7 +1117,6 @@ DocType: Authorization Rule,Average Discount,Desconto médio DocType: Address,Utilities,Utilitários DocType: Purchase Invoice Item,Accounting,Contabilidade DocType: Features Setup,Features Setup,Configuração características -DocType: Item,Is Service Item,É item de serviço apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Período de aplicação não pode ser período de atribuição de licença fora DocType: Activity Cost,Projects,Projetos apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,Por favor seleccione o Ano Fiscal @@ -1136,7 +1137,7 @@ DocType: Item,Maintain Stock,Manter da apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Banco de entradas já criadas para ordem de produção apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Alteração Líquida da Imobilização DocType: Leave Control Panel,Leave blank if considered for all designations,Deixe em branco se considerado para todas as designações -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Charge do tipo ' real ' na linha {0} não pode ser incluído no item Taxa +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Charge do tipo ' real ' na linha {0} não pode ser incluído no item Taxa apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,A partir de data e hora DocType: Email Digest,For Company,Para a Empresa @@ -1145,8 +1146,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Endereço para envio Nome apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Plano de Contas DocType: Material Request,Terms and Conditions Content,Termos e Condições conteúdo -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,não pode ser maior do que 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Item {0} não é um item de estoque +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,não pode ser maior do que 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Item {0} não é um item de estoque DocType: Maintenance Visit,Unscheduled,Sem marcação DocType: Employee,Owned,Possuído DocType: Salary Slip Deduction,Depends on Leave Without Pay,Depende de licença sem vencimento @@ -1168,7 +1169,7 @@ Used for Taxes and Charges","Detalhe da tabela de imposto obtido a partir mestre apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Empregado não pode denunciar a si mesmo. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Als de account wordt gepauzeerd, blijven inzendingen mogen gebruikers met beperkte rechten ." DocType: Email Digest,Bank Balance,Saldo bancário -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Contabilidade de entrada para {0}: {1} só pode ser feito em moeda: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Contabilidade de entrada para {0}: {1} só pode ser feito em moeda: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Sem Estrutura salarial para o empregado ativo encontrado {0} eo mês DocType: Job Opening,"Job profile, qualifications required etc.","Perfil, qualificações exigidas , etc" DocType: Journal Entry Account,Account Balance,Saldo da Conta @@ -1185,7 +1186,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Sub Assemblé DocType: Shipping Rule Condition,To Value,Ao Valor DocType: Supplier,Stock Manager,Da Gerente apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Origem do Warehouse é obrigatória para a linha {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Embalagem deslizamento +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Embalagem deslizamento apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,alugar escritório apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Configurações de gateway SMS Setup apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Import mislukt! @@ -1229,7 +1230,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM nenhum detalhe DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Montante desconto adicional (moeda da empresa) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Erro: {0} > {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,"Por favor, crie uma nova conta do Plano de Contas ." -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Visita de manutenção +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Visita de manutenção apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Cliente> Grupo Cliente> Território DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Lote disponível Qtde no Warehouse DocType: Time Log Batch Detail,Time Log Batch Detail,Tempo Log Detail Batch @@ -1238,7 +1239,7 @@ DocType: Leave Block List,Block Holidays on important days.,Bloco Feriados em di ,Accounts Receivable Summary,Resumo das Contas a Receber apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,"Por favor, defina o campo ID do usuário em um registro de empregado para definir Função Funcionário" DocType: UOM,UOM Name,Nome UOM -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Contribuição Montante +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Contribuição Montante DocType: Sales Invoice,Shipping Address,Endereço para envio DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,Esta ferramenta ajuda você a atualizar ou corrigir a quantidade ea valorização das ações no sistema. Ele é geralmente usado para sincronizar os valores do sistema e que realmente existe em seus armazéns. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,Em Palavras será visível quando você salvar a Nota de Entrega. @@ -1279,7 +1280,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Para rastrear itens usando código de barras. Você será capaz de inserir itens na nota de entrega e nota fiscal de venda pela digitalização de código de barras do item. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Pagamento reenviar Email DocType: Dependent Task,Dependent Task,Tarefa dependente -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Fator de conversão de unidade de medida padrão deve ser 1 na linha {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Fator de conversão de unidade de medida padrão deve ser 1 na linha {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Deixar do tipo {0} não pode ser maior que {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Tente planear operações para X dias de antecedência. DocType: HR Settings,Stop Birthday Reminders,Stop verjaardagsherinneringen @@ -1289,7 +1290,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Vista apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Mudança líquida em dinheiro DocType: Salary Structure Deduction,Salary Structure Deduction,Dedução Estrutura Salarial -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Unidade de Medida {0} foi inserido mais de uma vez na Tabela de Conversão de Fator +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Unidade de Medida {0} foi inserido mais de uma vez na Tabela de Conversão de Fator apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Pedido de Pagamento já existe {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Custo de itens emitidos apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Quantidade não deve ser mais do que {0} @@ -1318,7 +1319,7 @@ DocType: BOM Item,BOM Item,Item BOM DocType: Appraisal,For Employee,Para Empregado apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Row {0}: Avanço contra o Fornecedor deve ser debitar DocType: Company,Default Values,Valores Padrão -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Row {0}: Valor do pagamento não pode ser negativo +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Row {0}: Valor do pagamento não pode ser negativo DocType: Expense Claim,Total Amount Reimbursed,Montante total reembolsado apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Contra Fatura de Fornecedor {0} {1} datada DocType: Customer,Default Price List,Lista de Preços padrão @@ -1346,8 +1347,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Rec DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Substituir um especial BOM em todas as outras listas de materiais em que é utilizado. Ele irá substituir o antigo link BOM, atualizar o custo e regenerar ""BOM Explosão item"" mesa como por nova BOM" DocType: Shopping Cart Settings,Enable Shopping Cart,Ativar Carrinho DocType: Employee,Permanent Address,Endereço permanente -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Item {0} deve ser um item de serviço . -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Adiantamento pago contra {0} {1} não pode ser maior \ do total geral {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Por favor seleccione código do item DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Reduzir Dedução por licença sem vencimento (LWP) @@ -1403,12 +1403,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,principal apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Variante DocType: Naming Series,Set prefix for numbering series on your transactions,Definir prefixo para numeração de série em suas transações +DocType: Employee Attendance Tool,Employees HTML,Funcionários HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Parado ordem não pode ser cancelado. Desentupir para cancelar. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,BOM padrão ({0}) deve estar ativo para este item ou o seu modelo +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,BOM padrão ({0}) deve estar ativo para este item ou o seu modelo DocType: Employee,Leave Encashed?,Deixe cobradas? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Oportunidade De O campo é obrigatório DocType: Item,Variants,Variantes -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Maak Bestelling +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Maak Bestelling DocType: SMS Center,Send To,Enviar para apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Não há o suficiente equilíbrio pela licença Tipo {0} DocType: Payment Reconciliation Payment,Allocated amount,Montante atribuído @@ -1509,7 +1510,7 @@ DocType: Sales Person,Name and Employee ID,Nome e identificação do funcionári apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,Due Date não pode ser antes de Postar Data DocType: Website Item Group,Website Item Group,Grupo Item site apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Impostos e Contribuições -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,"Por favor, indique data de referência" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,"Por favor, indique data de referência" apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Gateway de Pagamento de Conta não está configurado apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} entradas de pagamento não podem ser filtrados por {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,Tabela para o item que será mostrado no Web Site @@ -1530,7 +1531,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Detalhes de Resolução DocType: Quality Inspection Reading,Acceptance Criteria,Critérios de Aceitação DocType: Item Attribute,Attribute Name,Nome do atributo -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Item {0} deve ser de Vendas ou Atendimento item em {1} DocType: Item Group,Show In Website,Mostrar No Site apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Grupo DocType: Task,Expected Time (in hours),Tempo esperado (em horas) @@ -1562,7 +1562,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Valor do transporte ,Pending Amount,In afwachting van Bedrag DocType: Purchase Invoice Item,Conversion Factor,Fator de Conversão DocType: Purchase Order,Delivered,Entregue -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Configuração do servidor de entrada para os trabalhos de identificação do email . ( por exemplo jobs@example.com ) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Configuração do servidor de entrada para os trabalhos de identificação do email . ( por exemplo jobs@example.com ) DocType: Purchase Receipt,Vehicle Number,Número de veículos DocType: Purchase Invoice,The date on which recurring invoice will be stop,A data em que fatura recorrente será parar apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Total de folhas alocados {0} não pode ser menos do que as folhas já aprovados {1} para o período @@ -1579,7 +1579,7 @@ DocType: HR Settings,HR Settings,Configurações RH apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Declaratie is in afwachting van goedkeuring . Alleen de Expense Approver kan status bijwerken . DocType: Purchase Invoice,Additional Discount Amount,Montante desconto adicional DocType: Leave Block List Allow,Leave Block List Allow,Deixe Lista de Bloqueios Permitir -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abbr não pode estar em branco ou espaço +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abbr não pode estar em branco ou espaço apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Grupo de Não-Grupo apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,esportes apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Total real @@ -1603,7 +1603,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},UOM fator de conversão é necessária na linha {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Apuramento data não pode ser anterior à data de verificação na linha {0} DocType: Salary Slip,Deduction,Dedução -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Item Preço adicionada para {0} na lista de preços {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Item Preço adicionada para {0} na lista de preços {1} DocType: Address Template,Address Template,Modelo de endereço apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,Digite Employee Id desta pessoa de vendas DocType: Territory,Classification of Customers by region,Classificação dos clientes por região @@ -1620,7 +1620,7 @@ DocType: Employee,Date of Birth,Data de Nascimento apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Item {0} já foi devolvido DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** Ano Fiscal ** representa um exercício financeiro. Todos os lançamentos contábeis e outras transações principais são rastreadas contra ** Ano Fiscal **. DocType: Opportunity,Customer / Lead Address,Klant / Lead Adres -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Aviso: certificado SSL inválido no anexo {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Aviso: certificado SSL inválido no anexo {0} DocType: Production Order Operation,Actual Operation Time,Actual Tempo Operação DocType: Authorization Rule,Applicable To (User),Para aplicável (Utilizador) DocType: Purchase Taxes and Charges,Deduct,Subtrair @@ -1637,7 +1637,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Nota de Entrega dividir em pacotes. apps/erpnext/erpnext/hooks.py +69,Shipments,Os embarques DocType: Purchase Order Item,To be delivered to customer,Para ser entregue ao cliente -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Tempo Log Estado devem ser apresentadas. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Tempo Log Estado devem ser apresentadas. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,O Serial No {0} não pertence a nenhum Warehouse apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Row # DocType: Purchase Invoice,In Words (Company Currency),In Words (Moeda Company) @@ -1654,7 +1654,7 @@ DocType: Leave Application,Total Leave Days,Total de dias de férias DocType: Email Digest,Note: Email will not be sent to disabled users,Nota: e-mail não será enviado para utilizadores com deficiência apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Selecione Empresa ... DocType: Leave Control Panel,Leave blank if considered for all departments,Deixe em branco se considerado para todos os departamentos -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Tipos de emprego ( permanente , contrato, etc estagiário ) ." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Tipos de emprego ( permanente , contrato, etc estagiário ) ." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} é obrigatório para item {1} DocType: Currency Exchange,From Currency,De Moeda apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Por favor, selecione montante atribuído, tipo de fatura e número da fatura em pelo menos uma fileira" @@ -1673,7 +1673,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,Em Processo DocType: Authorization Rule,Itemwise Discount,Desconto Itemwise DocType: Purchase Order Item,Reference Document Type,Referência Tipo de Documento -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} contra a Ordem de Vendas {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} contra a Ordem de Vendas {1} DocType: Account,Fixed Asset,Activos Fixos apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Inventário Serialized DocType: Activity Type,Default Billing Rate,Faturamento Taxa de Inadimplência @@ -1683,7 +1683,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Pedido de Vendas para pagamento DocType: Expense Claim Detail,Expense Claim Detail,Detalhe de Despesas apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Time Logs criado: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,"Por favor, selecione conta correta" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,"Por favor, selecione conta correta" DocType: Item,Weight UOM,Peso UOM DocType: Employee,Blood Group,Grupo sanguíneo DocType: Purchase Invoice Item,Page Break,Quebra de página @@ -1718,7 +1718,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM recursão: {0} não pode ser pai ou filho de {2} DocType: Production Order Operation,Completed Qty,Concluído Qtde apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","Por {0}, apenas as contas de débito pode ser ligado contra outra entrada crédito" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Preço de {0} está desativado +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Preço de {0} está desativado DocType: Manufacturing Settings,Allow Overtime,Permitir Overtime apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} números de série necessários para item {1}. Forneceu {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Avaliação actual Taxa @@ -1769,7 +1769,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Nenh apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Zaak nr. mag geen 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,Se você tiver Equipe de Vendas e Parceiros de Venda (Parceiros de Canal) podem ser marcadas e manter sua contribuição na atividade de vendas DocType: Item,Show a slideshow at the top of the page,Ver uma apresentação de slides no topo da página -DocType: Item,"Allow in Sales Order of type ""Service""",Permitir na Ordem de venda do tipo "Serviço" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Lojas DocType: Time Log,Projects Manager,Gerente de Projetos DocType: Serial No,Delivery Time,Prazo de entrega @@ -1784,6 +1783,7 @@ DocType: Rename Tool,Rename Tool,Renomear Ferramenta apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Kosten bijwerken DocType: Item Reorder,Item Reorder,Item Reordenar apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Transfer Materiaal +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Item {0} deve ser um item de vendas em {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Geef de operaties , operationele kosten en geven een unieke operatie niet aan uw activiteiten ." DocType: Purchase Invoice,Price List Currency,Moeda da Lista de Preços DocType: Naming Series,User must always select,O usuário deve sempre escolher @@ -1804,7 +1804,7 @@ DocType: Appraisal,Employee,Empregado apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Importar e-mail do apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Convidar como Usuário DocType: Features Setup,After Sale Installations,Após instalações Venda -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} está totalmente faturado +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} está totalmente faturado DocType: Workstation Working Hour,End Time,End Time apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Termos do contrato padrão para vendas ou compra. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Grupo pela Vale @@ -1830,7 +1830,7 @@ DocType: Upload Attendance,Attendance To Date,Atendimento para a data apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Configuração do servidor de entrada de e-mail id vendas. ( por exemplo sales@example.com ) DocType: Warranty Claim,Raised By,Levantadas por DocType: Payment Gateway Account,Payment Account,Conta de Pagamento -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,"Por favor, especifique Empresa proceder" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,"Por favor, especifique Empresa proceder" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Variação Líquida em Contas a Receber apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,compensatória Off DocType: Quality Inspection Reading,Accepted,Aceite @@ -1842,14 +1842,14 @@ DocType: Shipping Rule,Shipping Rule Label,Regra envio Rótulo apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Matérias-primas não pode ficar em branco. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Não foi possível atualizar estoque, fatura contém gota artigo do transporte." DocType: Newsletter,Test,Teste -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Como existem transações com ações existentes para este item, \ não é possível alterar os valores de 'não tem Serial', 'Tem Lote n', 'é Stock item "e" Método de avaliação'" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Breve Journal Entry apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,U kunt geen koers veranderen als BOM agianst een item genoemd DocType: Employee,Previous Work Experience,Experiência anterior de trabalho DocType: Stock Entry,For Quantity,Para Quantidade apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},"Por favor, indique Planned Qt para item {0} na linha {1}" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} não foi submetido +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} não foi submetido apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Os pedidos de itens. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Ordem de produção separado será criado para cada item acabado. DocType: Purchase Invoice,Terms and Conditions1,Termos e Conditions1 @@ -1874,6 +1874,7 @@ DocType: Notification Control,Expense Claim Approved Message,Relatório de Despe DocType: Email Digest,How frequently?,Com que frequência? DocType: Purchase Receipt,Get Current Stock,Obter stock atual apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Árvore da Bill of Materials +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Mark Present apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Manutenção data de início não pode ser anterior à data de entrega para Serial Não {0} DocType: Production Order,Actual End Date,Data final Atual DocType: Authorization Rule,Applicable To (Role),Aplicável a (Função) @@ -1888,7 +1889,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Data Contrato Final deve ser maior que Data de Participar DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,Um distribuidor de terceiros / revendedor / comissão do agente / filial / revendedor que vende os produtos de empresas de uma comissão. DocType: Customer Group,Has Child Node,Tem nó filho -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} contra a Ordem de Compra {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} contra a Ordem de Compra {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Digite os parâmetros URL estática aqui (por exemplo remetente = ERPNext, username = ERPNext, password = 1234, etc)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} não em qualquer ano fiscal ativa. Para mais detalhes consulte {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Este é um exemplo website auto- gerada a partir ERPNext @@ -1936,7 +1937,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Adicionar ou deduzir: Se você quer adicionar ou deduzir o imposto." DocType: Purchase Receipt Item,Recd Quantity,Quantidade RECD apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Não é possível produzir mais item {0} do que a quantidade Ordem de Vendas {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Da entrada {0} não é apresentado +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Da entrada {0} não é apresentado DocType: Payment Reconciliation,Bank / Cash Account,Banco / Conta Caixa DocType: Tax Rule,Billing City,Faturamento Cidade DocType: Global Defaults,Hide Currency Symbol,Ocultar Símbolo de Moeda @@ -1962,7 +1963,7 @@ DocType: Salary Structure,Total Earning,Ganhar total DocType: Purchase Receipt,Time at which materials were received,Momento em que os materiais foram recebidos apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Os meus endereços DocType: Stock Ledger Entry,Outgoing Rate,Taxa de saída -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Mestre Organização ramo . +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Mestre Organização ramo . apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,ou DocType: Sales Order,Billing Status,Estado de faturamento apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Despesas de Utilidade @@ -2000,7 +2001,7 @@ DocType: Bin,Reserved Quantity,Quantidade reservados DocType: Landed Cost Voucher,Purchase Receipt Items,Comprar Itens Recibo apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Formas de personalização DocType: Account,Income Account,Conta Renda -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Entrega +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Entrega DocType: Stock Reconciliation Item,Current Qty,Qtde atual DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",Consulte "taxa de materiais baseados em" no Custeio Seção DocType: Appraisal Goal,Key Responsibility Area,Responsabilidade de Área chave @@ -2012,9 +2013,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,vou DocType: Notification Control,Purchase Order Message,Mensagem comprar Ordem DocType: Tax Rule,Shipping Country,O envio País DocType: Upload Attendance,Upload HTML,Carregar HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","Antecedência Total ({0}) contra a Ordem {1} não pode ser maior do que o Grand \ - Total ({2})" DocType: Employee,Relieving Date,Aliviar Data apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Regra de preços é feita para substituir Lista de Preços / define percentual de desconto, com base em alguns critérios." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Magazijn kan alleen via Stock Entry / Delivery Note / Kwitantie worden veranderd @@ -2024,8 +2022,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Impos apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Se regra de preços selecionado é feita por 'preço', ele irá substituir Lista de Preços. Preço regra de preço é o preço final, de forma que nenhum desconto adicional deve ser aplicada. Assim, em operações como a Ordem de Vendas, Ordem de Compra etc, será buscado no campo ""taxa"", ao invés de campo ""Lista de Preços Rate '." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Trilha leva por setor Type. DocType: Item Supplier,Item Supplier,Fornecedor item -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,Vul de artikelcode voor batch niet krijgen -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},Por favor seleccione um valor para {0} {1} quotation_to +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,Vul de artikelcode voor batch niet krijgen +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},Por favor seleccione um valor para {0} {1} quotation_to apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Todos os endereços. DocType: Company,Stock Settings,Configurações da apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","A fusão só é possível se seguintes propriedades são as mesmas em ambos os registros. É Group, tipo de raiz, Company" @@ -2048,7 +2046,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Número de cheques DocType: Payment Tool Detail,Payment Tool Detail,Detalhe ferramenta de pagamento ,Sales Browser,Navegador Vendas DocType: Journal Entry,Total Credit,Crédito Total -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Aviso: Outra {0} # {1} existe contra entrada de material {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Aviso: Outra {0} # {1} existe contra entrada de material {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,local apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Empréstimos e Adiantamentos (Ativo ) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Devedores @@ -2068,8 +2066,8 @@ DocType: Price List,Price List Master,Lista de Preços Principal DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,Todas as transações de vendas pode ser marcado contra várias pessoas das vendas ** ** para que você pode definir e monitorar as metas. ,S.O. No.,S.O. Nee. DocType: Production Order Operation,Make Time Log,Make Time Log -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,"Por favor, defina a quantidade de reabastecimento" -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},"Por favor, crie Cliente de chumbo {0}" +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,"Por favor, defina a quantidade de reabastecimento" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},"Por favor, crie Cliente de chumbo {0}" DocType: Price List,Applicable for Countries,Aplicável para os Países apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,informática apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,Dit is een wortel klantgroep en kan niet worden bewerkt . @@ -2117,7 +2115,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Fatura DocType: Payment Reconciliation Invoice,Outstanding Amount,Saldo em aberto DocType: Project Task,Working,Trabalhando DocType: Stock Ledger Entry,Stock Queue (FIFO),Da fila (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Por favor seleccione Tempo Logs. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Por favor seleccione Tempo Logs. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} não pertence à empresa {1} DocType: Account,Round Off,Termine ,Requested Qty,verzocht Aantal @@ -2155,7 +2153,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Obter entradas relevantes apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Entrada de Contabilidade da DocType: Sales Invoice,Sales Team1,Vendas team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Item {0} não existe +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Item {0} não existe DocType: Sales Invoice,Customer Address,Endereço do cliente DocType: Payment Request,Recipient and Message,Destinatário ea mensagem DocType: Purchase Invoice,Apply Additional Discount On,Aplicar desconto adicional em @@ -2174,7 +2172,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Mudo Email apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Alimentos, Bebidas e Tabaco" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL of BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Só pode fazer o pagamento contra a faturar {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Só pode fazer o pagamento contra a faturar {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Taxa de comissão não pode ser maior do que 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Nível Mínimo Inventory DocType: Stock Entry,Subcontract,Subcontratar @@ -2192,9 +2190,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Software apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Cor DocType: Maintenance Visit,Scheduled,Programado apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Por favor, selecione o item em que "é o estoque item" é "Não" e "é o item Vendas" é "Sim" e não há nenhum outro pacote de produtos" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Avanço total ({0}) contra Pedido {1} não pode ser maior do que o total geral ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Selecione distribuição mensal para distribuir desigualmente alvos através meses. DocType: Purchase Invoice Item,Valuation Rate,Taxa de valorização -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Não foi indicada uma Moeda para a Lista de Preços +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Não foi indicada uma Moeda para a Lista de Preços apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,Row item {0}: Recibo de compra {1} não existe em cima da tabela 'recibos de compra' apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Empregado {0} já solicitou {1} {2} entre e {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Data de início do projeto @@ -2206,6 +2205,7 @@ DocType: Quality Inspection,Inspection Type,Tipo de Inspeção apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},Por favor seleccione {0} DocType: C-Form,C-Form No,C-Forma Não DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,Presença Unmarked apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,investigador apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,"Por favor, salve o Boletim informativo antes de enviar" apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Nome ou E-mail é obrigatório @@ -2231,7 +2231,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Confirm DocType: Payment Gateway,Gateway,Porta de entrada apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Fornecedor> Fornecedor Tipo apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,"Por favor, indique data alívio ." -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,"Só Deixar Aplicações com status ""Aprovado"" podem ser submetidos" apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,O título do Endereço é obrigatório. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,Digite o nome da campanha se fonte de pesquisa é a campanha @@ -2246,10 +2246,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Armazém Aceite DocType: Bank Reconciliation Detail,Posting Date,Data da Publicação DocType: Item,Valuation Method,Método de Avaliação apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Incapaz de encontrar a taxa de câmbio para {0} para {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Mark Meio Dia DocType: Sales Invoice,Sales Team,Equipe de Vendas apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,duplicar entrada DocType: Serial No,Under Warranty,Sob Garantia -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Erro] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Erro] DocType: Sales Order,In Words will be visible once you save the Sales Order.,Em Palavras será visível quando você salvar a Ordem de Vendas. ,Employee Birthday,Aniversário empregado apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Capital de Risco @@ -2272,6 +2273,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,Centro de custo com as operações existentes não podem ser convertidos em grupo DocType: Account,Depreciation,depreciação apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Fornecedor (s) +DocType: Employee Attendance Tool,Employee Attendance Tool,Ferramenta de comparecimento do empregado DocType: Supplier,Credit Limit,Limite de Crédito apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Selecione o tipo de transação DocType: GL Entry,Voucher No,Vale No. @@ -2298,7 +2300,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Conta root não pode ser excluído ,Is Primary Address,É primário Endereço DocType: Production Order,Work-in-Progress Warehouse,Armazém Work-in-Progress -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Referência # {0} {1} datado +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Referência # {0} {1} datado apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Gerenciar endereços DocType: Pricing Rule,Item Code,Código do artigo DocType: Production Planning Tool,Create Production Orders,Criar ordens de produção @@ -2325,7 +2327,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Banco Reconciliação apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Obter atualizações apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Pedido de material {0} é cancelado ou interrompido apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Adicione alguns registros de exemplo -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Deixar de Gestão +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Deixar de Gestão apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Grupo por Conta DocType: Sales Order,Fully Delivered,Totalmente entregue DocType: Lead,Lower Income,Baixa Renda @@ -2340,6 +2342,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','A Data de ' deve ser depois de ' Para Data ' ,Stock Projected Qty,Verwachte voorraad Aantal apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Cliente {0} não pertence ao projeto {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Presença marcante HTML DocType: Sales Order,Customer's Purchase Order,Ordem de Compra do Cliente DocType: Warranty Claim,From Company,Da Empresa apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Valor ou Quantidade @@ -2404,6 +2407,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,por transferência bancária apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,Por favor seleccione Conta Bancária DocType: Newsletter,Create and Send Newsletters,Criar e enviar Newsletters +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Confira tudo DocType: Sales Order,Recurring Order,Ordem Recorrente DocType: Company,Default Income Account,Conta Rendimento padrão apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Customer Group / Klantenservice @@ -2435,6 +2439,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Regresso contra factur DocType: Item,Warranty Period (in days),Período de Garantia (em dias) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Caixa Líquido de Operações apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,por exemplo IVA +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Presença Mark empregado em massa apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Item 4 DocType: Journal Entry Account,Journal Entry Account,Conta Diário de entrada DocType: Shopping Cart Settings,Quotation Series,Cotação Series @@ -2580,14 +2585,14 @@ DocType: Task,Actual Start Date (via Time Logs),Data de início real (via Time L DocType: Stock Reconciliation Item,Before reconciliation,Antes de reconciliação apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Para {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Impostos e taxas Adicionado (Moeda Company) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Item Imposto Row {0} deve ter em conta tipo de imposto ou de renda ou de despesa ou carregável +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Item Imposto Row {0} deve ter em conta tipo de imposto ou de renda ou de despesa ou carregável DocType: Sales Order,Partly Billed,Parcialmente faturado DocType: Item,Default BOM,BOM padrão apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,"Por favor, re-tipo o nome da empresa para confirmar" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Total de Outstanding Amt DocType: Time Log Batch,Total Hours,Total de Horas DocType: Journal Entry,Printing Settings,Configurações de impressão -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Débito total deve ser igual ao total de crédito. +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Débito total deve ser igual ao total de crédito. apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,automotivo apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,De Nota de Entrega DocType: Time Log,From Time,From Time @@ -2634,7 +2639,7 @@ DocType: Purchase Invoice Item,Image View,Ver imagem DocType: Issue,Opening Time,Tempo de abertura apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,De e datas necessárias apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Valores Mobiliários e Bolsas de Mercadorias -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Unidade de medida padrão para a variante '{0}' deve ser o mesmo que no modelo '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Unidade de medida padrão para a variante '{0}' deve ser o mesmo que no modelo '{1}' DocType: Shipping Rule,Calculate Based On,Calcule Baseado em DocType: Delivery Note Item,From Warehouse,Do Armazém DocType: Purchase Taxes and Charges,Valuation and Total,Avaliação e Total @@ -2656,7 +2661,7 @@ DocType: Leave Application,Follow via Email,Enviar por e-mail DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Total de Impostos Depois Montante do Desconto apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Conta Criança existe para esta conta. Você não pode excluir esta conta. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Valores de Qtd Alvo ou montante alvo são obrigatórios -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},No BOM padrão existe para item {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},No BOM padrão existe para item {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,"Por favor, selecione Data de lançamento primeiro" apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Abrindo data deve ser antes da Data de Fechamento DocType: Leave Control Panel,Carry Forward,Transportar @@ -2734,7 +2739,7 @@ DocType: Leave Type,Is Encash,É cobrar DocType: Purchase Invoice,Mobile No,No móvel DocType: Payment Tool,Make Journal Entry,Crie Diário de entrada DocType: Leave Allocation,New Leaves Allocated,Nova Folhas alocado -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Dados do projecto -wise não está disponível para Cotação +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Dados do projecto -wise não está disponível para Cotação DocType: Project,Expected End Date,Data final esperado DocType: Appraisal Template,Appraisal Template Title,Título do modelo de avaliação apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,comercial @@ -2782,6 +2787,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,Re apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,"Por favor, especifique um" DocType: Offer Letter,Awaiting Response,Aguardando resposta apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Acima +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Tempo Log foi faturado DocType: Salary Slip,Earning & Deduction,Ganhar & Dedução apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Conta {0} não pode ser um grupo apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Optioneel. Deze instelling wordt gebruikt om te filteren op diverse transacties . @@ -2852,14 +2858,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Excluído com sucesso todas as transacções relacionadas com esta empresa! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Como em Data apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,provação -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Armazém padrão é obrigatório para estoque Item. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Armazém padrão é obrigatório para estoque Item. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Pagamento de salário para o mês {0} e {1} ano DocType: Stock Settings,Auto insert Price List rate if missing,Inserção automática taxa de lista de preços se ausente apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Montante total pago ,Transferred Qty,overgedragen hoeveelheid apps/erpnext/erpnext/config/learn.py +11,Navigating,Navegação apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,planejamento -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Make Time Log Batch +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Make Time Log Batch apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Emitido DocType: Project,Total Billing Amount (via Time Logs),Valor Total do faturamento (via Time Logs) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Nós vendemos este item @@ -2867,7 +2873,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Quantidade deve ser maior do que 0 DocType: Journal Entry,Cash Entry,Entrada de Caixa DocType: Sales Partner,Contact Desc,Contato Descr -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Tipo de folhas como etc, casual doente" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Tipo de folhas como etc, casual doente" DocType: Email Digest,Send regular summary reports via Email.,Enviar relatórios periódicos de síntese via e-mail. DocType: Brand,Item Manager,Item Manager DocType: Cost Center,Add rows to set annual budgets on Accounts.,Adicionar linhas para definir orçamentos anuais nas contas. @@ -2882,7 +2888,7 @@ DocType: GL Entry,Party Type,Tipo de Festa apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Matéria-prima não pode ser o mesmo como o principal item DocType: Item Attribute Value,Abbreviation,Abreviatura apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Não authroized desde {0} excede os limites -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Mestre modelo Salário . +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Mestre modelo Salário . DocType: Leave Type,Max Days Leave Allowed,Dias Max Deixe admitidos apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Conjunto de regras de imposto por carrinho de compras DocType: Payment Tool,Set Matching Amounts,Definir os montantes a condizer @@ -2895,7 +2901,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Cotaç DocType: Stock Settings,Role Allowed to edit frozen stock,Papel permissão para editar estoque congelado ,Territory Target Variance Item Group-Wise,Território Alvo Variance item Group-wise apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Todos os grupos de clientes -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} é obrigatório. Talvez recorde Câmbios não é criado para {1} de {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} é obrigatório. Talvez recorde Câmbios não é criado para {1} de {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Template imposto é obrigatório. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Conta {0}: conta principal {1} não existe DocType: Purchase Invoice Item,Price List Rate (Company Currency),Preço Taxa List (moeda da empresa) @@ -2915,8 +2921,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Detalhe Imposto item S ,Item-wise Price List Rate,Item- wise Prijslijst Rate apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Cotação fornecedor DocType: Quotation,In Words will be visible once you save the Quotation.,Em Palavras será visível quando você salvar a cotação. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} está parado -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Barcode {0} já utilizado em item {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} está parado +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Barcode {0} já utilizado em item {1} DocType: Lead,Add to calendar on this date,Adicionar ao calendário nesta data apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Regras para adicionar os custos de envio . apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,próximos eventos @@ -2943,8 +2949,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,ve apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Pelo menos um armazém é obrigatório DocType: Serial No,Out of Warranty,Fora de Garantia DocType: BOM Replace Tool,Replace,Substituir -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} contra Faturas {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Por favor entre unidade de medida padrão +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} contra Faturas {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Por favor entre unidade de medida padrão DocType: Purchase Invoice Item,Project Name,Nome do projeto DocType: Supplier,Mention if non-standard receivable account,Mencione se não padronizado conta a receber DocType: Journal Entry Account,If Income or Expense,Se a renda ou Despesa @@ -2969,7 +2975,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Ano Fiscal: {0} não existe DocType: Currency Exchange,To Currency,A Moeda DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,"Permitir que os seguintes utilizadores aprovem ""Licenças"" para os dias de bloco." -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Tipos de reembolso de despesas. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Tipos de reembolso de despesas. DocType: Item,Taxes,Impostos apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Pago e não entregue DocType: Project,Default Cost Center,Centro de Custo Padrão @@ -2999,7 +3005,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Row # {0}: Número de ordem {1} não coincide com {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Casual Deixar DocType: Batch,Batch ID,Lote ID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Nota : {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Nota : {0} ,Delivery Note Trends,Nota de entrega Trends apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Resumo da Semana apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} deve ser um item comprado ou subcontratadas na linha {1} @@ -3039,6 +3045,7 @@ DocType: Project Task,Pending Review,Revisão pendente apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Clique aqui para pagar DocType: Task,Total Expense Claim (via Expense Claim),Reivindicação Despesa Total (via Despesa Claim) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Id Cliente +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Mark Ausente apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Para Tempo deve ser maior From Time DocType: Journal Entry Account,Exchange Rate,Taxa de Câmbio apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Ordem de Vendas {0} não é submetido @@ -3086,7 +3093,7 @@ DocType: Item Group,Default Expense Account,Conta Despesa padrão DocType: Employee,Notice (days),Notice ( dagen ) DocType: Tax Rule,Sales Tax Template,Template Imposto sobre Vendas DocType: Employee,Encashment Date,Data cobrança -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Contra Comprovante Tipo deve ser um dos Pedido de Compra, nota fiscal de compra ou do Diário" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Contra Comprovante Tipo deve ser um dos Pedido de Compra, nota fiscal de compra ou do Diário" DocType: Account,Stock Adjustment,Banco de Ajuste apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Existe Atividade Custo Padrão para o Tipo de Atividade - {0} DocType: Production Order,Planned Operating Cost,Planejado Custo Operacional @@ -3140,6 +3147,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Escrever Off Entry DocType: BOM,Rate Of Materials Based On,Taxa de materiais com base apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,ondersteuning Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Desmarcar todos apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Empresa está em falta nos armazéns {0} DocType: POS Profile,Terms and Conditions,Termos e Condições apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},Para data deve ser dentro do exercício social. Assumindo Para Date = {0} @@ -3161,7 +3169,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Om dit fiscale jaar ingesteld als standaard , klik op ' Als standaard instellen '" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Configuração do servidor de entrada para suporte e-mail id . ( por exemplo support@example.com ) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Escassez Qtde -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Variante item {0} existe com os mesmos atributos +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Variante item {0} existe com os mesmos atributos DocType: Salary Slip,Salary Slip,Folha de salário apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,' O campo Para Data ' é necessária DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Gerar deslizamentos de embalagem para os pacotes a serem entregues. Usado para notificar número do pacote, o conteúdo do pacote e seu peso." @@ -3209,7 +3217,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Veja Le DocType: Item Attribute Value,Attribute Value,Atributo Valor apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","ID de e-mail deve ser único, já existe para {0}" ,Itemwise Recommended Reorder Level,Itemwise Recomendado nível de reposição -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,Por favor seleccione {0} primeiro +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,Por favor seleccione {0} primeiro DocType: Features Setup,To get Item Group in details table,Para obter Grupo item na tabela de detalhes apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Lote {0} de {1} item expirou. DocType: Sales Invoice,Commission,comissão @@ -3264,7 +3272,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Obter Vales Pendentes DocType: Warranty Claim,Resolved By,Resolvido por DocType: Appraisal,Start Date,Data de Início -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Atribuír licenças por um período . +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Atribuír licenças por um período . apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Cheques e Depósitos apagada incorretamente apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Clique aqui para verificar apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Conta {0}: Você não pode atribuir-se como conta principal @@ -3284,7 +3292,7 @@ DocType: Employee,Educational Qualification,Qualificação Educacional DocType: Workstation,Operating Costs,Custos Operacionais DocType: Employee Leave Approver,Employee Leave Approver,Empregado Leave Approver apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} foi adicionada com sucesso à nossa lista Newsletter. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Row {0}: Uma entrada de reabastecimento já existe para este armazém {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Row {0}: Uma entrada de reabastecimento já existe para este armazém {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Kan niet verklaren als verloren , omdat Offerte is gemaakt." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Compra Mestre Gerente apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Ordem de produção {0} deve ser apresentado @@ -3308,7 +3316,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Fatura de vendas {0} já foi apresentado apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Data de Conclusão DocType: Purchase Invoice Item,Amount (Company Currency),Quantidade (Moeda da Empresa) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Organização unidade (departamento) mestre. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Organização unidade (departamento) mestre. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,"Por favor, indique nn móveis válidos" DocType: Budget Detail,Budget Detail,Detalhe orçamento apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,Por favor introduza a mensagem antes de enviá- @@ -3324,13 +3332,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Recebeu e aceitou ,Serial No Service Contract Expiry,N º de Série Vencimento Contrato de Serviço DocType: Item,Unit of Measure Conversion,Unidade de Conversão de Medida apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Empregado não pode ser alterado -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Você não pode de crédito e débito mesma conta ao mesmo tempo +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Você não pode de crédito e débito mesma conta ao mesmo tempo DocType: Naming Series,Help HTML,Ajuda HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Weightage total atribuído deve ser de 100 %. É {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Provisão para over-{0} cruzou para item {1} DocType: Address,Name of person or organization that this address belongs to.,Nome da pessoa ou organização que este endereço pertence. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,uw Leveranciers -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,Kan niet ingesteld als Lost als Sales Order wordt gemaakt . +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,Kan niet ingesteld als Lost als Sales Order wordt gemaakt . apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,"Outra estrutura Salário {0} está ativo para empregado {1}. Por favor, faça o seu estatuto ""inativos"" para prosseguir." DocType: Purchase Invoice,Contact,Contato apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Recebido de @@ -3340,11 +3348,11 @@ DocType: Item,Has Serial No,Não tem número de série DocType: Employee,Date of Issue,Data de Emissão apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: A partir de {0} para {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Row # {0}: Jogo Fornecedor para o item {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Site Imagem {0} anexada ao Item {1} não pode ser encontrado +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Site Imagem {0} anexada ao Item {1} não pode ser encontrado DocType: Issue,Content Type,Tipo de conteúdo apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,computador DocType: Item,List this Item in multiple groups on the website.,Lista este item em vários grupos no site. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,"Por favor, verifique multi opção de moeda para permitir que contas com outra moeda" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,"Por favor, verifique multi opção de moeda para permitir que contas com outra moeda" apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Item: {0} não existe no sistema apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,U bent niet bevoegd om Frozen waarde in te stellen DocType: Payment Reconciliation,Get Unreconciled Entries,Obter Entradas não reconciliadas @@ -3354,14 +3362,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Wat doet het DocType: Delivery Note,To Warehouse,Para Armazém apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Conta {0} foi inserida mais de uma vez para o ano fiscal {1} ,Average Commission Rate,Taxa de Comissão Média -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'Tem número de série ' não pode ser 'Sim' para o item sem stock +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'Tem número de série ' não pode ser 'Sim' para o item sem stock apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Atendimento não pode ser marcado para datas futuras DocType: Pricing Rule,Pricing Rule Help,Regra Preços Ajuda DocType: Purchase Taxes and Charges,Account Head,Conta principal apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Atualize custos adicionais para calcular o custo desembarcado de itens apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,elétrico DocType: Stock Entry,Total Value Difference (Out - In),Diferença Valor Total (Out - In) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Row {0}: Taxa de Câmbio é obrigatória +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Row {0}: Taxa de Câmbio é obrigatória apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},ID do usuário não definido para Employee {0} DocType: Stock Entry,Default Source Warehouse,Armazém da fonte padrão DocType: Item,Customer Code,Código Cliente @@ -3380,15 +3388,15 @@ DocType: Notification Control,Sales Invoice Message,Vendas Mensagem Fatura apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Fechando Conta {0} deve ser do tipo de responsabilidade / Patrimônio Líquido DocType: Authorization Rule,Based On,Baseado em DocType: Sales Order Item,Ordered Qty,bestelde Aantal -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Item {0} está desativada +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Item {0} está desativada DocType: Stock Settings,Stock Frozen Upto,Fotografia congelada Upto apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Período Do período Para datas e obrigatórias para os recorrentes {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Atividade de projeto / tarefa. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Gerar Folhas de Vencimento +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Gerar Folhas de Vencimento apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Compra deve ser verificada, se for caso disso for selecionado como {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Desconto deve ser inferior a 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Escrever Off Montante (Companhia de moeda) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,"Row # {0}: Por favor, defina a quantidade de reabastecimento" +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,"Row # {0}: Por favor, defina a quantidade de reabastecimento" DocType: Landed Cost Voucher,Landed Cost Voucher,Landed Comprovante Custo apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},Defina {0} DocType: Purchase Invoice,Repeat on Day of Month,Repita no Dia do Mês @@ -3441,7 +3449,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Padrão trabalho no armazém Progresso apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,As configurações padrão para as transações contábeis. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Verwachte datum kan niet voor de Material Aanvraagdatum -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Item {0} deve ser um item de vendas +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Item {0} deve ser um item de vendas DocType: Naming Series,Update Series Number,Atualização de Número de Série DocType: Account,Equity,equidade DocType: Sales Order,Printing Details,Imprimir detalhes @@ -3493,7 +3501,7 @@ DocType: Task,Review Date,Comente Data DocType: Purchase Invoice,Advance Payments,Adiantamentos DocType: Purchase Taxes and Charges,On Net Total,Em Líquida Total apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Warehouse de destino na linha {0} deve ser o mesmo que ordem de produção -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Sem permissão para usar ferramenta de pagamento +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Sem permissão para usar ferramenta de pagamento apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,"'Notificação Endereços de e-mail"" não especificado para o recorrente %s" apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Moeda não pode ser alterada depois de fazer entradas usando alguma outra moeda DocType: Company,Round Off Account,Termine Conta @@ -3516,7 +3524,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Quantidade do item obtido após a fabricação / reembalagem de determinadas quantidades de matérias-primas DocType: Payment Reconciliation,Receivable / Payable Account,Receber Conta / Payable DocType: Delivery Note Item,Against Sales Order Item,Contra a Ordem de venda do item -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},"Por favor, especifique Atributo Valor para o atributo {0}" +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},"Por favor, especifique Atributo Valor para o atributo {0}" DocType: Item,Default Warehouse,Armazém padrão DocType: Task,Actual End Date (via Time Logs),Data Real End (via Time Logs) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Orçamento não pode ser atribuído contra a conta de grupo {0} @@ -3541,10 +3549,10 @@ DocType: Lead,Blog Subscriber,Assinante Blog apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Criar regras para restringir operações com base em valores. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Se marcado, não total. de dias de trabalho vai incluir férias, e isso vai reduzir o valor de salário por dia" DocType: Purchase Invoice,Total Advance,Antecipação total -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Processamento de folha de pagamento +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Processamento de folha de pagamento DocType: Opportunity Item,Basic Rate,Taxa Básica DocType: GL Entry,Credit Amount,Quantidade de crédito -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Instellen als Lost +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Instellen als Lost apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,O pagamento Recibo Nota DocType: Supplier,Credit Days Based On,Dias crédito com base em DocType: Tax Rule,Tax Rule,Regra imposto @@ -3574,7 +3582,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Quantidade Aceite apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} não existe apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Contas levantou a Clientes. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Id Projeto -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Nenhuma linha {0}: Valor não pode ser superior a pendência Montante contra Despesa reivindicação {1}. Montante pendente é {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Nenhuma linha {0}: Valor não pode ser superior a pendência Montante contra Despesa reivindicação {1}. Montante pendente é {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} assinantes acrescentado DocType: Maintenance Schedule,Schedule,Programar DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Definir orçamento para este centro de custo. Para definir a ação orçamento, consulte "Lista de Empresas"" @@ -3635,19 +3643,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS Perfil DocType: Payment Gateway Account,Payment URL Message,Pagamento URL Mensagem apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Sazonalidade para definição de orçamentos, metas etc." -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Row {0}: valor do pagamento não pode ser maior do que a quantidade Outstanding +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Row {0}: valor do pagamento não pode ser maior do que a quantidade Outstanding apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Total de Unpaid -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Tempo Log não é cobrável -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Item {0} é um modelo, por favor selecione uma de suas variantes" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Tempo Log não é cobrável +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Item {0} é um modelo, por favor selecione uma de suas variantes" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Comprador apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Salário líquido não pode ser negativo -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,"Por favor, indique o Contra Vouchers manualmente" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,"Por favor, indique o Contra Vouchers manualmente" DocType: SMS Settings,Static Parameters,Parâmetros estáticos DocType: Purchase Order,Advance Paid,Adiantamento pago DocType: Item,Item Tax,Imposto item apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Material a Fornecedor apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Excise Invoice DocType: Expense Claim,Employees Email Id,Funcionários ID e-mail +DocType: Employee Attendance Tool,Marked Attendance,Presença marcante apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,passivo circulante apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Enviar SMS em massa para seus contatos DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Considere imposto ou encargo para @@ -3670,7 +3679,7 @@ DocType: Item Attribute,Numeric Values,Os valores numéricos apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,anexar Logo DocType: Customer,Commission Rate,Taxa de Comissão apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Faça Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Bloquear deixar aplicações por departamento. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Bloquear deixar aplicações por departamento. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Carrinho está vazio DocType: Production Order,Actual Operating Cost,Custo operacional real apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Root não pode ser editado . @@ -3689,7 +3698,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,Criar automaticamente um pedido de material se a quantidade for inferior a este nível ,Item-wise Purchase Register,Item-wise Compra Register DocType: Batch,Expiry Date,Data de validade -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Para definir o nível de reabastecimento, o item deve ser um item de compra ou Manufacturing item" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Para definir o nível de reabastecimento, o item deve ser um item de compra ou Manufacturing item" ,Supplier Addresses and Contacts,Leverancier Adressen en Contacten apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,Selecteer Categorie eerst apps/erpnext/erpnext/config/projects.py +18,Project master.,Projeto mestre. diff --git a/erpnext/translations/ro.csv b/erpnext/translations/ro.csv index 0af2cf68c4..362e05c2a9 100644 --- a/erpnext/translations/ro.csv +++ b/erpnext/translations/ro.csv @@ -163,14 +163,14 @@ DocType: Journal Entry Account,Credit in Company Currency,Credit în companie va DocType: Delivery Note,Installation Status,Starea de instalare apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Cant acceptată + respinsă trebuie să fie egală cu cantitatea recepționată pentru articolul {0} DocType: Item,Supply Raw Materials for Purchase,Materii prime de alimentare pentru cumparare -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Articolul {0} trebuie să fie un Articol de Cumparare +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Articolul {0} trebuie să fie un Articol de Cumparare DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Descărcați șablonul, umple de date corespunzătoare și atașați fișierul modificat. Toate datele și angajat combinație în perioada selectata va veni în șablon, cu înregistrări nervi existente" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,Articolul {0} nu este activ sau sfarsitul ciclului sau de viata a fost atins DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Vor fi actualizate după Factura Vanzare este prezentat. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Pentru a include taxa în rândul {0} în rata articol, impozitele în rânduri {1} trebuie de asemenea să fie incluse" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Setările pentru modul HR +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Pentru a include taxa în rândul {0} în rata articol, impozitele în rânduri {1} trebuie de asemenea să fie incluse" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Setările pentru modul HR DocType: SMS Center,SMS Center,SMS Center DocType: BOM Replace Tool,New BOM,Nou BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Înregistrarile temporale aferente lotului pentru facturare. @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,Selectați Termeni și condiț DocType: Production Planning Tool,Sales Orders,Comenzi de vânzări DocType: Purchase Taxes and Charges,Valuation,Evaluare ,Purchase Order Trends,Comandă de aprovizionare Tendințe -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Alocaţi concedii anuale. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Alocaţi concedii anuale. DocType: Earning Type,Earning Type,Tip Câștig Salarial DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Planificarea Capacitatii Dezactivați și Time Tracking DocType: Bank Reconciliation,Bank Account,Cont bancar @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Specificație Site Articol DocType: Payment Tool,Reference No,De referință nr apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Concediu Blocat -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Articolul {0} a ajuns la sfârșitul cliclului sau de viață in {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Articolul {0} a ajuns la sfârșitul cliclului sau de viață in {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Anual DocType: Stock Reconciliation Item,Stock Reconciliation Item,Stock reconciliere Articol DocType: Stock Entry,Sales Invoice No,Factură de vânzări Nu @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,Comanda minima Cantitate DocType: Pricing Rule,Supplier Type,Furnizor Tip DocType: Item,Publish in Hub,Publica in Hub ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Articolul {0} este anulat +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Articolul {0} este anulat apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Cerere de material DocType: Bank Reconciliation,Update Clearance Date,Actualizare Clearance Data DocType: Item,Purchase Details,Detalii de cumpărare @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Respins Cantitate DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Câmp disponibil în Nota de Livrare, Cotatie, Factura Vanzare, Comandă de Vânzări" DocType: SMS Settings,SMS Sender Name,SMS Sender Name DocType: Contact,Is Primary Contact,Este primar Contact +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Timpul Jurnal a fost dozat pentru facturare DocType: Notification Control,Notification Control,Controlul notificare DocType: Lead,Suggestions,Sugestii DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,"Set bugetelor Grupa înțelept Articol de pe acest teritoriu. Puteți include, de asemenea, sezonier prin setarea distribuție." apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},Va rugam sa introduceti grup considerare mamă pentru depozit {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Plata împotriva {0} {1} nu poate fi mai mare decât Impresionant Suma {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Plata împotriva {0} {1} nu poate fi mai mare decât Impresionant Suma {2} DocType: Supplier,Address HTML,Adresă HTML DocType: Lead,Mobile No.,Mobil Nu. DocType: Maintenance Schedule,Generate Schedule,Generează orar @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Sincronizat cu Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Parola Gresita DocType: Item,Variant Of,Varianta de -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Articolul {0} trebuie să fie un Articol de Service apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',"Finalizat Cantitate nu poate fi mai mare decât ""Cantitate de Fabricare""" DocType: Period Closing Voucher,Closing Account Head,Închidere Cont Principal DocType: Employee,External Work History,Istoricul lucrului externă @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,Newsletter DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Notifica prin e-mail la crearea de cerere automată Material DocType: Journal Entry,Multi Currency,Multi valutar DocType: Payment Reconciliation Invoice,Invoice Type,Factura Tip -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Nota de Livrare +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Nota de Livrare apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Configurarea Impozite apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,Plata intrare a fost modificat după ce-l tras. Vă rugăm să trage din nou. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} a fost introdus de două ori în taxa articolului +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} a fost introdus de două ori în taxa articolului apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Rezumat pentru această săptămână și a activităților în curs DocType: Workstation,Rent Cost,Chirie Cost apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Vă rugăm selectați luna și anul @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,Valabil pentru țările DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Toate câmpurile legate de import, cum ar fi moneda, rata de conversie, import total, import total general etc. sunt disponibile în chitanță de cumpărare, cotație furnizor, factură de cumpărare, comandă de cumpărare, etc" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"Acest post este un șablon și nu pot fi folosite în tranzacții. Atribute articol vor fi copiate pe în variantele cu excepția cazului în este setat ""Nu Copy""" apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Comanda total Considerat -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Desemnare angajat (de exemplu, CEO, director, etc)." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Desemnare angajat (de exemplu, CEO, director, etc)." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,"Va rugam sa introduceti ""Repeat la zi a lunii"" valoare de câmp" DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,Rata la care Clientul valuta este convertită în valuta de bază a clientului DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Disponibil în BOM, nota de livrare, factura de cumparare, comanda de producție, comanda de cumparare, chitanţa de cumpărare, factura de vânzare,comanda de vânzare, intrare de stoc, pontaj" @@ -356,7 +356,7 @@ DocType: Workstation,Consumable Cost,Cost Consumabile apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',"{0} ({1}) trebuie să dețină rolul ""aprobator concediu""" DocType: Purchase Receipt,Vehicle Date,Vehicul Data apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Medical -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Motiv pentru a pierde +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Motiv pentru a pierde apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Workstation este închis la următoarele date ca pe lista de vacanta: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Oportunitati DocType: Employee,Single,Celibatar @@ -384,14 +384,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Partner Canal DocType: Account,Old Parent,Vechi mamă DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,"Particulariza textul introductiv, care merge ca o parte din acel email. Fiecare tranzacție are un text introductiv separat." +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Nu include simboluri (ex. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Vânzări Maestru de Management apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Setările globale pentru toate procesele de producție. DocType: Accounts Settings,Accounts Frozen Upto,Conturile sunt Blocate Până la DocType: SMS Log,Sent On,A trimis pe -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Atribut {0} selectat de mai multe ori în tabelul Atribute +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Atribut {0} selectat de mai multe ori în tabelul Atribute DocType: HR Settings,Employee record is created using selected field. ,Inregistrarea angajatului este realizata prin utilizarea campului selectat. DocType: Sales Order,Not Applicable,Nu se aplică -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Maestru de vacanta. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Maestru de vacanta. DocType: Material Request Item,Required Date,Date necesare DocType: Delivery Note,Billing Address,Adresa de facturare apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,Vă rugăm să introduceți Cod produs. @@ -427,7 +428,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,Va rugam sa introduceti Depozit pentru care va fi ridicat Material Cerere DocType: Production Order,Additional Operating Cost,Costuri de operare adiţionale apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Cosmetică -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Pentru a îmbina, următoarele proprietăți trebuie să fie aceeași pentru ambele elemente" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Pentru a îmbina, următoarele proprietăți trebuie să fie aceeași pentru ambele elemente" DocType: Shipping Rule,Net Weight,Greutate netă DocType: Employee,Emergency Phone,Telefon de Urgență ,Serial No Warranty Expiry,Serial Nu Garantie pana @@ -482,17 +483,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Facturare și de livrare Starea apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Clienții repetate DocType: Leave Control Panel,Allocate,Alocaţi -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Vânzări de returnare +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Vânzări de returnare DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Selectați comenzi de vânzări de la care doriți să creați comenzi de producție. DocType: Item,Delivered by Supplier (Drop Ship),Livrate de Furnizor (Drop navelor) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Componente salariale. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Componente salariale. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Baza de date cu clienți potențiali. DocType: Authorization Rule,Customer or Item,Client sau un element apps/erpnext/erpnext/config/crm.py +17,Customer database.,Baza de Date Client. DocType: Quotation,Quotation To,Citat Pentru a DocType: Lead,Middle Income,Venituri medii apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Deschidere (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Unitatea de măsură implicită pentru postul {0} nu poate fi schimbat direct, deoarece aveti si voi deja unele tranzacții (i) cu un alt UOM. Veți avea nevoie pentru a crea un nou element pentru a utiliza un alt implicit UOM." +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Unitatea de măsură implicită pentru postul {0} nu poate fi schimbat direct, deoarece aveti si voi deja unele tranzacții (i) cu un alt UOM. Veți avea nevoie pentru a crea un nou element pentru a utiliza un alt implicit UOM." apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Suma alocată nu poate fi negativă DocType: Purchase Order Item,Billed Amt,Suma facturată DocType: Warehouse,A logical Warehouse against which stock entries are made.,Un depozit logic față de care se efectuează înregistrări de stoc. @@ -511,14 +512,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Taxele de vânzări și Taxe DocType: Employee,Organization Profile,Organizație de profil apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,Vă rugăm să configurare serie de numerotare pentru Spectatori prin Setup> Numerotare Series DocType: Employee,Reason for Resignation,Motiv pentru demisie -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Șablon pentru evaluările de performanță. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Șablon pentru evaluările de performanță. DocType: Payment Reconciliation,Invoice/Journal Entry Details,Factura / Jurnalul Detalii intrare apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' nu există în anul fiscal {2} DocType: Buying Settings,Settings for Buying Module,Setări pentru cumparare Modulul apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,Va rugam sa introduceti Primirea achiziția DocType: Buying Settings,Supplier Naming By,Furnizor de denumire prin DocType: Activity Type,Default Costing Rate,Implicit Rata Costing -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Program Mentenanta +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Program Mentenanta apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Apoi normelor privind prețurile sunt filtrate pe baza Customer, Client Group, Territory, furnizor, furnizor de tip, Campania, Vanzari Partener etc" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Schimbarea net în inventar DocType: Employee,Passport Number,Numărul de pașaport @@ -557,7 +558,7 @@ DocType: Purchase Invoice,Quarterly,Trimestrial DocType: Selling Settings,Delivery Note Required,Nota de Livrare Necesara DocType: Sales Order Item,Basic Rate (Company Currency),Rată elementară (moneda companiei) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush Materii Prime bazat pe -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,Va rugam sa introduceti detalii element +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,Va rugam sa introduceti detalii element DocType: Purchase Receipt,Other Details,Alte detalii DocType: Account,Accounts,Conturi apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Marketing @@ -570,7 +571,7 @@ DocType: Employee,Provide email id registered in company,Furnizarea id-ul de e-m DocType: Hub Settings,Seller City,Vânzător oraș DocType: Email Digest,Next email will be sent on:,E-mail viitor va fi trimis la: DocType: Offer Letter Term,Offer Letter Term,Oferta Scrisoare Termen -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Element are variante. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Element are variante. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Articolul {0} nu a fost găsit DocType: Bin,Stock Value,Valoare stoc apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Arbore Tip @@ -578,7 +579,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Cantitate consumata pe unitate DocType: Serial No,Warranty Expiry Date,Garanție Data expirării DocType: Material Request Item,Quantity and Warehouse,Cantitatea și Warehouse DocType: Sales Invoice,Commission Rate (%),Rata de Comision (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Comparativ tipului de voucher trebuie să fie o opțiune dintre următoarele: ordin de vânzări, factură de vânzări sau intrare în jurnal" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Comparativ tipului de voucher trebuie să fie o opțiune dintre următoarele: ordin de vânzări, factură de vânzări sau intrare în jurnal" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Spaţiul aerian DocType: Journal Entry,Credit Card Entry,Card de credit intrare apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Sarcina Subiect @@ -665,10 +666,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Răspundere apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Sancționat Suma nu poate fi mai mare decât revendicarea Suma în rândul {0}. DocType: Company,Default Cost of Goods Sold Account,Implicit Costul cont bunuri vândute -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Lista de prețuri nu selectat +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Lista de prețuri nu selectat DocType: Employee,Family Background,Context familial DocType: Process Payroll,Send Email,Trimiteți-ne email -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Atenție: Attachment invalid {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Atenție: Attachment invalid {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Nici o permisiune DocType: Company,Default Bank Account,Cont Bancar Implicit apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Pentru a filtra pe baza Party, selectați Party Tip primul" @@ -696,7 +697,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Inter DocType: Features Setup,"To enable ""Point of Sale"" features",Pentru a activa "punct de vânzare" caracteristici DocType: Bin,Moving Average Rate,Rata medie mobilă DocType: Production Planning Tool,Select Items,Selectați Elemente -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} comparativ cu factura {1} din data de {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} comparativ cu factura {1} din data de {2} DocType: Maintenance Visit,Completion Status,Stare Finalizare DocType: Sales Invoice Item,Target Warehouse,Țintă Warehouse DocType: Item,Allow over delivery or receipt upto this percent,Permiteți peste livrare sau primire pana la acest procent @@ -756,7 +757,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Maes apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Imposibilitatea de a găsi timp Slot în următorii {0} zile pentru Operațiunea {1} DocType: Production Order,Plan material for sub-assemblies,Material Plan de subansambluri apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} trebuie să fie activ -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,Vă rugăm să selectați tipul de document primul +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Vă rugăm să selectați tipul de document primul apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Du-te la coș apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Anuleaza Vizite Material {0} înainte de a anula această Vizita de întreținere DocType: Salary Slip,Leave Encashment Amount,Suma Incasare Concediu @@ -774,7 +775,7 @@ DocType: Purchase Receipt,Range,Interval DocType: Supplier,Default Payable Accounts,Implicit conturi de plătit apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Angajatul {0} nu este activ sau nu există DocType: Features Setup,Item Barcode,Element de coduri de bare -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Postul variante {0} actualizat +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Postul variante {0} actualizat DocType: Quality Inspection Reading,Reading 6,Reading 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Factura de cumpărare în avans DocType: Address,Shop,Magazin @@ -797,7 +798,7 @@ DocType: Salary Slip,Total in words,Total în cuvinte DocType: Material Request Item,Lead Time Date,Data Timp Conducere apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,este obligatorie. Poate înregistrarea de schimb valutar nu este creeatã pentru apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Rând # {0}: Vă rugăm să specificați Nu serial pentru postul {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Pentru elementele "produse Bundle", Warehouse, Serial No și lot nr vor fi luate în considerare de la "ambalare List" masa. Dacă Warehouse și Lot nr sunt aceleași pentru toate elementele de ambalaj pentru produs orice "Bundle produs", aceste valori pot fi introduse în tabelul de punctul principal, valorile vor fi copiate "de ambalare Lista" masă." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Pentru elementele "produse Bundle", Warehouse, Serial No și lot nr vor fi luate în considerare de la "ambalare List" masa. Dacă Warehouse și Lot nr sunt aceleași pentru toate elementele de ambalaj pentru produs orice "Bundle produs", aceste valori pot fi introduse în tabelul de punctul principal, valorile vor fi copiate "de ambalare Lista" masă." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Transporturile către clienți. DocType: Purchase Invoice Item,Purchase Order Item,Comandă de aprovizionare Articol apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Venituri indirecte @@ -818,6 +819,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Selectați Salarizare anu apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""","Du-te la grupul corespunzător (de obicei, de aplicare fondurilor> Active curente> Conturi bancare și de a crea un nou cont (făcând clic pe Adăugați pentru copii) de tip "Banca"" DocType: Workstation,Electricity Cost,Cost energie electrică DocType: HR Settings,Don't send Employee Birthday Reminders,Nu trimiteți Memento pentru Zi de Nastere Angajat +,Employee Holiday Attendance,Participarea angajat de vacanță DocType: Opportunity,Walk In,Walk In apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Stoc Entries DocType: Item,Inspection Criteria,Criteriile de inspecție @@ -840,7 +842,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,O DocType: Journal Entry Account,Expense Claim,Revendicare Cheltuieli apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Cantitate pentru {0} DocType: Leave Application,Leave Application,Aplicatie pentru Concediu -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Mijloc pentru Alocare Concediu +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Mijloc pentru Alocare Concediu DocType: Leave Block List,Leave Block List Dates,Date Lista Concedii Blocate DocType: Company,If Monthly Budget Exceeded (for expense account),Dacă bugetul lunar depășită (pentru contul de cheltuieli) DocType: Workstation,Net Hour Rate,Net Rata de ore @@ -850,7 +852,7 @@ DocType: Packing Slip Item,Packing Slip Item,Bonul Articol DocType: POS Profile,Cash/Bank Account,Numerar/Cont Bancar apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Articole eliminate cu nici o schimbare în cantitate sau de valoare. DocType: Delivery Note,Delivery To,De Livrare la -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Tabelul atribut este obligatoriu +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Tabelul atribut este obligatoriu DocType: Production Planning Tool,Get Sales Orders,Obține comenzile de vânzări apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} nu poate fi negativ apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Reducere @@ -914,7 +916,7 @@ DocType: SMS Center,Total Characters,Total de caractere apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},Vă rugăm să selectați BOM BOM în domeniu pentru postul {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,Detaliu factură formular-C DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Reconcilierea plata facturii -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Contribuția% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Contribuția% DocType: Item,website page link,pagina site-ului link-ul DocType: Company,Company registration numbers for your reference. Tax numbers etc.,Numerele de înregistrare companie pentru referință. Numerele fiscale etc DocType: Sales Partner,Distributor,Distribuitor @@ -956,10 +958,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,Factorul de conversie UOM DocType: Stock Settings,Default Item Group,Group Articol Implicit apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Baza de date furnizor. DocType: Account,Balance Sheet,Bilant -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Centrul de cost pentru postul cu codul Postul ' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Centrul de cost pentru postul cu codul Postul ' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,Persoană de vânzări va primi un memento la această dată pentru a lua legătura cu clientul apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Conturile suplimentare pot fi făcute sub Groups, dar intrările pot fi făcute împotriva non-Grupuri" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Impozitul și alte rețineri salariale. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Impozitul și alte rețineri salariale. DocType: Lead,Lead,Conducere DocType: Email Digest,Payables,Datorii DocType: Account,Warehouse,Depozit @@ -976,10 +978,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Nereconciliate Deta DocType: Global Defaults,Current Fiscal Year,An Fiscal Curent DocType: Global Defaults,Disable Rounded Total,Dezactivati Totalul Rotunjit DocType: Lead,Call,Apelaţi -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'Intrările' nu pot fi vide +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'Intrările' nu pot fi vide apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Inregistrare {0} este duplicata cu aceeași {1} ,Trial Balance,Balanta -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Configurarea angajati +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Configurarea angajati apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","Grid """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,Vă rugăm să selectați prefix întâi apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Cercetarea @@ -988,7 +990,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,ID-ul de utilizator apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Vezi Ledger apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Cel mai devreme -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Există un grup de articole cu aceeaşi denumire, vă rugăm să schimbați denumirea articolului sau să redenumiţi grupul articolului" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Există un grup de articole cu aceeaşi denumire, vă rugăm să schimbați denumirea articolului sau să redenumiţi grupul articolului" DocType: Production Order,Manufacture against Sales Order,Fabricarea de comandă de vânzări apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Restul lumii apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,Postul {0} nu poate avea Lot @@ -1013,7 +1015,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Depozit Respins DocType: GL Entry,Against Voucher,Comparativ voucherului DocType: Item,Default Buying Cost Center,Centru de Cost Cumparare Implicit apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Pentru a obține cele mai bune din ERPNext, vă recomandăm să luați ceva timp și de ceas aceste filme de ajutor." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Articolul {0} trebuie să fie un Articol de Vânzări +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Articolul {0} trebuie să fie un Articol de Vânzări apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,la DocType: Item,Lead Time in days,Timp de plumb în zile ,Accounts Payable Summary,Rezumat conturi pentru plăți @@ -1039,7 +1041,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Agricultură apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Produsele sau serviciile dvs. DocType: Mode of Payment,Mode of Payment,Mod de plata -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Site-ul Image ar trebui să fie un fișier public sau site-ul URL-ul +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Site-ul Image ar trebui să fie un fișier public sau site-ul URL-ul apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,Acesta este un grup element rădăcină și nu pot fi editate. DocType: Journal Entry Account,Purchase Order,Comandă de aprovizionare DocType: Warehouse,Warehouse Contact Info,Date de contact depozit @@ -1050,7 +1052,7 @@ DocType: Serial No,Serial No Details,Serial Nu Detalii DocType: Purchase Invoice Item,Item Tax Rate,Rata de Impozitare Articol apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","Pentru {0}, numai conturi de credit poate fi legat de o altă intrare în debit" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Nota de Livrare {0} nu este introdusa -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Articolul {0} trebuie să fie un Articol Sub-contractat +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Articolul {0} trebuie să fie un Articol Sub-contractat apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Echipamente de Capital apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Regula de stabilire a prețurilor este selectat în primul rând bazat pe ""Aplicați pe"" teren, care poate fi produs, Grupa de articole sau de brand." DocType: Hub Settings,Seller Website,Vânzător Site-ul @@ -1059,7 +1061,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Obiectiv DocType: Sales Invoice Item,Edit Description,Edit Descriere apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Așteptat Data de livrare este mai mică decât era planificat Începere Data. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,Pentru furnizor +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,Pentru furnizor DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Setarea Tipul de cont ajută în selectarea acest cont în tranzacții. DocType: Purchase Invoice,Grand Total (Company Currency),Total general (Valuta Companie) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Raport de ieșire @@ -1111,7 +1113,6 @@ DocType: Authorization Rule,Average Discount,Discount mediiu DocType: Address,Utilities,Utilitați DocType: Purchase Invoice Item,Accounting,Contabilitate DocType: Features Setup,Features Setup,Caracteristici de setare -DocType: Item,Is Service Item,Este Serviciul Articol apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Perioada de aplicare nu poate fi perioadă de alocare concediu în afara DocType: Activity Cost,Projects,Proiecte apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,Vă rugăm să selectați Anul fiscal @@ -1132,7 +1133,7 @@ DocType: Item,Maintain Stock,Menține Stock apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order , apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Schimbarea net în active fixe DocType: Leave Control Panel,Leave blank if considered for all designations,Lăsați necompletat dacă se consideră pentru toate denumirile -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,"Taxa de tip 'Efectiv' în inregistrarea {0} nu poate fi inclus în Rata Articol""" +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,"Taxa de tip 'Efectiv' în inregistrarea {0} nu poate fi inclus în Rata Articol""" apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,De la Datetime DocType: Email Digest,For Company,Pentru Companie @@ -1141,8 +1142,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Transport Adresa Nume apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Grafic Conturi DocType: Material Request,Terms and Conditions Content,Termeni și condiții de conținut -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,nu poate fi mai mare de 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Articolul{0} nu este un element de stoc +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,nu poate fi mai mare de 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Articolul{0} nu este un element de stoc DocType: Maintenance Visit,Unscheduled,Neprogramat DocType: Employee,Owned,Deținut DocType: Salary Slip Deduction,Depends on Leave Without Pay,Depinde de concediu fără plată @@ -1164,7 +1165,7 @@ Used for Taxes and Charges","Taxa detaliu tabel preluat de la maestru articol ca apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Angajat nu pot raporta la sine. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","În cazul în care contul este blocat, intrările sunt permite utilizatorilor restricționati." DocType: Email Digest,Bank Balance,Banca Balance -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Contabilitate de intrare pentru {0}: {1} se poate face numai în valută: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Contabilitate de intrare pentru {0}: {1} se poate face numai în valută: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,O structură Salariul activ găsite pentru angajat {0} și luna DocType: Job Opening,"Job profile, qualifications required etc.","Profilul postului, calificări necesare, etc" DocType: Journal Entry Account,Account Balance,Soldul contului @@ -1181,7 +1182,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Sub Assemblie DocType: Shipping Rule Condition,To Value,La valoarea DocType: Supplier,Stock Manager,Stock Manager apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Depozit sursă este obligatorie pentru rând {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Slip de ambalare +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Slip de ambalare apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Birou inchiriat apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Setări de configurare SMS gateway-ul apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Import a eșuat! @@ -1224,7 +1225,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,Detaliu BOM nr. DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Discount suplimentar Suma (companie de valuta) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Eroare: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,Vă rugăm să creați un cont nou de Planul de conturi. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Vizita Mentenanta +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Vizita Mentenanta apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Client> Client Group> Teritoriul DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Cantitate lot disponibilă în depozit DocType: Time Log Batch Detail,Time Log Batch Detail,Ora Log lot Detaliu @@ -1233,7 +1234,7 @@ DocType: Leave Block List,Block Holidays on important days.,Blocaţi zile de să ,Accounts Receivable Summary,Rezumat conturi de încasare apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,Vă rugăm să setați câmp ID de utilizator într-o înregistrare angajat să stabilească Angajat rol DocType: UOM,UOM Name,Numele UOM -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Contribuția Suma +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Contribuția Suma DocType: Sales Invoice,Shipping Address,Adresa de livrare DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,Acest instrument vă ajută să actualizați sau stabili cantitatea și evaluarea stocului in sistem. Acesta este de obicei folosit pentru a sincroniza valorile de sistem și ceea ce există de fapt în depozite tale. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,În cuvinte va fi vizibil după ce a salva de livrare Nota. @@ -1273,7 +1274,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Pentru a urmări elemente utilizând coduri de bare. Va fi capabil de a intra articole în nota de livrare și factură de vânzare prin scanarea codului de bare de element. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Retrimite e-mail de plată DocType: Dependent Task,Dependent Task,Sarcina dependent -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Factor de Conversie pentru Unitatea de Măsură implicita trebuie să fie 1 pentru inregistrarea {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Factor de Conversie pentru Unitatea de Măsură implicita trebuie să fie 1 pentru inregistrarea {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Concediul de tip {0} nu poate dura mai mare de {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Încercați planificarea operațiunilor de X zile în avans. DocType: HR Settings,Stop Birthday Reminders,De oprire de naștere Memento @@ -1283,7 +1284,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Vezi apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Schimbarea net în numerar DocType: Salary Structure Deduction,Salary Structure Deduction,Structura Salariul Deducerea -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Unitate de măsură {0} a fost introdus mai mult de o dată în Factor de conversie Tabelul +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Unitate de măsură {0} a fost introdus mai mult de o dată în Factor de conversie Tabelul apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Cerere de plată există deja {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Costul de articole emise apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Cantitatea nu trebuie să fie mai mare de {0} @@ -1312,7 +1313,7 @@ DocType: BOM Item,BOM Item,Articol BOM DocType: Appraisal,For Employee,Pentru Angajat apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Row {0}: Advance împotriva Furnizor trebuie să fie de debit DocType: Company,Default Values,Valori implicite -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Rând {0}: Suma de plată nu poate fi negativ +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Rând {0}: Suma de plată nu poate fi negativ DocType: Expense Claim,Total Amount Reimbursed,Total suma rambursată apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Comparativ facturii furnizorului {0} din data {1} DocType: Customer,Default Price List,Lista de Prețuri Implicita @@ -1340,8 +1341,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Gar DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Înlocuiți un anumit BOM BOM în toate celelalte unde este folosit. Acesta va înlocui pe link-ul vechi BOM, actualizați costurilor și regenera ""BOM explozie articol"" de masă ca pe noi BOM" DocType: Shopping Cart Settings,Enable Shopping Cart,Activați cosul de cumparaturi DocType: Employee,Permanent Address,Permanent Adresa -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Articolul {0} trebuie să fie un Articol de Service. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Avansul plătit împotriva {0} {1} nu poate fi mai mare \ decât Grand total {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Vă rugăm să selectați codul de articol DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Reduce Deducerea pentru concediu fără plată (LWP) @@ -1397,12 +1397,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Principal apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Variantă DocType: Naming Series,Set prefix for numbering series on your transactions,Set prefix pentru seria de numerotare pe tranzacțiile dvs. +DocType: Employee Attendance Tool,Employees HTML,Angajații HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Pentru a opri nu pot fi anulate. Unstop pentru a anula. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Implicit BOM ({0}) trebuie să fie activ pentru acest element sau șablon de +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Implicit BOM ({0}) trebuie să fie activ pentru acest element sau șablon de DocType: Employee,Leave Encashed?,Concediu Incasat ? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Oportunitatea de la câmp este obligatoriu DocType: Item,Variants,Variante -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Realizeaza Comanda de Cumparare +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Realizeaza Comanda de Cumparare DocType: SMS Center,Send To,Trimite la apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Nu există echilibru concediu suficient pentru concediul de tip {0} DocType: Payment Reconciliation Payment,Allocated amount,Suma alocată @@ -1501,7 +1502,7 @@ DocType: Sales Person,Name and Employee ID,Nume și ID angajat apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,Data Limita nu poate fi anterioara Datei de POstare DocType: Website Item Group,Website Item Group,Site-ul Grupa de articole apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Impozite și taxe -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,Vă rugăm să introduceți data de referință +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,Vă rugăm să introduceți data de referință apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Plata Gateway cont nu este configurat apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} înregistrări de plată nu pot fi filtrate de {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,Tabelul pentru postul care va fi afișat în site-ul @@ -1522,7 +1523,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Rezoluția Detalii DocType: Quality Inspection Reading,Acceptance Criteria,Criteriile de receptie DocType: Item Attribute,Attribute Name,Denumire atribut -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Articolul {0} trebuie să fie un Articol de Vanzari sau de Service in {1} DocType: Item Group,Show In Website,Arata pe site-ul apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Grup DocType: Task,Expected Time (in hours),Timp de așteptat (în ore) @@ -1554,7 +1554,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Suma de transport maritim ,Pending Amount,În așteptarea Suma DocType: Purchase Invoice Item,Conversion Factor,Factor de conversie DocType: Purchase Order,Delivered,Livrat -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Configurare de server de intrare pentru ocuparea forței de muncă id-ul de e-mail. (De exemplu jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Configurare de server de intrare pentru ocuparea forței de muncă id-ul de e-mail. (De exemplu jobs@example.com) DocType: Purchase Receipt,Vehicle Number,Numărul de vehicule DocType: Purchase Invoice,The date on which recurring invoice will be stop,La data la care factura recurente vor fi opri apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Total frunze alocate {0} nu poate fi mai mic de frunze deja aprobate {1} pentru perioada @@ -1571,7 +1571,7 @@ DocType: HR Settings,HR Settings,Setări Resurse Umane apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Revendicarea Cheltuielilor este în curs de aprobare. Doar Aprobatorul de Cheltuieli poate actualiza statusul. DocType: Purchase Invoice,Additional Discount Amount,Reducere suplimentară Suma DocType: Leave Block List Allow,Leave Block List Allow,Permite Lista Concedii Blocate -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abbr nu poate fi gol sau spațiu +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abbr nu poate fi gol sau spațiu apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Grup non-grup apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Sport apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Raport real @@ -1594,7 +1594,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},Factor UOM de conversie este necesară în rândul {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Data Aprobare nu poate fi anterioara datei de verificare pentru inregistrarea {0} DocType: Salary Slip,Deduction,Deducere -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Articol Preț adăugată pentru {0} în lista de prețuri {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Articol Preț adăugată pentru {0} în lista de prețuri {1} DocType: Address Template,Address Template,Model adresă apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,Vă rugăm să introduceți ID-ul de angajat al acestei persoane de vânzări DocType: Territory,Classification of Customers by region,Clasificarea clienți în funcție de regiune @@ -1611,7 +1611,7 @@ DocType: Employee,Date of Birth,Data Nașterii apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Articolul {0} a fost deja returnat DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,**Anul fiscal** reprezintă un an financiar. Toate intrările contabile și alte tranzacții majore sunt monitorizate comparativ cu ** Anul fiscal **. DocType: Opportunity,Customer / Lead Address,Client / Adresa principala -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Atenție: certificat SSL invalid pe atașament {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Atenție: certificat SSL invalid pe atașament {0} DocType: Production Order Operation,Actual Operation Time,Timp efectiv de funcționare DocType: Authorization Rule,Applicable To (User),Aplicabil pentru (utilizator) DocType: Purchase Taxes and Charges,Deduct,Deduce @@ -1628,7 +1628,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Împărțit de livrare Notă în pachete. apps/erpnext/erpnext/hooks.py +69,Shipments,Transporturile DocType: Purchase Order Item,To be delivered to customer,Pentru a fi livrat clientului -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Ora Log Starea trebuie să fie prezentate. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Ora Log Starea trebuie să fie prezentate. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,Serial nr {0} nu apartine nici unei Warehouse apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # , DocType: Purchase Invoice,In Words (Company Currency),În cuvinte (Compania valutar) @@ -1645,7 +1645,7 @@ DocType: Leave Application,Total Leave Days,Total de zile de concediu DocType: Email Digest,Note: Email will not be sent to disabled users,Notă: Adresa de email nu va fi trimis la utilizatorii cu handicap apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Selectați compania ... DocType: Leave Control Panel,Leave blank if considered for all departments,Lăsați necompletat dacă se consideră pentru toate departamentele -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Tipuri de locuri de muncă (permanent, contractul, intern etc)." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Tipuri de locuri de muncă (permanent, contractul, intern etc)." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} este obligatoriu pentru articolul {1} DocType: Currency Exchange,From Currency,Din moneda apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Vă rugăm să selectați suma alocată, de tip Factură și factură Numărul din atleast rând una" @@ -1664,7 +1664,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,În procesul de DocType: Authorization Rule,Itemwise Discount,Reducere Articol-Avizat DocType: Purchase Order Item,Reference Document Type,Referință Document Type -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} comparativ cu comanda de vânzări {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} comparativ cu comanda de vânzări {1} DocType: Account,Fixed Asset,Activ Fix apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Inventarul serializat DocType: Activity Type,Default Billing Rate,Rata de facturare implicit @@ -1674,7 +1674,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Comanda de vânzări la plată DocType: Expense Claim Detail,Expense Claim Detail,Detaliu Revendicare Cheltuieli apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Timp Busteni creat: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,Vă rugăm să selectați contul corect +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,Vă rugăm să selectați contul corect DocType: Item,Weight UOM,Greutate UOM DocType: Employee,Blood Group,Grupă de sânge DocType: Purchase Invoice Item,Page Break,Page Break @@ -1709,7 +1709,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},Recursivitate FDM: {0} nu poate fi parinte sau copil lui {2} DocType: Production Order Operation,Completed Qty,Cantitate Finalizata apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","Pentru {0}, numai conturi de debit poate fi legat de o altă intrare în credit" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Lista de prețuri {0} este dezactivat +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Lista de prețuri {0} este dezactivat DocType: Manufacturing Settings,Allow Overtime,Permiteți ore suplimentare apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} numere de serie necesare pentru postul {1}. Ați furnizat {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Rata de evaluare curentă @@ -1760,7 +1760,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Nici apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Cazul Nr. nu poate fi 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,"Dacă exista Echipa de Eanzari si Partenerii de Vanzari (Parteneri de Canal), acestea pot fi etichetate și isi pot menține contribuția in activitatea de vânzări" DocType: Item,Show a slideshow at the top of the page,Arata un slideshow din partea de sus a paginii -DocType: Item,"Allow in Sales Order of type ""Service""",Permite în comandă de vânzări de tip "Service" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Magazine DocType: Time Log,Projects Manager,Manager Proiecte DocType: Serial No,Delivery Time,Timp de Livrare @@ -1775,6 +1774,7 @@ DocType: Rename Tool,Rename Tool,Redenumirea Tool apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Actualizare Cost DocType: Item Reorder,Item Reorder,Reordonare Articol apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Material de transfer +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Postul {0} trebuie să fie un element de vânzări în {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Specifica operațiunilor, costurile de exploatare și să dea o operațiune unică nu pentru operațiunile dumneavoastră." DocType: Purchase Invoice,Price List Currency,Lista de pret Valuta DocType: Naming Series,User must always select,Utilizatorul trebuie să selecteze întotdeauna @@ -1795,7 +1795,7 @@ DocType: Appraisal,Employee,Angajat apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Import Email la apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Invitați ca utilizator DocType: Features Setup,After Sale Installations,Echipamente premergătoare vânzării -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} este complet facturat +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} este complet facturat DocType: Workstation Working Hour,End Time,End Time apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Clauzele contractuale standard pentru vânzări sau de cumpărare. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Grup in functie de Voucher @@ -1821,7 +1821,7 @@ DocType: Upload Attendance,Attendance To Date,Prezenţa până la data apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Configurare de server de intrare pentru ID-ul de e-mail de vânzări. (De exemplu sales@example.com) DocType: Warranty Claim,Raised By,Ridicate de DocType: Payment Gateway Account,Payment Account,Cont de plăți -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,Vă rugăm să specificați companiei pentru a continua +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,Vă rugăm să specificați companiei pentru a continua apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Schimbarea net în conturile de creanțe apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Fara Masuri Compensatorii DocType: Quality Inspection Reading,Accepted,Acceptat @@ -1833,14 +1833,14 @@ DocType: Shipping Rule,Shipping Rule Label,Regula de transport maritim Label apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Materii prime nu poate fi gol. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Nu a putut fi actualizat stoc, factura conține drop de transport maritim." DocType: Newsletter,Test,Test -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Deoarece există tranzacții bursiere existente pentru acest element, \ nu puteți schimba valorile "nu are nici o serie", "are lot nr", "Este Piesa" și "Metoda de evaluare"" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Quick Jurnal de intrare apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,Nu puteți schimba rata dacă BOM menționat agianst orice element DocType: Employee,Previous Work Experience,Anterior Work Experience DocType: Stock Entry,For Quantity,Pentru Cantitate apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},Va rugam sa introduceti planificate Cantitate pentru postul {0} la rândul {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} nu este introdus +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} nu este introdus apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Cererile de elemente. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Pentru producerea separată va fi creat pentru fiecare articol bun finit. DocType: Purchase Invoice,Terms and Conditions1,Termeni și Conditions1 @@ -1865,6 +1865,7 @@ DocType: Notification Control,Expense Claim Approved Message,Mesaj Aprobare Reve DocType: Email Digest,How frequently?,Cât de frecvent? DocType: Purchase Receipt,Get Current Stock,Obține stocul curent apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Arborele de Bill de materiale +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Mark Prezent apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Data de Incepere a Mentenantei nu poate fi anterioara datei de livrare aferent de Nr. de Serie {0} DocType: Production Order,Actual End Date,Data efectiva de finalizare DocType: Authorization Rule,Applicable To (Role),Aplicabil pentru (rol) @@ -1879,7 +1880,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Data de Incheiere Contract trebuie să fie ulterioara Datei Aderării DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,Un distribuitor terță parte / dealer / agent comision / afiliat / reseller care vinde produsele companiilor pentru un comision. DocType: Customer Group,Has Child Node,Are nod fiu -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} comparativ cu comanda de cumpărare {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} comparativ cu comanda de cumpărare {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Introduceți parametrii url statici aici (de exemplu, expeditor = ERPNext, numele de utilizator = ERPNext, parola = 1234, etc)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} nu este in nici un an fiscal activ. Pentru mai multe detalii verifica {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Acesta este un site web exemplu auto-generat de ERPNext @@ -1927,7 +1928,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Adăugați sau deduce: Fie că doriți să adăugați sau deduce taxa." DocType: Purchase Receipt Item,Recd Quantity,Recd Cantitate apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Nu se pot produce mai multe Articole {0} decât cantitatea din Ordinul de Vânzări {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Stock intrare {0} nu este prezentat +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Stock intrare {0} nu este prezentat DocType: Payment Reconciliation,Bank / Cash Account,Cont bancă / numerar DocType: Tax Rule,Billing City,Oraș de facturare DocType: Global Defaults,Hide Currency Symbol,Ascunde simbol moneda @@ -1953,7 +1954,7 @@ DocType: Salary Structure,Total Earning,Câștigul salarial total de DocType: Purchase Receipt,Time at which materials were received,Timp în care s-au primit materiale apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Adresele mele DocType: Stock Ledger Entry,Outgoing Rate,Rata de ieșire -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Ramură organizație maestru. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Ramură organizație maestru. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,sau DocType: Sales Order,Billing Status,Stare facturare apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Cheltuieli de utilitate @@ -1991,7 +1992,7 @@ DocType: Bin,Reserved Quantity,Rezervat Cantitate DocType: Landed Cost Voucher,Purchase Receipt Items,Primirea de cumpărare Articole apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Formulare Personalizarea DocType: Account,Income Account,Contul de venit -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Livrare +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Livrare DocType: Stock Reconciliation Item,Current Qty,Cantitate curentă DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section","A se vedea ""Rate de materiale bazate pe"" în Costing Secțiunea" DocType: Appraisal Goal,Key Responsibility Area,Domeni de Responsabilitate Cheie @@ -2003,9 +2004,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,Vou DocType: Notification Control,Purchase Order Message,Purchase Order Mesaj DocType: Tax Rule,Shipping Country,Transport Tara DocType: Upload Attendance,Upload HTML,Încărcați HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","Raport avans ({0}) împotriva Comanda {1} nu poate fi mai mare decât \ - totalul ({2})" DocType: Employee,Relieving Date,Alinarea Data apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Regula de stabilire a prețurilor se face pentru a suprascrie Pret / defini procent de reducere, pe baza unor criterii." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Depozit poate fi modificat numai prin Bursa de primire de intrare / livrare Nota / cumparare @@ -2015,8 +2013,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Impoz apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","În cazul în care articolul Prețuri selectat se face pentru ""Pret"", se va suprascrie lista de prețuri. Prețul Articolul Prețuri este prețul final, deci ar trebui să se aplice mai departe reducere. Prin urmare, în cazul tranzacțiilor, cum ar fi comandă de vânzări, Ordinului de Procurare, etc, acesta va fi preluat în câmpul ""Rate"", mai degrabă decât câmpul ""Lista de prețuri Rata""." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Track conduce de Industrie tip. DocType: Item Supplier,Item Supplier,Furnizor Articol -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,Va rugam sa introduceti codul articol pentru a obține lot nu -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},Vă rugăm să selectați o valoare de {0} {1} quotation_to +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,Va rugam sa introduceti codul articol pentru a obține lot nu +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},Vă rugăm să selectați o valoare de {0} {1} quotation_to apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Toate adresele. DocType: Company,Stock Settings,Setări stoc apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Fuziune este posibilă numai în cazul în care următoarele proprietăți sunt aceleași în ambele registre. Este Group, Root Type, Company" @@ -2039,7 +2037,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Număr Cec DocType: Payment Tool Detail,Payment Tool Detail,Plata Instrumentul Detalii ,Sales Browser,Vânzări Browser DocType: Journal Entry,Total Credit,Total credit -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Atenție: Un alt {0} # {1} există împotriva intrării stoc {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Atenție: Un alt {0} # {1} există împotriva intrării stoc {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Local apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Împrumuturi și Avansuri (Active) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Debitorii @@ -2059,8 +2057,8 @@ DocType: Price List,Price List Master,Lista de preturi Masterat DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,Toate tranzacțiile de vânzări pot fi etichetate comparativ mai multor **Persoane de vânzări** pentru ca dvs. sa puteţi configura și monitoriza obiective. ,S.O. No.,SO Nu. DocType: Production Order Operation,Make Time Log,Fa-ti timp Log -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Vă rugăm să setați cantitatea reordona -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},Vă rugăm să creați client de plumb {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Vă rugăm să setați cantitatea reordona +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},Vă rugăm să creați client de plumb {0} DocType: Price List,Applicable for Countries,Aplicabile pentru țările apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Computere apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,Acesta este un grup de clienți rădăcină și nu pot fi editate. @@ -2108,7 +2106,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Factur DocType: Payment Reconciliation Invoice,Outstanding Amount,Remarcabil Suma DocType: Project Task,Working,De lucru DocType: Stock Ledger Entry,Stock Queue (FIFO),Stoc Queue (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Vă rugăm să selectați Ora Activitate. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Vă rugăm să selectați Ora Activitate. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} nu aparține companiei {1} DocType: Account,Round Off,Rotunji ,Requested Qty,A solicitat Cantitate @@ -2146,7 +2144,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Obține intrările relevante apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Intrare contabilitate pentru stoc DocType: Sales Invoice,Sales Team1,Vânzări TEAM1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Articolul {0} nu există +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Articolul {0} nu există DocType: Sales Invoice,Customer Address,Adresă client DocType: Payment Request,Recipient and Message,Destinatar și mesaje DocType: Purchase Invoice,Apply Additional Discount On,Aplicați Discount suplimentare La @@ -2165,7 +2163,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Mute Email apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Produse Alimentare, Bauturi si Tutun" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL sau BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Poate face doar plata împotriva facturată {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Poate face doar plata împotriva facturată {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Rata de comision nu poate fi mai mare decat 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Nivelul minim Inventarul DocType: Stock Entry,Subcontract,Subcontract @@ -2183,9 +2181,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Software apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Culoare DocType: Maintenance Visit,Scheduled,Programat apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle",Vă rugăm să selectați postul unde "Este Piesa" este "nu" și "Este punctul de vânzare" este "da" și nu este nici un alt produs Bundle +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),avans total ({0}) împotriva Comanda {1} nu poate fi mai mare decât totalul ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Selectați Distributie lunar pentru a distribui neuniform obiective pe luni. DocType: Purchase Invoice Item,Valuation Rate,Rata de evaluare -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Lista de pret Valuta nu selectat +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Lista de pret Valuta nu selectat apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Angajatul {0} a aplicat deja pentru {1} între {2} și {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Data de începere a proiectului apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +8,Until,Până la @@ -2196,6 +2195,7 @@ DocType: Quality Inspection,Inspection Type,Inspecție Tip apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},Vă rugăm să selectați {0} DocType: C-Form,C-Form No,Nr. formular-C DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,Participarea nemarcat apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Cercetător apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,Vă rugăm să salvați Newsletter înainte de a trimite apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Nume sau E-mail este obligatorie @@ -2221,7 +2221,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Confirm DocType: Payment Gateway,Gateway,Portal apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Furnizor> Furnizor Tip apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Vă rugăm să introduceți data alinarea. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,"Lasă doar Aplicatii cu statutul de ""Aprobat"" pot fi depuse" apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Titlul adresei este obligatoriu. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,Introduceți numele de campanie dacă sursa de anchetă este campanie @@ -2236,10 +2236,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Depozit Acceptat DocType: Bank Reconciliation Detail,Posting Date,Dată postare DocType: Item,Valuation Method,Metoda de evaluare apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Imposibilitatea de a găsi rata de schimb pentru {0} {1} la +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Mark jumatate de zi DocType: Sales Invoice,Sales Team,Echipa de vânzări apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Inregistrare duplicat DocType: Serial No,Under Warranty,În garanție -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Eroare] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Eroare] DocType: Sales Order,In Words will be visible once you save the Sales Order.,În cuvinte va fi vizibil după ce a salva comanda de vânzări. ,Employee Birthday,Zi de naștere angajat apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Capital de Risc @@ -2262,6 +2263,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,Centrul de Cost cu tranzacții existente nu poate fi transformat în grup DocType: Account,Depreciation,Depreciere apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Furnizor (e) +DocType: Employee Attendance Tool,Employee Attendance Tool,Instrumentul Participarea angajat DocType: Supplier,Credit Limit,Limita de Credit apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Selectați tipul de tranzacție DocType: GL Entry,Voucher No,Voletul nr @@ -2288,7 +2290,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Contul de root nu pot fi șterse ,Is Primary Address,Este primar Adresa DocType: Production Order,Work-in-Progress Warehouse,De lucru-in-Progress Warehouse -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Reference # {0} din {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Reference # {0} din {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Gestionați Adrese DocType: Pricing Rule,Item Code,Cod articol DocType: Production Planning Tool,Create Production Orders,Creare Comenzi de Producție @@ -2315,7 +2317,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Reconciliere bancară apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Obțineți actualizări apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Cerere de material {0} este anulată sau oprită apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Adaugă câteva înregistrări eșantion -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Lasă Managementul +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Lasă Managementul apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Grup in functie de Cont DocType: Sales Order,Fully Delivered,Livrat complet DocType: Lead,Lower Income,Micsoreaza Venit @@ -2330,6 +2332,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','Din Data' trebuie să fie dupã 'Până în Data' ,Stock Projected Qty,Stoc proiectată Cantitate apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Clientul {0} nu apartine proiectului {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Participarea marcat HTML DocType: Sales Order,Customer's Purchase Order,Comandă clientului DocType: Warranty Claim,From Company,De la Compania apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Valoare sau Cantitate @@ -2394,6 +2397,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Transfer apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,Vă rugăm să selectați cont bancar DocType: Newsletter,Create and Send Newsletters,A crea și trimite Buletine +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Selectați toate DocType: Sales Order,Recurring Order,Comanda recurent DocType: Company,Default Income Account,Contul Venituri Implicit apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Grup Client / Client @@ -2425,6 +2429,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Reveni Împotriva cump DocType: Item,Warranty Period (in days),Perioada de garanție (în zile) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Numerar net din operațiuni apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,"de exemplu, TVA" +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Mark Angajat Participarea în vrac apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Punctul 4 DocType: Journal Entry Account,Journal Entry Account,Jurnal de cont intrare DocType: Shopping Cart Settings,Quotation Series,Ofertă Series @@ -2681,14 +2686,14 @@ DocType: Task,Actual Start Date (via Time Logs),Data efectivă de început (prin DocType: Stock Reconciliation Item,Before reconciliation,Premergător reconcilierii apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Pentru a {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Impozite și Taxe adăugate (Compania de valuta) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Taxa Articol pentru inregistrarea {0} trebuie sa detina un cont de tip Fiscal sau De Venituri sau De Cheltuieli sau Taxabil +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Taxa Articol pentru inregistrarea {0} trebuie sa detina un cont de tip Fiscal sau De Venituri sau De Cheltuieli sau Taxabil DocType: Sales Order,Partly Billed,Parțial Taxat DocType: Item,Default BOM,FDM Implicit apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,Vă rugăm să re-tip numele companiei pentru a confirma apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Totală restantă Amt DocType: Time Log Batch,Total Hours,Total ore DocType: Journal Entry,Printing Settings,Setări de imprimare -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Totală de debit trebuie să fie egal cu total Credit. Diferența este {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Totală de debit trebuie să fie egal cu total Credit. Diferența este {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Autopropulsat apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Din Nota de Livrare DocType: Time Log,From Time,Din Time @@ -2735,7 +2740,7 @@ DocType: Purchase Invoice Item,Image View,Imagine Vizualizare DocType: Issue,Opening Time,Timp de deschidere apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,Datele De La și Pana La necesare apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,A Valorilor Mobiliare și Burselor de Mărfuri -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Unitatea implicit de măsură pentru Variant '{0} "trebuie să fie la fel ca în Template" {1} " +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Unitatea implicit de măsură pentru Variant '{0} "trebuie să fie la fel ca în Template" {1} " DocType: Shipping Rule,Calculate Based On,Calculaţi pe baza DocType: Delivery Note Item,From Warehouse,Din depozitul DocType: Purchase Taxes and Charges,Valuation and Total,Evaluare și Total @@ -2757,7 +2762,7 @@ DocType: Leave Application,Follow via Email,Urmați prin e-mail DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Suma taxa După Discount Suma apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Contul copil există pentru acest cont. Nu puteți șterge acest cont. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Cantitatea țintă sau valoarea țintă este obligatorie -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},Nu există implicit BOM pentru postul {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},Nu există implicit BOM pentru postul {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,Vă rugăm să selectați postarea Data primei apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,"Deschiderea Data ar trebui să fie, înainte de Data inchiderii" DocType: Leave Control Panel,Carry Forward,Transmite Inainte @@ -2835,7 +2840,7 @@ DocType: Leave Type,Is Encash,Este încasa DocType: Purchase Invoice,Mobile No,Mobil Nu DocType: Payment Tool,Make Journal Entry,Asigurați Jurnal intrare DocType: Leave Allocation,New Leaves Allocated,Frunze noi alocate -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Date proiect-înțelept nu este disponibilă pentru ofertă +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Date proiect-înțelept nu este disponibilă pentru ofertă DocType: Project,Expected End Date,Data de Incheiere Preconizata DocType: Appraisal Template,Appraisal Template Title,Titlu model expertivă apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Comercial @@ -2882,6 +2887,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,Î apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Vă rugăm să specificați un DocType: Offer Letter,Awaiting Response,Se aşteaptă răspuns apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Sus +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Timpul Jurnal a fost facturat DocType: Salary Slip,Earning & Deduction,Câștig Salarial si Deducere apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Contul {0} nu poate fi un Grup apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Opțional. Această setare va fi utilizat pentru a filtra în diverse tranzacții. @@ -2952,14 +2958,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Șters cu succes toate tranzacțiile legate de aceasta companie! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Ca pe data apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Probă -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Depozitul Implicit este obligatoriu pentru articol din stoc. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Depozitul Implicit este obligatoriu pentru articol din stoc. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Plata salariului pentru luna {0} și {1 an} DocType: Stock Settings,Auto insert Price List rate if missing,"Inserați Auto rata Lista de prețuri, dacă lipsește" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Total Suma plătită ,Transferred Qty,Transferat Cantitate apps/erpnext/erpnext/config/learn.py +11,Navigating,Navigarea apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Planificare -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Ora face Log lot +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Ora face Log lot apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Emis DocType: Project,Total Billing Amount (via Time Logs),Suma totală de facturare (prin timp Busteni) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Vindem acest articol @@ -2967,7 +2973,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Cantitatea trebuie sa fie mai mare decât 0 DocType: Journal Entry,Cash Entry,Cash intrare DocType: Sales Partner,Contact Desc,Persoana de Contact Desc -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Tip de frunze, cum ar fi casual, bolnavi, etc" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Tip de frunze, cum ar fi casual, bolnavi, etc" DocType: Email Digest,Send regular summary reports via Email.,Trimite rapoarte de sinteză periodice prin e-mail. DocType: Brand,Item Manager,Postul de manager DocType: Cost Center,Add rows to set annual budgets on Accounts.,Adaugaţi rânduri pentru a stabili bugete anuale pentru Conturi. @@ -2982,7 +2988,7 @@ DocType: GL Entry,Party Type,Tip de partid apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Materii prime nu poate fi la fel ca Item principal DocType: Item Attribute Value,Abbreviation,Abreviere apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Nu authroized din {0} depășește limitele -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Maestru șablon salariu. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Maestru șablon salariu. DocType: Leave Type,Max Days Leave Allowed,Max zile de concediu de companie apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Set Regula fiscală pentru coșul de cumpărături DocType: Payment Tool,Set Matching Amounts,Sume de potrivire Set @@ -2995,7 +3001,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Citate DocType: Stock Settings,Role Allowed to edit frozen stock,Rol permise pentru a edita stoc congelate ,Territory Target Variance Item Group-Wise,Teritoriul țintă Variance Articol Grupa Înțelept apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Toate grupurile de clienți -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} este obligatoriu. Este posibil ca înregistrarea schimbului valutar nu este creată pentru {1} până la {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} este obligatoriu. Este posibil ca înregistrarea schimbului valutar nu este creată pentru {1} până la {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Format de impozitare este obligatorie. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Contul {0}: cont părinte {1} nu există DocType: Purchase Invoice Item,Price List Rate (Company Currency),Lista de prețuri Rate (Compania de valuta) @@ -3015,8 +3021,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Detaliu Taxa Avizata Ar ,Item-wise Price List Rate,Rata Lista de Pret Articol-Avizat apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Furnizor ofertă DocType: Quotation,In Words will be visible once you save the Quotation.,În cuvinte va fi vizibil după ce salvați citat. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} este oprit -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Cod de bare {0} deja folosit pentru articolul {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} este oprit +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Cod de bare {0} deja folosit pentru articolul {1} DocType: Lead,Add to calendar on this date,Adăugaţi în calendar la această dată apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Reguli pentru a adăuga costurile de transport maritim. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,evenimente viitoare @@ -3043,8 +3049,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,Va apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Cel puţin un depozit este obligatoriu DocType: Serial No,Out of Warranty,Ieșit din garanție DocType: BOM Replace Tool,Replace,Înlocuirea -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} comparativ cu factura de vânzări {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Va rugam sa introduceti Unitatea de măsură prestabilită +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} comparativ cu factura de vânzări {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Va rugam sa introduceti Unitatea de măsură prestabilită DocType: Purchase Invoice Item,Project Name,Denumirea proiectului DocType: Supplier,Mention if non-standard receivable account,Mentionati daca non-standard cont de primit DocType: Journal Entry Account,If Income or Expense,In cazul Veniturilor sau Cheltuielilor @@ -3069,7 +3075,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Anul fiscal: {0} nu există DocType: Currency Exchange,To Currency,Pentru a valutar DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Permiteţi următorilor utilizatori să aprobe cereri de concediu pentru zile blocate. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Tipuri de cheltuieli de revendicare. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Tipuri de cheltuieli de revendicare. DocType: Item,Taxes,Impozite apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Plătite și nu sunt livrate DocType: Project,Default Cost Center,Cost Center Implicit @@ -3098,7 +3104,7 @@ DocType: Salary Structure Earning,Reduce Earning for Leave Without Pay (LWP),Red apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organization, other than yourself","Adăugați utilizatori la organizația dvs., altele decât tine" apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Concediu Aleator DocType: Batch,Batch ID,ID-ul lotului -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Notă: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Notă: {0} ,Delivery Note Trends,Tendințe Nota de Livrare apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Rezumat această săptămână apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} trebuie sa fie un articol cumpărat sau subcontractat în rândul {1} @@ -3137,6 +3143,7 @@ DocType: Project Task,Pending Review,Revizuirea în curs apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Click aici pentru a plăti DocType: Task,Total Expense Claim (via Expense Claim),Revendicarea Total cheltuieli (prin cheltuieli revendicarea) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Clienți Id +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Mark Absent apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,A timpului trebuie să fie mai mare decât la timp DocType: Journal Entry Account,Exchange Rate,Rata de schimb apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Comandă de vânzări {0} nu este prezentat @@ -3184,7 +3191,7 @@ DocType: Item Group,Default Expense Account,Cont de Cheltuieli Implicit DocType: Employee,Notice (days),Preaviz (zile) DocType: Tax Rule,Sales Tax Template,Format impozitul pe vânzări DocType: Employee,Encashment Date,Data plata in Numerar -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Comparativ tipului de voucher trebuie să fie o opțiune dintre următoarele: ordin de cumparare, factură de cumpărare sau intrare în jurnal" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Comparativ tipului de voucher trebuie să fie o opțiune dintre următoarele: ordin de cumparare, factură de cumpărare sau intrare în jurnal" DocType: Account,Stock Adjustment,Ajustarea stoc apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Există implicit Activitate Cost de activitate de tip - {0} DocType: Production Order,Planned Operating Cost,Planificate cost de operare @@ -3238,6 +3245,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Amortizare intrare DocType: BOM,Rate Of Materials Based On,Rate de materiale bazate pe apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Analtyics Suport +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Deselecteaza tot apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Compania lipsește din depozitul {0} DocType: POS Profile,Terms and Conditions,Termeni şi condiţii apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},Pentru a Data ar trebui să fie în anul fiscal. Presupunând Pentru a Data = {0} @@ -3259,7 +3267,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Pentru a seta acest an fiscal ca implicit, faceți clic pe ""Set as Default""" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Configurare de server de intrare pentru suport de e-mail id. (De exemplu support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Lipsă Cantitate -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Postul varianta {0} există cu aceleași atribute +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Postul varianta {0} există cu aceleași atribute DocType: Salary Slip,Salary Slip,Salariul Slip apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,'Până la data' este necesară DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Generarea de ambalare slip pentru pachetele de a fi livrate. Folosit pentru a notifica numărul pachet, conținutul pachetului și greutatea sa." @@ -3307,7 +3315,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Vezi Op DocType: Item Attribute Value,Attribute Value,Valoare Atribut apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","Id Email trebuie să fie unic, există deja pentru {0}" ,Itemwise Recommended Reorder Level,Nivel de Reordonare Recomandat al Articolului-Awesome -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,Vă rugăm selectați 0} {întâi +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,Vă rugăm selectați 0} {întâi DocType: Features Setup,To get Item Group in details table,Pentru a obține Grupa de articole în detalii de masă apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Lot {0} din {1} Postul a expirat. DocType: Sales Invoice,Commission,Comision @@ -3362,7 +3370,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Ia restante Tichete DocType: Warranty Claim,Resolved By,Rezolvat prin DocType: Appraisal,Start Date,Data începerii -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Alocaţi concedii pentru o perioadă. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Alocaţi concedii pentru o perioadă. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Cecuri și Depozite respingă incorect apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Click aici pentru a verifica apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Contul {0}: nu puteți atribui contului în sine calitatea de cont părinte @@ -3382,7 +3390,7 @@ DocType: Employee,Educational Qualification,Detalii Calificare de Învățămân DocType: Workstation,Operating Costs,Costuri de operare DocType: Employee Leave Approver,Employee Leave Approver,Aprobator Concediu Angajat apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} a fost adăugat cu succes la lista noastră Newsletter. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Rând {0}: O intrare de Comandă există deja pentru acest depozit {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Rând {0}: O intrare de Comandă există deja pentru acest depozit {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Nu se poate declara pierdut, pentru că Oferta a fost realizata." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Cumpărare Maestru de Management apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Producția de Ordine {0} trebuie să fie prezentate @@ -3406,7 +3414,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Factură de vânzări {0} a fost deja prezentat apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Data Finalizare DocType: Purchase Invoice Item,Amount (Company Currency),Sumă (monedă companie) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Unitate de organizare (departament) maestru. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Unitate de organizare (departament) maestru. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Va rugam sa introduceti nos mobile valabile DocType: Budget Detail,Budget Detail,Detaliu buget apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,Vă rugăm să introduceți mesajul înainte de trimitere @@ -3422,13 +3430,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Primite și acceptate ,Serial No Service Contract Expiry,Serial Nu Service Contract de expirare DocType: Item,Unit of Measure Conversion,Unitate de măsură de conversie apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Angajat nu poate fi schimbat -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,"Nu puteți credit și de debit același cont, în același timp," +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,"Nu puteți credit și de debit același cont, în același timp," DocType: Naming Series,Help HTML,Ajutor HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Weightage total alocat este de 100%. Este {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Alocație mai mare decât -{0} anulată pentru articolul {1} DocType: Address,Name of person or organization that this address belongs to.,Nume de persoană sau organizație care această adresă aparține. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Furnizorii dumneavoastră -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,Nu se poate seta pierdut deoarece se intocmeste comandă de vânzări. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,Nu se poate seta pierdut deoarece se intocmeste comandă de vânzări. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,"O altă structură salarială {0} este activă pentru angajatul {1}. Vă rugăm să îi setaţi statusul ""inactiv"" pentru a continua." DocType: Purchase Invoice,Contact,Persoana de Contact apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Primit de la @@ -3438,11 +3446,11 @@ DocType: Item,Has Serial No,Are nr. de serie DocType: Employee,Date of Issue,Data Problemei apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: de la {0} pentru {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Row # {0}: Set Furnizor de produs {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Site-ul Image {0} atașat la postul {1} nu poate fi găsit +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Site-ul Image {0} atașat la postul {1} nu poate fi găsit DocType: Issue,Content Type,Tip Conținut apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Computer DocType: Item,List this Item in multiple groups on the website.,Listeaza acest articol in grupuri multiple de pe site-ul.\ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,Vă rugăm să verificați Multi opțiune de valuta pentru a permite conturi cu altă valută +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,Vă rugăm să verificați Multi opțiune de valuta pentru a permite conturi cu altă valută apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Postul: {0} nu există în sistemul apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Nu esti autorizat pentru a configura valoarea Congelat DocType: Payment Reconciliation,Get Unreconciled Entries,Ia nereconciliate Entries @@ -3452,14 +3460,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Ce face? DocType: Delivery Note,To Warehouse,Pentru Warehouse apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Contul {0} a fost introdus de mai multe ori pentru anul fiscal {1} ,Average Commission Rate,Rată de comision medie -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'Are numãr de serie' nu poate fi 'Da' pentru articolele care nu au stoc +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'Are numãr de serie' nu poate fi 'Da' pentru articolele care nu au stoc apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Prezenţa nu poate fi consemnată pentru date viitoare DocType: Pricing Rule,Pricing Rule Help,Regula de stabilire a prețurilor de ajutor DocType: Purchase Taxes and Charges,Account Head,Titularul Contului apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Actualizati costuri suplimentare pentru a calcula costul aterizat de articole apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Electric DocType: Stock Entry,Total Value Difference (Out - In),Diferența Valoarea totală (Out - In) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Row {0}: Exchange Rate este obligatorie +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Row {0}: Exchange Rate este obligatorie apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},ID-ul de utilizator nu este setat pentru Angajat {0} DocType: Stock Entry,Default Source Warehouse,Depozit Sursa Implicit DocType: Item,Customer Code,Cod client @@ -3478,15 +3486,15 @@ DocType: Notification Control,Sales Invoice Message,Factură de vânzări Mesaj apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Contul {0} de închidere trebuie să fie de tip răspunderii / capitaluri proprii DocType: Authorization Rule,Based On,Bazat pe DocType: Sales Order Item,Ordered Qty,Ordonat Cantitate -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Postul {0} este dezactivat +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Postul {0} este dezactivat DocType: Stock Settings,Stock Frozen Upto,Stoc Frozen Până la apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Perioada de la si perioadă la datele obligatorii pentru recurente {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Activitatea de proiect / sarcină. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Generează fluturașe de salariu +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Generează fluturașe de salariu apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Destinat Cumpărării trebuie să fie bifat, dacă Se Aplica Pentru este selectat ca şi {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Reducerea trebuie să fie mai mică de 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Scrie Off Suma (Compania de valuta) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Row # {0}: Va rugam sa seta cantitatea reordona +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Row # {0}: Va rugam sa seta cantitatea reordona DocType: Landed Cost Voucher,Landed Cost Voucher,Voucher Cost Landed apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},Vă rugăm să setați {0} DocType: Purchase Invoice,Repeat on Day of Month,Repetați în ziua de Luna @@ -3539,7 +3547,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Implicit Lucrări în depozit Progress apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Setări implicite pentru tranzacțiile de contabilitate. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Data Preconizata nu poate fi anterioara Datei Cererii de Materiale -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Articolul {0} trebuie să fie un Articol de Vânzări +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Articolul {0} trebuie să fie un Articol de Vânzări DocType: Naming Series,Update Series Number,Actualizare Serii Număr DocType: Account,Equity,Echitate DocType: Sales Order,Printing Details,Imprimare Detalii @@ -3591,7 +3599,7 @@ DocType: Task,Review Date,Data Comentariului DocType: Purchase Invoice,Advance Payments,Plățile în avans DocType: Purchase Taxes and Charges,On Net Total,Pe net total apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Depozit țintă în rândul {0} trebuie să fie același ca și de producție de comandă -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Nu permisiunea de a utiliza plată Tool +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Nu permisiunea de a utiliza plată Tool apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,"'Adresele de email pentru notificari', nespecificate pentru factura recurenta %s" apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Moneda nu poate fi schimbat după efectuarea înregistrări folosind un altă valută DocType: Company,Round Off Account,Rotunji cont @@ -3614,7 +3622,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Cantitatea de produs obținut după fabricarea / reambalare de la cantități date de materii prime DocType: Payment Reconciliation,Receivable / Payable Account,De încasat de cont / de plătit DocType: Delivery Note Item,Against Sales Order Item,Comparativ articolului comenzii de vânzări -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},Vă rugăm să specificați Atribut Valoare pentru atribut {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},Vă rugăm să specificați Atribut Valoare pentru atribut {0} DocType: Item,Default Warehouse,Depozit Implicit DocType: Task,Actual End Date (via Time Logs),Dată efectivă de sfârşit (prin Jurnale de Timp) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Buget nu pot fi atribuite în Grupa Contul {0} @@ -3639,10 +3647,10 @@ DocType: Lead,Blog Subscriber,Abonat blog apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Creare reguli pentru restricționare tranzacții bazate pe valori. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","In cazul in care se bifeaza, nr. total de zile lucratoare va include si sarbatorile, iar acest lucru va reduce valoarea Salariul pe Zi" DocType: Purchase Invoice,Total Advance,Total de Advance -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Prelucrare de salarizare +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Prelucrare de salarizare DocType: Opportunity Item,Basic Rate,Rată elementară DocType: GL Entry,Credit Amount,Suma de credit -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Setați ca Lost +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Setați ca Lost apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Plată Primirea Note DocType: Supplier,Credit Days Based On,Zile de credit pe baza DocType: Tax Rule,Tax Rule,Regula de impozitare @@ -3672,7 +3680,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Cantitatea Acceptata apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} nu există apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Facturi cu valoarea ridicată pentru clienți. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Id-ul proiectului -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Rândul nr {0}: Suma nu poate fi mai mare decât așteptarea Suma împotriva revendicării cheltuieli {1}. În așteptarea Suma este {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Rândul nr {0}: Suma nu poate fi mai mare decât așteptarea Suma împotriva revendicării cheltuieli {1}. În așteptarea Suma este {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} abonați adăugați DocType: Maintenance Schedule,Schedule,Program DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Definirea Bugetul pentru acest centru de cost. Pentru a seta o acțiune buget, consultați "Lista Firme"" @@ -3732,19 +3740,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS Profil DocType: Payment Gateway Account,Payment URL Message,Plată URL Mesaj apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Sezonalitatea pentru stabilirea bugetelor, obiective etc." -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Rând {0}: Plata Suma nu poate fi mai mare de Impresionant Suma +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Rând {0}: Plata Suma nu poate fi mai mare de Impresionant Suma apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Totală neremunerată -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Timpul Conectare nu este facturabile -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Postul {0} este un șablon, vă rugăm să selectați unul dintre variantele sale" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Timpul Conectare nu este facturabile +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Postul {0} este un șablon, vă rugăm să selectați unul dintre variantele sale" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Cumpărător apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Salariul net nu poate fi negativ -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Va rugam sa introduceti pe baza documentelor justificative manual +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Va rugam sa introduceti pe baza documentelor justificative manual DocType: SMS Settings,Static Parameters,Parametrii statice DocType: Purchase Order,Advance Paid,Avans plătit DocType: Item,Item Tax,Taxa Articol apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Material de Furnizor apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Accize factură DocType: Expense Claim,Employees Email Id,Id Email Angajat +DocType: Employee Attendance Tool,Marked Attendance,Participarea marcat apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Raspunderi Curente apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Trimite SMS-uri în masă a persoanelor de contact DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Considerare Taxa sau Cost pentru @@ -3767,7 +3776,7 @@ DocType: Item Attribute,Numeric Values,Valori numerice apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Atașați logo DocType: Customer,Commission Rate,Rata de Comision apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Face Varianta -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Blocaţi cereri de concediu pe departamente. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Blocaţi cereri de concediu pe departamente. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Coșul este gol DocType: Production Order,Actual Operating Cost,Cost efectiv de operare apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Rădăcină nu poate fi editat. @@ -3786,7 +3795,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,Crea automat Material Cerere dacă cantitate scade sub acest nivel ,Item-wise Purchase Register,Registru Achizitii Articol-Avizat DocType: Batch,Expiry Date,Data expirării -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Pentru a seta nivelul de reordona, element trebuie să fie un articol de cumparare sau de fabricație Postul" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Pentru a seta nivelul de reordona, element trebuie să fie un articol de cumparare sau de fabricație Postul" ,Supplier Addresses and Contacts,Adrese furnizorului și de Contacte apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,Vă rugăm să selectați categoria întâi apps/erpnext/erpnext/config/projects.py +18,Project master.,Maestru proiect. diff --git a/erpnext/translations/ru.csv b/erpnext/translations/ru.csv index a1d9b14409..5aab4031d8 100644 --- a/erpnext/translations/ru.csv +++ b/erpnext/translations/ru.csv @@ -164,14 +164,14 @@ DocType: Journal Entry Account,Credit in Company Currency,Кредит в вал DocType: Delivery Note,Installation Status,Состояние установки apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Кол-во Принято + Отклонено должно быть равно полученному количеству по позиции {0} DocType: Item,Supply Raw Materials for Purchase,Поставка сырья для покупки -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Пункт {0} должен быть Покупка товара +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Пункт {0} должен быть Покупка товара DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Скачать шаблон, заполнить соответствующие данные и приложить измененный файл. Все даты и сотрудник сочетание в выбранный период придет в шаблоне, с существующими посещаемости" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,Пункт {0} не является активным или конец жизни был достигнут DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Будет обновлена после Расходная накладная представляется. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Для учета налога в строке {0} в размере Item, налоги в строках должны быть также включены {1}" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Настройки для модуля HR +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Для учета налога в строке {0} в размере Item, налоги в строках должны быть также включены {1}" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Настройки для модуля HR DocType: SMS Center,SMS Center,SMS центр DocType: BOM Replace Tool,New BOM,Новый BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Пакетная Журналы Время для оплаты. @@ -199,7 +199,7 @@ DocType: Offer Letter,Select Terms and Conditions,Выберите Сроки и DocType: Production Planning Tool,Sales Orders,Заказы клиентов DocType: Purchase Taxes and Charges,Valuation,Оценка ,Purchase Order Trends,Заказ на покупку Тенденции -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Выделите листья в течение года. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Выделите листья в течение года. DocType: Earning Type,Earning Type,Набор Тип DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Отключить планирование емкости и отслеживание времени DocType: Bank Reconciliation,Bank Account,Банковский счет @@ -237,7 +237,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Пункт Сайт Спецификация DocType: Payment Tool,Reference No,Ссылка Нет apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Оставьте Заблокированные -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Пункт {0} достигла своей жизни на {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Пункт {0} достигла своей жизни на {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,За год DocType: Stock Reconciliation Item,Stock Reconciliation Item,Фото Примирение товара DocType: Stock Entry,Sales Invoice No,Номер Счета Продажи @@ -249,7 +249,7 @@ DocType: Item,Minimum Order Qty,Минимальное количество за DocType: Pricing Rule,Supplier Type,Тип поставщика DocType: Item,Publish in Hub,Опубликовать в Hub ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Пункт {0} отменяется +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Пункт {0} отменяется apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Заказ материалов DocType: Bank Reconciliation,Update Clearance Date,Обновление просвет Дата DocType: Item,Purchase Details,Покупка Подробности @@ -261,11 +261,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Отклонен Количес DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Поле доступно в накладной, цитаты, счет-фактура, заказ клиента" DocType: SMS Settings,SMS Sender Name,Имя отправителя SMS DocType: Contact,Is Primary Contact,Является Основной контакт +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Время входа была рулонированные для фактуры DocType: Notification Control,Notification Control,Контроль Уведомлений DocType: Lead,Suggestions,Предложения DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,"Установите группу товаров стрелке бюджеты на этой территории. Вы можете также включить сезонность, установив распределение." apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},"Пожалуйста, введите родительскую группу счета для склада {0}" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},"Оплата с {0} {1} не может быть больше, чем суммы задолженности {2}" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},"Оплата с {0} {1} не может быть больше, чем суммы задолженности {2}" DocType: Supplier,Address HTML,Адрес HTML DocType: Lead,Mobile No.,Мобильный номер DocType: Maintenance Schedule,Generate Schedule,Создать расписание @@ -282,7 +283,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Синхронизированные со ступицей apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Неправильный Пароль DocType: Item,Variant Of,Вариант -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Пункт {0} должно быть Service Элемент apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',"Завершен Кол-во не может быть больше, чем ""Кол-во для изготовления""" DocType: Period Closing Voucher,Closing Account Head,Закрытие счета руководитель DocType: Employee,External Work History,Внешний Работа История @@ -294,10 +294,10 @@ DocType: Newsletter,Newsletter,Рассылка новостей DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Сообщите по электронной почте по созданию автоматической запрос материалов DocType: Journal Entry,Multi Currency,Мульти валюта DocType: Payment Reconciliation Invoice,Invoice Type,Тип счета -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,· Отметки о доставке +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,· Отметки о доставке apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Настройка Налоги apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,"Оплата запись была изменена после того, как вытащил его. Пожалуйста, вытащить его снова." -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} введен дважды в налог по позиции +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} введен дважды в налог по позиции apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Резюме на этой неделе и в ожидании деятельности DocType: Workstation,Rent Cost,Стоимость аренды apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,"Пожалуйста, выберите месяц и год" @@ -308,7 +308,7 @@ DocType: Shipping Rule,Valid for Countries,Действительно для с DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Все импорта смежных областях, как валюты, обменный курс, общий объем импорта, импорт общего итога и т.д. доступны в ТОВАРНЫЙ ЧЕК, поставщиков цитаты, счета-фактуры Заказа т.д." apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"Этот пункт является шаблоном и не могут быть использованы в операциях. Атрибуты Деталь будет копироваться в вариантах, если ""не копировать"" не установлен" apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Итоговый заказ считается -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Сотрудник обозначение (например, генеральный директор, директор и т.д.)." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Сотрудник обозначение (например, генеральный директор, директор и т.д.)." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,"Пожалуйста, введите 'Repeat на день месяца' значения поля" DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,"Скорость, с которой Заказчик валют преобразуется в базовой валюте клиента" DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Доступный в спецификации, накладной, счете-фактуре, производственного заказа, заказа на поставку, покупка получение, счет-фактура, заказ клиента, фондовой въезда, расписания" @@ -322,7 +322,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +254,Pur apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +87,Row # {0}: Batch No must be same as {1} {2},"Ряд # {0}: Пакетное Нет должно быть таким же, как {1} {2}" apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +65,Convert to non-Group,Преобразовать в негрупповой apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +55,Purchase Receipt must be submitted,Покупка Получение должны быть представлены -apps/erpnext/erpnext/config/stock.py +53,Batch (lot) of an Item.,Партия элементов. +apps/erpnext/erpnext/config/stock.py +53,Batch (lot) of an Item.,Партия позиций. DocType: C-Form Invoice Detail,Invoice Date,Дата выставления счета DocType: GL Entry,Debit Amount,Дебет Сумма apps/erpnext/erpnext/accounts/party.py +223,There can only be 1 Account per Company in {0} {1},Там может быть только 1 аккаунт на компанию в {0} {1} @@ -357,7 +357,7 @@ DocType: Workstation,Consumable Cost,Расходные Стоимость apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',"{0} ({1}) должен иметь роль ""Подтверждающий Отсутствие""" DocType: Purchase Receipt,Vehicle Date,Дата apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Медицинский -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Причина потери +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Причина потери apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Рабочая станция закрыта в следующие сроки согласно Список праздников: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Возможности DocType: Employee,Single,Единственный @@ -377,7 +377,7 @@ DocType: BOM,Item Desription,Пункт Desription DocType: Purchase Invoice,Supplier Name,Наименование поставщика apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +25,Read the ERPNext Manual,Прочитайте руководство ERPNext DocType: Account,Is Group,Является Группа -DocType: Stock Settings,Automatically Set Serial Nos based on FIFO,Автоматически указан серийный пп на основе FIFO +DocType: Stock Settings,Automatically Set Serial Nos based on FIFO,Автоматически присваивать серийные номера по возрастанию (FIFO) DocType: Accounts Settings,Check Supplier Invoice Number Uniqueness,Проверьте Поставщик Номер счета Уникальность apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +57,'To Case No.' cannot be less than 'From Case No.',"""До Дела №"" не может быть меньше, чем ""От Дела №""" apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +104,Non Profit,Некоммерческое предприятие @@ -385,14 +385,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Channel ДУrtner DocType: Account,Old Parent,Старый родительский DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,"Настроить вводный текст, который идет в составе этой электронной почте. Каждая транзакция имеет отдельный вводный текст." +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Не включать символы (напр. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Мастер Менеджер по продажам apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Глобальные настройки для всех производственных процессов. DocType: Accounts Settings,Accounts Frozen Upto,Счета заморожены До DocType: SMS Log,Sent On,Направлено на -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Атрибут {0} выбрано несколько раз в таблице атрибутов +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Атрибут {0} выбрано несколько раз в таблице атрибутов DocType: HR Settings,Employee record is created using selected field. , DocType: Sales Order,Not Applicable,Не применяется -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Мастер отдыха. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Мастер отдыха. DocType: Material Request Item,Required Date,Требуется Дата DocType: Delivery Note,Billing Address,Адрес для выставления счетов apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,"Пожалуйста, введите Код товара." @@ -428,7 +429,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,"Пожалуйста, введите Склад для которых Материал Запрос будет поднят" DocType: Production Order,Additional Operating Cost,Дополнительные Эксплуатационные расходы apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Косметика -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Чтобы объединить, следующие свойства должны быть одинаковыми для обоих пунктов" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Чтобы объединить, следующие свойства должны быть одинаковыми для обоих пунктов" DocType: Shipping Rule,Net Weight,Вес нетто DocType: Employee,Emergency Phone,В случае чрезвычайных ситуаций ,Serial No Warranty Expiry,не Серийный Нет Гарантия Срок @@ -453,7 +454,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +190,"{0} is an invalid e DocType: Purchase Receipt,Add / Edit Taxes and Charges,Добавить / Изменить Налоги и сборы DocType: Purchase Invoice,Supplier Invoice No,Поставщик Счет Нет DocType: Territory,For reference,Для справки -apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +154,"Cannot delete Serial No {0}, as it is used in stock transactions","Не удается удалить Серийный номер {0}, так как он используется в сделках с акциями" +apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +154,"Cannot delete Serial No {0}, as it is used in stock transactions","Не удается удалить Серийный номер {0}, так как он используется в операции перемещения по складу." apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +231,Closing (Cr),Закрытие (Cr) DocType: Serial No,Warranty Period (Days),Гарантийный срок (дней) DocType: Installation Note Item,Installation Note Item,Установка Примечание Пункт @@ -485,17 +486,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Биллинг и доставка Статус apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Постоянных клиентов DocType: Leave Control Panel,Allocate,Выделить -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Возвраты с продаж +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Возвраты с продаж DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Выберите Заказы из которого вы хотите создать производственных заказов. DocType: Item,Delivered by Supplier (Drop Ship),Поставляется Поставщиком (Drop кораблей) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Зарплата компоненты. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Зарплата компоненты. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,База данных потенциальных клиентов. DocType: Authorization Rule,Customer or Item,Клиент или товара apps/erpnext/erpnext/config/crm.py +17,Customer database.,База данных клиентов. DocType: Quotation,Quotation To,Цитата Для DocType: Lead,Middle Income,Средний доход apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Открытие (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"По умолчанию Единица измерения для п {0} не может быть изменен непосредственно, потому что вы уже сделали некоторые сделки (сделок) с другим UOM. Вам нужно будет создать новый пункт для использования другого умолчанию единица измерения." +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"По умолчанию Единица измерения для п {0} не может быть изменен непосредственно, потому что вы уже сделали некоторые сделки (сделок) с другим UOM. Вам нужно будет создать новый пункт для использования другого умолчанию единица измерения." apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Выделенные сумма не может быть отрицательным DocType: Purchase Order Item,Billed Amt,Счетов выдано кол-во DocType: Warehouse,A logical Warehouse against which stock entries are made.,"Логический Склад, по которому сделаны складские записи" @@ -508,20 +509,20 @@ apps/erpnext/erpnext/stock/stock_ledger.py +338,Negative Stock Error ({6}) for I DocType: Fiscal Year Company,Fiscal Year Company,Финансовый год компании DocType: Packing Slip Item,DN Detail,DN Деталь DocType: Time Log,Billed,Выдавать счета -DocType: Batch,Batch Description,Партия Описание +DocType: Batch,Batch Description,Описание партии DocType: Delivery Note,Time at which items were delivered from warehouse,"Момент, в который предметы были доставлены со склада" DocType: Sales Invoice,Sales Taxes and Charges,Налоги и сборы с продаж DocType: Employee,Organization Profile,Профиль организации apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,"Пожалуйста, установите нумерация серии для Посещаемость через Настройка> нумерации серии" DocType: Employee,Reason for Resignation,Причиной отставки -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Шаблон для аттестации. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Шаблон для аттестации. DocType: Payment Reconciliation,Invoice/Journal Entry Details,Счет / Журнал вступления подробнее apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' не в {2} Финансовом году DocType: Buying Settings,Settings for Buying Module,Настройки для покупки модуля apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,"Пожалуйста, введите ТОВАРНЫЙ ЧЕК первый" DocType: Buying Settings,Supplier Naming By,Поставщик Именование По DocType: Activity Type,Default Costing Rate,По умолчанию Калькуляция Оценить -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,График технического обслуживания +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,График технического обслуживания apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Тогда ценообразование Правила отфильтровываются на основе Заказчика, Группа клиентов, Территория, поставщиков, Тип Поставщик, Кампания, Партнеры по сбыту и т.д." apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Чистое изменение в инвентаризации DocType: Employee,Passport Number,Номер паспорта @@ -560,7 +561,7 @@ DocType: Purchase Invoice,Quarterly,Ежеквартально DocType: Selling Settings,Delivery Note Required,Доставка Примечание необходимое DocType: Sales Order Item,Basic Rate (Company Currency),Основная ставка (валюта компании) DocType: Manufacturing Settings,Backflush Raw Materials Based On,С обратной промывкой Сырье материалы на основе -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,"Пожалуйста, введите детали деталя" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,"Пожалуйста, введите детали деталя" DocType: Purchase Receipt,Other Details,Другие детали DocType: Account,Accounts,Учётные записи apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Маркетинг @@ -573,7 +574,7 @@ DocType: Employee,Provide email id registered in company,Обеспечить э DocType: Hub Settings,Seller City,Продавец Город DocType: Email Digest,Next email will be sent on:,Следующее письмо будет отправлено на: DocType: Offer Letter Term,Offer Letter Term,Предложение Письмо срок -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Пункт имеет варианты. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Пункт имеет варианты. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Пункт {0} не найден DocType: Bin,Stock Value,Стоимость акций apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Дерево Тип @@ -581,7 +582,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,"Кол-во, потребл DocType: Serial No,Warranty Expiry Date,Гарантия срок действия DocType: Material Request Item,Quantity and Warehouse,Количество и Склад DocType: Sales Invoice,Commission Rate (%),Комиссия ставка (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","На ваучере Тип должен быть одним из заказа клиента, накладная или Запись в журнале" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","На ваучере Тип должен быть одним из заказа клиента, накладная или Запись в журнале" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Авиационно-космический DocType: Journal Entry,Credit Card Entry,Вступление Кредитная карта apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Тема Задачи @@ -668,10 +669,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Ответственность сторон apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,"Санкционированный сумма не может быть больше, чем претензии Сумма в строке {0}." DocType: Company,Default Cost of Goods Sold Account,По умолчанию Себестоимость проданных товаров счет -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Прайс-лист не выбран +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Прайс-лист не выбран DocType: Employee,Family Background,Семья Фон DocType: Process Payroll,Send Email,Отправить e-mail -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Внимание: Неверный Приложение {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Внимание: Неверный Приложение {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Нет разрешения DocType: Company,Default Bank Account,По умолчанию Банковский счет apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Чтобы отфильтровать на основе партии, выберите партия первого типа" @@ -699,7 +700,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,По DocType: Features Setup,"To enable ""Point of Sale"" features",Чтобы включить "Точки продаж" Особенности DocType: Bin,Moving Average Rate,Moving Average Rate DocType: Production Planning Tool,Select Items,Выберите товары -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} по Счету {1} от {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} по Счету {1} от {2} DocType: Maintenance Visit,Completion Status,Статус завершения DocType: Sales Invoice Item,Target Warehouse,Целевая Склад DocType: Item,Allow over delivery or receipt upto this percent,Разрешить доставку на получение или Шифрование до этого процента @@ -759,7 +760,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Ма apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Не удается найти временной интервал в ближайшие {0} дней для работы {1} DocType: Production Order,Plan material for sub-assemblies,План материал для Субсборки apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} должен быть активным -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,"Пожалуйста, выберите тип документа сначала" +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,"Пожалуйста, выберите тип документа сначала" apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Перейти Корзина apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Отменить Материал просмотров {0} до отмены этого обслуживания визит DocType: Salary Slip,Leave Encashment Amount,Оставьте Инкассация Количество @@ -777,7 +778,7 @@ DocType: Purchase Receipt,Range,температур DocType: Supplier,Default Payable Accounts,По умолчанию задолженность Кредиторская apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Сотрудник {0} не активен или не существует DocType: Features Setup,Item Barcode,Пункт Штрих -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Пункт Варианты {0} обновляются +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Пункт Варианты {0} обновляются DocType: Quality Inspection Reading,Reading 6,Чтение 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Счета-фактуры Advance DocType: Address,Shop,Магазин @@ -800,7 +801,7 @@ DocType: Salary Slip,Total in words,Всего в словах DocType: Material Request Item,Lead Time Date,Время выполнения Дата apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,"является обязательным. Может быть, Обмен валюты запись не создана для" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},"Ряд # {0}: Пожалуйста, сформулируйте Серийный номер для Пункт {1}" -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Для элементов "продукта" Bundle, склад, серийный номер и серия № будет рассматриваться с "упаковочный лист 'таблицы. Если Склад и пакетная Нет являются одинаковыми для всех упаковочных деталей для любой "продукта" Bundle пункта, эти значения могут быть введены в основной таблице Item, значения будут скопированы в "список упаковки" таблицу." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Для элементов "продукта" Bundle, склад, серийный номер и серия № будет рассматриваться с "упаковочный лист 'таблицы. Если Склад и пакетная Нет являются одинаковыми для всех упаковочных деталей для любой "продукта" Bundle пункта, эти значения могут быть введены в основной таблице Item, значения будут скопированы в "список упаковки" таблицу." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Поставки клиентам. DocType: Purchase Invoice Item,Purchase Order Item,Заказ товара apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Косвенная прибыль @@ -821,6 +822,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Выберите Payroll apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Перейти к соответствующей группе (обычно использования средств> Текущие активы> Банковские счета и создать новый аккаунт (нажав на Добавить Ребенка) типа "банк" DocType: Workstation,Electricity Cost,Стоимость электроэнергии DocType: HR Settings,Don't send Employee Birthday Reminders,Не отправляйте Employee рождения Напоминания +,Employee Holiday Attendance,Сотрудник отдыха Посещаемость DocType: Opportunity,Walk In,Прогулка в apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Сток Записи DocType: Item,Inspection Criteria,Осмотр Критерии @@ -843,7 +845,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options, DocType: Journal Entry Account,Expense Claim,Расходов претензии apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Кол-во для {0} DocType: Leave Application,Leave Application,Оставить заявку -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Оставьте Allocation Tool +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Оставьте Allocation Tool DocType: Leave Block List,Leave Block List Dates,Оставьте черных списков Даты DocType: Company,If Monthly Budget Exceeded (for expense account),Если Ежемесячный бюджет превышен (за счет расходов) DocType: Workstation,Net Hour Rate,Чистая час Цена @@ -853,7 +855,7 @@ DocType: Packing Slip Item,Packing Slip Item,Упаковочный лист П DocType: POS Profile,Cash/Bank Account,Наличные / Банковский счет apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Удалены пункты без изменения в количестве или стоимости. DocType: Delivery Note,Delivery To,Доставка Для -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Атрибут стол является обязательным +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Атрибут стол является обязательным DocType: Production Planning Tool,Get Sales Orders,Получить заказов клиента apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} не может быть отрицательным apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Скидка @@ -917,7 +919,7 @@ DocType: SMS Center,Total Characters,Персонажей apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},"Пожалуйста, выберите спецификации в спецификации поля для пункта {0}" DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-образный Счет Подробно DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Оплата Примирение Счет -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Вклад% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Вклад% DocType: Item,website page link,сайт ссылку DocType: Company,Company registration numbers for your reference. Tax numbers etc.,Регистрационные номера компании для вашей справки. Налоговые числа и т.д. DocType: Sales Partner,Distributor,Дистрибьютор @@ -932,7 +934,7 @@ DocType: Salary Slip,Deductions,Отчисления DocType: Purchase Invoice,Start date of current invoice's period,Дату периода текущего счета-фактуры начнем apps/erpnext/erpnext/projects/doctype/time_log_batch/time_log_batch.js +23,This Time Log Batch has been billed.,Это Пакетная Время Лог был объявлен. DocType: Salary Slip,Leave Without Pay,Отпуск без сохранения содержания -apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +287,Capacity Planning Error,Планирование мощностей Ошибка +apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +287,Capacity Planning Error,Ошибка Планирования Мощностей ,Trial Balance for Party,Пробный баланс для партии DocType: Lead,Consultant,Консультант DocType: Salary Slip,Earnings,Прибыль @@ -959,10 +961,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,Коэффициент пер DocType: Stock Settings,Default Item Group,По умолчанию Пункт Группа apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Поставщик базы данных. DocType: Account,Balance Sheet,Балансовый отчет -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Центр Стоимость для элемента данных с Код товара ' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Центр Стоимость для элемента данных с Код товара ' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,"Ваш продавец получит напоминание в этот день, чтобы связаться с клиентом" apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Дальнейшие счета могут быть сделаны в соответствии с группами, но Вы можете быть против не-групп" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Налоговые и иные отчисления заработной платы. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Налоговые и иные отчисления заработной платы. DocType: Lead,Lead,Лид DocType: Email Digest,Payables,Кредиторская задолженность DocType: Account,Warehouse,Склад @@ -979,10 +981,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Несогласо DocType: Global Defaults,Current Fiscal Year,Текущий финансовый год DocType: Global Defaults,Disable Rounded Total,Отключение закругленными Итого DocType: Lead,Call,Звонок -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,"""Записи"" не могут быть пустыми" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,"""Записи"" не могут быть пустыми" apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Дубликат строка {0} с же {1} ,Trial Balance,Пробный баланс -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Настройка сотрудников +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Настройка сотрудников apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","Сетка """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,"Пожалуйста, выберите префикс первым" apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Исследования @@ -991,7 +993,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,ID пользователя apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Посмотреть Леджер apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Старейшие -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Пункт Группа существует с тем же именем, пожалуйста, измените имя элемента или переименовать группу товаров" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Пункт Группа существует с тем же именем, пожалуйста, измените имя элемента или переименовать группу товаров" DocType: Production Order,Manufacture against Sales Order,Производство против заказ клиента apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Остальной мир apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,Пункт {0} не может иметь Batch @@ -1016,7 +1018,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Отклонен Склад DocType: GL Entry,Against Voucher,Против ваучером DocType: Item,Default Buying Cost Center,По умолчанию Покупка МВЗ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Чтобы получить лучшее из ERPNext, мы рекомендуем вам потребуется некоторое время и смотреть эти справки видео." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Пункт {0} должно быть продажи товара +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Пункт {0} должно быть продажи товара apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,для DocType: Item,Lead Time in days,Время в днях ,Accounts Payable Summary,Сводка кредиторской задолженности @@ -1031,7 +1033,7 @@ apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.py +65,Case No(s) a apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +14,Item 2,Пункт 2 apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +59,Account head {0} created,Основной счет {0} создан apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +153,Green,Зеленый -DocType: Item,Auto re-order,Авто повторного заказа +DocType: Item,Auto re-order,Автоматический перезаказ apps/erpnext/erpnext/selling/report/sales_person_target_variance_item_group_wise/sales_person_target_variance_item_group_wise.py +59,Total Achieved,Всего Выполнено DocType: Employee,Place of Issue,Место выдачи apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +59,Contract,Контракт @@ -1042,7 +1044,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Сельское хозяйство apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Ваши продукты или услуги DocType: Mode of Payment,Mode of Payment,Способ оплаты -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Сайт изображение должно быть общественное файл или адрес веб-сайта +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Сайт изображение должно быть общественное файл или адрес веб-сайта apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,Это корень группу товаров и не могут быть изменены. DocType: Journal Entry Account,Purchase Order,Заказ на покупку DocType: Warehouse,Warehouse Contact Info,Склад Контактная информация @@ -1053,7 +1055,7 @@ DocType: Serial No,Serial No Details,Серийный номер подробн DocType: Purchase Invoice Item,Item Tax Rate,Пункт Налоговая ставка apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","Для {0}, только кредитные счета могут быть связаны с другой дебету" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Доставка Примечание {0} не представлено -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Пункт {0} должен быть Субдоговорная Пункт +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Пункт {0} должен быть Субдоговорная Пункт apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Капитальные оборудование apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Цены Правило сначала выбирается на основе ""Применить На"" поле, которое может быть Пункт, Пункт Группа или Марка." DocType: Hub Settings,Seller Website,Этого продавца @@ -1062,7 +1064,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Цель DocType: Sales Invoice Item,Edit Description,Редактировать описание apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,"Ожидаемая дата поставки меньше, чем Запланированная дата начала." -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,Для поставщиков +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,Для поставщиков DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Установка Тип аккаунта помогает в выборе этого счет в сделках. DocType: Purchase Invoice,Grand Total (Company Currency),Общий итог (Компания Валюта) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Всего Исходящие @@ -1114,7 +1116,6 @@ DocType: Authorization Rule,Average Discount,Средняя скидка DocType: Address,Utilities,Инженерное оборудование DocType: Purchase Invoice Item,Accounting,Бухгалтерия DocType: Features Setup,Features Setup,Особенности установки -DocType: Item,Is Service Item,Является Service Элемент apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Срок подачи заявлений не может быть период распределения пределами отпуск DocType: Activity Cost,Projects,Проекты apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,"Пожалуйста, выберите финансовый год" @@ -1135,7 +1136,7 @@ DocType: Item,Maintain Stock,Поддержание складе apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Сток записи уже созданные для производственного заказа apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Чистое изменение в основных фондов DocType: Leave Control Panel,Leave blank if considered for all designations,"Оставьте пустым, если рассматривать для всех обозначений" -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Начисление типа «Актуальные 'в строке {0} не могут быть включены в пункт Оценить +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Начисление типа «Актуальные 'в строке {0} не могут быть включены в пункт Оценить apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,С DateTime DocType: Email Digest,For Company,За компанию @@ -1144,8 +1145,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Адрес доставки Имя apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,План счетов DocType: Material Request,Terms and Conditions Content,Условия Содержимое -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,"не может быть больше, чем 100" -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Пункт {0} не является акционерным Пункт +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,"не может быть больше, чем 100" +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Пункт {0} не является акционерным Пункт DocType: Maintenance Visit,Unscheduled,Незапланированный DocType: Employee,Owned,Присвоено DocType: Salary Slip Deduction,Depends on Leave Without Pay,Зависит от отпуска без сохранения заработной платы @@ -1167,7 +1168,7 @@ Used for Taxes and Charges","Налоговый Подробная таблиц apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Сотрудник не может сообщить себе. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Если счет замораживается, записи разрешается ограниченных пользователей." DocType: Email Digest,Bank Balance,Банковский баланс -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Учет Вход для {0}: {1} могут быть сделаны только в валюте: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Учет Вход для {0}: {1} могут быть сделаны только в валюте: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Отсутствие активного Зарплата Структура найдено сотрудника {0} и месяц DocType: Job Opening,"Job profile, qualifications required etc.","Профиль работы, необходимая квалификация и т.д." DocType: Journal Entry Account,Account Balance,Остаток на счете @@ -1184,7 +1185,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Sub сбор DocType: Shipping Rule Condition,To Value,Произвести оценку DocType: Supplier,Stock Manager,Фото менеджер apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Источник склад является обязательным для ряда {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Упаковочный лист +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Упаковочный лист apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Аренда площади для офиса apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Настройки Настройка SMS Gateway apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Ошибка при импортировании! @@ -1228,7 +1229,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM детали № DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Дополнительная скидка Сумма (валюта компании) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Ошибка: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,"Пожалуйста, создайте новую учетную запись с Планом счетов бухгалтерского учета." -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Техническое обслуживание Посетить +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Техническое обслуживание Посетить apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Клиент> Группа клиентов> Территория DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Доступные Пакетная Кол-во на складе DocType: Time Log Batch Detail,Time Log Batch Detail,Время входа Пакетная Подробно @@ -1237,7 +1238,7 @@ DocType: Leave Block List,Block Holidays on important days.,Блок Отдых ,Accounts Receivable Summary,Сводка дебиторской задолженности apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,"Пожалуйста, установите поле идентификатора пользователя в Сотрудника Запись, чтобы настроить Employee роль" DocType: UOM,UOM Name,Имя единица измерения -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Вклад Сумма +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Вклад Сумма DocType: Sales Invoice,Shipping Address,Адрес доставки DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,"Этот инструмент поможет вам обновить или исправить количество и оценку запасов в системе. Это, как правило, используется для синхронизации системных значений и то, что на самом деле существует в ваших складах." DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,По словам будет виден только вы сохраните накладной. @@ -1278,7 +1279,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,"Чтобы отслеживать предметы, используя штрих-код. Вы сможете ввести элементы в накладной и счет-фактуру путем сканирования штрих-кода товара." apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Повторно оплаты на e-mail DocType: Dependent Task,Dependent Task,Зависит Задача -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Коэффициент пересчета для дефолтного Единица измерения должна быть 1 в строке {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Коэффициент пересчета для дефолтного Единица измерения должна быть 1 в строке {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},"Оставить типа {0} не может быть больше, чем {1}" DocType: Manufacturing Settings,Try planning operations for X days in advance.,Попробуйте планировании операций для X дней. DocType: HR Settings,Stop Birthday Reminders,Стоп День рождения Напоминания @@ -1288,7 +1289,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Просмотр apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Чистое изменение денежных средств DocType: Salary Structure Deduction,Salary Structure Deduction,Зарплата Структура Вычет -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Единица измерения {0} был введен более чем один раз в таблицу преобразования Factor +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Единица измерения {0} был введен более чем один раз в таблицу преобразования Factor apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Оплата Запрос уже существует {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Стоимость эмиссионных пунктов apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Количество должно быть не более {0} @@ -1317,7 +1318,7 @@ DocType: BOM Item,BOM Item,Позиция BOM DocType: Appraisal,For Employee,Требуются apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Ряд {0}: Предварительная против Поставщика должны быть дебет DocType: Company,Default Values,Значения По Умолчанию -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Ряд {0}: Сумма платежа не может быть отрицательным +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Ряд {0}: Сумма платежа не может быть отрицательным DocType: Expense Claim,Total Amount Reimbursed,Общая сумма возмещаются apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Против поставщика счет-фактура {0} от {1} DocType: Customer,Default Price List,По умолчанию Прайс-лист @@ -1345,8 +1346,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Г DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Замените особое спецификации и во всех других спецификаций, где он используется. Он заменит старую ссылку спецификации, обновите стоимость и восстановить ""BOM Взрыв предмета"" таблицу на новой спецификации" DocType: Shopping Cart Settings,Enable Shopping Cart,Включить Корзина DocType: Employee,Permanent Address,Постоянный адрес -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Пункт {0} должен быть Service Элемент. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}","Advance платный против {0} {1} не может быть больше \, чем общий итог {2}" apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,"Пожалуйста, выберите элемент кода" DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Уменьшите вычет для отпуска без сохранения (LWP) @@ -1402,12 +1402,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Основные apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Вариант DocType: Naming Series,Set prefix for numbering series on your transactions,Установить префикс для нумерации серии на ваших сделок +DocType: Employee Attendance Tool,Employees HTML,Сотрудники HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,"Приостановленный заказ не может быть отменен. Снимите с заказа статус ""Приостановлено"" для отмены" -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,По умолчанию BOM ({0}) должен быть активным для данного элемента или в шаблоне +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,По умолчанию BOM ({0}) должен быть активным для данного элемента или в шаблоне DocType: Employee,Leave Encashed?,Оставьте инкассированы? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Возможность поле От обязательна DocType: Item,Variants,Варианты -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Сделать Заказ +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Сделать Заказ DocType: SMS Center,Send To,Отправить apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Существует не хватает отпуск баланс для отпуске Тип {0} DocType: Payment Reconciliation Payment,Allocated amount,Выделенная сумма @@ -1508,7 +1509,7 @@ DocType: Sales Person,Name and Employee ID,Имя и ID сотрудника apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,"Впритык не может быть, прежде чем отправлять Дата" DocType: Website Item Group,Website Item Group,Сайт Пункт Группа apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Пошлины и налоги -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,"Пожалуйста, введите дату Ссылка" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,"Пожалуйста, введите дату Ссылка" apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Платежный шлюз аккаунт не настроен apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} записи оплаты не могут быть отфильтрованы по {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,"Таблица для элемента, который будет показан на веб-сайте" @@ -1522,14 +1523,13 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p DocType: Account,Frozen,замороженные ,Open Production Orders,Открыть Производственные заказы DocType: Installation Note,Installation Time,Время установки -DocType: Sales Invoice,Accounting Details,Учет Подробнее +DocType: Sales Invoice,Accounting Details,Подробности ведения учета apps/erpnext/erpnext/setup/doctype/company/company.js +44,Delete all the Transactions for this Company,Удалить все транзакции этой компании apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +190,Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Production Order # {3}. Please update operation status via Time Logs,"Ряд # {0}: Режим {1} не завершены {2} Кол-во готовой продукции в производстве Приказ № {3}. Пожалуйста, обновите статус работы через журнал времени" apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +57,Investments,Инвестиции DocType: Issue,Resolution Details,Разрешение Подробнее DocType: Quality Inspection Reading,Acceptance Criteria,Критерий приемлемости DocType: Item Attribute,Attribute Name,Имя атрибута -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Пункт {0} должно быть продажи или в пункте СЕРВИС {1} DocType: Item Group,Show In Website,Показать на сайте apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Группа DocType: Task,Expected Time (in hours),Ожидаемое время (в часах) @@ -1561,7 +1561,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Доставка Количес ,Pending Amount,В ожидании Сумма DocType: Purchase Invoice Item,Conversion Factor,Коэффициент преобразования DocType: Purchase Order,Delivered,Доставлено -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Настройка сервера входящей подрабатывать электронный идентификатор. (Например jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Настройка сервера входящей подрабатывать электронный идентификатор. (Например jobs@example.com) DocType: Purchase Receipt,Vehicle Number,Количество транспортных средств DocType: Purchase Invoice,The date on which recurring invoice will be stop,"Дата, на которую повторяющихся счет будет остановить" apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,"Всего выделенные листья {0} не может быть меньше, чем уже утвержденных листьев {1} за период" @@ -1578,7 +1578,7 @@ DocType: HR Settings,HR Settings,Настройки HR apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Расходов претензии ожидает одобрения. Только расходов утверждающий можете обновить статус. DocType: Purchase Invoice,Additional Discount Amount,Дополнительная скидка Сумма DocType: Leave Block List Allow,Leave Block List Allow,Оставьте Черный список Разрешить -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Аббревиатура не может быть пустой или пробелом +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Аббревиатура не может быть пустой или пробелом apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Группа не-группы apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Спорт apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Общий фактический @@ -1602,7 +1602,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},Фактор Единица измерения преобразования требуется в строке {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Дата просвет не может быть до даты регистрации в строке {0} DocType: Salary Slip,Deduction,Вычет -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Цена товара добавляется для {0} в Прейскуранте {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Цена товара добавляется для {0} в Прейскуранте {1} DocType: Address Template,Address Template,Шаблон адреса apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,"Пожалуйста, введите Employee Id этого менеджера по продажам" DocType: Territory,Classification of Customers by region,Классификация клиентов по регионам @@ -1619,7 +1619,7 @@ DocType: Employee,Date of Birth,Дата рождения apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Пункт {0} уже вернулся DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,**Фискальный год** представляет собой финансовый год. Все бухгалтерские записи и другие крупные сделки отслеживаются по **Фискальному году**. DocType: Opportunity,Customer / Lead Address,Заказчик / Ведущий Адрес -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Внимание: Неверный сертификат SSL на привязанности {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Внимание: Неверный сертификат SSL на привязанности {0} DocType: Production Order Operation,Actual Operation Time,Фактическая Время работы DocType: Authorization Rule,Applicable To (User),Применимо к (Пользователь) DocType: Purchase Taxes and Charges,Deduct,Вычеты € @@ -1636,7 +1636,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Сплит Delivery Note в пакеты. apps/erpnext/erpnext/hooks.py +69,Shipments,Поставки DocType: Purchase Order Item,To be delivered to customer,Для поставляться заказчику -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Время входа Статус должен быть представлен. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Время входа Статус должен быть представлен. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,Серийный номер {0} не принадлежит ни к одной Склад apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Ряд # DocType: Purchase Invoice,In Words (Company Currency),В Слов (Компания валюте) @@ -1653,7 +1653,7 @@ DocType: Leave Application,Total Leave Days,Всего Оставить дней DocType: Email Digest,Note: Email will not be sent to disabled users,Примечание: E-mail не будет отправлен отключенному пользователю apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Выберите компанию ... DocType: Leave Control Panel,Leave blank if considered for all departments,"Оставьте пустым, если рассматривать для всех отделов" -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Виды занятости (постоянная, контракт, стажер и т.д.)." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Виды занятости (постоянная, контракт, стажер и т.д.)." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} является обязательным для п. {1} DocType: Currency Exchange,From Currency,Из валюты apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Пожалуйста, выберите выделенной суммы, счет-фактура Тип и номер счета-фактуры в по крайней мере одном ряду" @@ -1672,7 +1672,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,В процессе DocType: Authorization Rule,Itemwise Discount,Itemwise Скидка DocType: Purchase Order Item,Reference Document Type,Ссылка Тип документа -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} против заказов клиентов {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} против заказов клиентов {1} DocType: Account,Fixed Asset,Исправлена активами apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Серийный Инвентарь DocType: Activity Type,Default Billing Rate,По умолчанию Платежная Оценить @@ -1682,7 +1682,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Заказ клиента в оплату DocType: Expense Claim Detail,Expense Claim Detail,Расходов претензии Подробно apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Журналы Время создания: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,"Пожалуйста, выберите правильный счет" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,"Пожалуйста, выберите правильный счет" DocType: Item,Weight UOM,Вес Единица измерения DocType: Employee,Blood Group,Группа крови DocType: Purchase Invoice Item,Page Break,Разрыв страницы @@ -1717,7 +1717,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM рекурсия: {0} не может быть родитель или ребенок {2} DocType: Production Order Operation,Completed Qty,Завершено Кол-во apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","Для {0}, только дебетовые счета могут быть связаны с другой кредитной вступления" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Прайс-лист {0} отключена +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Прайс-лист {0} отключена DocType: Manufacturing Settings,Allow Overtime,Разрешить Овертайм apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} Серийные номера необходимые для позиции {1}. Вы предоставили {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Текущая оценка Оценить @@ -1768,7 +1768,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Не apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Дело № не может быть 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,"Если у вас есть отдел продаж и продажа партнеры (Channel Partners), они могут быть помечены и поддерживать их вклад в сбытовой деятельности" DocType: Item,Show a slideshow at the top of the page,Показ слайдов в верхней части страницы -DocType: Item,"Allow in Sales Order of type ""Service""",Разрешить в заказ клиента типа "услуг" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Магазины DocType: Time Log,Projects Manager,Менеджер проектов DocType: Serial No,Delivery Time,Время доставки @@ -1783,6 +1782,7 @@ DocType: Rename Tool,Rename Tool,Переименование файлов apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Обновление Стоимость DocType: Item Reorder,Item Reorder,Пункт Переупоряд apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,О передаче материала +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Состояние {0} должен быть в продаже товара в {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","не Укажите операции, эксплуатационные расходы и дать уникальную операцию не в вашей деятельности." DocType: Purchase Invoice,Price List Currency,Прайс-лист валют DocType: Naming Series,User must always select,Пользователь всегда должен выбирать @@ -1803,7 +1803,7 @@ DocType: Appraisal,Employee,Сотрудник apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Импорт E-mail С apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Пригласить в пользователя DocType: Features Setup,After Sale Installations,После продажи установок -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} полностью выставлен +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} полностью выставлен DocType: Workstation Working Hour,End Time,Время окончания apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Стандартные условия договора для продажи или покупки. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Группа по ваучером @@ -1829,7 +1829,7 @@ DocType: Upload Attendance,Attendance To Date,Посещаемость To Date apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Настройка сервера входящей для продажи электронный идентификатор. (Например sales@example.com) DocType: Warranty Claim,Raised By,Поднятый По DocType: Payment Gateway Account,Payment Account,Оплата счета -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,"Пожалуйста, сформулируйте Компания приступить" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,"Пожалуйста, сформулируйте Компания приступить" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Чистое изменение дебиторской задолженности apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Компенсационные Выкл DocType: Quality Inspection Reading,Accepted,Принято @@ -1841,14 +1841,15 @@ DocType: Shipping Rule,Shipping Rule Label,Правило ярлыке apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Сырье не может быть пустым. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Не удалось обновить запас, счет-фактура содержит падение пункт доставки." DocType: Newsletter,Test,Тест -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ - you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Как есть существующие биржевые операции по этому пункту, \ вы не можете изменить значения 'Имеет серийный номер "," Имеет Batch Нет »,« Является ли со Пункт "и" Оценка Метод "" +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ + you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Поскольку существуют операции перемещения по складу для этой позиции, \ Вы не можете изменять значения 'Имеется серийный номер', +'Имеется номер партии', 'Есть на складе' и 'Метод оценки'" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Быстрый журнал запись apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,"Вы не можете изменить скорость, если спецификации упоминается agianst любого элемента" DocType: Employee,Previous Work Experience,Предыдущий опыт работы DocType: Stock Entry,For Quantity,Для Количество apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},"Пожалуйста, введите Запланированное Количество по пункту {0} в строке {1}" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} не проведен +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} не проведен apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Запросы на предметы. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Отдельный производственный заказ будет создан для каждого готового хорошего пункта. DocType: Purchase Invoice,Terms and Conditions1,Сроки и условиях1 @@ -1873,6 +1874,7 @@ DocType: Notification Control,Expense Claim Approved Message,Расходов п DocType: Email Digest,How frequently?,Как часто? DocType: Purchase Receipt,Get Current Stock,Получить Наличие на складе apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Дерево Билла материалов +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Марк Присутствует apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Техническое обслуживание дата не может быть до даты доставки для Serial No {0} DocType: Production Order,Actual End Date,Фактический Дата окончания DocType: Authorization Rule,Applicable To (Role),Применимо к (Роль) @@ -1887,7 +1889,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,"Конец контракта Дата должна быть больше, чем дата вступления" DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,"Сторонний дистрибьютер / дилер / агент / филиал / реселлер, который продает продукты компании за комиссионное вознаграждение." DocType: Customer Group,Has Child Node,Имеет дочерний узел -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} против Заказа {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} против Заказа {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Введите статические параметры адрес здесь (Например отправитель = ERPNext, имя пользователя = ERPNext, пароль = 1234 и т.д.)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} нет ни в одном активном финансовом году. Для более подробной информации проверьте {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Это пример сайт автоматически сгенерированный из ERPNext @@ -1935,7 +1937,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Добавить или вычесть: Если вы хотите, чтобы добавить или вычесть налог." DocType: Purchase Receipt Item,Recd Quantity,RECD Количество apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},"Не можете производить больше элемент {0}, чем количество продаж Заказать {1}" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Фото Элемент {0} не представлены +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Фото Элемент {0} не представлены DocType: Payment Reconciliation,Bank / Cash Account,Банк / Расчетный счет DocType: Tax Rule,Billing City,Биллинг Город DocType: Global Defaults,Hide Currency Symbol,Скрыть Символ Валюты @@ -1961,7 +1963,7 @@ DocType: Salary Structure,Total Earning,Всего Заработок DocType: Purchase Receipt,Time at which materials were received,"Момент, в который были получены материалы" apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Мои Адреса DocType: Stock Ledger Entry,Outgoing Rate,Исходящие Оценить -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Организация филиал мастер. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Организация филиал мастер. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,или DocType: Sales Order,Billing Status,Статус Биллинг apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Коммунальные расходы @@ -1999,7 +2001,7 @@ DocType: Bin,Reserved Quantity,Зарезервировано Количеств DocType: Landed Cost Voucher,Purchase Receipt Items,Покупка чеков товары apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Настройка формы DocType: Account,Income Account,Счет Доходов -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Доставка +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Доставка DocType: Stock Reconciliation Item,Current Qty,Текущий Кол-во DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section","См. ""Оценить материалов на основе"" в калькуляции раздел" DocType: Appraisal Goal,Key Responsibility Area,Ключ Ответственность Площадь @@ -2011,9 +2013,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,В DocType: Notification Control,Purchase Order Message,Заказ на сообщение DocType: Tax Rule,Shipping Country,Доставка Страна DocType: Upload Attendance,Upload HTML,Загрузить HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","Всего продвижение ({0}) Под заказ {1} не может быть больше \ - чем ВСЕГО ({2})" DocType: Employee,Relieving Date,Освобождение Дата apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Цены Правило состоит перезаписать Прайс-лист / определить скидка процент, на основе некоторых критериев." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Склад может быть изменен только с помощью со входа / накладной / Покупка получении @@ -2023,8 +2022,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,По apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Если выбран Цены правила делается для ""цена"", это приведет к перезаписи прайс-лист. Цены Правило цена окончательная цена, поэтому никакого скидка не следует применять. Таким образом, в таких сделках, как заказ клиента, Заказ и т.д., это будет выбрано в поле 'Rate', а не поле ""Прайс-лист Rate '." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Трек Ведет по Отрасль Тип. DocType: Item Supplier,Item Supplier,Пункт Поставщик -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,"Пожалуйста, введите Код товара, чтобы получить партию не" -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},"Пожалуйста, выберите значение для {0} quotation_to {1}" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,"Пожалуйста, введите Код товара, чтобы получить партию не" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},"Пожалуйста, выберите значение для {0} quotation_to {1}" apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Все адреса. DocType: Company,Stock Settings,Акции Настройки apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Объединение возможно только, если следующие свойства такие же, как в отчетах. Есть группа, корневого типа, компания" @@ -2047,7 +2046,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Чек Количество DocType: Payment Tool Detail,Payment Tool Detail,"Деталь платежный инструмент," ,Sales Browser,Браузер по продажам DocType: Journal Entry,Total Credit,Всего очков -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Внимание: Еще {0} # {1} существует против вступления фондовой {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Внимание: Еще {0} # {1} существует против вступления фондовой {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Локальные apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Кредиты и авансы (активы) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Должники @@ -2067,8 +2066,8 @@ DocType: Price List,Price List Master,Прайс-лист Мастер DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,Все сделок купли-продажи могут быть помечены против нескольких ** продавцы ** так что вы можете устанавливать и контролировать цели. ,S.O. No.,КО № DocType: Production Order Operation,Make Time Log,Сделать временной лаг -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,"Пожалуйста, установите количество тональный" -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},"Пожалуйста, создайте Клиента от свинца {0}" +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,"Пожалуйста, установите количество тональный" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},"Пожалуйста, создайте Клиента от свинца {0}" DocType: Price List,Applicable for Countries,Применимо для стран apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Компьютеры apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,Это корневая группа клиентов и не могут быть изменены. @@ -2116,7 +2115,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Бил DocType: Payment Reconciliation Invoice,Outstanding Amount,Непогашенная сумма DocType: Project Task,Working,Работающий DocType: Stock Ledger Entry,Stock Queue (FIFO),Фото со Очередь (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,"Пожалуйста, выберите Журналы Время." +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,"Пожалуйста, выберите Журналы Время." apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} не принадлежит Компании {1} DocType: Account,Round Off,Округлять ,Requested Qty,Запрашиваемые Кол-во @@ -2154,7 +2153,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Получить соответствующие записи apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Бухгалтерский учет Вход для запасе DocType: Sales Invoice,Sales Team1,Продажи Команда1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Пункт {0} не существует +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Пункт {0} не существует DocType: Sales Invoice,Customer Address,Клиент Адрес DocType: Payment Request,Recipient and Message,Получатель и сообщение DocType: Purchase Invoice,Apply Additional Discount On,Применить Дополнительная скидка на @@ -2173,7 +2172,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Отключение E-mail apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Продукты питания, напитки и табак" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL или BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Могу только осуществить платеж против нефактурированных {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Могу только осуществить платеж против нефактурированных {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,"Скорость Комиссия не может быть больше, чем 100" apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Минимальный уровень запасов DocType: Stock Entry,Subcontract,Субподряд @@ -2191,9 +2190,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Прогр apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Цвет DocType: Maintenance Visit,Scheduled,Запланированно apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Пожалуйста, выберите пункт, где "ли со Пункт" "Нет" и "является продажа товара" "Да", и нет никакой другой Связка товаров" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),"Всего аванс ({0}) против ордена {1} не может быть больше, чем общая сумма ({2})" DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Выберите ежемесячное распределение к неравномерно распределять цели по различным месяцам. DocType: Purchase Invoice Item,Valuation Rate,Оценка Оцените -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Прайс-лист Обмен не выбран +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Прайс-лист Обмен не выбран apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,"Пункт Row {0}: Покупка Получение {1}, не существует в таблице выше ""Купить ПОСТУПЛЕНИЯ""" apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Сотрудник {0} уже подало заявку на {1} между {2} и {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Дата начала проекта @@ -2205,6 +2205,7 @@ DocType: Quality Inspection,Inspection Type,Инспекция Тип apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},"Пожалуйста, выберите {0}" DocType: C-Form,C-Form No,C-образный Нет DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,Немаркированных Посещаемость apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Исследователь apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,"Пожалуйста, сохраните бюллетень перед отправкой" apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Имя E-mail или является обязательным @@ -2230,7 +2231,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Под DocType: Payment Gateway,Gateway,Шлюз apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Поставщик > Тип поставщика apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,"Пожалуйста, введите даты снятия." -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,"Только Оставьте приложений с статуса ""Одобрено"" могут быть представлены" apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Название адреса является обязательным. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,"Введите имя кампании, если источником исследования является кампания" @@ -2245,10 +2246,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Принимающий скл DocType: Bank Reconciliation Detail,Posting Date,Дата публикации DocType: Item,Valuation Method,Метод оценки apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Невозможно найти обменный курс {0} до {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Отметить Полдня DocType: Sales Invoice,Sales Team,Отдел продаж apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Дублировать запись DocType: Serial No,Under Warranty,Под гарантии -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Ошибка] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Ошибка] DocType: Sales Order,In Words will be visible once you save the Sales Order.,По словам будет виден только вы сохраните заказ клиента. ,Employee Birthday,Сотрудник День рождения apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Венчурный капитал @@ -2271,6 +2273,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,МВЗ с существующими сделок не могут быть преобразованы в группе DocType: Account,Depreciation,Амортизация apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Поставщик (и) +DocType: Employee Attendance Tool,Employee Attendance Tool,Сотрудник посещаемости Инструмент DocType: Supplier,Credit Limit,{0}{/0} {1}Кредитный лимит {/1} apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Выберите тип сделки DocType: GL Entry,Voucher No,Ваучер № @@ -2297,7 +2300,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Корневая учетная запись не может быть удалена ,Is Primary Address,Является первичным Адрес DocType: Production Order,Work-in-Progress Warehouse,Работа-в-Прогресс Склад -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Ссылка # {0} от {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Ссылка # {0} от {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Управление адресов DocType: Pricing Rule,Item Code,Код элемента DocType: Production Planning Tool,Create Production Orders,Создание производственных заказов @@ -2324,7 +2327,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Банковская сверк apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Получить обновления apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Материал Запрос {0} отменяется или остановлен apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Добавить несколько пробных записей -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Оставить управления +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Оставить управления apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Группа по Счет DocType: Sales Order,Fully Delivered,Полностью Поставляются DocType: Lead,Lower Income,Нижняя Доход @@ -2339,6 +2342,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"Поле ""С даты"" должно быть после ""До даты""" ,Stock Projected Qty,Фото со Прогнозируемый Количество apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Клиент {0} не принадлежит к проекту {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Выраженное Посещаемость HTML DocType: Sales Order,Customer's Purchase Order,Заказ клиента DocType: Warranty Claim,From Company,От компании apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Значение или Кол-во @@ -2366,7 +2370,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +164,Leav DocType: Hub Settings,Seller Email,Продавец Email DocType: Project,Total Purchase Cost (via Purchase Invoice),Общая стоимость покупки (через счет покупки) DocType: Workstation Working Hour,Start Time,Время -DocType: Item Price,Bulk Import Help,Массовый импорт Помощь +DocType: Item Price,Bulk Import Help,Помощь по массовому импорту apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +197,Select Quantity,Выберите Количество apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +34,Approving Role cannot be same as role the rule is Applicable To,"Утверждении роль не может быть такой же, как роль правило применимо к" apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +66,Unsubscribe from this Email Digest,Отказаться от этой Email Дайджест @@ -2384,7 +2388,7 @@ DocType: Purchase Receipt Item,Purchase Order Item No,Заказ товара Н DocType: Project,Project Type,Тип проекта apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +16,Either target qty or target amount is mandatory.,Либо целевой Количество или целевое количество является обязательным. apps/erpnext/erpnext/config/projects.py +38,Cost of various activities,Стоимость различных видов деятельности -apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +101,Not allowed to update stock transactions older than {0},"Не допускается, чтобы обновить биржевые операции старше {0}" +apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +101,Not allowed to update stock transactions older than {0},"Не допускается обновление операций перемещений по складу, старше чем {0}" DocType: Item,Inspection Required,Инспекция Обязательные DocType: Purchase Invoice Item,PR Detail,PR Подробно DocType: Sales Order,Fully Billed,Полностью Объявленный @@ -2403,6 +2407,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Банковский перевод apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,"Пожалуйста, выберите банковский счет" DocType: Newsletter,Create and Send Newsletters,Создание и отправка рассылки +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Отметить все DocType: Sales Order,Recurring Order,Периодическая Заказать DocType: Company,Default Income Account,По умолчанию Счет Доходы apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Группа клиентов / клиентов @@ -2434,6 +2439,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Вернуться п DocType: Item,Warranty Period (in days),Гарантийный срок (в днях) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Чистые денежные средства от операционной apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,"например, НДС" +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Отметить Сотрудник посещаемости наливом apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Пункт 4 DocType: Journal Entry Account,Journal Entry Account,Запись в журнале аккаунт DocType: Shopping Cart Settings,Quotation Series,Цитата серии @@ -2467,7 +2473,7 @@ DocType: Payment Request,Email To,E-mail Для DocType: Lead,Lead Owner,Ведущий Владелец apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +257,Warehouse is required,Склад требуется DocType: Employee,Marital Status,Семейное положение -DocType: Stock Settings,Auto Material Request,Авто Материал Запрос +DocType: Stock Settings,Auto Material Request,Автоматический запрос материалов DocType: Time Log,Will be updated when billed.,Будет обновляться при счет. DocType: Delivery Note Item,Available Batch Qty at From Warehouse,Доступные Пакетная Кол-во на со склада apps/erpnext/erpnext/manufacturing/doctype/bom_replace_tool/bom_replace_tool.py +25,Current BOM and New BOM can not be same,"Текущий спецификации и Нью-BOM не может быть таким же," @@ -2501,7 +2507,7 @@ DocType: Expense Claim,Total Sanctioned Amount,Всего Санкциониро DocType: Sales Invoice Item,Delivery Note Item,Доставка Примечание Пункт DocType: Expense Claim,Task,Задача DocType: Purchase Taxes and Charges,Reference Row #,Ссылка строка # -apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +76,Batch number is mandatory for Item {0},Серийный номер является обязательным для п {0} +apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +76,Batch number is mandatory for Item {0},Номер партии является обязательным для позиции {0} apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.js +14,This is a root sales person and cannot be edited.,Это корень продавец и не могут быть изменены. ,Stock Ledger,Книга учета акций apps/erpnext/erpnext/templates/pages/order.html +67,Rate: {0},Оценить: {0} @@ -2579,14 +2585,14 @@ DocType: Task,Actual Start Date (via Time Logs),Фактическая дата DocType: Stock Reconciliation Item,Before reconciliation,Перед примирения apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Для {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Налоги и сборы Добавил (Компания Валюта) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Пункт Налоговый ряд {0} должен иметь учетную запись типа налога или доходов или расходов или платная +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Пункт Налоговый ряд {0} должен иметь учетную запись типа налога или доходов или расходов или платная DocType: Sales Order,Partly Billed,Небольшая Объявленный DocType: Item,Default BOM,По умолчанию BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,"Пожалуйста, повторите ввод название компании, чтобы подтвердить" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Общая сумма задолженности по Amt DocType: Time Log Batch,Total Hours,Общее количество часов DocType: Journal Entry,Printing Settings,Настройки печати -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},"Всего Дебет должна быть равна общей выработке. Разница в том, {0}" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},"Всего Дебет должна быть равна общей выработке. Разница в том, {0}" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Автомобилестроение apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Из накладной DocType: Time Log,From Time,От времени @@ -2599,7 +2605,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +62,Intern,Стаж DocType: Newsletter,A Lead with this email id should exist,Руководитеть с таким email должен существовать DocType: Stock Entry,From BOM,Из спецификации apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +34,Basic,Основной -apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +94,Stock transactions before {0} are frozen,Биржевые операции до {0} заморожены +apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +94,Stock transactions before {0} are frozen,Перемещения по складу до {0} заморожены apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +217,Please click on 'Generate Schedule',"Пожалуйста, нажмите на кнопку ""Generate Расписание""" apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.js +61,To Date should be same as From Date for Half Day leave,"Чтобы Дата должна быть такой же, как С даты в течение половины дня отпуска" apps/erpnext/erpnext/config/stock.py +105,"e.g. Kg, Unit, Nos, m","например кг, единицы, Нос, м" @@ -2633,7 +2639,7 @@ DocType: Purchase Invoice Item,Image View,Просмотр изображени DocType: Issue,Opening Time,Открытие Время apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,"От и До даты, необходимых" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Ценные бумаги и товарных бирж -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',"По умолчанию Единица измерения для варианта '{0}' должно быть такой же, как в шаблоне '{1}'" +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',"По умолчанию Единица измерения для варианта '{0}' должно быть такой же, как в шаблоне '{1}'" DocType: Shipping Rule,Calculate Based On,Рассчитать на основе DocType: Delivery Note Item,From Warehouse,От Склад DocType: Purchase Taxes and Charges,Valuation and Total,Оценка и Всего @@ -2655,7 +2661,7 @@ DocType: Leave Application,Follow via Email,Следуйте по электро DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Сумма налога После скидка сумма apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Детский учетная запись существует для этой учетной записи. Вы не можете удалить этот аккаунт. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Либо целевой Количество или целевое количество является обязательным -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},Нет умолчанию спецификации не существует Пункт {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},Нет умолчанию спецификации не существует Пункт {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,"Пожалуйста, выберите проводки Дата первого" apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,"Открытие Дата должна быть, прежде чем Дата закрытия" DocType: Leave Control Panel,Carry Forward,Переносить @@ -2733,7 +2739,7 @@ DocType: Leave Type,Is Encash,Является Обналичивание DocType: Purchase Invoice,Mobile No,Мобильный номер DocType: Payment Tool,Make Journal Entry,Сделать запись журнала DocType: Leave Allocation,New Leaves Allocated,Новые листья Выделенные -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Проект мудрый данные не доступны для коммерческого предложения +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Проект мудрый данные не доступны для коммерческого предложения DocType: Project,Expected End Date,Ожидаемая дата завершения DocType: Appraisal Template,Appraisal Template Title,Оценка шаблона Название apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Коммерческий сектор @@ -2781,6 +2787,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,У apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,"Пожалуйста, сформулируйте" DocType: Offer Letter,Awaiting Response,В ожидании ответа apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Выше +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Время входа была Объявленный DocType: Salary Slip,Earning & Deduction,Заработок & Вычет apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Счет {0} не может быть группой apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Факультативно. Эта установка будет использоваться для фильтрации в различных сделок. @@ -2851,14 +2858,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,"Успешно удален все сделки, связанные с этой компанией!" apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,По состоянию на Дата apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Испытательный срок -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,По умолчанию Склад является обязательным для складе Пункт. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,По умолчанию Склад является обязательным для складе Пункт. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Выплата заработной платы за месяц {0} и год {1} DocType: Stock Settings,Auto insert Price List rate if missing,"Авто вставка Скорость Цены, если не хватает" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Всего уплаченной суммы ,Transferred Qty,Переведен Кол-во apps/erpnext/erpnext/config/learn.py +11,Navigating,Навигационный apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Планирование -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Найдите время Войдите Batch +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Найдите время Войдите Batch apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Выпущен DocType: Project,Total Billing Amount (via Time Logs),Всего счетов Сумма (с помощью журналов Time) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Мы продаем эту позицию @@ -2866,7 +2873,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,"Количество должно быть больше, чем 0" DocType: Journal Entry,Cash Entry,Денежные запись DocType: Sales Partner,Contact Desc,Связаться Описание изделия -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Тип листьев, как случайный, больным и т.д." +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Тип листьев, как случайный, больным и т.д." DocType: Email Digest,Send regular summary reports via Email.,Отправить регулярные сводные отчеты по электронной почте. DocType: Brand,Item Manager,Состояние менеджер DocType: Cost Center,Add rows to set annual budgets on Accounts.,"Добавьте строки, чтобы установить годовые бюджеты на счетах." @@ -2881,7 +2888,7 @@ DocType: GL Entry,Party Type,Партия Тип apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,"Сырье не может быть такой же, как главный пункт" DocType: Item Attribute Value,Abbreviation,Аббревиатура apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Не Authroized с {0} превышает пределы -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Шаблоном Зарплата. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Шаблоном Зарплата. DocType: Leave Type,Max Days Leave Allowed,Максимальное количество дней отпуска разрешены apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Установите Налоговый Правило корзине DocType: Payment Tool,Set Matching Amounts,Соответствующего набора суммы @@ -2894,7 +2901,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Кот DocType: Stock Settings,Role Allowed to edit frozen stock,Роль разрешено редактировать Замороженный исходный ,Territory Target Variance Item Group-Wise,Территория Целевая Разница Пункт Группа Мудрого apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Все Группы клиентов -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,"{0} является обязательным. Может быть, запись Обмен валюты не создана для {1} по {2}." +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,"{0} является обязательным. Может быть, запись Обмен валюты не создана для {1} по {2}." apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Налоговый шаблона является обязательным. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Счет {0}: Родитель счета {1} не существует DocType: Purchase Invoice Item,Price List Rate (Company Currency),Прайс-лист Тариф (Компания Валюта) @@ -2914,8 +2921,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Пункт Мудрый ,Item-wise Price List Rate,Пункт мудрый Прайс-лист Оценить apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Поставщик цитаты DocType: Quotation,In Words will be visible once you save the Quotation.,По словам будет виден только вы сохраните цитаты. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} остановлен -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Штрихкод {0} уже используется в позиции {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} остановлен +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Штрихкод {0} уже используется в позиции {1} DocType: Lead,Add to calendar on this date,Добавить в календарь в этот день apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Правила для добавления стоимости доставки. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Предстоящие События @@ -2942,8 +2949,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,С apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,"По крайней мере, один склад является обязательным" DocType: Serial No,Out of Warranty,По истечении гарантийного срока DocType: BOM Replace Tool,Replace,Заменить -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} против чека {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,"Пожалуйста, введите умолчанию единицу измерения" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} против чека {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,"Пожалуйста, введите умолчанию единицу измерения" DocType: Purchase Invoice Item,Project Name,Название проекта DocType: Supplier,Mention if non-standard receivable account,Упоминание если нестандартная задолженность счет DocType: Journal Entry Account,If Income or Expense,Если доходов или расходов @@ -2968,7 +2975,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Финансовый год: {0} не существует DocType: Currency Exchange,To Currency,В валюту DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Разрешить следующие пользователи утвердить Leave приложений для блочных дней. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Виды Expense претензии. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Виды Expense претензии. DocType: Item,Taxes,Налоги apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Платные и не доставляется DocType: Project,Default Cost Center,По умолчанию Центр Стоимость @@ -2998,11 +3005,11 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},"Ряд # {0}: Серийный номер {1}, не соответствует {2} {3}" apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Повседневная Оставить DocType: Batch,Batch ID,ID партии -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Примечание: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Примечание: {0} ,Delivery Note Trends,Доставка Примечание тенденции apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Резюме этой недели apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} позиция должна быть куплена или получена на основе субподряда в строке {1} -apps/erpnext/erpnext/accounts/general_ledger.py +106,Account: {0} can only be updated via Stock Transactions,Счет: {0} можно обновить только с помощью биржевых операций +apps/erpnext/erpnext/accounts/general_ledger.py +106,Account: {0} can only be updated via Stock Transactions,Счет: {0} можно обновить только через перемещение по складу DocType: GL Entry,Party,Сторона DocType: Sales Order,Delivery Date,Дата поставки DocType: Opportunity,Opportunity Date,Возможность Дата @@ -3038,6 +3045,7 @@ DocType: Project Task,Pending Review,В ожидании отзыв apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,"Нажмите здесь, чтобы оплатить" DocType: Task,Total Expense Claim (via Expense Claim),Всего Заявить расходов (через Расход претензии) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Идентификатор клиента +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Марк Отсутствует apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,"Времени должен быть больше, чем от времени" DocType: Journal Entry Account,Exchange Rate,Курс обмена apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Заказ на продажу {0} не представлено @@ -3085,7 +3093,7 @@ DocType: Item Group,Default Expense Account,По умолчанию расход DocType: Employee,Notice (days),Уведомление (дней) DocType: Tax Rule,Sales Tax Template,Шаблон Налога с продаж DocType: Employee,Encashment Date,Инкассация Дата -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","На ваучере Тип должен быть одним из Заказа, накладная или Запись в журнале" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","На ваучере Тип должен быть одним из Заказа, накладная или Запись в журнале" DocType: Account,Stock Adjustment,Регулирование запасов apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},По умолчанию активность Стоимость существует для вида деятельности - {0} DocType: Production Order,Planned Operating Cost,Планируемые Эксплуатационные расходы @@ -3139,6 +3147,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Списание запись DocType: BOM,Rate Of Materials Based On,Оценить материалов на основе apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Поддержка Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Снять все apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Компания на складах отсутствует {0} DocType: POS Profile,Terms and Conditions,Правила и условия apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},Чтобы Дата должна быть в пределах финансового года. Предполагая To Date = {0} @@ -3160,7 +3169,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Для установки в этом финансовом году, как по умолчанию, нажмите на кнопку ""Установить по умолчанию""" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Настройка сервера входящей для поддержки электронный идентификатор. (Например support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Нехватка Кол-во -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Состояние вариант {0} существует с теми же атрибутами +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Состояние вариант {0} существует с теми же атрибутами DocType: Salary Slip,Salary Slip,Зарплата скольжения apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,"Поле ""До Даты"" является обязательным для заполнения" DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Создание упаковочные листы для пакетов будет доставлено. Используется для уведомления номер пакета, содержимое пакета и его вес." @@ -3208,9 +3217,9 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Пос DocType: Item Attribute Value,Attribute Value,Значение атрибута apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","ID электронной почты должен быть уникальным, уже существует для {0}" ,Itemwise Recommended Reorder Level,Itemwise Рекомендуем изменить порядок Уровень -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,"Пожалуйста, выберите {0} первый" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,"Пожалуйста, выберите {0} первый" DocType: Features Setup,To get Item Group in details table,Чтобы получить группу товаров в детали таблице -apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Пакетная {0} Пункт {1} истек. +apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Партия {0} позиций {1} просрочена DocType: Sales Invoice,Commission,Комиссионный сбор DocType: Address Template,"

        Default Template

        Uses Jinja Templating and all the fields of Address (including Custom Fields if any) will be available

        @@ -3263,7 +3272,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Высочайшая ваучеры DocType: Warranty Claim,Resolved By,Решили По DocType: Appraisal,Start Date,Дата Начала -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Выделите листья на определенный срок. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Выделите листья на определенный срок. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Чеки и депозиты неправильно очищена apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,"Нажмите здесь, чтобы проверить," apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Счет {0}: Вы не можете назначить себя как родительским счетом @@ -3283,7 +3292,7 @@ DocType: Employee,Educational Qualification,Образовательный це DocType: Workstation,Operating Costs,Операционные расходы DocType: Employee Leave Approver,Employee Leave Approver,Сотрудник Оставить утверждающий apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} был успешно добавлен в список рассылки наших новостей. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Ряд {0}: запись Изменить порядок уже существует для этого склада {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Ряд {0}: запись Изменить порядок уже существует для этого склада {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Не можете объявить как потерял, потому что цитаты было сделано." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Покупка Мастер-менеджер apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Производственный заказ {0} должны быть представлены @@ -3307,7 +3316,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Счет Продажи {0} уже проведен apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Дата завершения DocType: Purchase Invoice Item,Amount (Company Currency),Сумма (Компания Валюта) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Название подразделения (департамент) хозяин. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Название подразделения (департамент) хозяин. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Введите действительные мобильных NOS DocType: Budget Detail,Budget Detail,Бюджет Подробно apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,"Пожалуйста, введите сообщение перед отправкой" @@ -3323,13 +3332,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Получил и прин ,Serial No Service Contract Expiry,Серийный номер Сервисный контракт Срок DocType: Item,Unit of Measure Conversion,Единица измерения конверсии apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Сотрудник не может быть изменен -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Вы не можете кредитные и дебетовые же учетную запись в то же время +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Вы не можете кредитные и дебетовые же учетную запись в то же время DocType: Naming Series,Help HTML,Помощь HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Всего Weightage назначен должна быть 100%. Это {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Учет по-{0} скрещенными за Пункт {1} DocType: Address,Name of person or organization that this address belongs to.,"Имя лица или организации, что этот адрес принадлежит." apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Ваши Поставщики -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,"Невозможно установить, как Остаться в живых, как заказ клиента производится." +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,"Невозможно установить, как Остаться в живых, как заказ клиента производится." apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,"Еще Зарплата Структура {0} будет активна в течение сотрудника {1}. Пожалуйста, убедитесь, его статус «неактивные», чтобы продолжить." DocType: Purchase Invoice,Contact,Контакты apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Получено от @@ -3339,11 +3348,11 @@ DocType: Item,Has Serial No,Имеет Серийный номер DocType: Employee,Date of Issue,Дата выдачи apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: От {0} для {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Ряд # {0}: Установить Поставщик по пункту {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Сайт изображения {0} прикреплен к пункту {1} не может быть найден +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Сайт изображения {0} прикреплен к пункту {1} не может быть найден DocType: Issue,Content Type,Тип контента apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Компьютер DocType: Item,List this Item in multiple groups on the website.,Перечислите этот пункт в нескольких группах на веб-сайте. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,"Пожалуйста, проверьте мультивалютный вариант, позволяющий счета другой валюте" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,"Пожалуйста, проверьте мультивалютный вариант, позволяющий счета другой валюте" apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Состояние: {0} не существует в системе apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Ваши настройки доступа не позволяют замораживать значения DocType: Payment Reconciliation,Get Unreconciled Entries,Получить непримиримыми Записи @@ -3353,14 +3362,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Что он DocType: Delivery Note,To Warehouse,Для Склад apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Счет {0} был введен более чем один раз в течение финансового года {1} ,Average Commission Rate,Средний Комиссия курс -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,"""Имеет Серийный номер"" не может быть ""Да"" для не складской позиции" +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,"""Имеет Серийный номер"" не может быть ""Да"" для не складской позиции" apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Посещаемость не могут быть отмечены для будущих дат DocType: Pricing Rule,Pricing Rule Help,Цены Правило Помощь DocType: Purchase Taxes and Charges,Account Head,Основной счет apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Обновление дополнительных затрат для расчета приземлился стоимость товаров apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Электрический DocType: Stock Entry,Total Value Difference (Out - In),Общая стоимость Разница (Out - In) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Ряд {0}: Курс является обязательным +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Ряд {0}: Курс является обязательным apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},ID пользователя не установлен для сотрудника {0} DocType: Stock Entry,Default Source Warehouse,По умолчанию Источник Склад DocType: Item,Customer Code,Код клиента @@ -3379,15 +3388,15 @@ DocType: Notification Control,Sales Invoice Message,Счет по продажа apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Закрытие счета {0} должен быть типа ответственностью / собственный капитал DocType: Authorization Rule,Based On,На основании DocType: Sales Order Item,Ordered Qty,Заказал Кол-во -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Пункт {0} отключена +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Пункт {0} отключена DocType: Stock Settings,Stock Frozen Upto,Фото Замороженные До apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Период с Период и датам обязательных для повторяющихся {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Проектная деятельность / задачи. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Создать зарплат Slips +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Создать зарплат Slips apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Покупка должна быть проверена, если выбран Применимо для как {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Скидка должна быть меньше 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Списание Сумма (Компания валют) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,"Ряд # {0}: Пожалуйста, установите количество тональный" +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,"Ряд # {0}: Пожалуйста, установите количество тональный" DocType: Landed Cost Voucher,Landed Cost Voucher,Земельные стоимости путевки apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},"Пожалуйста, установите {0}" DocType: Purchase Invoice,Repeat on Day of Month,Повторите с Днем Ежемесячно @@ -3406,7 +3415,7 @@ DocType: Email Digest,Receivables,Дебиторская задолженнос DocType: Customer,Additional information regarding the customer.,Дополнительная информация относительно клиента. DocType: Quality Inspection Reading,Reading 5,Чтение 5 DocType: Purchase Order,"Enter email id separated by commas, order will be mailed automatically on particular date","Введите электронный идентификатор, разделенных запятыми, заказ будет автоматически отправлен на определенную дату" -apps/erpnext/erpnext/crm/doctype/lead/lead.py +37,Campaign Name is required,Необходимо ввести имя компании +apps/erpnext/erpnext/crm/doctype/lead/lead.py +37,Campaign Name is required,Необходимо указать название маркетинговой кампании DocType: Maintenance Visit,Maintenance Date,Техническое обслуживание Дата DocType: Purchase Receipt Item,Rejected Serial No,Отклонен Серийный номер apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +40,New Newsletter,Новый бюллетень @@ -3440,7 +3449,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,По умолчанию работы на складе Прогресс apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Настройки по умолчанию для бухгалтерских операций. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Ожидаемая дата не может быть до Материал Дата заказа -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Пункт {0} должен быть Продажи товара +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Пункт {0} должен быть Продажи товара DocType: Naming Series,Update Series Number,Обновление Номер серии DocType: Account,Equity,Ценные бумаги DocType: Sales Order,Printing Details,Печать Подробности @@ -3492,7 +3501,7 @@ DocType: Task,Review Date,Дата пересмотра DocType: Purchase Invoice,Advance Payments,Авансовые платежи DocType: Purchase Taxes and Charges,On Net Total,On Net Всего apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,"Целевая склад в строке {0} должно быть таким же, как производственного заказа" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Нет разрешения на использование платежного инструмента +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Нет разрешения на использование платежного инструмента apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,"""Email адрес для уведомлений"" не указан для повторяющихся %s" apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,"Валюта не может быть изменена после внесения записи, используя другой валюты" DocType: Company,Round Off Account,Округление аккаунт @@ -3515,7 +3524,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Количество пункта получены после изготовления / переупаковка от заданных величин сырья DocType: Payment Reconciliation,Receivable / Payable Account,/ Дебиторская задолженность аккаунт DocType: Delivery Note Item,Against Sales Order Item,На Sales Order Пункт -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},"Пожалуйста, сформулируйте Значение атрибута для атрибута {0}" +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},"Пожалуйста, сформулируйте Значение атрибута для атрибута {0}" DocType: Item,Default Warehouse,По умолчанию Склад DocType: Task,Actual End Date (via Time Logs),Фактическая Дата окончания (через журналы Time) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Бюджет не может быть назначен на учетную запись группы {0} @@ -3536,14 +3545,14 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +74,Sales Pers DocType: Sales Invoice,Cold Calling,Холодная Вызов DocType: SMS Parameter,SMS Parameter,SMS Параметр DocType: Maintenance Schedule Item,Half Yearly,Половина года -DocType: Lead,Blog Subscriber,Блог подписчика +DocType: Lead,Blog Subscriber,Подписчик блога apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Создание правил для ограничения операций на основе значений. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Если флажок установлен, все время не. рабочих дней будет включать в себя праздники, и это приведет к снижению стоимости Зарплата в день" DocType: Purchase Invoice,Total Advance,Всего Advance -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Расчета заработной платы +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Расчета заработной платы DocType: Opportunity Item,Basic Rate,Основная ставка DocType: GL Entry,Credit Amount,Сумма кредита -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Установить как Остаться в живых +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Установить как Остаться в живых apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Оплата Получение Примечание DocType: Supplier,Credit Days Based On,Кредитные дней основанных на DocType: Tax Rule,Tax Rule,Налоговое положение @@ -3573,7 +3582,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Принято Количест apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} не существует apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Платежи Заказчиков apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Проект Id -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},"Ряд Нет {0}: Сумма не может быть больше, чем ожидании Сумма против Расход претензии {1}. В ожидании сумма {2}" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},"Ряд Нет {0}: Сумма не может быть больше, чем ожидании Сумма против Расход претензии {1}. В ожидании сумма {2}" apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} подписчики добавлены DocType: Maintenance Schedule,Schedule,Расписание DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""",Определить бюджет для этого МВЗ. Чтобы установить бюджета действие см "Список компании" @@ -3634,26 +3643,27 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS-профиля DocType: Payment Gateway Account,Payment URL Message,Оплата URL сообщения apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Сезонность для установки бюджеты, целевые и т.п." -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,"Ряд {0}: Сумма платежа не может быть больше, чем непогашенная сумма" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,"Ряд {0}: Сумма платежа не может быть больше, чем непогашенная сумма" apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Всего Неоплаченный -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Время входа не оплачиваемое -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Пункт {0} шаблона, выберите один из его вариантов" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Время входа не оплачиваемое +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Пункт {0} шаблона, выберите один из его вариантов" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Покупатель apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Чистая зарплата не может быть отрицательным -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,"Пожалуйста, введите против Ваучеры вручную" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,"Пожалуйста, введите против Ваучеры вручную" DocType: SMS Settings,Static Parameters,Статические параметры DocType: Purchase Order,Advance Paid,Авансовая выплата DocType: Item,Item Tax,Пункт Налоговый apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Материал Поставщику apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Акцизный Счет DocType: Expense Claim,Employees Email Id,Сотрудники Email ID +DocType: Employee Attendance Tool,Marked Attendance,Выраженное Посещаемость apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Текущие обязательства apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Отправить массовый SMS в список контактов DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Рассмотрим налога или сбора для apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57,Actual Qty is mandatory,Фактическая Кол-во обязательно apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +132,Credit Card,Кредитная карта DocType: BOM,Item to be manufactured or repacked,Пункт должен быть изготовлен или перепакован -apps/erpnext/erpnext/config/stock.py +90,Default settings for stock transactions.,Настройки по умолчанию для биржевых операций. +apps/erpnext/erpnext/config/stock.py +90,Default settings for stock transactions.,Настройки по умолчанию для операций перемещения по складу DocType: Purchase Invoice,Next Date,Следующая дата DocType: Employee Education,Major/Optional Subjects,Основные / факультативных предметов apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +49,Please enter Taxes and Charges,"Пожалуйста, введите налогов и сборов" @@ -3669,7 +3679,7 @@ DocType: Item Attribute,Numeric Values,Числовые значения apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Прикрепить логотип DocType: Customer,Commission Rate,Комиссия apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Сделать Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Блок отпуска приложений отделом. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Блок отпуска приложений отделом. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Корзина Пусто DocType: Production Order,Actual Operating Cost,Фактическая Эксплуатационные расходы apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Корневая не могут быть изменены. @@ -3688,7 +3698,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,"Автоматическое создание материала Запрос если количество падает ниже этого уровня," ,Item-wise Purchase Register,Пункт мудрый Покупка Зарегистрироваться DocType: Batch,Expiry Date,Срок годности: -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Чтобы установить уровень повторного заказа, деталь должна быть Покупка товара или товара Производство" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Чтобы установить уровень повторного заказа, деталь должна быть Покупка товара или товара Производство" ,Supplier Addresses and Contacts,Поставщик Адреса и контакты apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,"Пожалуйста, выберите категорию первый" apps/erpnext/erpnext/config/projects.py +18,Project master.,Мастер проекта. diff --git a/erpnext/translations/sk.csv b/erpnext/translations/sk.csv index 08b8aecfe8..c9cb4022a8 100644 --- a/erpnext/translations/sk.csv +++ b/erpnext/translations/sk.csv @@ -11,7 +11,7 @@ DocType: Item,Customer Items,Zákazník položky apps/erpnext/erpnext/accounts/doctype/account/account.py +48,Account {0}: Parent account {1} can not be a ledger,Účet {0}: Nadřazený účet {1} nemůže být hlavní kniha DocType: Item,Publish Item to hub.erpnext.com,Publikování položku do hub.erpnext.com apps/erpnext/erpnext/config/setup.py +93,Email Notifications,E-mailová upozornění -DocType: Item,Default Unit of Measure,Výchozí Měrná jednotka +DocType: Item,Default Unit of Measure,Predvolená merná jednotka DocType: SMS Center,All Sales Partner Contact,Všechny Partneři Kontakt DocType: Employee,Leave Approvers,Nechte schvalovatelů DocType: Sales Partner,Dealer,Dealer @@ -20,7 +20,7 @@ DocType: POS Profile,Applicable for User,Použiteľné pre Užívateľa apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +169,"Stopped Production Order cannot be cancelled, Unstop it first to cancel","Zastavil výrobu Objednať nemožno zrušiť, uvoľniť ho najprv zrušiť" apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +36,Currency is required for Price List {0},Měna je vyžadováno pro Ceníku {0} DocType: Sales Taxes and Charges Template,* Will be calculated in the transaction.,* Bude vypočítané v transakcii. -DocType: Purchase Order,Customer Contact,Kontakt so zákazníkmi +DocType: Purchase Order,Customer Contact,Zákaznícky kontakt apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +37,{0} Tree,{0} Strom DocType: Job Applicant,Job Applicant,Job Žadatel apps/erpnext/erpnext/hub_node/page/hub/hub_body.html +18,No more results.,Žádné další výsledky. @@ -76,7 +76,7 @@ apps/erpnext/erpnext/public/js/pos/pos.js +549,Please select Price List,"Prosím DocType: Production Order Operation,Work In Progress,Work in Progress DocType: Employee,Holiday List,Dovolená Seznam DocType: Time Log,Time Log,Time Log -apps/erpnext/erpnext/public/js/setup_wizard.js +204,Accountant,Účetní +apps/erpnext/erpnext/public/js/setup_wizard.js +204,Accountant,Účtovník DocType: Cost Center,Stock User,Sklad Užívateľ DocType: Company,Phone No,Telefon DocType: Time Log,"Log of Activities performed by users against Tasks that can be used for tracking time, billing.","Log činností vykonávaných uživateli proti úkoly, které mohou být použity pro sledování času, fakturaci." @@ -100,7 +100,7 @@ apps/erpnext/erpnext/public/js/stock_analytics.js +63,Select Warehouse...,Vybert apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +6,Advertising,Reklama apps/erpnext/erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py +22,Same Company is entered more than once,Rovnaký Spoločnosť je zapísaná viac ako raz DocType: Employee,Married,Ženatý -apps/erpnext/erpnext/accounts/party.py +38,Not permitted for {0},Nie je dovolené {0} +apps/erpnext/erpnext/accounts/party.py +38,Not permitted for {0},Nepovolené pre {0} apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +441,Get items from,Získať predmety z apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +399,Stock cannot be updated against Delivery Note {0},Sklad nelze aktualizovat na dodací list {0} DocType: Payment Reconciliation,Reconcile,Srovnat @@ -114,7 +114,7 @@ DocType: Lead,Person Name,Osoba Meno DocType: Sales Order,"Check if recurring order, uncheck to stop recurring or put proper End Date","Zkontrolujte, zda je opakující se, zrušte zaškrtnutí políčka zastavit opakované nebo dát správné datum ukončení" DocType: Sales Invoice Item,Sales Invoice Item,Prodejní faktuře položka DocType: Account,Credit,Úvěr -apps/erpnext/erpnext/hr/doctype/employee/employee.py +25,Please setup Employee Naming System in Human Resource > HR Settings,"Prosím, setup zaměstnanců pojmenování systému v oblasti lidských zdrojů> Nastavení HR" +apps/erpnext/erpnext/hr/doctype/employee/employee.py +25,Please setup Employee Naming System in Human Resource > HR Settings,"Prosím, nastavte pomenovanie zamestnancov v Ľudské Zdroje > Nastavenie" DocType: POS Profile,Write Off Cost Center,Odepsat nákladové středisko DocType: Warehouse,Warehouse Detail,Sklad Detail apps/erpnext/erpnext/selling/doctype/customer/customer.py +181,Credit limit has been crossed for customer {0} {1}/{2},Úvěrový limit byla překročena o zákazníka {0} {1} / {2} @@ -164,23 +164,23 @@ DocType: Journal Entry Account,Credit in Company Currency,Úverové spoločnosti DocType: Delivery Note,Installation Status,Stav instalace apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Schválené + Zamítnuté množství se musí rovnat množství Přijaté u položky {0} DocType: Item,Supply Raw Materials for Purchase,Dodávky suroviny pre nákup -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Bod {0} musí být Nákup položky +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Bod {0} musí být Nákup položky DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Stáhněte si šablony, vyplňte potřebné údaje a přiložte upravený soubor. Všechny termíny a zaměstnanec kombinaci ve zvoleném období přijde v šabloně, se stávajícími evidence docházky" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,"Bod {0} není aktivní, nebo byl dosažen konec života" DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Bude aktualizováno po odeslání faktury. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Chcete-li zahrnout daně na řádku v poměru Položka {0}, daně v řádcích {1} musí být zahrnuty" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Nastavenie modulu HR +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Chcete-li zahrnout daně na řádku v poměru Položka {0}, daně v řádcích {1} musí být zahrnuty" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Nastavenie modulu HR DocType: SMS Center,SMS Center,SMS centrum DocType: BOM Replace Tool,New BOM,New BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Batch čas Záznamy pro fakturaci. -apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +30,Newsletter has already been sent,Newsletter již byla odeslána +apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +30,Newsletter has already been sent,Newsletter bol už odoslaný DocType: Lead,Request Type,Typ požadavku DocType: Leave Application,Reason,Důvod apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +14,Broadcasting,Vysílání apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +140,Execution,Provedení -apps/erpnext/erpnext/public/js/setup_wizard.js +26,The first user will become the System Manager (you can change this later).,První uživatel bude System Manager (lze později změnit). +apps/erpnext/erpnext/public/js/setup_wizard.js +26,The first user will become the System Manager (you can change this later).,Prvý používateľ bude System Manager (toto sa dá neskôr zmeniť). apps/erpnext/erpnext/config/manufacturing.py +39,Details of the operations carried out.,Podrobnosti o prováděných operací. DocType: Serial No,Maintenance Status,Status Maintenance apps/erpnext/erpnext/config/stock.py +258,Items and Pricing,Položky a Ceny @@ -199,10 +199,10 @@ DocType: Offer Letter,Select Terms and Conditions,Vyberte Podmienky DocType: Production Planning Tool,Sales Orders,Prodejní objednávky DocType: Purchase Taxes and Charges,Valuation,Ocenění ,Purchase Order Trends,Nákupní objednávka trendy -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Přidělit listy za rok. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Přidělit listy za rok. DocType: Earning Type,Earning Type,Výdělek Type DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Zakázať Plánovanie kapacít a Time Tracking -DocType: Bank Reconciliation,Bank Account,Bankovní účet +DocType: Bank Reconciliation,Bank Account,Bankový účet DocType: Leave Type,Allow Negative Balance,Povolit záporný zůstatek DocType: Selling Settings,Default Territory,Výchozí Territory apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +53,Television,Televize @@ -225,7 +225,7 @@ DocType: Newsletter List,Total Subscribers,Celkom Odberatelia ,Contact Name,Kontakt Meno DocType: Production Plan Item,SO Pending Qty,SO Pending Množství DocType: Process Payroll,Creates salary slip for above mentioned criteria.,Vytvoří výplatní pásku na výše uvedených kritérií. -apps/erpnext/erpnext/templates/generators/item.html +30,No description given,No vzhledem k tomu popis +apps/erpnext/erpnext/templates/generators/item.html +30,No description given,Bez popisu apps/erpnext/erpnext/config/buying.py +18,Request for purchase.,Žádost o koupi. apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +173,Only the selected Leave Approver can submit this Leave Application,Pouze vybraný Leave schvalovač může podat této dovolené aplikaci apps/erpnext/erpnext/hr/doctype/employee/employee.py +114,Relieving Date must be greater than Date of Joining,Uvolnění Datum musí být větší než Datum spojování @@ -237,7 +237,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Položka webových stránek Specifikace DocType: Payment Tool,Reference No,Referenční číslo apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Nechte Blokováno -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Položka {0} dosáhla konce své životnosti na {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Položka {0} dosáhla konce své životnosti na {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Roční DocType: Stock Reconciliation Item,Stock Reconciliation Item,Reklamní Odsouhlasení Item DocType: Stock Entry,Sales Invoice No,Prodejní faktuře č @@ -249,7 +249,7 @@ DocType: Item,Minimum Order Qty,Minimální objednávka Množství DocType: Pricing Rule,Supplier Type,Dodavatel Type DocType: Item,Publish in Hub,Publikovat v Hub ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Položka {0} je zrušená +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Položka {0} je zrušená apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Požadavek na materiál DocType: Bank Reconciliation,Update Clearance Date,Aktualizace Výprodej Datum DocType: Item,Purchase Details,Nákup Podrobnosti @@ -261,11 +261,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Zamítnuto Množství DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Pole k dispozici v dodací list, cenovou nabídku, prodejní faktury odběratele" DocType: SMS Settings,SMS Sender Name,SMS Sender Name DocType: Contact,Is Primary Contact,Je primárně Kontakt +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Time Log bol dávkované pre fakturáciu DocType: Notification Control,Notification Control,Oznámení Control DocType: Lead,Suggestions,Návrhy DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Set Položka Skupina-moudrý rozpočty na tomto území. Můžete také sezónnosti nastavením distribuce. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},"Prosím, zadejte mateřskou skupinu účtu pro sklad {0}" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Platba proti {0} {1} nemôže byť väčšia ako dlžnej čiastky {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Platba proti {0} {1} nemôže byť väčšia ako dlžnej čiastky {2} DocType: Supplier,Address HTML,Adresa HTML DocType: Lead,Mobile No.,Mobile No. DocType: Maintenance Schedule,Generate Schedule,Generování plán @@ -282,7 +283,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Synchronizovány Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Zlé Heslo DocType: Item,Variant Of,Varianta -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Položka {0} musí být Service Item apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',"Dokončené množství nemůže být větší než ""Množství do výroby""" DocType: Period Closing Voucher,Closing Account Head,Závěrečný účet hlava DocType: Employee,External Work History,Vnější práce History @@ -294,10 +294,10 @@ DocType: Newsletter,Newsletter,Newsletter DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Upozornit e-mailem na tvorbu automatických Materiál Poptávka DocType: Journal Entry,Multi Currency,Viac mien DocType: Payment Reconciliation Invoice,Invoice Type,Typ faktúry -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Dodací list +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Dodací list apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Nastavenie Dane apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,"Vstup Platba byla změněna poté, co ji vytáhl. Prosím, vytáhněte ji znovu." -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} vložené dvakrát v Daňovej Položke +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} vložené dvakrát v Daňovej Položke apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Zhrnutie pre tento týždeň a prebiehajúcim činnostiam DocType: Workstation,Rent Cost,Rent Cost apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Vyberte měsíc a rok @@ -308,7 +308,7 @@ DocType: Shipping Rule,Valid for Countries,"Platí pre krajiny," DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Všech souvisejících oblastech, jako je dovozní měně, přepočítací koeficient, dovoz celkem, dovoz celkovém součtu etc jsou k dispozici v dokladu o koupi, dodavatelů nabídky, faktury, objednávky apod" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"Tento bod je šablona a nemůže být použit v transakcích. Atributy položky budou zkopírovány do variant, pokud je nastaveno ""No Copy""" apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Celková objednávka Zvážil -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Označení zaměstnanců (např CEO, ředitel atd.)." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Označení zaměstnanců (např CEO, ředitel atd.)." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,"Prosím, zadejte ""Opakujte dne měsíce"" hodnoty pole" DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,"Sazba, za kterou je zákazník měny převeden na zákazníka základní měny" DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","K dispozici v BOM, dodací list, fakturu, výrobní zakázky, objednávky, doklad o koupi, prodejní faktury odběratele, Stock vstupu, časový rozvrh" @@ -336,7 +336,7 @@ DocType: Quality Inspection,Inspected By,Zkontrolován DocType: Maintenance Visit,Maintenance Type,Typ Maintenance apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.py +61,Serial No {0} does not belong to Delivery Note {1},Pořadové číslo {0} není součástí dodávky Poznámka: {1} DocType: Item Quality Inspection Parameter,Item Quality Inspection Parameter,Položka Kontrola jakosti Parametr -DocType: Leave Application,Leave Approver Name,Nechte schvalovač Jméno +DocType: Leave Application,Leave Approver Name,Meno schvaľovateľa priepustky ,Schedule Date,Plán Datum DocType: Packed Item,Packed Item,Zabalená položka apps/erpnext/erpnext/config/buying.py +54,Default settings for buying transactions.,Výchozí nastavení pro nákup transakcí. @@ -357,7 +357,7 @@ DocType: Workstation,Consumable Cost,Spotřební Cost apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',"{0} ({1}), musí mať úlohu ""Schvalovateľ voľna""" DocType: Purchase Receipt,Vehicle Date,Dátum Vehicle apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Lékařský -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Důvod ztráty +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Důvod ztráty apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Workstation je uzavřena v následujících dnech podle Prázdninový Seznam: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Príležitosti DocType: Employee,Single,Jednolůžkový @@ -372,7 +372,7 @@ DocType: Purchase Order,Start date of current order's period,Datum období souč apps/erpnext/erpnext/utilities/transaction_base.py +131,Quantity cannot be a fraction in row {0},Množství nemůže být zlomek na řádku {0} DocType: Purchase Invoice Item,Quantity and Rate,Množstvo a sadzba DocType: Delivery Note,% Installed,% Inštalovaných -apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +59,Please enter company name first,"Prosím, zadejte nejprve název společnosti" +apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +59,Please enter company name first,"Prosím, zadajte najprv názov spoločnosti" DocType: BOM,Item Desription,Položka Desription DocType: Purchase Invoice,Supplier Name,Dodavatel Name apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +25,Read the ERPNext Manual,Prečítajte si ERPNext Manuál @@ -381,18 +381,19 @@ DocType: Stock Settings,Automatically Set Serial Nos based on FIFO,Automaticky n DocType: Accounts Settings,Check Supplier Invoice Number Uniqueness,"Skontrolujte, či dodávateľské faktúry Počet Jedinečnosť" apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +57,'To Case No.' cannot be less than 'From Case No.',"""Do Prípadu č ' nesmie byť menší ako ""Od Prípadu č '" apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +104,Non Profit,Non Profit -apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_list.js +7,Not Started,Nezahájeno +apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_list.js +7,Not Started,Nezahájené DocType: Lead,Channel Partner,Channel Partner DocType: Account,Old Parent,Staré nadřazené DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,"Přizpůsobte si úvodní text, který jede jako součást tohoto e-mailu. Každá transakce je samostatný úvodní text." +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Nezahŕňajú symboly (napr. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Sales manažer ve skupině Master apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Globální nastavení pro všechny výrobní procesy. DocType: Accounts Settings,Accounts Frozen Upto,Účty Frozen aľ DocType: SMS Log,Sent On,Poslán na -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Atribút {0} vybraný niekoľkokrát v atribútoch tabuľke +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Atribút {0} vybraný niekoľkokrát v atribútoch tabuľke DocType: HR Settings,Employee record is created using selected field. ,Záznam Zaměstnanec je vytvořena pomocí vybrané pole. DocType: Sales Order,Not Applicable,Nehodí se -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Holiday master. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Holiday master. DocType: Material Request Item,Required Date,Požadovaná data DocType: Delivery Note,Billing Address,Fakturační adresa apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,"Prosím, zadejte kód položky." @@ -428,7 +429,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,"Prosím, zadejte sklad, který bude materiál žádosti předložené" DocType: Production Order,Additional Operating Cost,Další provozní náklady apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Kosmetika -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Chcete-li sloučit, tyto vlastnosti musí být stejné pro obě položky" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Chcete-li sloučit, tyto vlastnosti musí být stejné pro obě položky" DocType: Shipping Rule,Net Weight,Hmotnost DocType: Employee,Emergency Phone,Nouzový telefon ,Serial No Warranty Expiry,Pořadové č záruční lhůty @@ -484,17 +485,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Fakturácie a Delivery Status apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Opakujte zákazníci DocType: Leave Control Panel,Allocate,Přidělit -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Sales Return +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Sales Return DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,"Vyberte prodejní objednávky, ze kterého chcete vytvořit výrobní zakázky." DocType: Item,Delivered by Supplier (Drop Ship),Dodáva Dodávateľom (Drop Ship) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Mzdové složky. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Mzdové složky. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Databáze potenciálních zákazníků. DocType: Authorization Rule,Customer or Item,Zákazník alebo položka apps/erpnext/erpnext/config/crm.py +17,Customer database.,Databáze zákazníků. DocType: Quotation,Quotation To,Ponuka k DocType: Lead,Middle Income,Středními příjmy apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Otvor (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Východzí merná jednotka bodu {0} nemôže byť zmenená priamo, pretože ste už nejaké transakcie (y) s iným nerozpustených. Budete musieť vytvoriť novú položku použiť iný predvolený UOM." +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Východzí merná jednotka bodu {0} nemôže byť zmenená priamo, pretože ste už nejaké transakcie (y) s iným nerozpustených. Budete musieť vytvoriť novú položku použiť iný predvolený UOM." apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Přidělená částka nemůže být záporná DocType: Purchase Order Item,Billed Amt,Účtovaného Amt DocType: Warehouse,A logical Warehouse against which stock entries are made.,"Logická Warehouse na položky, které mohou být vyrobeny." @@ -513,14 +514,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Prodej Daně a poplatky DocType: Employee,Organization Profile,Profil organizace apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,"Prosím, nastavení číslování série pro Účast přes Nastavení> Série číslování" DocType: Employee,Reason for Resignation,Důvod rezignace -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Šablona pro hodnocení výkonu. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Šablona pro hodnocení výkonu. DocType: Payment Reconciliation,Invoice/Journal Entry Details,Faktura / Zápis do deníku Podrobnosti apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' nie je vo fiškálnom roku {2} DocType: Buying Settings,Settings for Buying Module,Nastavenie pre modul Nákupy apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,"Prosím, zadejte první doklad o zakoupení" -DocType: Buying Settings,Supplier Naming By,Dodavatel Pojmenování By +DocType: Buying Settings,Supplier Naming By,Pomenovanie dodávateľa podľa DocType: Activity Type,Default Costing Rate,Predvolené kalkulácie Rate -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Plán údržby +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Plán údržby apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Pak se pravidla pro tvorbu cen jsou odfiltrovány založeny na zákazníka, skupiny zákazníků, území, dodavatel, dodavatel typ, kampaň, obchodní partner atd" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Čistá Zmena stavu zásob DocType: Employee,Passport Number,Číslo pasu @@ -529,7 +530,7 @@ apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +215,Same item has been en DocType: SMS Settings,Receiver Parameter,Přijímač parametrů apps/erpnext/erpnext/controllers/trends.py +39,'Based On' and 'Group By' can not be same,"""Založené na"" a ""Zoskupené podľa"", nemôžu byť rovnaké" DocType: Sales Person,Sales Person Targets,Obchodník cíle -DocType: Production Order Operation,In minutes,V minutách +DocType: Production Order Operation,In minutes,V minútach DocType: Issue,Resolution Date,Rozlišení Datum apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +676,Please set default Cash or Bank account in Mode of Payment {0},Prosím nastavte výchozí v hotovosti nebo bankovním účtu v způsob platby {0} DocType: Selling Settings,Customer Naming By,Zákazník Pojmenování By @@ -559,7 +560,7 @@ DocType: Purchase Invoice,Quarterly,Čtvrtletně DocType: Selling Settings,Delivery Note Required,Delivery Note Povinné DocType: Sales Order Item,Basic Rate (Company Currency),Basic Rate (Company měny) DocType: Manufacturing Settings,Backflush Raw Materials Based On,So spätným suroviny na základe -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,"Prosím, zadejte podrobnosti položky" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,"Prosím, zadejte podrobnosti položky" DocType: Purchase Receipt,Other Details,Ďalšie podrobnosti DocType: Account,Accounts,Účty apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Marketing @@ -572,7 +573,7 @@ DocType: Employee,Provide email id registered in company,Poskytnout e-mail id za DocType: Hub Settings,Seller City,Prodejce City DocType: Email Digest,Next email will be sent on:,Další e-mail bude odeslán dne: DocType: Offer Letter Term,Offer Letter Term,Ponuka Letter Term -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Položka má varianty. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Položka má varianty. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Položka {0} nebyl nalezen DocType: Bin,Stock Value,Reklamní Value apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Tree Type @@ -580,7 +581,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Množství spotřebované na j DocType: Serial No,Warranty Expiry Date,Záruka Datum vypršení platnosti DocType: Material Request Item,Quantity and Warehouse,Množství a sklad DocType: Sales Invoice,Commission Rate (%),Výše provize (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Proti poukazu Type musí být jedním z prodejní objednávky, prodejní faktury nebo Journal Entry" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Proti poukazu Type musí být jedním z prodejní objednávky, prodejní faktury nebo Journal Entry" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Aerospace DocType: Journal Entry,Credit Card Entry,Vstup Kreditní karta apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Úkol Předmět @@ -667,23 +668,23 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Odpovědnost apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Sankcionovaná Čiastka nemôže byť väčšia ako reklamácia Suma v riadku {0}. DocType: Company,Default Cost of Goods Sold Account,Východiskové Náklady na predaný tovar účte -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Ceník není zvolen +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Ceník není zvolen DocType: Employee,Family Background,Rodinné poměry DocType: Process Payroll,Send Email,Odeslat email -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Varovanie: Neplatná Príloha {0} -apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Nemáte oprávnění -DocType: Company,Default Bank Account,Výchozí Bankovní účet +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Varovanie: Neplatná Príloha {0} +apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Nemáte oprávnenie +DocType: Company,Default Bank Account,Prednastavený Bankový účet apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Ak chcete filtrovať na základe Party, vyberte typ Party prvý" apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},"""Aktualizovať Sklad ' nie je možné skontrolovať, pretože položky nie sú dodané cez {0}" -apps/erpnext/erpnext/public/js/setup_wizard.js +292,Nos,Nos +apps/erpnext/erpnext/public/js/setup_wizard.js +292,Nos,Balenie DocType: Item,Items with higher weightage will be shown higher,Položky s vyšším weightage budú zobrazené vyššie DocType: Bank Reconciliation Detail,Bank Reconciliation Detail,Bank Odsouhlasení Detail apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +668,My Invoices,Moje Faktúry -apps/erpnext/erpnext/hr/doctype/leave_control_panel/leave_control_panel.py +43,No employee found,Žádný zaměstnanec nalezeno +apps/erpnext/erpnext/hr/doctype/leave_control_panel/leave_control_panel.py +43,No employee found,Nenájdený žiadny zamestnanec DocType: Purchase Order,Stopped,Zastaveno DocType: Item,If subcontracted to a vendor,Ak sa subdodávky na dodávateľa apps/erpnext/erpnext/manufacturing/page/bom_browser/bom_browser.js +17,Select BOM to start,Vyberte BOM na začiatok -DocType: SMS Center,All Customer Contact,Vše Kontakt Zákazník +DocType: SMS Center,All Customer Contact,Všetky Kontakty Zákazníka apps/erpnext/erpnext/config/stock.py +64,Upload stock balance via csv.,Nahrát nutnosti rovnováhy prostřednictvím CSV. apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +27,Send Now,Odeslat nyní ,Support Analytics,Podpora Analytics @@ -698,7 +699,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Podpo DocType: Features Setup,"To enable ""Point of Sale"" features",Ak chcete povoliť "Point of Sale" predstavuje DocType: Bin,Moving Average Rate,Klouzavý průměr DocType: Production Planning Tool,Select Items,Vyberte položky -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} proti účtu {1} z dňa {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} proti účtu {1} z dňa {2} DocType: Maintenance Visit,Completion Status,Dokončení Status DocType: Sales Invoice Item,Target Warehouse,Target Warehouse DocType: Item,Allow over delivery or receipt upto this percent,Nechajte cez dodávku alebo príjem aľ tohto percenta @@ -743,7 +744,7 @@ DocType: Purchase Taxes and Charges,On Previous Row Total,Na předchozí řady C DocType: Salary Slip,Working Days,Pracovní dny DocType: Serial No,Incoming Rate,Příchozí Rate DocType: Packing Slip,Gross Weight,Hrubá hmotnost -apps/erpnext/erpnext/public/js/setup_wizard.js +70,The name of your company for which you are setting up this system.,"Název vaší společnosti, pro kterou nastavení tohoto systému." +apps/erpnext/erpnext/public/js/setup_wizard.js +70,The name of your company for which you are setting up this system.,"Názov spoločnosti, pre ktorú nastavujete tento systém" DocType: HR Settings,Include holidays in Total no. of Working Days,Zahrnout dovolenou v celkovém. pracovních dní DocType: Job Applicant,Hold,Držet DocType: Employee,Date of Joining,Datum přistoupení @@ -758,7 +759,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Devi apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Nemožno nájsť časový úsek v najbližších {0} dní na prevádzku {1} DocType: Production Order,Plan material for sub-assemblies,Plán materiál pro podsestavy apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} musí být aktivní -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,Vyberte první typ dokumentu +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Vyberte první typ dokumentu apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Goto košík apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Zrušit Materiál Návštěvy {0} před zrušením tohoto návštěv údržby DocType: Salary Slip,Leave Encashment Amount,Nechte inkasa Částka @@ -776,7 +777,7 @@ DocType: Purchase Receipt,Range,Rozsah DocType: Supplier,Default Payable Accounts,Výchozí úplatu účty apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Zaměstnanec {0} není aktivní nebo neexistuje DocType: Features Setup,Item Barcode,Položka Barcode -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Varianty Položky {0} aktualizované +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Varianty Položky {0} aktualizované DocType: Quality Inspection Reading,Reading 6,Čtení 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Záloha přijaté faktury DocType: Address,Shop,Obchod @@ -799,17 +800,17 @@ DocType: Salary Slip,Total in words,Celkem slovy DocType: Material Request Item,Lead Time Date,Čas a Dátum Obchodnej iniciatívy apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,"je povinné. Možno, Zmenáreň záznam nie je vytvorená pre" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Row # {0}: Zadejte Pořadové číslo k bodu {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Pre "produktom Bundle predmety, sklad, sériové číslo a dávkové No bude považovaná zo" Balenie zoznam 'tabuľky. Ak Warehouse a Batch No sú rovnaké pre všetky balenia položky pre akúkoľvek "Výrobok balík" položky, tieto hodnoty môžu byť zapísané do hlavnej tabuľky položky, budú hodnoty skopírované do "Balenie zoznam" tabuľku." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Pre "produktom Bundle predmety, sklad, sériové číslo a dávkové No bude považovaná zo" Balenie zoznam 'tabuľky. Ak Warehouse a Batch No sú rovnaké pre všetky balenia položky pre akúkoľvek "Výrobok balík" položky, tieto hodnoty môžu byť zapísané do hlavnej tabuľky položky, budú hodnoty skopírované do "Balenie zoznam" tabuľku." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Zásilky zákazníkům. DocType: Purchase Invoice Item,Purchase Order Item,Položka vydané objednávky apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Nepřímé příjmy DocType: Payment Tool,Set Payment Amount = Outstanding Amount,Set Čiastka platby = dlžnej čiastky apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +53,Variance,Odchylka -,Company Name,Název společnosti +,Company Name,Názov spoločnosti DocType: SMS Center,Total Message(s),Celkem zpráv (y) apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +642,Select Item for Transfer,Vybrať položku pre prevod DocType: Purchase Invoice,Additional Discount Percentage,Ďalšie zľavy Percento -apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,Zobraziť zoznam všetkých nápovedy videí +apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +24,View a list of all the help videos,Zobraziť zoznam všetkých videí nápovedy DocType: Bank Reconciliation,Select account head of the bank where cheque was deposited.,"Vyberte účet šéf banky, kde byla uložena kontrola." DocType: Selling Settings,Allow user to edit Price List Rate in transactions,Povolit uživateli upravovat Ceník Cena při transakcích DocType: Pricing Rule,Max Qty,Max Množství @@ -820,6 +821,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Vyberte Payroll rok a mes apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Prejdite na príslušnej skupiny (zvyčajne využitia finančných prostriedkov> obežných aktív> bankových účtov a vytvoriť nový účet (kliknutím na Pridať dieťa) typu "Bank" DocType: Workstation,Electricity Cost,Cena elektřiny DocType: HR Settings,Don't send Employee Birthday Reminders,Neposílejte zaměstnance připomenutí narozenin +,Employee Holiday Attendance,Zamestnanec Holiday Účasť DocType: Opportunity,Walk In,Vejít apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Sklad Príspevky DocType: Item,Inspection Criteria,Inspekční Kritéria @@ -837,22 +839,22 @@ apps/erpnext/erpnext/templates/pages/cart.html +5,My Cart,Môj košík apps/erpnext/erpnext/controllers/selling_controller.py +150,Order Type must be one of {0},Typ objednávky musí být jedním z {0} DocType: Lead,Next Contact Date,Další Kontakt Datum apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +35,Opening Qty,Otevření POČET -DocType: Holiday List,Holiday List Name,Jméno Holiday Seznam +DocType: Holiday List,Holiday List Name,Názov zoznamu sviatkov apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,Akciové opcie DocType: Journal Entry Account,Expense Claim,Hrazení nákladů apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Množství pro {0} DocType: Leave Application,Leave Application,Leave Application -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Nechte přidělení nástroj +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Nechte přidělení nástroj DocType: Leave Block List,Leave Block List Dates,Nechte Block List termíny DocType: Company,If Monthly Budget Exceeded (for expense account),Ak Mesačný rozpočet prekročený (pre výdavkového účtu) DocType: Workstation,Net Hour Rate,Net Hour Rate DocType: Landed Cost Purchase Receipt,Landed Cost Purchase Receipt,Přistál Náklady doklad o koupi DocType: Company,Default Terms,Východiskové podmienky DocType: Packing Slip Item,Packing Slip Item,Balení Slip Item -DocType: POS Profile,Cash/Bank Account,Hotovostní / Bankovní účet +DocType: POS Profile,Cash/Bank Account,Hotovostný / Bankový účet apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Odstránené položky bez zmeny množstva alebo hodnoty. DocType: Delivery Note,Delivery To,Doručení do -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Atribút tabuľka je povinné +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Atribút tabuľka je povinné DocType: Production Planning Tool,Get Sales Orders,Získat Prodejní objednávky apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} nemôže byť záporné apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Sleva @@ -862,7 +864,7 @@ DocType: Time Log,Will be updated only if Time Log is 'Billable',"Bude aktualizo DocType: Project,Internal,Interní DocType: Task,Urgent,Naléhavý apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +97,Please specify a valid Row ID for row {0} in table {1},Zadajte platný riadok ID riadku tabuľky {0} {1} -apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +23,Go to the Desktop and start using ERPNext,Prejdite na plochu a začať používať ERPNext +apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +23,Go to the Desktop and start using ERPNext,Prejdite na plochu a začnite používať ERPNext DocType: Item,Manufacturer,Výrobce DocType: Landed Cost Item,Purchase Receipt Item,Položka příjemky DocType: Production Plan Item,Reserved Warehouse in Sales Order / Finished Goods Warehouse,Vyhrazeno Warehouse v prodejní objednávky / hotových výrobků Warehouse @@ -876,7 +878,7 @@ apps/erpnext/erpnext/config/stock.py +131,"Attributes for Item Variants. e.g Siz apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +39,WIP Warehouse,WIP Warehouse apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +194,Serial No {0} is under maintenance contract upto {1},Pořadové číslo {0} je na základě smlouvy o údržbě aľ {1} DocType: BOM Operation,Operation,Operace -DocType: Lead,Organization Name,Název organizace +DocType: Lead,Organization Name,Názov organizácie DocType: Tax Rule,Shipping State,Prepravné State apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +61,Item must be added using 'Get Items from Purchase Receipts' button,"Položka musí být přidány pomocí ""získat předměty z kupní příjmy"" tlačítkem" apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +126,Sales Expenses,Prodejní náklady @@ -894,7 +896,7 @@ DocType: Shipping Rule Condition,Shipping Rule Condition,Přepravní Pravidlo Po DocType: Features Setup,Miscelleneous,Miscelleneous DocType: Holiday List,Get Weekly Off Dates,Získejte týdenní Off termíny apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +30,End Date can not be less than Start Date,Datum ukončení nesmí být menší než data zahájení -DocType: Sales Person,Select company name first.,Vyberte název společnosti jako první. +DocType: Sales Person,Select company name first.,"Prosím, vyberte najprv názov spoločnosti" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +145,Dr,Dr apps/erpnext/erpnext/config/buying.py +23,Quotations received from Suppliers.,Ponuky od Dodávateľov. apps/erpnext/erpnext/controllers/selling_controller.py +21,To {0} | {1} {2},Chcete-li {0} | {1} {2} @@ -916,7 +918,7 @@ DocType: SMS Center,Total Characters,Celkový počet znaků apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},Vyberte kusovník Bom oblasti k bodu {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-Form Faktura Detail DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Platba Odsouhlasení faktury -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Příspěvek% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Příspěvek% DocType: Item,website page link,webové stránky odkaz na stránku DocType: Company,Company registration numbers for your reference. Tax numbers etc.,Registrace firmy čísla pro váš odkaz. Daňové čísla atd DocType: Sales Partner,Distributor,Distributor @@ -958,10 +960,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,Faktor konverzie MJ DocType: Stock Settings,Default Item Group,Výchozí bod Group apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Databáze dodavatelů. DocType: Account,Balance Sheet,Rozvaha -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',"Nákladové středisko u položky s Kód položky """ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',"Nákladové středisko u položky s Kód položky """ DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,"Váš obchodní zástupce dostane upomínku na tento den, aby kontaktoval zákazníka" apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Ďalšie účty môžu byť vyrobené v rámci skupiny, ale údaje je možné proti non-skupín" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Daňové a jiné platové srážky. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Daňové a jiné platové srážky. DocType: Lead,Lead,Obchodná iniciatíva DocType: Email Digest,Payables,Závazky DocType: Account,Warehouse,Sklad @@ -978,10 +980,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Smířit platbě DocType: Global Defaults,Current Fiscal Year,Aktuální fiskální rok DocType: Global Defaults,Disable Rounded Total,Zakázat Zaoblený Celkem DocType: Lead,Call,Volání -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,"""Položky"" nemôžu býť prázdne" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,"""Položky"" nemôžu býť prázdne" apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Duplicitný riadok {0} s rovnakým {1} ,Trial Balance,Trial Balance -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Nastavenia pre modul Zamestnanci +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Nastavenia pre modul Zamestnanci apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","Grid """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,"Prosím, vyberte první prefix" apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Výzkum @@ -990,7 +992,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,User ID apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,View Ledger apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Nejstarší -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Položka Group existuje se stejným názvem, prosím, změnit název položky nebo přejmenovat skupinu položek" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Položka Group existuje se stejným názvem, prosím, změnit název položky nebo přejmenovat skupinu položek" DocType: Production Order,Manufacture against Sales Order,Výroba na odběratele apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Zbytek světa apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,Položka {0} nemůže mít dávku @@ -1014,8 +1016,8 @@ DocType: Address,Address Type,Typ adresy DocType: Purchase Receipt,Rejected Warehouse,Zamítnuto Warehouse DocType: GL Entry,Against Voucher,Proti poukazu DocType: Item,Default Buying Cost Center,Výchozí Center Nákup Cost -apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Ak chcete získať to najlepšie z ERPNext, odporúčame vám nejaký čas trvať, a sledovať tieto nápovedy videa." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Položka {0} musí být Sales Item +apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Ak chcete získať to najlepšie z ERPNext, odporúčame vám nejaký čas venovať týmto videám." +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Položka {0} musí být Sales Item apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,k DocType: Item,Lead Time in days,Vek Obchodnej iniciatívy v dňoch ,Accounts Payable Summary,Splatné účty Shrnutí @@ -1038,10 +1040,10 @@ DocType: Email Digest,Add Quote,Pridať ponuku apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +495,UOM coversion factor required for UOM: {0} in Item: {1},UOM coversion faktor potřebný k nerozpuštěných: {0} v bodě: {1} apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +83,Indirect Expenses,Nepřímé náklady apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mandatory,Row {0}: Množství je povinný -apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Zemědělství -apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Vaše Produkty nebo Služby +apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Poľnohospodárstvo +apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Vaše Produkty alebo Služby DocType: Mode of Payment,Mode of Payment,Způsob platby -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Webové stránky Image by mala byť verejná súboru alebo webovej stránky URL +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Webové stránky Image by mala byť verejná súboru alebo webovej stránky URL apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,Jedná se o skupinu kořen položky a nelze upravovat. DocType: Journal Entry Account,Purchase Order,Vydaná objednávka DocType: Warehouse,Warehouse Contact Info,Sklad Kontaktní informace @@ -1052,7 +1054,7 @@ DocType: Serial No,Serial No Details,Serial No Podrobnosti DocType: Purchase Invoice Item,Item Tax Rate,Sazba daně položky apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","Pro {0}, tak úvěrové účty mohou být propojeny na jinou položku debetní" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Delivery Note {0} není předložena -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Položka {0} musí být Subdodavatelské Item +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Položka {0} musí být Subdodavatelské Item apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Kapitálové Vybavení apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Ceny Pravidlo je nejprve vybrána na základě ""Použít na"" oblasti, které mohou být položky, položky skupiny nebo značky." DocType: Hub Settings,Seller Website,Prodejce Website @@ -1061,7 +1063,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Cieľ DocType: Sales Invoice Item,Edit Description,Upraviť popis apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Očakávané dátum dodania je menšia ako plánovaný dátum začatia. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,Pro Dodavatele +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,Pro Dodavatele DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Nastavení typu účtu pomáhá při výběru tohoto účtu v transakcích. DocType: Purchase Invoice,Grand Total (Company Currency),Celkový součet (Měna společnosti) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Celkem Odchozí @@ -1076,7 +1078,7 @@ DocType: Workstation,Workstation Name,Meno pracovnej stanice apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.js +17,Email Digest:,E-mail Digest: apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +428,BOM {0} does not belong to Item {1},BOM {0} nepatří k bodu {1} DocType: Sales Partner,Target Distribution,Target Distribution -DocType: Salary Slip,Bank Account No.,Bankovní účet č. +DocType: Salary Slip,Bank Account No.,Číslo bankového účtu DocType: Naming Series,This is the number of the last created transaction with this prefix,To je číslo poslední vytvořené transakci s tímto prefixem apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +179,Valuation Rate required for Item {0},Ocenění Rate potřebný k bodu {0} DocType: Quality Inspection Reading,Reading 8,Čtení 8 @@ -1111,9 +1113,8 @@ apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +361,Operations cannot be apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +60,Warehouse cannot be changed for Serial No.,Warehouse nemůže být změněn pro Serial No. DocType: Authorization Rule,Average Discount,Průměrná sleva DocType: Address,Utilities,Utilities -DocType: Purchase Invoice Item,Accounting,Účetnictví +DocType: Purchase Invoice Item,Accounting,Účtovníctvo DocType: Features Setup,Features Setup,Nastavení Funkcí -DocType: Item,Is Service Item,Je Service Item apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Obdobie podávania žiadostí nemôže byť alokačné obdobie vonku voľno DocType: Activity Cost,Projects,Projekty apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,"Prosím, vyberte Fiskální rok" @@ -1125,7 +1126,7 @@ DocType: Quotation,Shopping Cart,Nákupní vozík apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Avg Daily Outgoing,Avg Daily Odchozí DocType: Pricing Rule,Campaign,Kampaň apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +30,Approval Status must be 'Approved' or 'Rejected',"Stav schválení musí být ""schváleno"" nebo ""Zamítnuto""" -DocType: Purchase Invoice,Contact Person,Kontaktní osoba +DocType: Purchase Invoice,Contact Person,Kontaktná osoba apps/erpnext/erpnext/projects/doctype/task/task.py +35,'Expected Start Date' can not be greater than 'Expected End Date',"""Očakávaný Dátum Začiatku"" nemôže byť väčší ako ""Očakávaný Dátum Ukončenia""" DocType: Holiday List,Holidays,Prázdniny DocType: Sales Order Item,Planned Quantity,Plánované Množství @@ -1134,7 +1135,7 @@ DocType: Item,Maintain Stock,Udržiavať Zásoby apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Fotky Položky již vytvořené pro výrobní zakázku apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Čistá zmena v stálych aktív DocType: Leave Control Panel,Leave blank if considered for all designations,"Ponechte prázdné, pokud se to považuje za všechny označení" -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,"Obvinění z typu ""Aktuální"" v řádku {0} nemůže být zařazena do položky Rate" +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,"Obvinění z typu ""Aktuální"" v řádku {0} nemůže být zařazena do položky Rate" apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Od datetime DocType: Email Digest,For Company,Pro Společnost @@ -1143,8 +1144,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Přepravní Adresa Název apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Diagram účtů DocType: Material Request,Terms and Conditions Content,Podmínky Content -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,nemůže být větší než 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Položka {0} není skladem +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,nemôže byť väčšie ako 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Položka {0} není skladem DocType: Maintenance Visit,Unscheduled,Neplánovaná DocType: Employee,Owned,Vlastník DocType: Salary Slip Deduction,Depends on Leave Without Pay,Závisí na dovolenke bez nároku na mzdu @@ -1166,12 +1167,12 @@ Used for Taxes and Charges","Tax detail tabulka staženy z položky pána jako apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Zaměstnanec nemůže odpovídat sám sobě. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","V případě, že účet je zamrzlý, položky mohou omezeným uživatelům." DocType: Email Digest,Bank Balance,Bank Balance -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Účtovný záznam pre {0}: {1} môžu vykonávať len v mene: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Účtovný záznam pre {0}: {1} môžu vykonávať len v mene: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Žiadny aktívny Štruktúra Plat nájdených pre zamestnancov {0} a mesiac DocType: Job Opening,"Job profile, qualifications required etc.","Profil Job, požadované kvalifikace atd." DocType: Journal Entry Account,Account Balance,Zůstatek na účtu apps/erpnext/erpnext/config/accounts.py +122,Tax Rule for transactions.,Daňové Pravidlo pre transakcie. -DocType: Rename Tool,Type of document to rename.,Typ dokumentu přejmenovat. +DocType: Rename Tool,Type of document to rename.,Typ dokumentu na premenovanie. apps/erpnext/erpnext/public/js/setup_wizard.js +296,We buy this Item,Táto položka sa kupuje DocType: Address,Billing,Fakturace DocType: Purchase Invoice,Total Taxes and Charges (Company Currency),Celkem Daně a poplatky (Company Měnové) @@ -1183,7 +1184,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Podsestavy DocType: Shipping Rule Condition,To Value,Chcete-li hodnota DocType: Supplier,Stock Manager,Reklamný manažér apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Source sklad je povinná pro řadu {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Balení Slip +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Balení Slip apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Pronájem kanceláře apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Nastavenie SMS brány apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Import se nezdařil! @@ -1227,7 +1228,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM Detail No DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Dodatočná zľava Suma (Mena Company) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Chyba: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,"Prosím, vytvořte nový účet z grafu účtů." -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Maintenance Visit +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Maintenance Visit apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Zákazník> Zákazník Group> Territory DocType: Sales Invoice Item,Available Batch Qty at Warehouse,K dispozícii dávky Množstvo v sklade DocType: Time Log Batch Detail,Time Log Batch Detail,Time Log Batch Detail @@ -1236,15 +1237,15 @@ DocType: Leave Block List,Block Holidays on important days.,Blokové Dovolená n ,Accounts Receivable Summary,Pohledávky Shrnutí apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,Prosím nastavte uživatelské ID pole v záznamu zaměstnanců nastavit role zaměstnance DocType: UOM,UOM Name,Názov Mernej Jednotky -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Výše příspěvku +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Výše příspěvku DocType: Sales Invoice,Shipping Address,Shipping Address DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,"Tento nástroj vám pomůže aktualizovat nebo opravit množství a ocenění zásob v systému. To se obvykle používá k synchronizaci hodnot systému a to, co ve skutečnosti existuje ve vašich skladech." DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,"Ve slovech budou viditelné, jakmile uložíte doručení poznámku." apps/erpnext/erpnext/config/stock.py +115,Brand master.,Master Značky DocType: Sales Invoice Item,Brand Name,Jméno značky DocType: Purchase Receipt,Transporter Details,Transporter Podrobnosti -apps/erpnext/erpnext/public/js/setup_wizard.js +292,Box,Krabice -apps/erpnext/erpnext/public/js/setup_wizard.js +49,The Organization,Organizace +apps/erpnext/erpnext/public/js/setup_wizard.js +292,Box,Krabica +apps/erpnext/erpnext/public/js/setup_wizard.js +49,The Organization,Organizácia DocType: Monthly Distribution,Monthly Distribution,Měsíční Distribution apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +68,Receiver List is empty. Please create Receiver List,Přijímač Seznam je prázdný. Prosím vytvořte přijímače Seznam DocType: Production Plan Sales Order,Production Plan Sales Order,Výrobní program prodejní objednávky @@ -1277,7 +1278,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Chcete-li sledovat položky pomocí čárového kódu. Budete mít možnost zadat položky dodacího listu a prodejní faktury snímáním čárového kódu položky. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Znovu poslať e-mail Payment DocType: Dependent Task,Dependent Task,Závislý Task -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},"Konverzní faktor pro výchozí měrnou jednotku, musí být 1 v řádku {0}" +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},"Konverzní faktor pro výchozí měrnou jednotku, musí být 1 v řádku {0}" apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Leave typu {0} nemůže být delší než {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Skúste plánovanie operácií pre X dní vopred. DocType: HR Settings,Stop Birthday Reminders,Zastavit připomenutí narozenin @@ -1287,14 +1288,14 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Zobraziť apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Čistá zmena v hotovosti DocType: Salary Structure Deduction,Salary Structure Deduction,Plat Struktura Odpočet -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Měrná jednotka {0} byl zadán více než jednou v konverzním faktorem tabulce +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Měrná jednotka {0} byl zadán více než jednou v konverzním faktorem tabulce apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Platba Dopyt už existuje {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Náklady na vydaných položek apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Množství nesmí být větší než {0} apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +41,Age (Days),Staroba (dni) DocType: Quotation Item,Quotation Item,Položka ponuky DocType: Account,Account Name,Název účtu -apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +36,From Date cannot be greater than To Date,Datum OD nemůže být vetší než datum DO +apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +36,From Date cannot be greater than To Date,Dátum OD nemôže byť väčší ako dátum DO apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +194,Serial No {0} quantity {1} cannot be a fraction,Pořadové číslo {0} {1} množství nemůže být zlomek apps/erpnext/erpnext/config/buying.py +59,Supplier Type master.,Dodavatel Type master. DocType: Purchase Order Item,Supplier Part Number,Dodavatel Číslo dílu @@ -1316,7 +1317,7 @@ DocType: BOM Item,BOM Item,BOM Item DocType: Appraisal,For Employee,Pro zaměstnance apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Riadok {0}: Advance proti dodávateľom musí byť odpísať DocType: Company,Default Values,Predvolené hodnoty -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Row {0}: Částka platby nemůže být záporný +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Row {0}: Částka platby nemůže být záporný DocType: Expense Claim,Total Amount Reimbursed,Celkovej sumy vyplatenej apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Proti faktuře dodavatele {0} ze dne {1} DocType: Customer,Default Price List,Výchozí Ceník @@ -1344,8 +1345,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Rek DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Nahradit konkrétní kusovník ve všech ostatních kusovníky, kde se používá. To nahradí původní odkaz kusovníku, aktualizujte náklady a regenerovat ""BOM explozi položku"" tabulku podle nového BOM" DocType: Shopping Cart Settings,Enable Shopping Cart,Povolit Nákupní košík DocType: Employee,Permanent Address,Trvalé bydliště -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Položka {0} musí být služba položky. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Vyplatená záloha proti {0} {1} nemôže byť väčšia \ než Grand Celkom {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,"Prosím, vyberte položku kód" DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Snížit Odpočet o dovolenou bez nároku na odměnu (LWP) @@ -1401,12 +1401,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Hlavné apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Varianta DocType: Naming Series,Set prefix for numbering series on your transactions,Nastavit prefix pro číslování série na vašich transakcí +DocType: Employee Attendance Tool,Employees HTML,Zamestnanci HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Zastaveno příkaz nelze zrušit. Uvolnit zrušit. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Predvolené BOM ({0}) musí byť aktívna pre túto položku alebo jeho šablóny +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Predvolené BOM ({0}) musí byť aktívna pre túto položku alebo jeho šablóny DocType: Employee,Leave Encashed?,Ponechte zpeněžení? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Opportunity Ze hřiště je povinné DocType: Item,Variants,Varianty -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Proveďte objednávky +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Proveďte objednávky DocType: SMS Center,Send To,Odeslat apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Není dost bilance dovolenou na vstup typ {0} DocType: Payment Reconciliation Payment,Allocated amount,Přidělené sumy @@ -1442,7 +1443,7 @@ apps/erpnext/erpnext/config/selling.py +153,Bundle items at time of sale.,Bundle DocType: Sales Order Item,Actual Qty,Skutečné Množství DocType: Sales Invoice Item,References,Referencie DocType: Quality Inspection Reading,Reading 10,Čtení 10 -apps/erpnext/erpnext/public/js/setup_wizard.js +278,"List your products or services that you buy or sell. Make sure to check the Item Group, Unit of Measure and other properties when you start.","Seznam vaše produkty nebo služby, které jste koupit nebo prodat. Ujistěte se, že zkontrolovat položky Group, měrná jednotka a dalších vlastností při spuštění." +apps/erpnext/erpnext/public/js/setup_wizard.js +278,"List your products or services that you buy or sell. Make sure to check the Item Group, Unit of Measure and other properties when you start.","Vypíšte zopár produktov alebo služieb, ktoré predávate alebo kupujete. Po spustení systému sa presvečte, či majú tieto položky správne nastavenú mernú jednotku, kategóriu a ostatné vlastnosti." DocType: Hub Settings,Hub Node,Hub Node apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +78,You have entered duplicate items. Please rectify and try again.,"Zadali jste duplicitní položky. Prosím, opravu a zkuste to znovu." apps/erpnext/erpnext/controllers/item_variant.py +66,Value {0} for Attribute {1} does not exist in the list of valid Item Attribute Values,Hodnota {0} pre atribút {1} neexistuje v zozname platného bodu Hodnoty atribútov @@ -1492,7 +1493,7 @@ apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +21,Item Group Tree, apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +69,Item {0} is not setup for Serial Nos. Check Item master,"Položka {0} není nastavení pro Serial č. Zkontrolujte, zda master položku" DocType: Maintenance Visit,Maintenance Time,Údržba Time ,Amount to Deliver,"Suma, ktorá má dodávať" -apps/erpnext/erpnext/public/js/setup_wizard.js +286,A Product or Service,Produkt nebo Služba +apps/erpnext/erpnext/public/js/setup_wizard.js +286,A Product or Service,Produkt alebo Služba DocType: Naming Series,Current Value,Current Value apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +171,{0} created,{0} vytvoril DocType: Delivery Note Item,Against Sales Order,Proti přijaté objednávce @@ -1507,7 +1508,7 @@ DocType: Sales Person,Name and Employee ID,Meno a ID zamestnanca apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,Datum splatnosti nesmí být před odesláním Datum DocType: Website Item Group,Website Item Group,Website Item Group apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Odvody a dane -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,"Prosím, zadejte Referenční den" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,"Prosím, zadejte Referenční den" apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Platobná brána účet nie je nakonfigurovaný apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} platobné položky nemôžu byť filtrované podľa {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,"Tabulka k bodu, který se zobrazí na webových stránkách" @@ -1528,7 +1529,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Rozlišení Podrobnosti DocType: Quality Inspection Reading,Acceptance Criteria,Kritéria přijetí DocType: Item Attribute,Attribute Name,Název atributu -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Položka {0} musí být prodej či servis položku v {1} DocType: Item Group,Show In Website,Show pro webové stránky apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Skupina DocType: Task,Expected Time (in hours),Predpokladaná doba (v hodinách) @@ -1560,7 +1560,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Přepravní Částka ,Pending Amount,Čeká Částka DocType: Purchase Invoice Item,Conversion Factor,Konverzní faktor DocType: Purchase Order,Delivered,Dodává -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Nastavenie serveru prichádzajúcej pošty s ID emailom pre uchádzačov o prácu. (Napríklad praca@priklad.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Nastavenie serveru prichádzajúcej pošty s ID emailom pre uchádzačov o prácu. (Napríklad praca@priklad.com) DocType: Purchase Receipt,Vehicle Number,Číslo vozidla DocType: Purchase Invoice,The date on which recurring invoice will be stop,"Datum, kdy opakující se faktura bude zastaví" apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Celkové pridelené listy {0} nemôže byť nižšia ako už schválených listy {1} pre obdobie @@ -1577,7 +1577,7 @@ DocType: HR Settings,HR Settings,Nastavení HR apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Úhrada výdajů čeká na schválení. Pouze schalovatel výdajů může aktualizovat stav. DocType: Purchase Invoice,Additional Discount Amount,Dodatočná zľava Suma DocType: Leave Block List Allow,Leave Block List Allow,Nechte Block List Povolit -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Skrátená nemôže byť prázdne alebo priestor +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Skrátená nemôže byť prázdne alebo priestor apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Skupina na Non-Group apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Sportovní apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Celkem Aktuální @@ -1585,7 +1585,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +292,Unit,Jednotka apps/erpnext/erpnext/stock/get_item_details.py +107,Please specify Company,"Uveďte prosím, firmu" ,Customer Acquisition and Loyalty,Zákazník Akvizice a loajality DocType: Purchase Receipt,Warehouse where you are maintaining stock of rejected items,"Sklad, kde se udržují zásoby odmítnutých položek" -apps/erpnext/erpnext/public/js/setup_wizard.js +68,Your financial year ends on,Váš finanční rok končí +apps/erpnext/erpnext/public/js/setup_wizard.js +68,Your financial year ends on,Váš finančný rok končí DocType: POS Profile,Price List,Ceník apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +20,{0} is now the default Fiscal Year. Please refresh your browser for the change to take effect.,"{0} je teraz predvolený Fiškálny rok. Prosím aktualizujte svoj prehliadač, aby se prejavili zmeny." apps/erpnext/erpnext/projects/doctype/project/project.js +47,Expense Claims,Nákladové Pohľadávky @@ -1601,7 +1601,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},UOM Konverzní faktor je nutné v řadě {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Datum vůle nemůže být před přihlášením dnem v řadě {0} DocType: Salary Slip,Deduction,Dedukce -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Položka Cena pridaný pre {0} v Cenníku {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Položka Cena pridaný pre {0} v Cenníku {1} DocType: Address Template,Address Template,Šablona adresy apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,"Prosím, zadajte ID zamestnanca z tohto predaja osoby" DocType: Territory,Classification of Customers by region,Rozdělení zákazníků podle krajů @@ -1618,13 +1618,13 @@ DocType: Employee,Date of Birth,Datum narození apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Bod {0} již byla vrácena DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** Fiškálny rok ** predstavuje finančný rok. Všetky účtovné záznamy a ďalšie významné transakcie sú sledované pod ** Fiškálny rok **. DocType: Opportunity,Customer / Lead Address,Zákazník / Iniciatíva Adresa -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Varovanie: Neplatný certifikát SSL na prílohu {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Varovanie: Neplatný certifikát SSL na prílohu {0} DocType: Production Order Operation,Actual Operation Time,Aktuální Provozní doba DocType: Authorization Rule,Applicable To (User),Vztahující se na (Uživatel) DocType: Purchase Taxes and Charges,Deduct,Odečíst apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +170,Job Description,Popis Práca DocType: Purchase Order Item,Qty as per Stock UOM,Množstvo podľa skladovej MJ -apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +126,"Special Characters except ""-"", ""#"", ""."" and ""/"" not allowed in naming series","Speciální znaky kromě ""-"". """", ""#"", a ""/"" není povoleno v pojmenování řady" +apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +126,"Special Characters except ""-"", ""#"", ""."" and ""/"" not allowed in naming series","Špeciálne znaky okrem ""-"". """", ""#"", a ""/"" nie sú povolené v číselnej rade" DocType: Campaign,"Keep Track of Sales Campaigns. Keep track of Leads, Quotations, Sales Order etc from Campaigns to gauge Return on Investment.","Mějte přehled o prodejních kampaní. Mějte přehled o Leads, citace, prodejní objednávky atd z kampaně, aby zjistily, návratnost investic." DocType: Expense Claim,Approver,Schvalovatel ,SO Qty,SO Množství @@ -1635,11 +1635,11 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Rozdělit dodací list do balíčků. apps/erpnext/erpnext/hooks.py +69,Shipments,Zásielky DocType: Purchase Order Item,To be delivered to customer,Ak chcete byť doručený zákazníkovi -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Time Log Status musí být předloženy. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Time Log Status musí být předloženy. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,"Poradové číslo {0} nepatrí do skladu," apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Row # DocType: Purchase Invoice,In Words (Company Currency),Slovy (měna společnosti) -DocType: Pricing Rule,Supplier,Dodavatel +DocType: Pricing Rule,Supplier,Dodávateľ DocType: C-Form,Quarter,Čtvrtletí apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +105,Miscellaneous Expenses,Různé výdaje DocType: Global Defaults,Default Company,Výchozí Company @@ -1652,7 +1652,7 @@ DocType: Leave Application,Total Leave Days,Celkový počet dnů dovolené DocType: Email Digest,Note: Email will not be sent to disabled users,Poznámka: E-mail se nepodařilo odeslat pro zdravotně postižené uživatele apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Vyberte společnost ... DocType: Leave Control Panel,Leave blank if considered for all departments,"Ponechte prázdné, pokud se to považuje za všechna oddělení" -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Druhy pracovního poměru (trvalý, smluv, stážista atd.)" +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Druhy pracovního poměru (trvalý, smluv, stážista atd.)" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} je povinná k položke {1} DocType: Currency Exchange,From Currency,Od Měny apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Prosím, vyberte alokovaná částka, typ faktury a číslo faktury v aspoň jedné řadě" @@ -1665,13 +1665,13 @@ DocType: Item,"A Product or a Service that is bought, sold or kept in stock.","P apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +94,Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row,"Nelze vybrat druh náboje jako ""On předchozí řady Částka"" nebo ""On předchozí řady Celkem"" pro první řadu" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +12,Banking,Bankovnictví apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +38,Please click on 'Generate Schedule' to get schedule,"Prosím, klikněte na ""Generovat Schedule"", aby se plán" -apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +300,New Cost Center,Nové Nákladové Středisko +apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +300,New Cost Center,Nové Nákladové Stredisko DocType: Bin,Ordered Quantity,Objednané množství apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for builders""","napríklad ""Nástroje pre stavbárov """ DocType: Quality Inspection,In Process,V procesu DocType: Authorization Rule,Itemwise Discount,Itemwise Sleva DocType: Purchase Order Item,Reference Document Type,Referenčná Typ dokumentu -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} proti Predajnej Objednávke {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} proti Predajnej Objednávke {1} DocType: Account,Fixed Asset,Základní Jmění apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Serialized Zásoby DocType: Activity Type,Default Billing Rate,Predvolené fakturácia Rate @@ -1681,7 +1681,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Predajné objednávky na platby DocType: Expense Claim Detail,Expense Claim Detail,Detail úhrady výdajů apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Čas Záznamy vytvořil: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,"Prosím, vyberte správny účet" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,"Prosím, vyberte správny účet" DocType: Item,Weight UOM,Hmotnostná MJ DocType: Employee,Blood Group,Krevní Skupina DocType: Purchase Invoice Item,Page Break,Zalomení stránky @@ -1716,7 +1716,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM rekurze: {0} nemůže být rodič nebo dítě {2} DocType: Production Order Operation,Completed Qty,Dokončené Množství apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","Pro {0}, tak debetní účty mohou být spojeny proti jinému připsání" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Ceník {0} je zakázána +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Ceník {0} je zakázána DocType: Manufacturing Settings,Allow Overtime,Povoliť Nadčasy apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} Sériové čísla požadované pre položku {1}. Poskytli ste {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Aktuálne ocenenie Rate @@ -1739,7 +1739,7 @@ DocType: Shipping Rule,example: Next Day Shipping,Příklad: Next Day Shipping apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +188,Serial No {0} not found,Pořadové číslo {0} nebyl nalezen apps/erpnext/erpnext/public/js/setup_wizard.js +233,Your Customers,Vaši Zákazníci DocType: Leave Block List Date,Block Date,Block Datum -DocType: Sales Order,Not Delivered,Ne vyhlášeno +DocType: Sales Order,Not Delivered,Nedodané ,Bank Clearance Summary,Souhrn bankovního zúčtování apps/erpnext/erpnext/config/setup.py +105,"Create and manage daily, weekly and monthly email digests.","Vytvářet a spravovat denní, týdenní a měsíční e-mailové digest." apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +46,Item Code > Item Group > Brand,Kód položky> Položka Group> Brand @@ -1750,7 +1750,7 @@ DocType: Salary Structure,Monthly Earning & Deduction,Měsíčního výdělku a apps/erpnext/erpnext/controllers/selling_controller.py +157,Maxiumm discount for Item {0} is {1}%,Maxiumm sleva na položky {0} {1}% apps/erpnext/erpnext/stock/doctype/item_price/item_price.js +16,Import in Bulk,Dovoz hromadnú DocType: Sales Partner,Address & Contacts,Adresa a kontakty -DocType: SMS Log,Sender Name,Jméno odesílatele +DocType: SMS Log,Sender Name,Meno odosielateľa DocType: POS Profile,[Select],[Vybrať] DocType: SMS Log,Sent To,Odoslaná DocType: Payment Request,Make Sales Invoice,Proveďte prodejní faktuře @@ -1761,13 +1761,12 @@ DocType: Manufacturing Settings,Capacity Planning,Plánovanie kapacít apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +43,'From Date' is required,"""Dátum od"" je povinný" DocType: Journal Entry,Reference Number,Referenční číslo DocType: Employee,Employment Details,Informace o zaměstnání -DocType: Employee,New Workplace,Nové pracoviště +DocType: Employee,New Workplace,Nové pracovisko apps/erpnext/erpnext/crm/doctype/opportunity/opportunity_list.js +17,Set as Closed,Nastaviť ako Zatvorené apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},No Položka s čárovým kódem {0} apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Případ č nemůže být 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,"Máte-li prodejní tým a prodej Partners (obchodních partnerů), které mohou být označeny a udržovat svůj příspěvek v prodejní činnosti" DocType: Item,Show a slideshow at the top of the page,Ukazují prezentaci v horní části stránky -DocType: Item,"Allow in Sales Order of type ""Service""",Povoliť v predajnej objednávke typu "služby" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Obchody DocType: Time Log,Projects Manager,Správce projektů DocType: Serial No,Delivery Time,Dodací lhůta @@ -1778,10 +1777,11 @@ DocType: Leave Block List,Allow Users,Povolit uživatele DocType: Purchase Order,Customer Mobile No,Zákazník Mobile Žiadne DocType: Sales Invoice,Recurring,Opakujúce sa DocType: Cost Center,Track separate Income and Expense for product verticals or divisions.,Sledovat samostatné výnosy a náklady pro vertikál produktu nebo divizí. -DocType: Rename Tool,Rename Tool,Přejmenování +DocType: Rename Tool,Rename Tool,Nástroj na premenovanie apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Aktualizace Cost DocType: Item Reorder,Item Reorder,Položka Reorder apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Přenos materiálu +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Bod {0} musí byť Sales Položka {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Zadejte operací, provozní náklady a dávají jedinečnou operaci ne své operace." DocType: Purchase Invoice,Price List Currency,Ceník Měna DocType: Naming Series,User must always select,Uživatel musí vždy vybrat @@ -1802,7 +1802,7 @@ DocType: Appraisal,Employee,Zaměstnanec apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Importovať e-maily z apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Pozvať ako Užívateľ DocType: Features Setup,After Sale Installations,Po prodeji instalací -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} je úplne fakturované +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} je úplne fakturované DocType: Workstation Working Hour,End Time,End Time apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Standardní smluvní podmínky pro prodej nebo koupi. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Seskupit podle Poukazu @@ -1828,7 +1828,7 @@ DocType: Upload Attendance,Attendance To Date,Účast na data apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Nastavenie serveru prichádzajúcej pošty s ID emailom pre Predaj. (Napríklad obchod@priklad.com) DocType: Warranty Claim,Raised By,Vznesené DocType: Payment Gateway Account,Payment Account,Platební účet -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,Uveďte prosím společnost pokračovat +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,Uveďte prosím společnost pokračovat apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Čistá zmena objemu pohľadávok apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Vyrovnávací Off DocType: Quality Inspection Reading,Accepted,Přijato @@ -1840,14 +1840,14 @@ DocType: Shipping Rule,Shipping Rule Label,Přepravní Pravidlo Label apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Suroviny nemůže být prázdný. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Nie je možné aktualizovať zásob, faktúra obsahuje pokles lodnej dopravy tovaru." DocType: Newsletter,Test,Test -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Ako tam sú existujúce skladové transakcie pre túto položku, \ nemôžete zmeniť hodnoty "Má sériové číslo", "má Batch Nie", "Je skladom" a "ocenenie Method"" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Rýchly vstup Journal apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,"Nemůžete změnit sazbu, kdyby BOM zmínil agianst libovolné položky" DocType: Employee,Previous Work Experience,Předchozí pracovní zkušenosti DocType: Stock Entry,For Quantity,Pre Množstvo apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},"Prosím, zadejte Plánované Množství k bodu {0} na řádku {1}" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} nie je odoslané +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} nie je odoslané apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Žádosti o položky. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Samostatná výroba objednávka bude vytvořena pro každého hotového dobrou položku. DocType: Purchase Invoice,Terms and Conditions1,Podmínky a podmínek1 @@ -1861,17 +1861,18 @@ DocType: Authorization Rule,Authorized Value,Autorizovaný Hodnota DocType: Contact,Enter department to which this Contact belongs,"Zadejte útvar, který tento kontaktní patří" apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +57,Total Absent,Celkem Absent apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +736,Item or Warehouse for row {0} does not match Material Request,Položka nebo Warehouse na řádku {0} neodpovídá Materiál Poptávka -apps/erpnext/erpnext/config/stock.py +104,Unit of Measure,Měrná jednotka +apps/erpnext/erpnext/config/stock.py +104,Unit of Measure,Merná jednotka DocType: Fiscal Year,Year End Date,Dátum konca roka DocType: Task Depends On,Task Depends On,Úloha je závislá na DocType: Lead,Opportunity,Příležitost DocType: Salary Structure Earning,Salary Structure Earning,Plat Struktura Zisk ,Completed Production Orders,Dokončené Výrobní zakázky DocType: Operation,Default Workstation,Výchozí Workstation -DocType: Notification Control,Expense Claim Approved Message,Zpráva o schválení úhrady výdajů +DocType: Notification Control,Expense Claim Approved Message,Správa o schválení úhrady výdavkov DocType: Email Digest,How frequently?,Jak často? DocType: Purchase Receipt,Get Current Stock,Získať aktuálny stav apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Strom Bill materiálov +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,mark Present apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Datum zahájení údržby nemůže být před datem dodání pro pořadové číslo {0} DocType: Production Order,Actual End Date,Skutečné datum ukončení DocType: Authorization Rule,Applicable To (Role),Vztahující se na (Role) @@ -1886,10 +1887,10 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Smlouva Datum ukončení musí být větší než Datum spojování DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,"Distributor / dealer / jednatel / partner / prodejce, který prodává produkty společnosti za provizi." DocType: Customer Group,Has Child Node,Má děti Node -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} proti Objednávke {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} proti Objednávke {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Zadejte statické parametry url zde (Např odesílatel = ERPNext, username = ERPNext, password. = 1234 atd.)," apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} nie je v žiadnom aktívnom Fiškálnom roku. Pre viac informácií pozrite {2}. -apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,To je příklad webové stránky automaticky generované z ERPNext +apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Toto je príklad webovej stránky automaticky generovanej z ERPNext apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +37,Ageing Range 1,Stárnutí Rozsah 1 DocType: Purchase Taxes and Charges Template,"Standard tax template that can be applied to all Purchase Transactions. This template can contain list of tax heads and also other expense heads like ""Shipping"", ""Insurance"", ""Handling"" etc. @@ -1934,7 +1935,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Přidat nebo odečítat: Ať už chcete přidat nebo odečíst daň." DocType: Purchase Receipt Item,Recd Quantity,Recd Množství apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Nelze produkují více položku {0} než prodejní objednávky množství {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Sklad Entry {0} nie je predložená +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Sklad Entry {0} nie je predložená DocType: Payment Reconciliation,Bank / Cash Account,Bank / Peněžní účet DocType: Tax Rule,Billing City,Fakturácia City DocType: Global Defaults,Hide Currency Symbol,Skrýt symbol měny @@ -1960,7 +1961,7 @@ DocType: Salary Structure,Total Earning,Celkem Zisk DocType: Purchase Receipt,Time at which materials were received,"Čas, kdy bylo přijato materiály" apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Moje Adresy DocType: Stock Ledger Entry,Outgoing Rate,Odchádzajúce Rate -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Organizace větev master. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Organizace větev master. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,alebo DocType: Sales Order,Billing Status,Status Fakturace apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Utility Náklady @@ -1986,7 +1987,7 @@ DocType: Purchase Order,Ref SQ,Ref SQ apps/erpnext/erpnext/config/manufacturing.py +56,Replace Item / BOM in all BOMs,Nahradit položky / kusovníky ve všech kusovníků DocType: Purchase Order Item,Received Qty,Přijaté Množství DocType: Stock Entry Detail,Serial No / Batch,Výrobní číslo / Batch -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +297,Not Paid and Not Delivered,Nezaplatil a nie je doručenie +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +297,Not Paid and Not Delivered,Nezaplatené a nedoručené DocType: Product Bundle,Parent Item,Nadřazená položka DocType: Account,Account Type,Typ účtu apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +113,Leave Type {0} cannot be carry-forwarded,Nechajte typ {0} nemožno vykonávať odovzdávané @@ -1998,7 +1999,7 @@ DocType: Bin,Reserved Quantity,Vyhrazeno Množství DocType: Landed Cost Voucher,Purchase Receipt Items,Položky příjemky apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Prispôsobenie Formuláre DocType: Account,Income Account,Účet příjmů -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Dodávka +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Dodávka DocType: Stock Reconciliation Item,Current Qty,Aktuálne Množstvo DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section","Viz ""Hodnotit materiálů na bázi"" v kapitole Costing" DocType: Appraisal Goal,Key Responsibility Area,Key Odpovědnost Area @@ -2010,9 +2011,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,Vou DocType: Notification Control,Purchase Order Message,Zprávy vydané objenávky DocType: Tax Rule,Shipping Country,Prepravné Krajina DocType: Upload Attendance,Upload HTML,Nahrát HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","Celkem předem ({0}) na objednávku {1} nemůže být větší než \ - celkovém součtu ({2})" DocType: Employee,Relieving Date,Uvolnění Datum apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Ceny Pravidlo je vyrobena přepsat Ceník / definovat slevy procenta, na základě určitých kritérií." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Sklad je možné provést pouze prostřednictvím Burzy Entry / dodací list / doklad o zakoupení @@ -2022,13 +2020,13 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Daň apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Je-li zvolena Ceny pravidlo je určen pro ""Cena"", přepíše ceníku. Ceny Pravidlo cena je konečná cena, a proto by měla být použita žádná další sleva. Proto, v transakcích, jako odběratele, objednávky atd, bude stažen v oboru ""sazbou"", spíše než poli ""Ceník sazby""." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Trasa vede od průmyslu typu. DocType: Item Supplier,Item Supplier,Položka Dodavatel -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,"Prosím, zadejte kód položky se dostat dávku no" -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},Vyberte prosím hodnotu pro {0} quotation_to {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,"Prosím, zadejte kód položky se dostat dávku no" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},Vyberte prosím hodnotu pro {0} quotation_to {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Všechny adresy. DocType: Company,Stock Settings,Nastavenie Skladu apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Spojenie je možné len vtedy, ak tieto vlastnosti sú rovnaké v oboch záznamoch. Je Group, Root Type, Company" apps/erpnext/erpnext/config/crm.py +72,Manage Customer Group Tree.,Správa zákazníků skupiny Tree. -apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +302,New Cost Center Name,Jméno Nového Nákladového Střediska +apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +302,New Cost Center Name,Názov nového nákladového strediska DocType: Leave Control Panel,Leave Control Panel,Nechte Ovládací panely apps/erpnext/erpnext/utilities/doctype/address/address.py +95,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"No default šablony adresy nalezeno. Prosím, vytvořte nový z Nastavení> Tisk a značky> Adresa šablonu." DocType: Appraisal,HR User,HR User @@ -2046,7 +2044,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Šek číslo DocType: Payment Tool Detail,Payment Tool Detail,Detail platební nástroj ,Sales Browser,Sales Browser DocType: Journal Entry,Total Credit,Celkový Credit -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Upozornenie: Ďalším {0} # {1} existuje proti akciovej vstupu {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Upozornenie: Ďalším {0} # {1} existuje proti akciovej vstupu {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Místní apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Úvěrů a půjček (aktiva) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Dlužníci @@ -2066,8 +2064,8 @@ DocType: Price List,Price List Master,Ceník Master DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,"Všechny prodejní transakce mohou být označeny proti více ** prodejcům **, takže si můžete nastavit a sledovat cíle." ,S.O. No.,SO Ne. DocType: Production Order Operation,Make Time Log,Udělejte si čas Přihlásit -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Prosím nastavte množstvo objednávacie -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},Prosím vytvorte Zákazníka z Obchodnej iniciatívy {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Prosím nastavte množstvo objednávacie +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},Prosím vytvorte Zákazníka z Obchodnej iniciatívy {0} DocType: Price List,Applicable for Countries,Pre krajiny apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Počítače apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,"To je kořen skupiny zákazníků, a nelze upravovat." @@ -2109,13 +2107,13 @@ DocType: Account,Accounts User,Uživatel Účtů DocType: Sales Invoice,"Check if recurring invoice, uncheck to stop recurring or put proper End Date","Zkontrolujte, zda je opakující se faktury, zrušte zaškrtnutí zastavit opakované nebo dát správné datum ukončení" apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +18,Attendance for employee {0} is already marked,Účast na zaměstnance {0} je již označen DocType: Packing Slip,If more than one package of the same type (for print),Pokud je více než jeden balík stejného typu (pro tisk) -DocType: C-Form Invoice Detail,Net Total,Net Total +DocType: C-Form Invoice Detail,Net Total,Netto Spolu DocType: Bin,FCFS Rate,FCFS Rate apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Fakturace (Prodejní Faktura) DocType: Payment Reconciliation Invoice,Outstanding Amount,Dlužné částky DocType: Project Task,Working,Pracovní DocType: Stock Ledger Entry,Stock Queue (FIFO),Sklad fronty (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Vyberte Time Protokoly. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Vyberte Time Protokoly. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} nepatrí do Spoločnosti {1} DocType: Account,Round Off,Zaokrúhliť ,Requested Qty,Požadované množství @@ -2126,7 +2124,7 @@ DocType: Maintenance Visit,Purposes,Cíle apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +106,Atleast one item should be entered with negative quantity in return document,Aspon jedna položka by mala byť zadaná s negatívnym množstvo vo vratnom dokumente apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +67,"Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations","Prevádzka {0} dlhšie, než všetkých dostupných pracovných hodín v pracovnej stanici {1}, rozložiť prevádzku do niekoľkých operácií" ,Requested,Požadované -apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +67,No Remarks,Žádné poznámky +apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +67,No Remarks,Žiadne poznámky apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js +13,Overdue,Zpožděný DocType: Account,Stock Received But Not Billed,Sklad nepřijali Účtovaný apps/erpnext/erpnext/accounts/doctype/account/account.py +83,Root Account must be a group,Root účet musí byť skupina @@ -2153,7 +2151,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Získat příslušné zápisy apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Účetní položka na skladě DocType: Sales Invoice,Sales Team1,Sales Team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Bod {0} neexistuje +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Bod {0} neexistuje DocType: Sales Invoice,Customer Address,Zákazník Address DocType: Payment Request,Recipient and Message,Príjemca a správ DocType: Purchase Invoice,Apply Additional Discount On,Použiť dodatočné Zľava na @@ -2172,7 +2170,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Mute Email apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Potraviny, nápoje a tabák" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL nebo BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Možno vykonať len platbu proti nevyfakturované {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Možno vykonať len platbu proti nevyfakturované {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Rychlost Komise nemůže být větší než 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Minimální úroveň zásob DocType: Stock Entry,Subcontract,Subdodávka @@ -2190,20 +2188,22 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Software apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Farebné DocType: Maintenance Visit,Scheduled,Plánované apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Prosím, vyberte položku, kde "Je skladom," je "Nie" a "je Sales Item" "Áno" a nie je tam žiadny iný produkt Bundle" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Celkové zálohy ({0}) na objednávku {1} nemôže byť väčšia ako Celkom ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Vyberte měsíční výplatou na nerovnoměrně distribuovat cílů napříč měsíců. DocType: Purchase Invoice Item,Valuation Rate,Ocenění Rate -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Ceníková Měna není zvolena +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Ceníková Měna není zvolena apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,"Bod Row {0}: doklad o koupi, {1} neexistuje v tabulce ""kupní příjmy""" apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Zaměstnanec {0} již požádal o {1} mezi {2} a {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Datum zahájení projektu apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +8,Until,Dokud -DocType: Rename Tool,Rename Log,Přejmenovat Přihlásit +DocType: Rename Tool,Rename Log,Premenovať Log DocType: Installation Note Item,Against Document No,Proti dokumentu č apps/erpnext/erpnext/config/selling.py +98,Manage Sales Partners.,Správa prodejních partnerů. DocType: Quality Inspection,Inspection Type,Kontrola Type apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},"Prosím, vyberte {0}" DocType: C-Form,C-Form No,C-Form No DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,Neoznačené Návštevnosť apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Výzkumník apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,Uložte Newsletter před odesláním apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Meno alebo e-mail je povinné @@ -2227,13 +2227,13 @@ apps/erpnext/erpnext/config/crm.py +53,Logs for maintaining sms delivery status, apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +36,Pending Activities,Nevybavené Aktivity apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Potvrdené DocType: Payment Gateway,Gateway,Brána -apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Dodavatel> Dodavatel Type +apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Dodávateľ> Dodavatel Type apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Zadejte zmírnění datum. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,"Nechte pouze aplikace s status ""schváleno"" může být předloženy" apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Adresa Název je povinný. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,"Zadejte název kampaně, pokud zdroj šetření je kampaň" -apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +38,Newspaper Publishers,Vydavatelé novin +apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +38,Newspaper Publishers,Vydavatelia novín apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +31,Select Fiscal Year,Vyberte Fiskální rok apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +43,Reorder Level,Změna pořadí Level DocType: Attendance,Attendance Date,Účast Datum @@ -2244,10 +2244,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Schválené Sklad DocType: Bank Reconciliation Detail,Posting Date,Datum zveřejnění DocType: Item,Valuation Method,Ocenění Method apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Nepodarilo sa nájsť kurz pre {0} do {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Mark Poldenné DocType: Sales Invoice,Sales Team,Prodejní tým apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Duplicitní záznam DocType: Serial No,Under Warranty,V rámci záruky -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Chyba] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Chyba] DocType: Sales Order,In Words will be visible once you save the Sales Order.,"Ve slovech budou viditelné, jakmile uložíte prodejní objednávky." ,Employee Birthday,Narozeniny zaměstnance apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Venture Capital @@ -2270,6 +2271,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,Nákladové středisko se stávajícími transakcemi nelze převést do skupiny DocType: Account,Depreciation,Znehodnocení apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Dodavatel (é) +DocType: Employee Attendance Tool,Employee Attendance Tool,Účasť zamestnancov Tool DocType: Supplier,Credit Limit,Úvěrový limit apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Vyberte typ transakce DocType: GL Entry,Voucher No,Voucher No @@ -2296,7 +2298,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Root účet nemůže být smazán ,Is Primary Address,Je Hlavný adresa DocType: Production Order,Work-in-Progress Warehouse,Work-in-Progress sklad -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Reference # {0} ze dne {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Reference # {0} ze dne {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Správa adries DocType: Pricing Rule,Item Code,Kód položky DocType: Production Planning Tool,Create Production Orders,Vytvoření výrobní zakázky @@ -2323,7 +2325,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Bank Odsouhlasení apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Získať aktualizácie apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Materiál Request {0} je zrušena nebo zastavena apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Pridať niekoľko ukážkových záznamov -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Nechajte Správa +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Nechajte Správa apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Seskupit podle účtu DocType: Sales Order,Fully Delivered,Plně Dodáno DocType: Lead,Lower Income,S nižšími příjmy @@ -2338,14 +2340,15 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"""Dátum DO"" musí byť po ""Dátum OD""" ,Stock Projected Qty,Reklamní Plánovaná POČET apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Zákazník {0} nepatří k projektu {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Výrazná Účasť HTML DocType: Sales Order,Customer's Purchase Order,Zákazníka Objednávka DocType: Warranty Claim,From Company,Od Společnosti apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Hodnota nebo Množství -apps/erpnext/erpnext/public/js/setup_wizard.js +293,Minute,Minuta +apps/erpnext/erpnext/public/js/setup_wizard.js +293,Minute,Minúta DocType: Purchase Invoice,Purchase Taxes and Charges,Nákup Daně a poplatky ,Qty to Receive,Množství pro příjem DocType: Leave Block List,Leave Block List Allowed,Nechte Block List povolena -apps/erpnext/erpnext/public/js/setup_wizard.js +20,You will use it to Login,Budete ho používat k přihlášení +apps/erpnext/erpnext/public/js/setup_wizard.js +20,You will use it to Login,Bude slúžiť ako prihlasovacie meno DocType: Sales Partner,Retailer,Maloobchodník apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +100,Credit To account must be a Balance Sheet account,Pripísať na účet musí byť účtu Súvaha apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +128,All Supplier Types,Všechny typy Dodavatele @@ -2356,7 +2359,7 @@ DocType: Sales Order,% Delivered,% Dodaných apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +177,Bank Overdraft Account,Kontokorentní úvěr na účtu apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +18,Browse BOM,Prechádzať BOM apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +175,Secured Loans,Zajištěné úvěry -apps/erpnext/erpnext/setup/setup_wizard/data/sample_home_page.html +3,Awesome Products,Skvělé produkty +apps/erpnext/erpnext/setup/setup_wizard/data/sample_home_page.html +3,Awesome Products,Skvelé produkty apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +189,Opening Balance Equity,Počiatočný stav Equity DocType: Appraisal,Appraisal,Ocenění apps/erpnext/erpnext/hr/doctype/leave_block_list/leave_block_list.py +22,Date is repeated,Datum se opakuje @@ -2369,7 +2372,7 @@ DocType: Item Price,Bulk Import Help,Bulk import Help apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +197,Select Quantity,Zvolte množství apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +34,Approving Role cannot be same as role the rule is Applicable To,Schválení role nemůže být stejná jako role pravidlo se vztahuje na apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +66,Unsubscribe from this Email Digest,Odhlásiť sa z tohto Email Digest -apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +28,Message Sent,Zpráva byla odeslána +apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +28,Message Sent,Správa bola odoslaná apps/erpnext/erpnext/accounts/doctype/account/account.py +97,Account with child nodes cannot be set as ledger,Účet s podriadené uzly nie je možné nastaviť ako hlavnej knihy DocType: Production Plan Sales Order,SO Date,SO Datum DocType: Sales Invoice,Rate at which Price list currency is converted to customer's base currency,"Sazba, za kterou Ceník měna je převeden na zákazníka základní měny" @@ -2400,8 +2403,9 @@ DocType: Expense Claim,Approval Status,Stav schválení DocType: Hub Settings,Publish Items to Hub,Publikování položky do Hub apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From value must be less than to value in row {0},Z hodnota musí být menší než hodnota v řadě {0} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Bankovní převod -apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,"Prosím, vyberte bankovní účet" +apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,"Prosím, vyberte bankový účet" DocType: Newsletter,Create and Send Newsletters,Vytvoření a odeslání Zpravodaje +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,"skontrolujte, či všetky" DocType: Sales Order,Recurring Order,Opakující se objednávky DocType: Company,Default Income Account,Účet Default příjmů apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Zákazník Group / Customer @@ -2422,7 +2426,7 @@ DocType: Notification Control,Quotation Message,Správa k ponuke DocType: Issue,Opening Date,Datum otevření DocType: Journal Entry,Remark,Poznámka DocType: Purchase Receipt Item,Rate and Amount,Sadzba a množstvo -DocType: Sales Order,Not Billed,Ne Účtovaný +DocType: Sales Order,Not Billed,Nevyúčtované apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +107,Both Warehouse must belong to same Company,Oba Sklady musí patřit do stejné společnosti apps/erpnext/erpnext/public/js/templates/contact_list.html +31,No contacts added yet.,Žádné kontakty přidán dosud. DocType: Purchase Receipt Item,Landed Cost Voucher Amount,Přistál Náklady Voucher Částka @@ -2433,6 +2437,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Návrat proti nákupne DocType: Item,Warranty Period (in days),Záruční doba (ve dnech) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Čistý peňažný tok z prevádzkovej apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,napríklad DPH +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Účasť zamestnancov Mark hromadnú apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Bod 4 DocType: Journal Entry Account,Journal Entry Account,Zápis do deníku Účet DocType: Shopping Cart Settings,Quotation Series,Číselná rada ponúk @@ -2450,7 +2455,7 @@ apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_ac apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +72,Gross Profit %,Hrubý Zisk % DocType: Appraisal Goal,Weightage (%),Weightage (%) DocType: Bank Reconciliation Detail,Clearance Date,Výprodej Datum -DocType: Newsletter,Newsletter List,Newsletter Zoznam +DocType: Newsletter,Newsletter List,Zoznam Newsletterov DocType: Process Payroll,Check if you want to send salary slip in mail to each employee while submitting salary slip,"Zkontrolujte, zda chcete poslat výplatní pásku za poštou na každého zaměstnance při předkládání výplatní pásku" DocType: Lead,Address Desc,Popis adresy apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +33,Atleast one of the Selling or Buying must be selected,Aspoň jeden z prodeje nebo koupě musí být zvolena @@ -2550,7 +2555,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +126,Note apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +9,"Note: If payment is not made against any reference, make Journal Entry manually.","Poznámka: Není-li platba provedena proti jakémukoli rozhodnutí, jak položka deníku ručně." DocType: Item,Supplier Items,Dodavatele položky DocType: Opportunity,Opportunity Type,Typ Příležitosti -apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +42,New Company,Nová společnost +apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +42,New Company,Nová spoločnost apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +56,Cost Center is required for 'Profit and Loss' account {0},"Nákladové středisko je vyžadováno pro účet ""výkaz zisku a ztrát"" {0}" apps/erpnext/erpnext/setup/doctype/company/delete_company_transactions.py +17,Transactions can only be deleted by the creator of the Company,Transakcie môžu byť vymazané len tvorca Spoločnosti apps/erpnext/erpnext/accounts/general_ledger.py +21,Incorrect number of General Ledger Entries found. You might have selected a wrong Account in the transaction.,Nesprávný počet hlavní knihy záznamů nalezen. Pravděpodobně jste zvolili nesprávný účet v transakci. @@ -2559,7 +2564,7 @@ DocType: Hub Settings,Publish Availability,Publikování Dostupnost apps/erpnext/erpnext/hr/doctype/employee/employee.py +105,Date of Birth cannot be greater than today.,Dátum narodenia nemôže byť väčšia ako dnes. ,Stock Ageing,Reklamní Stárnutí apps/erpnext/erpnext/controllers/accounts_controller.py +216,{0} '{1}' is disabled,{0} '{1}' je vypnuté -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity_list.js +13,Set as Open,Nastaviť ako Otvoriť +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity_list.js +13,Set as Open,Nastaviť ako Otvorené DocType: Notification Control,Send automatic emails to Contacts on Submitting transactions.,Posílat automatické e-maily na Kontakty na předložení transakcí. apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +231,"Row {0}: Qty not avalable in warehouse {1} on {2} {3}. Available Qty: {4}, Transfer Qty: {5}","Row {0}: Množství nejsou dostupné iv skladu {1} na {2} {3}. @@ -2572,20 +2577,20 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +171,Responsibilitie apps/erpnext/erpnext/stock/doctype/item/item_list.js +12,Template,Šablona DocType: Sales Person,Sales Person Name,Prodej Osoba Name apps/erpnext/erpnext/accounts/doctype/c_form/c_form.py +54,Please enter atleast 1 invoice in the table,Zadejte prosím aspoň 1 fakturu v tabulce -apps/erpnext/erpnext/public/js/setup_wizard.js +185,Add Users,Pridať užívateľa +apps/erpnext/erpnext/public/js/setup_wizard.js +185,Add Users,Pridať používateľa DocType: Pricing Rule,Item Group,Položka Group DocType: Task,Actual Start Date (via Time Logs),Skutočný dátum Start (cez Time Záznamy) DocType: Stock Reconciliation Item,Before reconciliation,Pred zmierenie apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Chcete-li {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Daně a poplatky Přidal (Company měna) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,"Položka Tax Row {0} musí mít účet typu daní či výnosů nebo nákladů, nebo Vyměřovací" +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,"Položka Tax Row {0} musí mít účet typu daní či výnosů nebo nákladů, nebo Vyměřovací" DocType: Sales Order,Partly Billed,Částečně Účtovaný DocType: Item,Default BOM,Výchozí BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,Prosím re-typ názov spoločnosti na potvrdenie apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Celkem Vynikající Amt DocType: Time Log Batch,Total Hours,Celkem hodin DocType: Journal Entry,Printing Settings,Nastavenie tlače -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Celkové inkaso musí rovnat do celkového kreditu. Rozdíl je {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Celkové inkaso musí rovnat do celkového kreditu. Rozdíl je {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Automobilový apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Z Dodacího Listu DocType: Time Log,From Time,Času od @@ -2632,7 +2637,7 @@ DocType: Purchase Invoice Item,Image View,Image View DocType: Issue,Opening Time,Otevírací doba apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,Data OD a DO jsou vyžadována apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Cenné papíry a komoditních burzách -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Východzí merná jednotka varianty '{0}' musí byť rovnaký ako v Template '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Východzí merná jednotka varianty '{0}' musí byť rovnaký ako v Template '{1}' DocType: Shipping Rule,Calculate Based On,Vypočítat založené na DocType: Delivery Note Item,From Warehouse,Zo skladu DocType: Purchase Taxes and Charges,Valuation and Total,Oceňování a Total @@ -2654,7 +2659,7 @@ DocType: Leave Application,Follow via Email,Sledovat e-mailem DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Částka daně po slevě Částka apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Dětské konto existuje pro tento účet. Nemůžete smazat tento účet. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Buď cílové množství nebo cílová částka je povinná -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},No default BOM existuje pro bod {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},No default BOM existuje pro bod {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,"Prosím, vyberte najprv Dátum zverejnenia" apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Dátum začatia by mala byť pred uzávierky DocType: Leave Control Panel,Carry Forward,Převádět @@ -2732,13 +2737,13 @@ DocType: Leave Type,Is Encash,Je inkasovat DocType: Purchase Invoice,Mobile No,Mobile No DocType: Payment Tool,Make Journal Entry,Proveďte položka deníku DocType: Leave Allocation,New Leaves Allocated,Nové Listy Přidělené -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Data dle projektu nejsou k dispozici pro nabídku +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Data dle projektu nejsou k dispozici pro nabídku DocType: Project,Expected End Date,Očekávané datum ukončení DocType: Appraisal Template,Appraisal Template Title,Posouzení Template Název apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Obchodní apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.py +23,Parent Item {0} must not be a Stock Item,Parent Item {0} nesmie byť skladom DocType: Cost Center,Distribution Id,Distribuce Id -apps/erpnext/erpnext/setup/setup_wizard/data/sample_home_page.html +14,Awesome Services,Skvělé služby +apps/erpnext/erpnext/setup/setup_wizard/data/sample_home_page.html +14,Awesome Services,Skvelé služby apps/erpnext/erpnext/config/manufacturing.py +29,All Products or Services.,Všechny výrobky nebo služby. DocType: Purchase Invoice,Supplier Address,Dodavatel Address apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +36,Out Qty,Out Množství @@ -2746,7 +2751,7 @@ apps/erpnext/erpnext/config/accounts.py +138,Rules to calculate shipping amount apps/erpnext/erpnext/selling/doctype/customer/customer.py +29,Series is mandatory,Série je povinné apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +28,Financial Services,Finanční služby apps/erpnext/erpnext/controllers/item_variant.py +62,Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3},Pomer atribút {0} musí byť v rozmedzí od {1} až {2} v krokoch po {3} -DocType: Tax Rule,Sales,Prodej +DocType: Tax Rule,Sales,Predaj DocType: Stock Entry Detail,Basic Amount,Základná čiastka apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +165,Warehouse required for stock Item {0},Sklad je vyžadován pro skladovou položku {0} DocType: Leave Allocation,Unused leaves,Nepoužité listy @@ -2780,6 +2785,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,In apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Uveďte prosím DocType: Offer Letter,Awaiting Response,Čaká odpoveď apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Vyššie +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Time Log bol účtovaný DocType: Salary Slip,Earning & Deduction,Výdělek a dedukce apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Účet {0} nemůže být skupina apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Volitelné. Toto nastavení bude použito k filtrování v různých transakcí. @@ -2850,14 +2856,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Úspešne vypúšťa všetky transakcie súvisiace s týmto spoločnosti! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Rovnako ako u Date apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Zkouška -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Výchozí Sklad je povinný pro živočišnou položky. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Výchozí Sklad je povinný pro živočišnou položky. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Platba platu za měsíc {0} a rok {1} DocType: Stock Settings,Auto insert Price List rate if missing,"Auto vložka Cenník miera, ak chýba" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Celkem uhrazené částky ,Transferred Qty,Přenesená Množství apps/erpnext/erpnext/config/learn.py +11,Navigating,Navigácia apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Plánování -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Udělejte si čas Log Batch +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Udělejte si čas Log Batch apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Vydané DocType: Project,Total Billing Amount (via Time Logs),Celkom Billing Suma (cez Time Záznamy) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Táto položka je na predaj @@ -2865,7 +2871,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Množstvo by mala byť väčšia ako 0 DocType: Journal Entry,Cash Entry,Cash Entry DocType: Sales Partner,Contact Desc,Kontakt Popis -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Typ ponechává jako neformální, nevolnosti atd." +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Typ ponechává jako neformální, nevolnosti atd." DocType: Email Digest,Send regular summary reports via Email.,Zasílat pravidelné souhrnné zprávy e-mailem. DocType: Brand,Item Manager,Manažér Položka DocType: Cost Center,Add rows to set annual budgets on Accounts.,Přidat řádky stanovit roční rozpočty na účtech. @@ -2874,13 +2880,13 @@ DocType: Production Order,Total Operating Cost,Celkové provozní náklady apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +150,Note: Item {0} entered multiple times,Poznámka: Položka {0} vstoupil vícekrát apps/erpnext/erpnext/config/crm.py +27,All Contacts.,Všechny kontakty. DocType: Newsletter,Test Email Id,Testovací Email Id -apps/erpnext/erpnext/public/js/setup_wizard.js +54,Company Abbreviation,Zkratka Company +apps/erpnext/erpnext/public/js/setup_wizard.js +54,Company Abbreviation,Skratka názvu spoločnosti DocType: Features Setup,If you follow Quality Inspection. Enables Item QA Required and QA No in Purchase Receipt,"Pokud se budete řídit kontroly jakosti. Umožňuje položky QA požadovány, a QA No v dokladu o koupi" DocType: GL Entry,Party Type,Typ Party apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Surovina nemůže být stejný jako hlavní bod DocType: Item Attribute Value,Abbreviation,Zkratka apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Není authroized od {0} překročí limity -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Plat master šablona. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Plat master šablona. DocType: Leave Type,Max Days Leave Allowed,Max Days Leave povolena apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Sada Daňové Pravidlo pre nákupného košíka DocType: Payment Tool,Set Matching Amounts,Nastaviť Zodpovedajúce Sumy @@ -2893,7 +2899,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Ponuka DocType: Stock Settings,Role Allowed to edit frozen stock,Role povoleno upravovat zmrazené zásoby ,Territory Target Variance Item Group-Wise,Území Cílová Odchylka Item Group-Wise apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Všechny skupiny zákazníků -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} je povinné. Možno nie je vytvorený záznam Zmeny meny pre {1} až {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} je povinné. Možno nie je vytvorený záznam Zmeny meny pre {1} až {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Daňová šablóna je povinné. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Účet {0}: Nadřazený účet {1} neexistuje DocType: Purchase Invoice Item,Price List Rate (Company Currency),Ceník Rate (Company měny) @@ -2913,8 +2919,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Položka Wise Tax Detai ,Item-wise Price List Rate,Item-moudrý Ceník Rate apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Dodávateľská ponuka DocType: Quotation,In Words will be visible once you save the Quotation.,"Ve slovech budou viditelné, jakmile uložíte nabídku." -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} je zastavený -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Čárový kód {0} již použit u položky {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} je zastavený +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Čárový kód {0} již použit u položky {1} DocType: Lead,Add to calendar on this date,Přidat do kalendáře k tomuto datu apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Pravidla pro přidávání náklady na dopravu. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Pripravované akcie @@ -2930,19 +2936,19 @@ DocType: Accounts Settings,"If enabled, the system will post accounting entries apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +15,Brokerage,Makléřská DocType: Address,Postal Code,poštové smerovacie číslo DocType: Production Order Operation,"in Minutes -Updated via 'Time Log'","v minutách - aktualizovat přes ""Time Log""" +Updated via 'Time Log'","v minútach + aktualizované pomocou ""Time Log""" DocType: Customer,From Lead,Od Obchodnej iniciatívy apps/erpnext/erpnext/config/manufacturing.py +19,Orders released for production.,Objednávky uvolněna pro výrobu. apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +42,Select Fiscal Year...,Vyberte fiskálního roku ... apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +458,POS Profile required to make POS Entry,"POS Profile požadované, aby POS Vstup" -DocType: Hub Settings,Name Token,Jméno Token +DocType: Hub Settings,Name Token,Názov Tokenu apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,Standardní prodejní apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Alespoň jeden sklad je povinný DocType: Serial No,Out of Warranty,Out of záruky DocType: BOM Replace Tool,Replace,Vyměnit -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} proti Predajnej Faktúre {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,"Prosím, zadejte výchozí měrnou jednotku" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} proti Predajnej Faktúre {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,"Prosím, zadejte výchozí měrnou jednotku" DocType: Purchase Invoice Item,Project Name,Název projektu DocType: Supplier,Mention if non-standard receivable account,Zmienka v prípade neštandardnej pohľadávky účet DocType: Journal Entry Account,If Income or Expense,Pokud je výnos nebo náklad @@ -2967,7 +2973,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Fiškálny rok: {0} neexistuje DocType: Currency Exchange,To Currency,Chcete-li měny DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Nechte následující uživatelé schválit Žádost o dovolenou. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Druhy výdajů nároku. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Druhy výdajů nároku. DocType: Item,Taxes,Daně apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Platená a nie je doručenie DocType: Project,Default Cost Center,Výchozí Center Náklady @@ -2988,16 +2994,16 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_cal ,Employee Information,Informace o zaměstnanci apps/erpnext/erpnext/public/js/setup_wizard.js +224,Rate (%),Sadzba (%) DocType: Time Log,Additional Cost,Dodatočné náklady -apps/erpnext/erpnext/public/js/setup_wizard.js +67,Financial Year End Date,Finanční rok Datum ukončení +apps/erpnext/erpnext/public/js/setup_wizard.js +67,Financial Year End Date,Dátum ukončenia finančného roku apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +36,"Can not filter based on Voucher No, if grouped by Voucher","Nelze filtrovat na základě poukazu ne, pokud seskupeny podle poukazu" DocType: Quality Inspection,Incoming,Přicházející DocType: BOM,Materials Required (Exploded),Potřebný materiál (Rozložený) DocType: Salary Structure Earning,Reduce Earning for Leave Without Pay (LWP),Snížit Zisk na vstup bez nároku na mzdu (LWP) -apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organization, other than yourself","Pridanie používateľov do vašej organizácie, iné ako vy" +apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organization, other than yourself",Pridanie ďalších používateľov do vašej organizácie okrem Vás apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Riadok # {0}: Výrobné číslo {1} nezodpovedá {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Casual Leave DocType: Batch,Batch ID,Šarže ID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Poznámka: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Poznámka: {0} ,Delivery Note Trends,Dodací list Trendy apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Tento týždeň Zhrnutie apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},"{0} musí byť Kúpená, alebo Subdodávateľská položka v riadku {1}" @@ -3013,7 +3019,7 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +68,Avg. Buyin DocType: Task,Actual Time (in Hours),Skutočná doba (v hodinách) DocType: Employee,History In Company,Historie ve Společnosti apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +127,The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than requested quantity {2} for Item {3},Množstvo celkovej emisii / prenosu {0} v hmotnej Request {1} nemôže byť väčšia ako množstvo požadované v {2} pre položku {3} -apps/erpnext/erpnext/config/crm.py +151,Newsletters,Spravodajcu +apps/erpnext/erpnext/config/crm.py +151,Newsletters,Newslettery DocType: Address,Shipping,Lodní DocType: Stock Ledger Entry,Stock Ledger Entry,Reklamní Ledger Entry DocType: Department,Leave Block List,Nechte Block List @@ -3037,6 +3043,7 @@ DocType: Project Task,Pending Review,Čeká Review apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Kliknite tu platiť DocType: Task,Total Expense Claim (via Expense Claim),Total Expense Claim (via Expense nároku) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Zákazník Id +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,mark Absent apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Ak chcete čas musí byť väčší ako From Time DocType: Journal Entry Account,Exchange Rate,Výmenný kurz apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Prodejní objednávky {0} není předložena @@ -3074,21 +3081,21 @@ apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +96,Cost apps/erpnext/erpnext/config/stock.py +110,Warehouses.,Sklady. DocType: Purchase Receipt,Rate at which supplier's currency is converted to company's base currency,"Sazba, za kterou dodavatel měny je převeden na společnosti základní měny" apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +36,Row #{0}: Timings conflicts with row {1},Row # {0}: časování v rozporu s řadou {1} -DocType: Opportunity,Next Contact,Nasledujúce Kontakt +DocType: Opportunity,Next Contact,Nasledujúci Kontakt apps/erpnext/erpnext/config/accounts.py +94,Setup Gateway accounts.,Nastavenia brány účty. DocType: Employee,Employment Type,Typ zaměstnání apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +40,Fixed Assets,Dlouhodobý majetek ,Cash Flow,Cash Flow apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +85,Application period cannot be across two alocation records,Obdobie podávania žiadostí nemôže byť na dvoch alokácie záznamy DocType: Item Group,Default Expense Account,Výchozí výdajového účtu -DocType: Employee,Notice (days),Oznámení (dny) +DocType: Employee,Notice (days),Oznámenie (dni) DocType: Tax Rule,Sales Tax Template,Daň z predaja Template DocType: Employee,Encashment Date,Inkaso Datum -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Proti poukazu Type musí být jedním z objednávky, faktury nebo Journal Entry" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Proti poukazu Type musí být jedním z objednávky, faktury nebo Journal Entry" DocType: Account,Stock Adjustment,Úprava skladových zásob apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Existuje Náklady Predvolené aktivity pre Typ aktivity - {0} DocType: Production Order,Planned Operating Cost,Plánované provozní náklady -apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +121,New {0} Name,Nový {0} Název +apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +121,New {0} Name,Nový Názov {0} apps/erpnext/erpnext/controllers/recurring_document.py +130,Please find attached {0} #{1},V příloze naleznete {0} # {1} apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +42,Bank Statement balance as per General Ledger,Výpis z bankového účtu zostatok podľa hlavnej knihy DocType: Job Applicant,Applicant Name,Žadatel Název @@ -3138,6 +3145,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Odepsat Vstup DocType: BOM,Rate Of Materials Based On,Hodnotit materiálů na bázi apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Podpora Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Zrušte zaškrtnutie políčka všetko apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Společnost chybí ve skladech {0} DocType: POS Profile,Terms and Conditions,Podmínky apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},"Chcete-li data by měla být v rámci fiskálního roku. Za předpokladu, že To Date = {0}" @@ -3151,7 +3159,7 @@ DocType: Sales Order Item,For Production,Pro Výrobu apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +103,Please enter sales order in the above table,"Prosím, zadejte prodejní objednávky v tabulce výše" DocType: Payment Request,payment_url,payment_url DocType: Project Task,View Task,Zobraziť Task -apps/erpnext/erpnext/public/js/setup_wizard.js +66,Your financial year begins on,Váš finanční rok začíná +apps/erpnext/erpnext/public/js/setup_wizard.js +66,Your financial year begins on,Váš finančný rok začína apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +46,Please enter Purchase Receipts,"Prosím, zadejte Nákup Příjmy" DocType: Sales Invoice,Get Advances Received,Získat přijaté zálohy DocType: Email Digest,Add/Remove Recipients,Přidat / Odebrat příjemce @@ -3159,7 +3167,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Chcete-li nastavit tento fiskální rok jako výchozí, klikněte na tlačítko ""Nastavit jako výchozí""" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Nastavenie serveru prichádzajúcej pošty pre email podpory. (Napríklad podpora@priklad.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Nedostatek Množství -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Variant Položky {0} existuje s rovnakými vlastnosťami +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Variant Položky {0} existuje s rovnakými vlastnosťami DocType: Salary Slip,Salary Slip,Plat Slip apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,"""Datum Do"" je povinný" DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Generování balení pásky pro obaly mají být dodány. Používá se k oznámit číslo balíku, obsah balení a jeho hmotnost." @@ -3207,7 +3215,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Zobrazi DocType: Item Attribute Value,Attribute Value,Hodnota atributu apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","E-mail id musí být jedinečný, již existuje {0}" ,Itemwise Recommended Reorder Level,Itemwise Doporučené Změna pořadí Level -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,"Prosím, nejprve vyberte {0}" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,"Prosím, nejprve vyberte {0}" DocType: Features Setup,To get Item Group in details table,Chcete-li získat položku Group v tabulce Rozpis apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Batch {0} z {1} bodu vypršala. DocType: Sales Invoice,Commission,Provize @@ -3256,13 +3264,13 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +101,Warehouse is mandatory,Sklad je povinné DocType: Supplier,Address and Contacts,Adresa a kontakty DocType: UOM Conversion Detail,UOM Conversion Detail,Detail konverzie MJ -apps/erpnext/erpnext/public/js/setup_wizard.js +169,Keep it web friendly 900px (w) by 100px (h),Snaťte sa o rozmer vhodný na web: 900px šírka a 100px výška +apps/erpnext/erpnext/public/js/setup_wizard.js +169,Keep it web friendly 900px (w) by 100px (h),Snažte sa o rozmer vhodný na web: 900px šírka a 100px výška apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +329,Production Order cannot be raised against a Item Template,Výrobná zákazka nemôže byť vznesená proti šablóny položky apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +44,Charges are updated in Purchase Receipt against each item,Poplatky jsou aktualizovány v dokladu o koupi na každou položku DocType: Payment Tool,Get Outstanding Vouchers,Získejte Vynikající poukazy DocType: Warranty Claim,Resolved By,Vyřešena DocType: Appraisal,Start Date,Datum zahájení -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Přidělit listy dobu. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Přidělit listy dobu. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Šeky a Vklady nesprávne vymazané apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Kliknite tu pre overenie apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Účet {0}: nelze přiřadit sebe jako nadřazený účet @@ -3282,7 +3290,7 @@ DocType: Employee,Educational Qualification,Vzdělávací Kvalifikace DocType: Workstation,Operating Costs,Provozní náklady DocType: Employee Leave Approver,Employee Leave Approver,Zaměstnanec Leave schvalovač apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} bol úspešne pridaný do nášho zoznamu noviniek. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Row {0}: Položka Změna pořadí již pro tento sklad existuje {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Row {0}: Položka Změna pořadí již pro tento sklad existuje {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Nelze prohlásit za ztracený, protože citace byla provedena." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Nákup Hlavní manažer apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Výrobní zakázka {0} musí být předloženy @@ -3294,7 +3302,7 @@ apps/erpnext/erpnext/stock/doctype/item/item.js +194,Add / Edit Prices,Pridať / apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.js +53,Chart of Cost Centers,Diagram nákladových středisek ,Requested Items To Be Ordered,Požadované položky je třeba objednat apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +315,My Orders,Moje objednávky -DocType: Price List,Price List Name,Ceník Jméno +DocType: Price List,Price List Name,Názov cenníku DocType: Time Log,For Manufacturing,Pre výrobu apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +174,Totals,Súčty DocType: BOM,Manufacturing,Výroba @@ -3306,7 +3314,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Prodejní faktury {0} již byla odeslána apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Dokončení Datum DocType: Purchase Invoice Item,Amount (Company Currency),Částka (Měna Společnosti) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Organizace jednotka (departement) master. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Organizace jednotka (departement) master. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Zadejte platné mobilní nos DocType: Budget Detail,Budget Detail,Detail Rozpočtu apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,"Prosím, zadejte zprávu před odesláním" @@ -3314,7 +3322,7 @@ apps/erpnext/erpnext/config/accounts.py +137,Point-of-Sale Profile,Point-of-Sale apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +68,Please Update SMS Settings,Aktualizujte prosím nastavení SMS apps/erpnext/erpnext/projects/doctype/time_log_batch/time_log_batch.py +37,Time Log {0} already billed,Time Log {0} už účtoval apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +176,Unsecured Loans,Nezajištěných úvěrů -DocType: Cost Center,Cost Center Name,Jméno nákladového střediska +DocType: Cost Center,Cost Center Name,Meno nákladového strediska DocType: Maintenance Schedule Detail,Scheduled Date,Plánované datum apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +69,Total Paid Amt,Celkem uhrazeno Amt DocType: SMS Center,Messages greater than 160 characters will be split into multiple messages,Zprávy větší než 160 znaků bude rozdělena do více zpráv @@ -3322,13 +3330,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Přijaté a Přijato ,Serial No Service Contract Expiry,Pořadové číslo Servisní smlouva vypršení platnosti DocType: Item,Unit of Measure Conversion,Jednotka miery konverzie apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Zaměstnanec nemůže být změněn -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Nemůžete dělat kreditní a debetní záznam na stejný účet ve stejnou dobu. +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Nemůžete dělat kreditní a debetní záznam na stejný účet ve stejnou dobu. DocType: Naming Series,Help HTML,Nápověda HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Celková weightage přiřazen by měla být 100%. Je {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Příspěvek na nadměrné {0} přešel k bodu {1} DocType: Address,Name of person or organization that this address belongs to.,"Meno osoby alebo organizácie, ktorej patrí táto adresa." apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Vaši Dodávatelia -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,"Nelze nastavit jako Ztraceno, protože je přijata objednávka." +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,"Nelze nastavit jako Ztraceno, protože je přijata objednávka." apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,"Další platovou strukturu {0} je aktivní pro zaměstnance {1}. Prosím, aby jeho stav ""neaktivní"" pokračovat." DocType: Purchase Invoice,Contact,Kontakt apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Prijaté Od @@ -3338,28 +3346,28 @@ DocType: Item,Has Serial No,Má Sériové číslo DocType: Employee,Date of Issue,Datum vydání apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: Od {0} do {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Riadok # {0}: Nastavte Dodávateľ pre položku {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Webové stránky Image {0} pripája k bodu {1} nemožno nájsť +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Webové stránky Image {0} pripája k bodu {1} nemožno nájsť DocType: Issue,Content Type,Typ obsahu apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Počítač DocType: Item,List this Item in multiple groups on the website.,Seznam tuto položku ve více skupinách na internetových stránkách. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,"Prosím, skontrolujte viac mien možnosť povoliť účty s inú menu" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,"Prosím, skontrolujte viac mien možnosť povoliť účty s inú menu" apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Položka: {0} neexistuje v systému apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Nejste oprávněni stanovit hodnotu Zmražení DocType: Payment Reconciliation,Get Unreconciled Entries,Získat smířit záznamů DocType: Payment Reconciliation,From Invoice Date,Z faktúry Dátum DocType: Cost Center,Budgets,Rozpočty -apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Čo to robí? +apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Čím sa zaoberá? DocType: Delivery Note,To Warehouse,Do skladu apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Účet {0} byl zadán více než jednou za fiskální rok {1} ,Average Commission Rate,Průměrná cena Komise -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,"""Má sériové číslo"", nemôže byť ""áno"" pre neskladový tovar" +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,"""Má sériové číslo"", nemôže byť ""áno"" pre neskladový tovar" apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Účast nemůže být označen pro budoucí data DocType: Pricing Rule,Pricing Rule Help,Ceny Pravidlo Help DocType: Purchase Taxes and Charges,Account Head,Účet Head apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Aktualizace dodatečné náklady pro výpočet vyložené náklady položek apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Elektrický DocType: Stock Entry,Total Value Difference (Out - In),Celková hodnota Rozdíl (Out - In) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Riadok {0}: Exchange Rate je povinné +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Riadok {0}: Exchange Rate je povinné apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},User ID není nastavena pro zaměstnance {0} DocType: Stock Entry,Default Source Warehouse,Výchozí zdroj Warehouse DocType: Item,Customer Code,Code zákazníků @@ -3378,15 +3386,15 @@ DocType: Notification Control,Sales Invoice Message,Prodejní faktury Message apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Záverečný účet {0} musí byť typu zodpovednosti / Equity DocType: Authorization Rule,Based On,Založeno na DocType: Sales Order Item,Ordered Qty,Objednáno Množství -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Položka {0} je zakázaná +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Položka {0} je zakázaná DocType: Stock Settings,Stock Frozen Upto,Reklamní Frozen aľ apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},"Obdobie od a obdobia, k dátam povinné pre opakované {0}" apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Projektová činnost / úkol. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Generování výplatních páskách +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Generování výplatních páskách apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Nákup musí být zkontrolováno, v případě potřeby pro vybrán jako {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Sleva musí být menší než 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Odpísať Suma (Company meny) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Riadok # {0}: Prosím nastavte množstvo objednávacie +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Riadok # {0}: Prosím nastavte množstvo objednávacie DocType: Landed Cost Voucher,Landed Cost Voucher,Přistálo Náklady Voucher apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},Prosím nastavte {0} DocType: Purchase Invoice,Repeat on Day of Month,Opakujte na den v měsíci @@ -3413,7 +3421,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p DocType: Item,"Example: ABCD.##### If series is set and Serial No is not mentioned in transactions, then automatic serial number will be created based on this series. If you always want to explicitly mention Serial Nos for this item. leave this blank.","Příklad:. ABCD ##### Je-li série nastavuje a pořadové číslo není uvedeno v transakcích, bude vytvořen poté automaticky sériové číslo na základě této série. Pokud chcete vždy výslovně uvést pořadová čísla pro tuto položku. ponechte prázdné." -DocType: Upload Attendance,Upload Attendance,Nahrát Návštěvnost +DocType: Upload Attendance,Upload Attendance,Nahráť Dochádzku apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +119,BOM and Manufacturing Quantity are required,BOM a výroba množstva sú povinné apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +44,Ageing Range 2,Stárnutí rozsah 2 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +461,Amount,Částka @@ -3425,7 +3433,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +91,P DocType: Stock Entry Detail,Stock Entry Detail,Reklamní Entry Detail apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +101,Daily Reminders,Denná Upomienky apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +82,Tax Rule Conflicts with {0},Daňové Pravidlo Konflikty s {0} -apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +210,New Account Name,Nový název účtu +apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +210,New Account Name,Nový názov účtu DocType: Purchase Invoice Item,Raw Materials Supplied Cost,Dodává se nákladů na suroviny DocType: Selling Settings,Settings for Selling Module,Nastavenie modulu Predaj apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +73,Customer Service,Služby zákazníkům @@ -3439,7 +3447,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Východiskové prácu v sklade Progress apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Výchozí nastavení účetních transakcí. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Očekávané datum nemůže být před Materiál Poptávka Datum -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Bod {0} musí být prodejní položky +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Bod {0} musí být prodejní položky DocType: Naming Series,Update Series Number,Aktualizace Series Number DocType: Account,Equity,Hodnota majetku DocType: Sales Order,Printing Details,Tlač detailov @@ -3471,7 +3479,7 @@ apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +69,Wareh apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +45,Retail & Wholesale,Maloobchod a velkoobchod DocType: Issue,First Responded On,Prvně odpovězeno dne DocType: Website Item Group,Cross Listing of Item in multiple groups,Cross Výpis zboží v několika skupinách -apps/erpnext/erpnext/public/js/setup_wizard.js +13,The First User: You,První Uživatel: Vy +apps/erpnext/erpnext/public/js/setup_wizard.js +13,The First User: You,Prvý používateľ: Vy apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.py +49,Fiscal Year Start Date and Fiscal Year End Date are already set in Fiscal Year {0},Datum zahájení a Datum ukončení Fiskálního roku jsou již stanoveny ve fiskálním roce {0} apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +115,Successfully Reconciled,Úspěšně smířeni DocType: Production Order,Planned End Date,Plánované datum ukončení @@ -3491,7 +3499,7 @@ DocType: Task,Review Date,Review Datum DocType: Purchase Invoice,Advance Payments,Zálohové platby DocType: Purchase Taxes and Charges,On Net Total,On Net Celkem apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Target sklad v řádku {0} musí být stejná jako výrobní zakázky -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Nemáte oprávnění k použití platební nástroj +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Nemáte oprávnění k použití platební nástroj apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,"""E-mailové adresy pre oznámenie"" nie sú uvedené pre odpovedanie %s" apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Mena nemôže byť zmenený po vykonaní položky pomocou inej mene DocType: Company,Round Off Account,Zaokrúhliť účet @@ -3514,7 +3522,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Množství položky získané po výrobě / přebalení z daných množství surovin DocType: Payment Reconciliation,Receivable / Payable Account,Pohledávky / závazky účet DocType: Delivery Note Item,Against Sales Order Item,Proti položce přijaté objednávky -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},Uveďte atribútu Hodnota atribútu {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},Uveďte atribútu Hodnota atribútu {0} DocType: Item,Default Warehouse,Výchozí Warehouse DocType: Task,Actual End Date (via Time Logs),Skutočné Dátum ukončenia (cez Time Záznamy) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Rozpočet nemôže byť priradená na skupinový účet {0} @@ -3539,10 +3547,10 @@ DocType: Lead,Blog Subscriber,Blog Subscriber apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Vytvoření pravidla pro omezení transakce na základě hodnot. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Pokud je zaškrtnuto, Total no. pracovních dnů bude zahrnovat dovolenou, a to sníží hodnotu platu za každý den" DocType: Purchase Invoice,Total Advance,Total Advance -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Spracovanie miezd +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Spracovanie miezd DocType: Opportunity Item,Basic Rate,Základná sadzba DocType: GL Entry,Credit Amount,Výška úveru -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Nastavit jako Lost +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Nastaviť ako Nezískané apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Doklad o zaplatení Note DocType: Supplier,Credit Days Based On,Úverové Dni Based On DocType: Tax Rule,Tax Rule,Daňové Pravidlo @@ -3558,7 +3566,7 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Production Planning Tool,Filter based on item,Filtr dle položek apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +462,Debit Account,Debetné účet DocType: Fiscal Year,Year Start Date,Dátom začiatku roka -DocType: Attendance,Employee Name,Jméno zaměstnance +DocType: Attendance,Employee Name,Meno zamestnanca DocType: Sales Invoice,Rounded Total (Company Currency),Zaoblený Total (Company Měna) apps/erpnext/erpnext/accounts/doctype/account/account.py +95,Cannot covert to Group because Account Type is selected.,"Nelze skryté do skupiny, protože je požadovaný typ účtu." DocType: Purchase Common,Purchase Common,Nákup Common @@ -3572,7 +3580,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Schválené Množství apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} neexistuje apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Směnky vznesené zákazníkům. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,ID projektu -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},"Riadok č {0}: Čiastka nemôže byť väčšia ako Čakajúci Suma proti Expense nároku {1}. Do doby, než množstvo je {2}" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},"Riadok č {0}: Čiastka nemôže byť väčšia ako Čakajúci Suma proti Expense nároku {1}. Do doby, než množstvo je {2}" apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} odberateľov pridaných DocType: Maintenance Schedule,Schedule,Plán DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Definovať rozpočtu pre tento nákladového strediska. Ak chcete nastaviť rozpočet akcie, pozri "Zoznam firiem"" @@ -3616,11 +3624,11 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +177,For Quantity DocType: Stock Entry,Default Target Warehouse,Výchozí Target Warehouse DocType: Purchase Invoice,Net Total (Company Currency),Net Total (Company Měna) apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +79,Row {0}: Party Type and Party is only applicable against Receivable / Payable account,Riadok {0}: Typ Party Party a je použiteľná len proti pohľadávky / záväzky účtu -DocType: Notification Control,Purchase Receipt Message,Zpráva příjemky +DocType: Notification Control,Purchase Receipt Message,Správa o príjemke DocType: Production Order,Actual Start Date,Skutečné datum zahájení DocType: Sales Order,% of materials delivered against this Sales Order,% materiálov dodaných proti tejto Predajnej objednávke apps/erpnext/erpnext/config/stock.py +23,Record item movement.,Záznam pohybu položka. -DocType: Newsletter List Subscriber,Newsletter List Subscriber,Newsletter zoznamu účastníkov +DocType: Newsletter List Subscriber,Newsletter List Subscriber,Zoznam Newsletter účastníkov DocType: Hub Settings,Hub Settings,Nastavení Hub DocType: Project,Gross Margin %,Hrubá Marža % DocType: BOM,With Operations,S operacemi @@ -3633,19 +3641,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS Profile DocType: Payment Gateway Account,Payment URL Message,Platba URL Message apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Sezónnost pro nastavení rozpočtů, cíle atd." -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Row {0}: Platba Částka nesmí být vyšší než dlužná částka +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Row {0}: Platba Částka nesmí být vyšší než dlužná částka apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Celkom Neplatené -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Time Log není zúčtovatelné -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Položka {0} je šablóna, prosím vyberte jednu z jeho variantov" -apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Kupec -apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Net plat nemůže být záporný -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Zadejte prosím podle dokladů ručně +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Time Log není zúčtovatelné +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Položka {0} je šablóna, prosím vyberte jednu z jeho variantov" +apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Nákupca +apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Netto plat nemôže byť záporný +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Zadejte prosím podle dokladů ručně DocType: SMS Settings,Static Parameters,Statické parametry DocType: Purchase Order,Advance Paid,Vyplacené zálohy DocType: Item,Item Tax,Daň Položky apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Materiál Dodávateľovi apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Spotrebný Faktúra DocType: Expense Claim,Employees Email Id,Zaměstnanci Email Id +DocType: Employee Attendance Tool,Marked Attendance,Výrazná Návštevnosť apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Krátkodobé závazky apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Posílat hromadné SMS vašim kontaktům DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Zvažte daň či poplatek za @@ -3653,7 +3662,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +57, apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +132,Credit Card,Kreditní karta DocType: BOM,Item to be manufactured or repacked,Položka být vyráběn nebo znovu zabalena apps/erpnext/erpnext/config/stock.py +90,Default settings for stock transactions.,Výchozí nastavení pro akciových transakcí. -DocType: Purchase Invoice,Next Date,Další data +DocType: Purchase Invoice,Next Date,Ďalší Dátum DocType: Employee Education,Major/Optional Subjects,Hlavní / Volitelné předměty apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +49,Please enter Taxes and Charges,"Prosím, zadejte Daně a poplatky" DocType: Sales Invoice Item,Drop Ship,Drop Loď @@ -3668,7 +3677,7 @@ DocType: Item Attribute,Numeric Values,Číselné hodnoty apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Pripojiť Logo DocType: Customer,Commission Rate,Výše provize apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Vytvoriť Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Aplikace Block dovolené podle oddělení. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Aplikace Block dovolené podle oddělení. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Košík je prázdny DocType: Production Order,Actual Operating Cost,Skutečné provozní náklady apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Root nelze upravovat. @@ -3687,7 +3696,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,"Automatické vytvorenie Materiál žiadosti, pokiaľ množstvo klesne pod túto úroveň" ,Item-wise Purchase Register,Item-moudrý Nákup Register DocType: Batch,Expiry Date,Datum vypršení platnosti -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Ak chcete nastaviť úroveň objednávacie, položka musí byť Nákup položka alebo výrobné položky" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Ak chcete nastaviť úroveň objednávacie, položka musí byť Nákup položka alebo výrobné položky" ,Supplier Addresses and Contacts,Dodavatel Adresy a kontakty apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,Nejdřív vyberte kategorii apps/erpnext/erpnext/config/projects.py +18,Project master.,Master Project. diff --git a/erpnext/translations/sl.csv b/erpnext/translations/sl.csv index 70797a9649..dff30d7915 100644 --- a/erpnext/translations/sl.csv +++ b/erpnext/translations/sl.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,Kredit v podjetju valu DocType: Delivery Note,Installation Status,Namestitev Status apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Sprejeta + Zavrnjeno Količina mora biti enaka Prejeto količini za postavko {0} DocType: Item,Supply Raw Materials for Purchase,Dobava surovine za nakup -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Postavka {0} mora biti Nakup postavka +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Postavka {0} mora biti Nakup postavka DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Prenesite predloge, izpolnite ustrezne podatke in priložite spremenjeno datoteko. Vsi datumi in zaposleni kombinacija v izbranem obdobju, bo prišel v predlogo, z obstoječimi zapisi postrežbo" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,Postavka {0} ni aktiven ali je bil dosežen konec življenja DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Bo treba posodobiti po Sales predložen račun. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Da vključujejo davek v vrstici {0} v stopnji Element, davki v vrsticah {1} je treba vključiti tudi" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Nastavitve za HR modula +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Da vključujejo davek v vrstici {0} v stopnji Element, davki v vrsticah {1} je treba vključiti tudi" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Nastavitve za HR modula DocType: SMS Center,SMS Center,SMS center DocType: BOM Replace Tool,New BOM,New BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Serija Čas Hlodovina za zaračunavanje. @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,Izberite Pogoji DocType: Production Planning Tool,Sales Orders,Prodajni Naročila DocType: Purchase Taxes and Charges,Valuation,Vrednotenje ,Purchase Order Trends,Naročilnica Trendi -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Dodeli liste za leto. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Dodeli liste za leto. DocType: Earning Type,Earning Type,Zaslužek Type DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Onemogoči Capacity Planning and Time Tracking DocType: Bank Reconciliation,Bank Account,Bančni račun @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Element Spletna stran Specifikacija DocType: Payment Tool,Reference No,Referenčna številka apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Pustite blokiranih -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Postavka {0} je konec življenja na {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Postavka {0} je konec življenja na {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Letno DocType: Stock Reconciliation Item,Stock Reconciliation Item,Stock Sprava Postavka DocType: Stock Entry,Sales Invoice No,Prodaja Račun Ne @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,Najmanjše naročilo Kol DocType: Pricing Rule,Supplier Type,Dobavitelj Type DocType: Item,Publish in Hub,Objavite v Hub ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Postavka {0} je odpovedan +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Postavka {0} je odpovedan apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Material Zahteva DocType: Bank Reconciliation,Update Clearance Date,Posodobitev Potrditev Datum DocType: Item,Purchase Details,Nakup Podrobnosti @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Zavrnjeno Količina DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Polje na voljo na dobavnici, Kotacija, prodajni fakturi, Sales Order" DocType: SMS Settings,SMS Sender Name,SMS Sender Name DocType: Contact,Is Primary Contact,Je Primarni Kontakt +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Čas Log je združena za zaračunavanje DocType: Notification Control,Notification Control,Nadzor obvestilo DocType: Lead,Suggestions,Predlogi DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Set Postavka proračuni Skupina pametno na tem ozemlju. Lahko tudi sezonske z nastavitvijo Distribution. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},Vnesite matično skupino računa za skladišče {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Plačilo pred {0} {1} ne sme biti večja od neporavnanega zneska {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Plačilo pred {0} {1} ne sme biti večja od neporavnanega zneska {2} DocType: Supplier,Address HTML,Naslov HTML DocType: Lead,Mobile No.,Mobilni No. DocType: Maintenance Schedule,Generate Schedule,Ustvarjajo Urnik @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Sinhronizirano Z Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Napačno geslo DocType: Item,Variant Of,Varianta -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Postavka {0} mora biti storitev Postavka apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',Dopolnil Količina ne sme biti večja od "Kol za Izdelava" DocType: Period Closing Voucher,Closing Account Head,Zapiranje računa Head DocType: Employee,External Work History,Zunanji Delo Zgodovina @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,Newsletter DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Obvesti po e-pošti na ustvarjanje avtomatičnega Material dogovoru DocType: Journal Entry,Multi Currency,Multi Valuta DocType: Payment Reconciliation Invoice,Invoice Type,Račun Type -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Poročilo o dostavi +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Poročilo o dostavi apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Postavitev Davki apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,"Začetek Plačilo je bil spremenjen, ko je potegnil. Prosimo, še enkrat vleči." -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} dvakrat vpisana v postavki davku +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} dvakrat vpisana v postavki davku apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Povzetek za ta teden in ki potekajo dejavnosti DocType: Workstation,Rent Cost,Najem Stroški apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,"Prosimo, izberite mesec in leto" @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,Velja za države DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Vse uvozne polja, povezana kot valuto, konverzijo, uvoz skupaj, uvoz skupni vsoti itd so na voljo v Potrdilo o nakupu, dobavitelj Kotacija, računu o nakupu, narocilo itd" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"Ta postavka je Predloga in je ni mogoče uporabiti v transakcijah. Atributi postavka bodo kopirali več kot v različicah, razen če je nastavljeno "Ne Kopiraj«" apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Skupaj naročite Upoštevani -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Oznaka zaposleni (npr CEO, direktor itd.)" +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Oznaka zaposleni (npr CEO, direktor itd.)" apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,"Prosimo, vpišite "Ponovi na dan v mesecu" vrednosti polja" DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,"Stopnjo, po kateri je naročnik Valuta pretvori v osnovni valuti kupca" DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Na voljo v BOM, dobavnica, računu o nakupu, proizvodnje reda, narocilo, Potrdilo o nakupu, prodajni fakturi, Sales Order, Stock vstopu, Timesheet" @@ -355,7 +355,7 @@ DocType: Workstation,Consumable Cost,Potrošni Stroški apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) mora imeti vlogo "Leave odobritelj" DocType: Purchase Receipt,Vehicle Date,Datum vozilo apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Medical -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Razlog za izgubo +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Razlog za izgubo apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Workstation je zaprt na naslednje datume kot na Holiday Seznam: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Priložnosti DocType: Employee,Single,Samski @@ -383,14 +383,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Channel Partner DocType: Account,Old Parent,Stara Parent DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,"Prilagodite uvodno besedilo, ki gre kot del te e-pošte. Vsaka transakcija ima ločeno uvodno besedilo." +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Ne vsebuje simbole (npr. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Prodaja Master Manager apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Globalne nastavitve za vseh proizvodnih procesov. DocType: Accounts Settings,Accounts Frozen Upto,Računi Zamrznjena Stanuje DocType: SMS Log,Sent On,Pošlje On -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Lastnost {0} izbrana večkrat v atributih tabeli +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Lastnost {0} izbrana večkrat v atributih tabeli DocType: HR Settings,Employee record is created using selected field. ,Evidenco o zaposlenih delavcih je ustvarjena s pomočjo izbrano polje. DocType: Sales Order,Not Applicable,Se ne uporablja -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Holiday gospodar. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Holiday gospodar. DocType: Material Request Item,Required Date,Zahtevani Datum DocType: Delivery Note,Billing Address,Naslov za pošiljanje računa apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,Vnesite Koda. @@ -426,7 +427,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,"Vnesite skladišče, za katere se bo dvignjeno Material Zahteva" DocType: Production Order,Additional Operating Cost,Dodatne operacijski stroškov apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Kozmetika -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Za pripojitev, mora naslednje lastnosti biti enaka za oba predmetov" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Za pripojitev, mora naslednje lastnosti biti enaka za oba predmetov" DocType: Shipping Rule,Net Weight,Neto teža DocType: Employee,Emergency Phone,Zasilna Telefon ,Serial No Warranty Expiry,Zaporedna številka Garancija preteka @@ -481,17 +482,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Zaračunavanje in Delivery Status apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Ponovite Stranke DocType: Leave Control Panel,Allocate,Dodeli -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Prodaja Return +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Prodaja Return DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,"Izberite prodajnih nalogov, iz katerega želite ustvariti naročila za proizvodnjo." DocType: Item,Delivered by Supplier (Drop Ship),Dostavi dobavitelja (Drop Ship) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Deli plače. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Deli plače. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Podatkovna baza potencialnih strank. DocType: Authorization Rule,Customer or Item,Stranka ali Postavka apps/erpnext/erpnext/config/crm.py +17,Customer database.,Baza podatkov o strankah. DocType: Quotation,Quotation To,Kotacija Da DocType: Lead,Middle Income,Bližnji Prihodki apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Odprtino (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Privzeto mersko enoto za postavko {0} ni mogoče neposredno spremeniti, ker ste že naredili nekaj transakcije (-e) z drugo UOM. Boste morali ustvariti nov element, da uporabi drugačno Privzeti UOM." +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Privzeto mersko enoto za postavko {0} ni mogoče neposredno spremeniti, ker ste že naredili nekaj transakcije (-e) z drugo UOM. Boste morali ustvariti nov element, da uporabi drugačno Privzeti UOM." apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Dodeljen znesek ne more biti negativna DocType: Purchase Order Item,Billed Amt,Bremenjenega Amt DocType: Warehouse,A logical Warehouse against which stock entries are made.,"Logično Warehouse, zoper katerega so narejeni vnosov zalog." @@ -510,14 +511,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Prodajne Davki in dajatve DocType: Employee,Organization Profile,Organizacija Profil apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,Prosimo nastavitev številčenje serij za udeležbo preko Setup> oštevilčevanje Series DocType: Employee,Reason for Resignation,Razlog za odstop -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Predloga za izvajanje cenitve. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Predloga za izvajanje cenitve. DocType: Payment Reconciliation,Invoice/Journal Entry Details,Račun / Journal Entry Podrobnosti apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} {1} "ni v proračunskem letu {2} DocType: Buying Settings,Settings for Buying Module,Nastavitve za nakup modula apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,"Prosimo, da najprej vnesete Potrdilo o nakupu" DocType: Buying Settings,Supplier Naming By,Dobavitelj Imenovanje Z DocType: Activity Type,Default Costing Rate,Privzeto Costing Rate -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Vzdrževanje Urnik +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Vzdrževanje Urnik apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Potem Označevanje cen Pravila se filtrirajo temeljijo na stranke, skupine kupcev, ozemlje, dobavitelja, dobavitelj Type, kampanje, prodajnemu partnerju itd" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Neto sprememba v popisu DocType: Employee,Passport Number,Številka potnega lista @@ -556,7 +557,7 @@ DocType: Purchase Invoice,Quarterly,Četrtletno DocType: Selling Settings,Delivery Note Required,Dostava Opomba Obvezno DocType: Sales Order Item,Basic Rate (Company Currency),Basic Rate (družba Valuta) DocType: Manufacturing Settings,Backflush Raw Materials Based On,"Backflush Surovine, ki temelji na" -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,"Prosimo, vnesite podatke točko" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,"Prosimo, vnesite podatke točko" DocType: Purchase Receipt,Other Details,Drugi podatki DocType: Account,Accounts,Računi apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Trženje @@ -569,7 +570,7 @@ DocType: Employee,Provide email id registered in company,"Zagotovite email id, r DocType: Hub Settings,Seller City,Prodajalec Mesto DocType: Email Digest,Next email will be sent on:,Naslednje sporočilo bo poslano na: DocType: Offer Letter Term,Offer Letter Term,Pisna ponudba Term -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Element ima variante. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Element ima variante. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Postavka {0} ni bilo mogoče najti DocType: Bin,Stock Value,Stock Value apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Tree Type @@ -577,7 +578,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Količina porabljene na enoto DocType: Serial No,Warranty Expiry Date,Garancija Datum preteka DocType: Material Request Item,Quantity and Warehouse,Količina in skladišča DocType: Sales Invoice,Commission Rate (%),Komisija Stopnja (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Proti bon mora Vrsta biti eden od prodaje reda, Sales računa ali list Začetek" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Proti bon mora Vrsta biti eden od prodaje reda, Sales računa ali list Začetek" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Aerospace DocType: Journal Entry,Credit Card Entry,Začetek Credit Card apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Naloga Predmet @@ -645,10 +646,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Odgovornost apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Sankcionirano Znesek ne sme biti večja od škodnega Znesek v vrstici {0}. DocType: Company,Default Cost of Goods Sold Account,Privzeto Nabavna vrednost prodanega blaga račun -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Cenik ni izbrana +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Cenik ni izbrana DocType: Employee,Family Background,Družina Ozadje DocType: Process Payroll,Send Email,Pošlji e-pošto -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Opozorilo: Invalid Attachment {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Opozorilo: Invalid Attachment {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Ne Dovoljenje DocType: Company,Default Bank Account,Privzeti bančni račun apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Za filtriranje, ki temelji na stranke, da izberete Party Vnesite prvi" @@ -676,7 +677,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Podpo DocType: Features Setup,"To enable ""Point of Sale"" features",Da bi omogočili "prodajno mesto" funkcije DocType: Bin,Moving Average Rate,Moving Average Rate DocType: Production Planning Tool,Select Items,Izberite Items -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} proti Bill {1} dne {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} proti Bill {1} dne {2} DocType: Maintenance Visit,Completion Status,Zaključek Status DocType: Sales Invoice Item,Target Warehouse,Ciljna Skladišče DocType: Item,Allow over delivery or receipt upto this percent,Dovoli nad dostavo ali prejem upto tem odstotkov @@ -736,7 +737,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Menj apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Ni mogoče najti terminu v naslednjih {0} dni za delovanje {1} DocType: Production Order,Plan material for sub-assemblies,Plan material za sklope apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} mora biti aktiven -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,"Prosimo, najprej izberite vrsto dokumenta" +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,"Prosimo, najprej izberite vrsto dokumenta" apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Goto Košarica apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Preklic Material Obiski {0} pred preklicem to vzdrževanje obisk DocType: Salary Slip,Leave Encashment Amount,Pustite unovčitve Znesek @@ -754,7 +755,7 @@ DocType: Purchase Receipt,Range,Razpon DocType: Supplier,Default Payable Accounts,Privzete plačuje računov apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Employee {0} ni aktiven ali pa ne obstaja DocType: Features Setup,Item Barcode,Postavka Barcode -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Postavka Variante {0} posodobljen +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Postavka Variante {0} posodobljen DocType: Quality Inspection Reading,Reading 6,Branje 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Nakup računa Advance DocType: Address,Shop,Trgovina @@ -777,7 +778,7 @@ DocType: Salary Slip,Total in words,Skupaj z besedami DocType: Material Request Item,Lead Time Date,Lead Time Datum apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,je obvezna. Mogoče je Menjalni zapis ni ustvarjen za apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Vrstica # {0}: Navedite Zaporedna številka za postavko {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Za "izdelek Bundle 'predmetov, skladišče, serijska številka in serijska se ne šteje od" seznam vsebine "mizo. Če so skladišča in serija ni enaka za vso embalažo postavke za kakršno koli "izdelek Bundle 'postavko, lahko te vrednosti je treba vnesti v glavnem Element tabele, bodo vrednosti, ki se kopira na" seznam vsebine "mizo." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Za "izdelek Bundle 'predmetov, skladišče, serijska številka in serijska se ne šteje od" seznam vsebine "mizo. Če so skladišča in serija ni enaka za vso embalažo postavke za kakršno koli "izdelek Bundle 'postavko, lahko te vrednosti je treba vnesti v glavnem Element tabele, bodo vrednosti, ki se kopira na" seznam vsebine "mizo." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Pošiljke strankam. DocType: Purchase Invoice Item,Purchase Order Item,Naročilnica item apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Posredna Prihodki @@ -798,6 +799,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Izberite Payroll leto in apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Pojdi na ustrezno skupino (običajno uporabo sredstev> obratnih sredstev> bančnih računov in ustvarite nov račun (s klikom na Dodaj Child) tipa "banka" DocType: Workstation,Electricity Cost,Stroški električne energije DocType: HR Settings,Don't send Employee Birthday Reminders,Ne pošiljajte zaposlenih rojstnodnevnih opomnikov +,Employee Holiday Attendance,Zaposleni Holiday Udeležba DocType: Opportunity,Walk In,Vstopiti apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Zaloga Vnosi DocType: Item,Inspection Criteria,Merila Inšpekcijske @@ -820,7 +822,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,D DocType: Journal Entry Account,Expense Claim,Expense zahtevek apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Količina za {0} DocType: Leave Application,Leave Application,Zapusti Application -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Pustite Orodje razdelitve emisijskih +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Pustite Orodje razdelitve emisijskih DocType: Leave Block List,Leave Block List Dates,Pustite Block List termini DocType: Company,If Monthly Budget Exceeded (for expense account),Če Mesečni proračun Presežena (za odhodek račun) DocType: Workstation,Net Hour Rate,Neto urna postavka @@ -830,7 +832,7 @@ DocType: Packing Slip Item,Packing Slip Item,Pakiranje Slip Postavka DocType: POS Profile,Cash/Bank Account,Gotovina / bančni račun apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Odstranjeni deli brez spremembe količine ali vrednosti. DocType: Delivery Note,Delivery To,Dostava -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Lastnost miza je obvezna +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Lastnost miza je obvezna DocType: Production Planning Tool,Get Sales Orders,Pridobite prodajnih nalogov apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} ne more biti negativna apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Popust @@ -894,7 +896,7 @@ DocType: SMS Center,Total Characters,Skupaj Znaki apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},"Prosimo, izberite BOM BOM v polju za postavko {0}" DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-Form Račun Detail DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Plačilo Sprava Račun -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Prispevek% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Prispevek% DocType: Item,website page link,spletna stran link DocType: Company,Company registration numbers for your reference. Tax numbers etc.,Registracija podjetja številke za vaše reference. Davčne številke itd DocType: Sales Partner,Distributor,Distributer @@ -936,10 +938,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM Conversion Factor DocType: Stock Settings,Default Item Group,Privzeto Element Group apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Dobavitelj baze podatkov. DocType: Account,Balance Sheet,Bilanca stanja -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Stalo Center za postavko s točko zakonika " +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Stalo Center za postavko s točko zakonika " DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,"Vaš prodajni oseba bo dobil opomin na ta dan, da se obrnete na stranko" apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Nadaljnje računi se lahko izvede v skupinah, vendar vnosi lahko zoper niso skupin" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Davčna in drugi odbitki plače. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Davčna in drugi odbitki plače. DocType: Lead,Lead,Svinec DocType: Email Digest,Payables,Obveznosti DocType: Account,Warehouse,Skladišče @@ -956,10 +958,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Unreconciled Plači DocType: Global Defaults,Current Fiscal Year,Tekočem proračunskem letu DocType: Global Defaults,Disable Rounded Total,Onemogoči Zaobljeni Skupaj DocType: Lead,Call,Call -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,"Navedbe" ne more biti prazna +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,"Navedbe" ne more biti prazna apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Dvojnik vrstica {0} z enako {1} ,Trial Balance,Trial Balance -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Postavitev Zaposleni +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Postavitev Zaposleni apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid """,Mreža " apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,"Prosimo, izberite predpono najprej" apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Raziskave @@ -968,7 +970,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,Uporabniško ime apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Ogled Ledger apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Najzgodnejša -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Element, skupina obstaja z istim imenom, vas prosimo, spremenite ime elementa ali preimenovati skupino element" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Element, skupina obstaja z istim imenom, vas prosimo, spremenite ime elementa ali preimenovati skupino element" DocType: Production Order,Manufacture against Sales Order,Izdelava zoper Sales Order apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Ostali svet apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,Postavki {0} ne more imeti Batch @@ -993,7 +995,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Zavrnjeno Skladišče DocType: GL Entry,Against Voucher,Proti Voucher DocType: Item,Default Buying Cost Center,Privzeto Center nakupovanje Stroški apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Da bi dobili najboljše iz ERPNext, vam priporočamo, da si vzamete nekaj časa in gledam te posnetke pomoč." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Postavka {0} mora biti Sales postavka +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Postavka {0} mora biti Sales postavka apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,da DocType: Item,Lead Time in days,Svinec čas v dnevih ,Accounts Payable Summary,Računi plačljivo Povzetek @@ -1019,7 +1021,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Kmetijstvo apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Svoje izdelke ali storitve DocType: Mode of Payment,Mode of Payment,Način plačila -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Spletna stran Slika bi morala biti javna datoteka ali spletna stran URL +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Spletna stran Slika bi morala biti javna datoteka ali spletna stran URL apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,"To je skupina, root element in ga ni mogoče urejati." DocType: Journal Entry Account,Purchase Order,Naročilnica DocType: Warehouse,Warehouse Contact Info,Skladišče Kontakt Info @@ -1030,7 +1032,7 @@ DocType: Serial No,Serial No Details,Serijska št Podrobnosti DocType: Purchase Invoice Item,Item Tax Rate,Postavka Davčna stopnja apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","Za {0}, lahko le kreditne račune povezati proti drugemu vstop trajnika" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Dobavnica {0} ni predložila -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Postavka {0} mora biti podizvajalcev item +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Postavka {0} mora biti podizvajalcev item apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Kapitalski Oprema apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Cen Pravilo je najprej treba izbrati glede na "Uporabi On 'polju, ki je lahko točka, točka Group ali Brand." DocType: Hub Settings,Seller Website,Prodajalec Spletna stran @@ -1039,7 +1041,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Cilj DocType: Sales Invoice Item,Edit Description,Uredi Opis apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Pričakuje Dobavni rok je manj od načrtovanega začetni datum. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,Za dobavitelja +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,Za dobavitelja DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Nastavitev Vrsta računa pomaga pri izbiri ta račun v transakcijah. DocType: Purchase Invoice,Grand Total (Company Currency),Grand Total (družba Valuta) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Skupaj Odhodni @@ -1091,7 +1093,6 @@ DocType: Authorization Rule,Average Discount,Povprečen Popust DocType: Address,Utilities,Utilities DocType: Purchase Invoice Item,Accounting,Računovodstvo DocType: Features Setup,Features Setup,Značilnosti Setup -DocType: Item,Is Service Item,Je Service Postavka apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Prijavni rok ne more biti obdobje dodelitve izven dopusta DocType: Activity Cost,Projects,Projekti apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,"Prosimo, izberite poslovno leto" @@ -1112,7 +1113,7 @@ DocType: Item,Maintain Stock,Ohraniti park apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Zaloga Vpisi že ustvarjene za proizvodnjo red apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Neto sprememba v osnovno sredstvo DocType: Leave Control Panel,Leave blank if considered for all designations,"Pustite prazno, če velja za vse označb" -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Naboj tip "Dejanski" v vrstici {0} ni mogoče vključiti v postavko Rate +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Naboj tip "Dejanski" v vrstici {0} ni mogoče vključiti v postavko Rate apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Od datetime DocType: Email Digest,For Company,Za podjetje @@ -1121,8 +1122,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Dostava Naslov Name apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Kontnem DocType: Material Request,Terms and Conditions Content,Pogoji in vsebina -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,ne more biti večja kot 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Postavka {0} ni zaloge Item +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,ne more biti večja kot 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Postavka {0} ni zaloge Item DocType: Maintenance Visit,Unscheduled,Nenačrtovana DocType: Employee,Owned,Lasti DocType: Salary Slip Deduction,Depends on Leave Without Pay,Odvisno od dopusta brez plačila @@ -1143,7 +1144,7 @@ Used for Taxes and Charges",Davčna podrobnosti tabela nerealne iz postavke mojs apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Delavec ne more poročati zase. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Če računa je zamrznjeno, so vpisi dovoljeni omejenih uporabnikov." DocType: Email Digest,Bank Balance,Banka Balance -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},"Računovodstvo Vstop za {0}: lahko {1}, se izvede le v valuti: {2}" +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},"Računovodstvo Vstop za {0}: lahko {1}, se izvede le v valuti: {2}" apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Ni aktivnega iskanja za zaposlenega {0} in meseca Plača Struktura DocType: Job Opening,"Job profile, qualifications required etc.","Profil delovnega mesta, potrebna usposobljenost itd" DocType: Journal Entry Account,Account Balance,Stanje na računu @@ -1160,7 +1161,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Sklope DocType: Shipping Rule Condition,To Value,Do vrednosti DocType: Supplier,Stock Manager,Stock Manager apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Vir skladišče je obvezna za vrstico {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Pakiranje listek +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Pakiranje listek apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Urad za najem apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Nastavitve Setup SMS gateway apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Uvoz uspelo! @@ -1204,7 +1205,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM Detail Ne DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Dodatni popust Znesek (Valuta Company) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Napaka: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,"Prosimo, ustvarite nov račun iz kontnega načrta." -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Vzdrževanje obisk +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Vzdrževanje obisk apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Stranka> Skupina Customer> Territory DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Dostopno Serija Količina na Warehouse DocType: Time Log Batch Detail,Time Log Batch Detail,Čas Log Serija Detail @@ -1213,7 +1214,7 @@ DocType: Leave Block List,Block Holidays on important days.,Blokiranje Počitnic ,Accounts Receivable Summary,Terjatve Povzetek apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,"Prosim, nastavite ID uporabnika polje v zapisu zaposlenih za določen Vloga zaposlenih" DocType: UOM,UOM Name,UOM Name -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Prispevek Znesek +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Prispevek Znesek DocType: Sales Invoice,Shipping Address,naslov za pošiljanje DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,To orodje vam pomaga posodobiti ali popravite količino in vrednotenje zalog v sistemu. To se ponavadi uporablja za sinhronizacijo sistemske vrednosti in kaj dejansko obstaja v vaših skladiščih. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,"V besedi bo viden, ko boste shranite dobavnici." @@ -1254,7 +1255,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Za sledenje predmetov s pomočjo črtne kode. Morda ne boste mogli vnesti elemente v dobavnice in prodajne fakture s skeniranjem črtne kode elementa. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Ponovno pošlji plačila Email DocType: Dependent Task,Dependent Task,Odvisna Task -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},"Faktor pretvorbe za privzeto mersko enoto, mora biti 1 v vrstici {0}" +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},"Faktor pretvorbe za privzeto mersko enoto, mora biti 1 v vrstici {0}" apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Dopust tipa {0} ne more biti daljši od {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Poskusite načrtovanju operacij za X dni vnaprej. DocType: HR Settings,Stop Birthday Reminders,Stop Birthday opomniki @@ -1264,7 +1265,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Pogled apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Neto sprememba v gotovini DocType: Salary Structure Deduction,Salary Structure Deduction,Plača Struktura Odbitek -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Merska enota {0} je v pretvorbeni faktor tabeli vpisana več kot enkrat +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Merska enota {0} je v pretvorbeni faktor tabeli vpisana več kot enkrat apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Plačilo Zahteva že obstaja {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Strošek izdanih postavk apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Količina ne sme biti več kot {0} @@ -1293,7 +1294,7 @@ DocType: BOM Item,BOM Item,BOM Postavka DocType: Appraisal,For Employee,Za zaposlenega apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Vrstica {0}: Advance zoper dobavitelja mora biti v breme DocType: Company,Default Values,Privzete vrednosti -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Vrstica {0}: Znesek plačila ne more biti negativna +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Vrstica {0}: Znesek plačila ne more biti negativna DocType: Expense Claim,Total Amount Reimbursed,"Skupnega zneska, povrnjenega" apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Zoper dobavitelja Račun {0} dne {1} DocType: Customer,Default Price List,Privzeto Cenik @@ -1321,8 +1322,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Gar DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Zamenjajte posebno kosovnico v vseh drugih BOMs, kjer se uporablja. To bo nadomestila staro BOM povezavo, posodobite stroške in regenerira "BOM Explosion item» mizo kot na novo BOM" DocType: Shopping Cart Settings,Enable Shopping Cart,Omogoči Košarica DocType: Employee,Permanent Address,stalni naslov -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Postavka {0} mora biti Service postavka. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Izplačano predplačilo proti {0} {1} ne more biti večja \ kot Grand Total {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,"Prosimo, izberite postavko kodo" DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Zmanjšajte Odbitek za dopust brez plačila (md) @@ -1378,12 +1378,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Main apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Variant DocType: Naming Series,Set prefix for numbering series on your transactions,Nastavite predpona za številčenje serij na vaše transakcije +DocType: Employee Attendance Tool,Employees HTML,zaposleni HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Ustavil naročila ni mogoče preklicati. Odčepiti preklicati. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Privzeto BOM ({0}) mora biti aktiven za to postavko ali njeno predlogo +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Privzeto BOM ({0}) mora biti aktiven za to postavko ali njeno predlogo DocType: Employee,Leave Encashed?,Dopusta unovčijo? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Priložnost Iz polja je obvezno DocType: Item,Variants,Variante -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Naredite narocilo +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Naredite narocilo DocType: SMS Center,Send To,Pošlji apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Ni dovolj bilanca dopust za dopust tipa {0} DocType: Payment Reconciliation Payment,Allocated amount,Dodeljen znesek @@ -1483,7 +1484,7 @@ DocType: Sales Person,Name and Employee ID,Ime in zaposlenih ID apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,Rok ne more biti pred datumom knjiženja DocType: Website Item Group,Website Item Group,Spletna stran Element Group apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Dajatve in davki -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,Vnesite Referenčni datum +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,Vnesite Referenčni datum apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Plačilo Gateway račun ni nastavljen apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} vnosov plačil ni mogoče filtrirati s {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,"Tabela za postavko, ki bo prikazana na spletni strani" @@ -1504,7 +1505,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Resolucija Podrobnosti DocType: Quality Inspection Reading,Acceptance Criteria,Merila sprejemljivosti DocType: Item Attribute,Attribute Name,Ime atributa -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Postavka {0} mora biti prodaja ali storitev postavka v {1} DocType: Item Group,Show In Website,Pokaži V Website apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Skupina DocType: Task,Expected Time (in hours),Pričakovani čas (v urah) @@ -1536,7 +1536,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Dostava Znesek ,Pending Amount,Dokler Znesek DocType: Purchase Invoice Item,Conversion Factor,Faktor pretvorbe DocType: Purchase Order,Delivered,Dostavljeno -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Setup dohodni strežnik za delovna mesta email id. (npr jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Setup dohodni strežnik za delovna mesta email id. (npr jobs@example.com) DocType: Purchase Receipt,Vehicle Number,Število vozil DocType: Purchase Invoice,The date on which recurring invoice will be stop,"Datum, na katerega se bodo ponavljajoče račun stop" apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Skupaj dodeljena listi {0} ne sme biti manjši od že odobrenih listov {1} za obdobje @@ -1553,7 +1553,7 @@ DocType: HR Settings,HR Settings,Nastavitve HR apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Expense Terjatev čaka na odobritev. Samo Expense odobritelj lahko posodobite stanje. DocType: Purchase Invoice,Additional Discount Amount,Dodatni popust Količina DocType: Leave Block List Allow,Leave Block List Allow,Pustite Block List Dovoli -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abbr ne more biti prazen ali prostor +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abbr ne more biti prazen ali prostor apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Skupina Non-Group apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Šport apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Skupaj Actual @@ -1577,7 +1577,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},Faktor UOM Pretvorba je potrebno v vrstici {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Datum razdalja ne more biti pred datumom check zapored {0} DocType: Salary Slip,Deduction,Odbitek -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Postavka Cena dodana za {0} v Ceniku {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Postavka Cena dodana za {0} v Ceniku {1} DocType: Address Template,Address Template,Naslov Predloga apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,Vnesite ID Employee te prodaje oseba DocType: Territory,Classification of Customers by region,Razvrstitev stranke po regijah @@ -1594,7 +1594,7 @@ DocType: Employee,Date of Birth,Datum rojstva apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Postavka {0} je bil že vrnjen DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** Fiscal Year ** predstavlja poslovno leto. Vse vknjižbe in druge velike transakcije so gosenicami proti ** poslovnega leta **. DocType: Opportunity,Customer / Lead Address,Stranka / Lead Naslov -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Opozorilo: Neveljavno potrdilo SSL za pritrditev {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Opozorilo: Neveljavno potrdilo SSL za pritrditev {0} DocType: Production Order Operation,Actual Operation Time,Dejanska Operacija čas DocType: Authorization Rule,Applicable To (User),Ki se uporabljajo za (Uporabnik) DocType: Purchase Taxes and Charges,Deduct,Odbitka @@ -1611,7 +1611,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Split Dostava Opomba v pakete. apps/erpnext/erpnext/hooks.py +69,Shipments,Pošiljke DocType: Purchase Order Item,To be delivered to customer,Ki jih je treba dostaviti kupcu -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Status čas Prijava je treba predložiti. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Status čas Prijava je treba predložiti. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,Serijska št {0} ne pripada nobeni Warehouse apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Vrstica # DocType: Purchase Invoice,In Words (Company Currency),V besedi (družba Valuta) @@ -1628,7 +1628,7 @@ DocType: Leave Application,Total Leave Days,Skupaj dni dopusta DocType: Email Digest,Note: Email will not be sent to disabled users,Opomba: E-mail ne bo poslano uporabnike invalide apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Izberite Company ... DocType: Leave Control Panel,Leave blank if considered for all departments,"Pustite prazno, če velja za vse oddelke" -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Vrste zaposlitve (trajna, pogodbeni, intern itd)." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Vrste zaposlitve (trajna, pogodbeni, intern itd)." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} je obvezna za postavko {1} DocType: Currency Exchange,From Currency,Iz valute apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Prosimo, izberite Dodeljeni znesek, fakture Vrsta in številka računa v atleast eno vrstico" @@ -1647,7 +1647,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,V postopku DocType: Authorization Rule,Itemwise Discount,Itemwise Popust DocType: Purchase Order Item,Reference Document Type,Referenčni dokument Type -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} proti Sales Order {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} proti Sales Order {1} DocType: Account,Fixed Asset,Osnovno sredstvo apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Zaporednimi Inventory DocType: Activity Type,Default Billing Rate,Privzeto Oceni plačevanja @@ -1657,7 +1657,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Sales Order do plačila DocType: Expense Claim Detail,Expense Claim Detail,Expense Zahtevek Detail apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Čas Dnevniki ustvaril: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,"Prosimo, izberite ustrezen račun" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,"Prosimo, izberite ustrezen račun" DocType: Item,Weight UOM,Teža UOM DocType: Employee,Blood Group,Blood Group DocType: Purchase Invoice Item,Page Break,Page Break @@ -1692,7 +1692,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM rekurzija: {0} ne more biti starš ali otrok {2} DocType: Production Order Operation,Completed Qty,Dopolnil Kol apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","Za {0}, lahko le debetne račune povezati proti drugemu knjiženje" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Seznam Cena {0} je onemogočena +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Seznam Cena {0} je onemogočena DocType: Manufacturing Settings,Allow Overtime,Dovoli Nadurno delo apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,"{0} serijske številke, potrebne za postavko {1}. Ki ste ga navedli {2}." DocType: Stock Reconciliation Item,Current Valuation Rate,Trenutni tečaj Vrednotenje @@ -1743,7 +1743,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Ne P apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Primer št ne more biti 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,"Če imate prodajno ekipo in prodaja Partners (kanal partnerji), se jih lahko označili in vzdržuje svoj prispevek v dejavnosti prodaje" DocType: Item,Show a slideshow at the top of the page,Prikaži diaprojekcijo na vrhu strani -DocType: Item,"Allow in Sales Order of type ""Service""",Dovoli na Sales Order tipa "službe" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Trgovine DocType: Time Log,Projects Manager,Projekti Manager DocType: Serial No,Delivery Time,Čas dostave @@ -1758,6 +1757,7 @@ DocType: Rename Tool,Rename Tool,Preimenovanje orodje apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Posodobitev Stroški DocType: Item Reorder,Item Reorder,Postavka Preureditev apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Prenos Material +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Postavka {0} mora biti Sales postavka v {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Določite operacij, obratovalne stroške in daje edinstveno Operacija ni na vaše poslovanje." DocType: Purchase Invoice,Price List Currency,Cenik Valuta DocType: Naming Series,User must always select,Uporabnik mora vedno izbrati @@ -1778,7 +1778,7 @@ DocType: Appraisal,Employee,Zaposleni apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Uvoz Email Od apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Povabi kot uporabnik DocType: Features Setup,After Sale Installations,Po prodajo naprav -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} je v celoti zaračunali +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} je v celoti zaračunali DocType: Workstation Working Hour,End Time,Končni čas apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Standardni pogodbeni pogoji za prodajo ali nakup. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Skupina kupon @@ -1804,7 +1804,7 @@ DocType: Upload Attendance,Attendance To Date,Udeležba na tekočem apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Setup dohodni strežnik za prodajo email id. (npr sales@example.com) DocType: Warranty Claim,Raised By,Raised By DocType: Payment Gateway Account,Payment Account,Plačilo računa -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,"Prosimo, navedite Company nadaljevati" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,"Prosimo, navedite Company nadaljevati" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Neto sprememba terjatev do kupcev apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Kompenzacijske Off DocType: Quality Inspection Reading,Accepted,Sprejeto @@ -1816,14 +1816,14 @@ DocType: Shipping Rule,Shipping Rule Label,Dostava Pravilo Label apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Surovine ne more biti prazno. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Ni mogel posodobiti vozni park, faktura vsebuje padec element ladijskega prometa." DocType: Newsletter,Test,Testna -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Kot že obstajajo transakcije zalog za to postavko, \ ne morete spremeniti vrednote "Ima Zaporedna številka", "Ima serija ni '," je Stock Postavka "in" metoda vrednotenja "" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Hitro Journal Entry apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,"Vi stopnje ni mogoče spremeniti, če BOM omenjeno agianst vsako postavko" DocType: Employee,Previous Work Experience,Prejšnja Delovne izkušnje DocType: Stock Entry,For Quantity,Za Količino apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},Vnesite načrtovanih Količina za postavko {0} v vrstici {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} ni predložena +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} ni predložena apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Prošnje za artikle. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Ločena proizvodnja naročilo bo ustvarjen za vsakega končnega dobro točko. DocType: Purchase Invoice,Terms and Conditions1,Pogoji in razmer1 @@ -1848,6 +1848,7 @@ DocType: Notification Control,Expense Claim Approved Message,Expense Zahtevek Od DocType: Email Digest,How frequently?,Kako pogosto? DocType: Purchase Receipt,Get Current Stock,Pridobite trenutne zaloge apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Drevo Bill of Materials +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Mark Present apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Datum začetka vzdrževanje ne more biti pred datumom dostave za serijsko št {0} DocType: Production Order,Actual End Date,Dejanski končni datum DocType: Authorization Rule,Applicable To (Role),Ki se uporabljajo za (vloga) @@ -1862,7 +1863,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Naročilo Končni datum mora biti večja od Datum pridružitve DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,"Distributer tretja oseba / trgovec / provizije agent / podružnica / prodajalec, ki prodaja podjetja, izdelke za provizijo." DocType: Customer Group,Has Child Node,Ima otrok Node -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} proti narocilo {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} proti narocilo {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Vnesite statične parametre url tukaj (npr. Pošiljatelj = ERPNext, username = ERPNext, geslo = 1234 itd)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} ni v nobeni aktivnem poslovnem letu. Za več podrobnosti preverite {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,To je primer spletne strani samodejno ustvari iz ERPNext @@ -1890,7 +1891,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Add or Deduct: Whether you want to add or deduct the tax.","Standardna davčna predlogo, ki se lahko uporablja za vse nakupnih poslov. To predlogo lahko vsebuje seznam davčnih glavami in tudi drugih odhodkov glavah, kot so "Shipping", "zavarovanje", "Ravnanje" itd #### Opomba davčno stopnjo, ki jo določite tu bo standard davčna stopnja za vse ** Točke * *. Če obstajajo ** Items **, ki imajo različne stopnje, ki jih je treba dodati v ** Element davku ** miza v ** Element ** mojstra. #### Opis Stolpci 1. Vrsta Izračun: - To je lahko na ** Net Total ** (to je vsota osnovnega zneska). - ** Na prejšnje vrstice Total / Znesek ** (za kumulativnih davkov ali dajatev). Če izberete to možnost, bo davek treba uporabiti kot odstotek prejšnje vrstice (davčne tabele) znesek ali skupaj. - ** Dejanska ** (kot je omenjeno). 2. Račun Head: The knjiga račun, pod katerimi se bodo rezervirana ta davek 3. stroškovni center: Če davek / pristojbina je prihodek (kot ladijski promet) ali odhodek je treba rezervirana proti centru stroškov. 4. Opis: Opis davka (bo, da se natisne v faktur / narekovajev). 5. stopnja: Davčna stopnja. 6. Znesek: Davčna znesek. 7. Skupaj: Kumulativno do te točke. 8. Vnesite Row: Če je na osnovi "Prejšnji Row Total" lahko izberete številko vrstice, ki bo sprejet kot osnova za ta izračun (privzeta je prejšnja vrstica). 9. Razmislite davek ali dajatev za: V tem razdelku lahko določite, če je davek / pristojbina le za vrednotenje (ni del skupaj) ali samo za skupno (ne dodajajo vrednost za postavko), ali pa oboje. 10. Dodajte ali odštejemo: Ali želite dodati ali odbiti davek." DocType: Purchase Receipt Item,Recd Quantity,Recd Količina apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Ne more proizvajati več item {0} od prodaje kol {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Stock Začetek {0} ni predložila +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Stock Začetek {0} ni predložila DocType: Payment Reconciliation,Bank / Cash Account,Banka / Gotovinski račun DocType: Tax Rule,Billing City,Zaračunavanje Mesto DocType: Global Defaults,Hide Currency Symbol,Skrij valutni simbol @@ -1916,7 +1917,7 @@ DocType: Salary Structure,Total Earning,Skupaj zaslužka DocType: Purchase Receipt,Time at which materials were received,"Čas, v katerem so bile prejete materiale" apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Moji Naslovi DocType: Stock Ledger Entry,Outgoing Rate,Odhodni Rate -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Organizacija podružnica gospodar. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Organizacija podružnica gospodar. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,ali DocType: Sales Order,Billing Status,Status zaračunavanje apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Pomožni Stroški @@ -1954,7 +1955,7 @@ DocType: Bin,Reserved Quantity,Rezervirano Količina DocType: Landed Cost Voucher,Purchase Receipt Items,Nakup Prejem Items apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Prilagajanje Obrazci DocType: Account,Income Account,Prihodki račun -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Dostava +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Dostava DocType: Stock Reconciliation Item,Current Qty,Trenutni Kol DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",Glejte "Oceni materialov na osnovi" v stanejo oddelku DocType: Appraisal Goal,Key Responsibility Area,Key Odgovornost Area @@ -1966,8 +1967,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,Vou DocType: Notification Control,Purchase Order Message,Naročilnica sporočilo DocType: Tax Rule,Shipping Country,Dostava Država DocType: Upload Attendance,Upload HTML,Naloži HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})",Skupaj predplačilo ({0}) proti odredbi {1} ne more biti večja \ od Grand Total ({2}) DocType: Employee,Relieving Date,Lajšanje Datum apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Cen Pravilo je narejen prepisati Cenik / določiti diskontno odstotek, na podlagi nekaterih kriterijev." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Skladišče je mogoče spremeniti samo prek borze Vstop / Delivery Note / Potrdilo o nakupu @@ -1977,8 +1976,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Davek apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Če je izbrana Cene pravilo narejen za "cena", bo prepisalo Cenik. Cen Pravilo cena je končna cena, zato je treba uporabiti pravšnji za popust. Zato v transakcijah, kot Sales Order, narocilo itd, da bodo nerealne v polje "obrestna mera", namesto da polje »Cenik rate"." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Track Interesenti ga Industry Type. DocType: Item Supplier,Item Supplier,Postavka Dobavitelj -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,Vnesite Koda dobiti serijo no -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},"Prosimo, izberite vrednost za {0} quotation_to {1}" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,Vnesite Koda dobiti serijo no +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},"Prosimo, izberite vrednost za {0} quotation_to {1}" apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Vsi naslovi. DocType: Company,Stock Settings,Nastavitve Stock apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Spajanje je mogoče le, če so naslednje lastnosti enaka v obeh evidencah. Je skupina, Root Type, Company" @@ -2001,7 +2000,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Ček Število DocType: Payment Tool Detail,Payment Tool Detail,Plačilo Tool Podrobnosti ,Sales Browser,Prodaja Browser DocType: Journal Entry,Total Credit,Skupaj Credit -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Opozorilo: Drug {0} # {1} obstaja pred vstopom parka {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Opozorilo: Drug {0} # {1} obstaja pred vstopom parka {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Lokalno apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Posojila in predujmi (sredstva) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Dolžniki @@ -2021,8 +2020,8 @@ DocType: Price List,Price List Master,Cenik Master DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,"Vse prodajne transakcije je lahko označena pred številnimi ** Prodajni Osebe **, tako da lahko nastavite in spremljanje ciljev." ,S.O. No.,SO No. DocType: Production Order Operation,Make Time Log,Vzemite si čas Prijava -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,"Prosim, nastavite naročniško količino" -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},"Prosimo, da ustvarite strank iz svinca {0}" +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,"Prosim, nastavite naročniško količino" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},"Prosimo, da ustvarite strank iz svinca {0}" DocType: Price List,Applicable for Countries,Velja za države apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Računalniki apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,To je skupina koren stranke in jih ni mogoče urejati. @@ -2058,7 +2057,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Zarač DocType: Payment Reconciliation Invoice,Outstanding Amount,Neporavnani znesek DocType: Project Task,Working,Delovna DocType: Stock Ledger Entry,Stock Queue (FIFO),Stock Queue (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,"Prosimo, izberite Čas Dnevniki." +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,"Prosimo, izberite Čas Dnevniki." apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} ne pripada družbi {1} DocType: Account,Round Off,Zaokrožite ,Requested Qty,Zahteval Kol @@ -2096,7 +2095,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Pridobite ustreznimi vnosi apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Računovodstvo Vstop za zalogi DocType: Sales Invoice,Sales Team1,Prodaja TEAM1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Element {0} ne obstaja +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Element {0} ne obstaja DocType: Sales Invoice,Customer Address,Stranka Naslov DocType: Payment Request,Recipient and Message,Prejemnika in sporočilo DocType: Purchase Invoice,Apply Additional Discount On,Uporabi dodatni popust na @@ -2115,7 +2114,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Mute Email apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Hrana, pijača, tobak" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL ali BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Lahko le plačilo proti neobračunano {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Lahko le plačilo proti neobračunano {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Stopnja Komisija ne more biti večja od 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Minimalna Inventory Raven DocType: Stock Entry,Subcontract,Podizvajalska pogodba @@ -2133,9 +2132,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Programska apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Barva DocType: Maintenance Visit,Scheduled,Načrtovano apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Prosimo, izberite postavko, kjer "Stock postavka je" "Ne" in "Je Sales Postavka" je "Yes" in ni druge Bundle izdelka" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Skupaj predplačilo ({0}) proti odredbi {1} ne more biti večja od Grand Total ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Izberite mesečnim izplačilom neenakomerno distribucijo ciljev po mesecih. DocType: Purchase Invoice Item,Valuation Rate,Oceni Vrednotenje -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Cenik Valuta ni izbran +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Cenik Valuta ni izbran apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,Postavka Row {0}: Potrdilo o nakupu {1} ne obstaja v zgornji tabeli "nakup prejemki" apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Employee {0} je že zaprosil za {1} med {2} in {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Projekt Start Date @@ -2147,6 +2147,7 @@ DocType: Quality Inspection,Inspection Type,Inšpekcijski Type apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},"Prosimo, izberite {0}" DocType: C-Form,C-Form No,C-forma DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,neoznačena in postrežbo apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Raziskovalec apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,"Prosimo, shranite Newsletter pred pošiljanjem" apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Ime ali E-pošta je obvezna @@ -2172,7 +2173,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Potrjen DocType: Payment Gateway,Gateway,Gateway apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Dobavitelj> dobavitelj Type apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Vnesite lajšanje datum. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,Pustite samo aplikacije s statusom "Approved" mogoče predložiti apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Naslov Naslov je obvezen. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,"Vnesite ime oglaševalske akcije, če je vir preiskovalne akcije" @@ -2187,10 +2188,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Accepted Skladišče DocType: Bank Reconciliation Detail,Posting Date,Napotitev Datum DocType: Item,Valuation Method,Metoda vrednotenja apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Ne morejo najti menjalni tečaj za {0} do {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Mark Day Half DocType: Sales Invoice,Sales Team,Sales Team apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Dvojnik vnos DocType: Serial No,Under Warranty,Pod garancijo -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Error] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Error] DocType: Sales Order,In Words will be visible once you save the Sales Order.,"V besedi bo viden, ko boste shranite Sales Order." ,Employee Birthday,Zaposleni Rojstni dan apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Tveganega kapitala @@ -2213,6 +2215,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,Stroškovno Center z obstoječimi transakcij ni mogoče pretvoriti v skupini DocType: Account,Depreciation,Amortizacija apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Dobavitelj (-i) +DocType: Employee Attendance Tool,Employee Attendance Tool,Zaposleni Udeležba Tool DocType: Supplier,Credit Limit,Kreditni limit apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Izberite vrsto posla DocType: GL Entry,Voucher No,Voucher ni @@ -2239,7 +2242,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Root račun ni mogoče izbrisati ,Is Primary Address,Je primarni naslov DocType: Production Order,Work-in-Progress Warehouse,Work-in-Progress Warehouse -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Referenčna # {0} dne {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Referenčna # {0} dne {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Upravljanje naslovov DocType: Pricing Rule,Item Code,Oznaka DocType: Production Planning Tool,Create Production Orders,Ustvarjanje naročila za proizvodnjo @@ -2266,7 +2269,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Banka Sprava apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Dobite posodobitve apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Material Zahteva {0} je odpovedan ali ustavi apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Dodajte nekaj zapisov vzorčnih -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Pustite upravljanje +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Pustite upravljanje apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,"Skupina, ki jo račun" DocType: Sales Order,Fully Delivered,Popolnoma Delivered DocType: Lead,Lower Income,Nižji od dobička @@ -2281,6 +2284,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"Od datuma" mora biti po "Da Datum ' ,Stock Projected Qty,Stock Predvidena Količina apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},"Stranka {0} ne pripada, da projekt {1}" +DocType: Employee Attendance Tool,Marked Attendance HTML,Markirana Udeležba HTML DocType: Sales Order,Customer's Purchase Order,Stranke Naročilo DocType: Warranty Claim,From Company,Od družbe apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Vrednost ali Kol @@ -2345,6 +2349,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Wire Transfer apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,Izberite bančni račun DocType: Newsletter,Create and Send Newsletters,Ustvarjanje in pošiljanje glasila +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Preveri vse DocType: Sales Order,Recurring Order,Ponavljajoči naročilo DocType: Company,Default Income Account,Privzeto Prihodki račun apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Skupina kupec / stranka @@ -2376,6 +2381,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Vrni proti Račun za n DocType: Item,Warranty Period (in days),Garancijski rok (v dnevih) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Čisti denarni tok iz poslovanja apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,npr DDV +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Udeležba Mark zaposlenih v razsutem stanju apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Postavka 4 DocType: Journal Entry Account,Journal Entry Account,Journal Entry račun DocType: Shopping Cart Settings,Quotation Series,Kotacija Series @@ -2520,14 +2526,14 @@ DocType: Task,Actual Start Date (via Time Logs),Actual Start Date (via Čas Dnev DocType: Stock Reconciliation Item,Before reconciliation,Pred uskladitvijo apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Za {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Davki in dajatve na dodano vrednost (Company Valuta) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Postavka Davčna Row {0} morajo upoštevati vrste davka ali prihodek ali odhodek ali Obdavčljivi +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Postavka Davčna Row {0} morajo upoštevati vrste davka ali prihodek ali odhodek ali Obdavčljivi DocType: Sales Order,Partly Billed,Delno zaračunavajo DocType: Item,Default BOM,Privzeto BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,"Prosimo, ponovno tip firma za potrditev" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Skupaj Izjemna Amt DocType: Time Log Batch,Total Hours,Skupaj ure DocType: Journal Entry,Printing Settings,Printing Settings -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Skupaj obremenitve mora biti enaka celotnemu kreditnemu. Razlika je {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Skupaj obremenitve mora biti enaka celotnemu kreditnemu. Razlika je {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Avtomobilizem apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Od dobavnica DocType: Time Log,From Time,Od časa @@ -2573,7 +2579,7 @@ DocType: Purchase Invoice Item,Image View,Image View DocType: Issue,Opening Time,Otvoritev čas apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,Od in Do datumov zahtevanih apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Vrednostnih papirjev in blagovne borze -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Privzeto mersko enoto za Variant '{0}' mora biti enaka kot v predlogo '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Privzeto mersko enoto za Variant '{0}' mora biti enaka kot v predlogo '{1}' DocType: Shipping Rule,Calculate Based On,Izračun temelji na DocType: Delivery Note Item,From Warehouse,Iz skladišča DocType: Purchase Taxes and Charges,Valuation and Total,Vrednotenje in Total @@ -2595,7 +2601,7 @@ DocType: Leave Application,Follow via Email,Sledite preko e-maila DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Davčna Znesek Po Popust Znesek apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,"Otrok račun obstaja za ta račun. Ne, ne moreš izbrisati ta račun." apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Bodisi ciljna kol ali ciljna vrednost je obvezna -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},Ne obstaja privzeta BOM za postavko {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},Ne obstaja privzeta BOM za postavko {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,"Prosimo, izberite datumom knjiženja najprej" apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Pričetek mora biti pred Zapiranje Datum DocType: Leave Control Panel,Carry Forward,Carry Forward @@ -2672,7 +2678,7 @@ DocType: Leave Type,Is Encash,Je vnovči DocType: Purchase Invoice,Mobile No,Mobile No DocType: Payment Tool,Make Journal Entry,Naredite Journal Entry DocType: Leave Allocation,New Leaves Allocated,Nove Listi Dodeljena -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Podatki projekt pametno ni na voljo za ponudbo +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Podatki projekt pametno ni na voljo za ponudbo DocType: Project,Expected End Date,Pričakovani datum zaključka DocType: Appraisal Template,Appraisal Template Title,Cenitev Predloga Naslov apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Commercial @@ -2720,6 +2726,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,Na apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,"Prosimo, določite" DocType: Offer Letter,Awaiting Response,Čakanje na odgovor apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Nad +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Čas Prijava je bila zaračunali DocType: Salary Slip,Earning & Deduction,Zaslužek & Odbitek apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Upoštevati {0} ne more biti skupina apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Neobvezno. Ta nastavitev bo uporabljena za filtriranje v različnih poslih. @@ -2790,14 +2797,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Uspešno izbrisana vse transakcije v zvezi s to družbo! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Kot na datum apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Poskusno delo -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Privzeto Skladišče je obvezna za borzo točki. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Privzeto Skladišče je obvezna za borzo točki. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Izplačilo plače za mesec {0} in leto {1} DocType: Stock Settings,Auto insert Price List rate if missing,Auto insert stopnja Cenik če manjka apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Skupaj Plačan znesek ,Transferred Qty,Prenese Kol apps/erpnext/erpnext/config/learn.py +11,Navigating,Krmarjenje apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Načrtovanje -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Naredite Čas Log Batch +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Naredite Čas Log Batch apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Izdala DocType: Project,Total Billing Amount (via Time Logs),Skupni znesek plačevanja (preko Čas Dnevniki) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Prodamo ta artikel @@ -2805,7 +2812,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Količina mora biti večja od 0 DocType: Journal Entry,Cash Entry,Cash Začetek DocType: Sales Partner,Contact Desc,Kontakt opis izdelka -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Vrsta listov kot priložnostno, bolni itd" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Vrsta listov kot priložnostno, bolni itd" DocType: Email Digest,Send regular summary reports via Email.,Pošlji redna zbirna poročila preko e-maila. DocType: Brand,Item Manager,Element Manager DocType: Cost Center,Add rows to set annual budgets on Accounts.,"Dodajte vrstice, da določijo letne proračune na računih." @@ -2820,7 +2827,7 @@ DocType: GL Entry,Party Type,Vrsta Party apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,"Surovina, ne more biti isto kot glavni element" DocType: Item Attribute Value,Abbreviation,Kratica apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,"Ne authroized saj je {0}, presega meje" -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Plača predlogo gospodar. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Plača predlogo gospodar. DocType: Leave Type,Max Days Leave Allowed,Max dni dopusta Dovoljeno apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Nastavite Davčna pravilo za nakupovalno košarico DocType: Payment Tool,Set Matching Amounts,Nastavite ujemanja Zneski @@ -2833,7 +2840,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Citati DocType: Stock Settings,Role Allowed to edit frozen stock,Vloga Dovoljeno urediti zamrznjeno zalog ,Territory Target Variance Item Group-Wise,Ozemlje Ciljna Varianca Postavka Group-Wise apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Vse skupine strank -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} je obvezna. Mogoče je Menjalni zapis ni ustvarjen za {1} na {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} je obvezna. Mogoče je Menjalni zapis ni ustvarjen za {1} na {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Davčna Predloga je obvezna. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Račun {0}: Matično račun {1} ne obstaja DocType: Purchase Invoice Item,Price List Rate (Company Currency),Cenik Rate (družba Valuta) @@ -2853,8 +2860,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Postavka Wise Davčna D ,Item-wise Price List Rate,Element-pametno Cenik Rate apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Dobavitelj za predračun DocType: Quotation,In Words will be visible once you save the Quotation.,"V besedi bo viden, ko boste prihranili citata." -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} je ustavila -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Barcode {0} že uporabljajo v postavki {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} je ustavila +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Barcode {0} že uporabljajo v postavki {1} DocType: Lead,Add to calendar on this date,Dodaj v koledar na ta dan apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Pravila za dodajanje stroškov dostave. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Prihajajoči dogodki @@ -2880,8 +2887,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,St apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Atleast eno skladišče je obvezna DocType: Serial No,Out of Warranty,Iz garancije DocType: BOM Replace Tool,Replace,Zamenjaj -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} proti prodajne fakture {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Vnesite privzeto mersko enoto +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} proti prodajne fakture {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Vnesite privzeto mersko enoto DocType: Purchase Invoice Item,Project Name,Ime projekta DocType: Supplier,Mention if non-standard receivable account,Omemba če nestandardno terjatve račun DocType: Journal Entry Account,If Income or Expense,Če prihodek ali odhodek @@ -2906,7 +2913,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Poslovno leto: {0} ne obstaja DocType: Currency Exchange,To Currency,Valutnemu DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,"Pustimo, da se naslednji uporabniki za odobritev dopusta Aplikacije za blok dni." -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Vrste Expense zahtevka. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Vrste Expense zahtevka. DocType: Item,Taxes,Davki apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Plačana in ni podal DocType: Project,Default Cost Center,Privzet Stroškovni Center @@ -2936,7 +2943,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Vrstica # {0}: Serijska št {1} ne ujema z {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Casual Zapusti DocType: Batch,Batch ID,Serija ID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Opomba: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Opomba: {0} ,Delivery Note Trends,Dobavnica Trendi apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Povzetek Ta teden je apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} mora biti kupljena ali podizvajalcev Postavka v vrstici {1} @@ -2976,6 +2983,7 @@ DocType: Project Task,Pending Review,Dokler Pregled apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,"Kliknite tukaj, da plača" DocType: Task,Total Expense Claim (via Expense Claim),Total Expense zahtevek (preko Expense zahtevka) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,ID stranke +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Mark Odsoten apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Da mora biti čas biti večja od od časa DocType: Journal Entry Account,Exchange Rate,Menjalni tečaj apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Sales Order {0} ni predložila @@ -3023,7 +3031,7 @@ DocType: Item Group,Default Expense Account,Privzeto Expense račun DocType: Employee,Notice (days),Obvestilo (dni) DocType: Tax Rule,Sales Tax Template,Sales Tax Predloga DocType: Employee,Encashment Date,Vnovčevanje Datum -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Proti bon mora Vrsta biti eden narocilo, Nakup računa ali list Začetek" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Proti bon mora Vrsta biti eden narocilo, Nakup računa ali list Začetek" DocType: Account,Stock Adjustment,Prilagoditev Stock apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Obstaja Stroški Privzeta aktivnost za vrsto dejavnosti - {0} DocType: Production Order,Planned Operating Cost,Načrtovana operacijski stroškov @@ -3077,6 +3085,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Napišite Off Entry DocType: BOM,Rate Of Materials Based On,Oceni materialov na osnovi apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Podpora Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Odznači vse apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Podjetje manjka v skladiščih {0} DocType: POS Profile,Terms and Conditions,Pravila in pogoji apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},"Do datuma mora biti v poslovnem letu. Ob predpostavki, da želite Datum = {0}" @@ -3098,7 +3107,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Če želite nastaviti to poslovno leto kot privzeto, kliknite na "Set as Default"" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Setup dohodni strežnik za podporo email id. (npr support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Pomanjkanje Kol -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Obstaja postavka varianta {0} z enakimi atributi +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Obstaja postavka varianta {0} z enakimi atributi DocType: Salary Slip,Salary Slip,Plača listek apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,"Da Datum" je potrebno DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Ustvarjajo dobavnic, da paketi dostavi. Uporablja se za uradno številko paketa, vsebino paketa in njegovo težo." @@ -3146,7 +3155,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Poglej DocType: Item Attribute Value,Attribute Value,Vrednosti atributa apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","Email id mora biti edinstven, že obstaja za {0}" ,Itemwise Recommended Reorder Level,Itemwise Priporočena Preureditev Raven -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,"Prosimo, izberite {0} najprej" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,"Prosimo, izberite {0} najprej" DocType: Features Setup,To get Item Group in details table,Da bi dobili item Group v podrobnosti tabeli apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Serija {0} od Postavka {1} je potekla. DocType: Sales Invoice,Commission,Komisija @@ -3190,7 +3199,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Pridobite Neporavnane bonov DocType: Warranty Claim,Resolved By,Rešujejo s DocType: Appraisal,Start Date,Datum začetka -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Dodeli liste za obdobje. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Dodeli liste za obdobje. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Čeki in depoziti nepravilno izbil apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,"Kliknite tukaj, da se preveri" apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Račun {0}: ne moreš sam dodeliti kot matično račun @@ -3210,7 +3219,7 @@ DocType: Employee,Educational Qualification,Izobraževalni Kvalifikacije DocType: Workstation,Operating Costs,Obratovalni stroški DocType: Employee Leave Approver,Employee Leave Approver,Zaposleni Leave odobritelj apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} je bil uspešno dodan v seznam novice. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Vrstica {0}: Vpis Preureditev že obstaja za to skladišče {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Vrstica {0}: Vpis Preureditev že obstaja za to skladišče {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Ne more razglasiti kot izgubljena, ker je bil predračun postavil." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Nakup Master Manager apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Proizvodnja naročite {0} je treba predložiti @@ -3234,7 +3243,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Prodaja Račun {0} je že bila predložena apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,datum dokončanja DocType: Purchase Invoice Item,Amount (Company Currency),Znesek (družba Valuta) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,"Organizacijska enota (oddelek), master." +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,"Organizacijska enota (oddelek), master." apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Vnesite veljavne mobilne nos DocType: Budget Detail,Budget Detail,Proračun Detail apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,Vnesite sporočilo pred pošiljanjem @@ -3250,13 +3259,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Prejme in potrdi ,Serial No Service Contract Expiry,Zaporedna številka Service Contract preteka DocType: Item,Unit of Measure Conversion,Merska enota konverzijo apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Delavec se ne more spremeniti -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,"Ne, ne moreš kreditnih in debetnih isti račun ob istem času" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,"Ne, ne moreš kreditnih in debetnih isti račun ob istem času" DocType: Naming Series,Help HTML,Pomoč HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Skupaj weightage dodeljena mora biti 100%. To je {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Dodatek za prekomerno {0} prečkal za postavko {1} DocType: Address,Name of person or organization that this address belongs to.,"Ime osebe ali organizacije, ki ta naslov pripada." apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Vaše Dobavitelji -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,"Ni mogoče nastaviti kot izgubili, kot je narejena Sales Order." +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,"Ni mogoče nastaviti kot izgubili, kot je narejena Sales Order." apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,"Drug Plača Struktura {0} je aktiven na zaposlenega {1}. Prosimo, da se njegov status "neaktivno" za nadaljevanje." DocType: Purchase Invoice,Contact,Kontakt apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Prejela od @@ -3266,11 +3275,11 @@ DocType: Item,Has Serial No,Ima Serijska št DocType: Employee,Date of Issue,Datum izdaje apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: Od {0} za {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Vrstica # {0}: Nastavite Dobavitelj za postavko {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Spletna stran slike {0} pritrjena na postavki {1} ni mogoče najti +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Spletna stran slike {0} pritrjena na postavki {1} ni mogoče najti DocType: Issue,Content Type,Vrsta vsebine apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Računalnik DocType: Item,List this Item in multiple groups on the website.,Seznam ta postavka v več skupinah na spletni strani. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,"Prosimo, preverite Multi Valuta možnost, da se omogoči račune pri drugi valuti" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,"Prosimo, preverite Multi Valuta možnost, da se omogoči račune pri drugi valuti" apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Postavka: {0} ne obstaja v sistemu apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Nimate dovoljenja za nastavitev Zamrznjena vrednost DocType: Payment Reconciliation,Get Unreconciled Entries,Pridobite neusklajene vnose @@ -3280,14 +3289,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Kaj to nared DocType: Delivery Note,To Warehouse,Za skladišča apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Račun {0} je bila vpisan več kot enkrat za fiskalno leto {1} ,Average Commission Rate,Povprečen Komisija Rate -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,"Ima Serial ne" ne more biti 'Da' za ne-parka postavko +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,"Ima Serial ne" ne more biti 'Da' za ne-parka postavko apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Udeležba ni mogoče označiti za prihodnje datume DocType: Pricing Rule,Pricing Rule Help,Cen Pravilo Pomoč DocType: Purchase Taxes and Charges,Account Head,Račun Head apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Posodobite dodatnih stroškov za izračun iztovori stroške predmetov apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Električno DocType: Stock Entry,Total Value Difference (Out - In),Skupna vrednost Razlika (Out - IN) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Vrstica {0}: Menjalni tečaj je obvezen +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Vrstica {0}: Menjalni tečaj je obvezen apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},ID uporabnika ni nastavljena za Employee {0} DocType: Stock Entry,Default Source Warehouse,Privzeto Vir Skladišče DocType: Item,Customer Code,Koda za stranke @@ -3306,15 +3315,15 @@ DocType: Notification Control,Sales Invoice Message,Prodaja Račun Sporočilo apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Zapiranje račun {0} mora biti tipa odgovornosti / kapital DocType: Authorization Rule,Based On,Temelji na DocType: Sales Order Item,Ordered Qty,Naročeno Kol -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Postavka {0} je onemogočena +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Postavka {0} je onemogočena DocType: Stock Settings,Stock Frozen Upto,Stock Zamrznjena Stanuje apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},"Obdobje Od in obdobje, da datumi obvezne za ponavljajoče {0}" apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Projektna dejavnost / naloga. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Ustvarjajo plače kombineže +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Ustvarjajo plače kombineže apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Odkup je treba preveriti, če se uporablja za izbrana kot {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,"Popust, mora biti manj kot 100" DocType: Purchase Invoice,Write Off Amount (Company Currency),Napišite enkratni znesek (družba Valuta) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Vrstica # {0}: Prosim nastavite naročniško količino +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Vrstica # {0}: Prosim nastavite naročniško količino DocType: Landed Cost Voucher,Landed Cost Voucher,Pristali Stroški bon apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},"Prosim, nastavite {0}" DocType: Purchase Invoice,Repeat on Day of Month,Ponovite na dan Meseca @@ -3366,7 +3375,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Privzeto Delo v skladišču napredku apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Privzete nastavitve za računovodske posle. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Pričakovani datum ne more biti pred Material Request Datum -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Postavka {0} mora biti Sales postavka +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Postavka {0} mora biti Sales postavka DocType: Naming Series,Update Series Number,Posodobitev Series Število DocType: Account,Equity,Kapital DocType: Sales Order,Printing Details,Tiskanje Podrobnosti @@ -3418,7 +3427,7 @@ DocType: Task,Review Date,Pregled Datum DocType: Purchase Invoice,Advance Payments,Predplačila DocType: Purchase Taxes and Charges,On Net Total,On Net Total apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Ciljna skladišče v vrstici {0} mora biti enaka kot Production reda -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Ni dovoljenja za uporabo plačilnega orodje +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Ni dovoljenja za uporabo plačilnega orodje apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,"Obvestilo o e-poštni naslovi" niso določeni za ponavljajoče% s apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,"Valuta ni mogoče spremeniti, potem ko vnose uporabljate kakšno drugo valuto" DocType: Company,Round Off Account,Zaokrožijo račun @@ -3441,7 +3450,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Količina postavke pridobljeno po proizvodnji / prepakiranja iz danih količin surovin DocType: Payment Reconciliation,Receivable / Payable Account,Terjatve / plačljivo račun DocType: Delivery Note Item,Against Sales Order Item,Proti Sales Order Postavka -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},"Prosimo, navedite Lastnost vrednost za atribut {0}" +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},"Prosimo, navedite Lastnost vrednost za atribut {0}" DocType: Item,Default Warehouse,Privzeto Skladišče DocType: Task,Actual End Date (via Time Logs),Dejanski končni datum (via Čas Dnevniki) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Proračun ne more biti dodeljena pred Group račun {0} @@ -3466,10 +3475,10 @@ DocType: Lead,Blog Subscriber,Blog Subscriber apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,"Ustvarite pravila za omejitev transakcije, ki temeljijo na vrednotah." DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Če je označeno, Total no. delovnih dni bo vključeval praznike, in to se bo zmanjšala vrednost plač dan na" DocType: Purchase Invoice,Total Advance,Skupaj Advance -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Predelava na izplačane plače +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Predelava na izplačane plače DocType: Opportunity Item,Basic Rate,Osnovni tečaj DocType: GL Entry,Credit Amount,Credit Znesek -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Nastavi kot Lost +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Nastavi kot Lost apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Prejem plačilnih Note DocType: Supplier,Credit Days Based On,Kreditne dni na podlagi DocType: Tax Rule,Tax Rule,Davčna Pravilo @@ -3499,7 +3508,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Accepted Količina apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} ne obstaja apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Računi zbrana strankam. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Id projekt -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Vrstica št {0}: količina ne more biti večja od Dokler Znesek proti Expense zahtevka {1}. Dokler Znesek je {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Vrstica št {0}: količina ne more biti večja od Dokler Znesek proti Expense zahtevka {1}. Dokler Znesek je {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} naročnikov dodane DocType: Maintenance Schedule,Schedule,Urnik DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Določite proračun za to stroškovno mesto. Če želite nastaviti proračunske ukrepe, glejte "Seznam Company"" @@ -3560,19 +3569,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS profila DocType: Payment Gateway Account,Payment URL Message,Plačilo URL Sporočilo apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Sezonskost za nastavitev proračunov, cilji itd" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Vrstica {0}: Plačilo Znesek ne sme biti večja od neporavnanega zneska +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Vrstica {0}: Plačilo Znesek ne sme biti večja od neporavnanega zneska apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Skupaj Neplačana -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Čas Log ni plačljivih -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Postavka {0} je predlogo, izberite eno od njenih različic" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Čas Log ni plačljivih +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Postavka {0} je predlogo, izberite eno od njenih različic" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Kupec apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Neto plača ne more biti negativna -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Prosimo ročno vnesti s knjigovodskimi +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Prosimo ročno vnesti s knjigovodskimi DocType: SMS Settings,Static Parameters,Statični Parametri DocType: Purchase Order,Advance Paid,Advance Paid DocType: Item,Item Tax,Postavka Tax apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Material za dobavitelja apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Trošarina Račun DocType: Expense Claim,Employees Email Id,Zaposleni Email Id +DocType: Employee Attendance Tool,Marked Attendance,markirana Udeležba apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Kratkoročne obveznosti apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Pošlji množično SMS vaših stikov DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Razmislite davek ali dajatev za @@ -3595,7 +3605,7 @@ DocType: Item Attribute,Numeric Values,Numerične vrednosti apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Priložite Logo DocType: Customer,Commission Rate,Komisija Rate apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Naredite Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Aplikacije blok dopustu oddelka. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Aplikacije blok dopustu oddelka. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Košarica je Prazna DocType: Production Order,Actual Operating Cost,Dejanski operacijski stroškov apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Root ni mogoče urejati. @@ -3614,7 +3624,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,Samodejno ustvari Material Zahtevaj če količina pade pod to raven ,Item-wise Purchase Register,Element-pametno Nakup Registriraj se DocType: Batch,Expiry Date,Rok uporabnosti -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Če želite nastaviti raven naročanje, mora postavka biti Nakup Postavka ali Manufacturing Postavka" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Če želite nastaviti raven naročanje, mora postavka biti Nakup Postavka ali Manufacturing Postavka" ,Supplier Addresses and Contacts,Dobavitelj Naslovi apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,"Prosimo, izberite kategorijo najprej" apps/erpnext/erpnext/config/projects.py +18,Project master.,Master projekt. diff --git a/erpnext/translations/sq.csv b/erpnext/translations/sq.csv index 5d1d634e72..5f0cbe15fa 100644 --- a/erpnext/translations/sq.csv +++ b/erpnext/translations/sq.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,Kreditit në kompanis DocType: Delivery Note,Installation Status,Instalimi Statusi apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Pranuar + Refuzuar Qty duhet të jetë e barabartë me sasinë e pranuara për Item {0} DocType: Item,Supply Raw Materials for Purchase,Furnizimit të lëndëve të para për Blerje -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Item {0} duhet të jetë një Item Blerje +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Item {0} duhet të jetë një Item Blerje DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Shkarko template, plotësoni të dhënat e duhura dhe të bashkëngjitni e tanishëm. Të gjitha datat dhe punonjës kombinim në periudhën e zgjedhur do të vijë në template, me të dhënat ekzistuese frekuentimit" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,Item {0} nuk është aktiv apo fundi i jetës është arritur DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Do të rifreskohet pas Sales Fatura është dorëzuar. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Të përfshijnë tatimin në rresht {0} në shkallën Item, taksat në rreshtat {1} duhet të përfshihen edhe" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Cilësimet për HR Module +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Të përfshijnë tatimin në rresht {0} në shkallën Item, taksat në rreshtat {1} duhet të përfshihen edhe" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Cilësimet për HR Module DocType: SMS Center,SMS Center,SMS Center DocType: BOM Replace Tool,New BOM,Bom i ri apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Batch Koha Shkrime për faturim. @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,Zgjidhni Termat dhe Kushtet DocType: Production Planning Tool,Sales Orders,Sales Urdhërat DocType: Purchase Taxes and Charges,Valuation,Vlerësim ,Purchase Order Trends,Rendit Blerje Trendet -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Alokimi i lë për vitin. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Alokimi i lë për vitin. DocType: Earning Type,Earning Type,Fituar Type DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Planifikimi Disable kapaciteteve dhe Ndjekja Koha DocType: Bank Reconciliation,Bank Account,Llogarisë Bankare @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Item Faqja Specifikimi DocType: Payment Tool,Reference No,Referenca Asnjë apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Lini Blocked -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Item {0} ka arritur në fund të saj të jetës në {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Item {0} ka arritur në fund të saj të jetës në {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Vjetor DocType: Stock Reconciliation Item,Stock Reconciliation Item,Stock Pajtimi Item DocType: Stock Entry,Sales Invoice No,Shitjet Faturë Asnjë @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,Minimale Rendit Qty DocType: Pricing Rule,Supplier Type,Furnizuesi Type DocType: Item,Publish in Hub,Publikojë në Hub ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Item {0} është anuluar +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Item {0} është anuluar apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Kërkesë materiale DocType: Bank Reconciliation,Update Clearance Date,Update Pastrimi Data DocType: Item,Purchase Details,Detajet Blerje @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Sasi të refuzuar DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Fusha në dispozicion në notën shpërndarëse, citat, Sales Faturës, Rendit Sales" DocType: SMS Settings,SMS Sender Name,SMS Sender Emri DocType: Contact,Is Primary Contact,Është Kontaktoni Primar +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Koha Log ka qenë në pako për Billing DocType: Notification Control,Notification Control,Kontrolli Njoftim DocType: Lead,Suggestions,Sugjerime DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Set Item buxhetet Grupi-i mençur në këtë territor. Ju gjithashtu mund të përfshijë sezonalitetin duke vendosur të Shpërndarjes. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},Ju lutemi shkruani grup llogari prind për depo {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Pagesës kundër {0} {1} nuk mund të jetë më i madh se Outstanding Sasia {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Pagesës kundër {0} {1} nuk mund të jetë më i madh se Outstanding Sasia {2} DocType: Supplier,Address HTML,Adresa HTML DocType: Lead,Mobile No.,Mobile Nr DocType: Maintenance Schedule,Generate Schedule,Generate Orari @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Synced Me Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Gabuar Fjalëkalimi DocType: Item,Variant Of,Variant i -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Item {0} duhet të jetë i Shërbimit Item apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',Kompletuar Qty nuk mund të jetë më i madh se "Qty për Prodhimi" DocType: Period Closing Voucher,Closing Account Head,Mbyllja Shef Llogaria DocType: Employee,External Work History,Historia e jashtme @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,Newsletter DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Njoftojë me email për krijimin e kërkesës automatike materiale DocType: Journal Entry,Multi Currency,Multi Valuta DocType: Payment Reconciliation Invoice,Invoice Type,Lloji Faturë -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Ofrimit Shënim +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Ofrimit Shënim apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Ngritja Tatimet apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,"Pagesa Hyrja është ndryshuar, pasi që ju nxorrën atë. Ju lutemi të tërheqë atë përsëri." -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} hyrë dy herë në Tatimin Item +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} hyrë dy herë në Tatimin Item apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Përmbledhje për këtë javë dhe aktivitete në pritje DocType: Workstation,Rent Cost,Qira Kosto apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,"Ju lutem, përzgjidhni muaji dhe viti" @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,I vlefshëm për vendet DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Të gjitha fushat e importit që kanë të bëjnë si monedhë, norma e konvertimit, gjithsej importit, importi i madh etj përgjithshëm janë në dispozicion në pranimin Blerje, Furnizuesi Kuotim, Blerje Faturës, Rendit Blerje etj" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,Ky artikull është një Template dhe nuk mund të përdoret në transaksionet. Atribute pika do të kopjohet gjatë në variantet nëse nuk është vendosur "Jo Copy ' apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Rendit Gjithsej konsideruar -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Përcaktimi Punonjës (p.sh. CEO, drejtor etj)." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Përcaktimi Punonjës (p.sh. CEO, drejtor etj)." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,Ju lutemi shkruani 'Përsëriteni në Ditën e Muajit "në terren vlerë DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,Shkalla në të cilën Valuta Customer është konvertuar në bazë monedhën klientit DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Në dispozicion në bom, ofrimit Shënim, Blerje Faturës, Rendit Prodhimi, Rendit Blerje, pranimin Blerje, Sales Faturës, Sales Rendit, Stock Hyrja, pasqyrë e mungesave" @@ -355,7 +355,7 @@ DocType: Workstation,Consumable Cost,Kosto harxhuese apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) duhet të ketë rol 'Leave aprovuesi' DocType: Purchase Receipt,Vehicle Date,Data e Automjeteve apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Mjekësor -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Arsyeja për humbjen +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Arsyeja për humbjen apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Workstation është i mbyllur në datat e mëposhtme sipas Holiday Lista: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Mundësitë DocType: Employee,Single,I vetëm @@ -383,14 +383,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Channel Partner DocType: Account,Old Parent,Vjetër Parent DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,Rregulloje tekstin hyrës që shkon si një pjesë e asaj email. Secili transaksion ka një tekst të veçantë hyrëse. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),A nuk përfshin simbole (ex. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Sales Master Menaxher apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Konfigurimet Global për të gjitha proceset e prodhimit. DocType: Accounts Settings,Accounts Frozen Upto,Llogaritë ngrira Upto DocType: SMS Log,Sent On,Dërguar në -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Atribut {0} zgjedhur disa herë në atributet Tabelën +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Atribut {0} zgjedhur disa herë në atributet Tabelën DocType: HR Settings,Employee record is created using selected field. ,Rekord punonjës është krijuar duke përdorur fushën e zgjedhur. DocType: Sales Order,Not Applicable,Nuk aplikohet -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Mjeshtër pushime. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Mjeshtër pushime. DocType: Material Request Item,Required Date,Data e nevojshme DocType: Delivery Note,Billing Address,Faturimi Adresa apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,Ju lutemi shkruani kodin artikull. @@ -426,7 +427,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,Ju lutem shkruani Magazina për të cilat do të ngrihen materiale Kërkesë DocType: Production Order,Additional Operating Cost,Shtesë Kosto Operative apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Kozmetikë -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Të bashkojë, pronat e mëposhtme duhet të jenë të njëjta për të dy artikujve" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Të bashkojë, pronat e mëposhtme duhet të jenë të njëjta për të dy artikujve" DocType: Shipping Rule,Net Weight,Net Weight DocType: Employee,Emergency Phone,Urgjencës Telefon ,Serial No Warranty Expiry,Serial No Garanci Expiry @@ -481,17 +482,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Faturimi dhe dorëzimit Statusi apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Konsumatorët të përsëritur DocType: Leave Control Panel,Allocate,Alokimi -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Shitjet Kthehu +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Shitjet Kthehu DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Zgjidh urdhëron shitjet nga të cilat ju doni të krijoni urdhërat e prodhimit. DocType: Item,Delivered by Supplier (Drop Ship),Dorëzuar nga Furnizuesi (Drop Ship) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Komponentët e pagave. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Komponentët e pagave. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Baza e të dhënave të konsumatorëve potencial. DocType: Authorization Rule,Customer or Item,Customer ose Item apps/erpnext/erpnext/config/crm.py +17,Customer database.,Baza e të dhënave të konsumatorëve. DocType: Quotation,Quotation To,Citat Për DocType: Lead,Middle Income,Të ardhurat e Mesme apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Hapja (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Default njësinë e matjes për artikullit {0} nuk mund të ndryshohet drejtpërdrejt sepse ju keni bërë tashmë një transaksioni (et) me një tjetër UOM. Ju do të duhet për të krijuar një artikull të ri për të përdorur një Default ndryshme UOM. +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Default njësinë e matjes për artikullit {0} nuk mund të ndryshohet drejtpërdrejt sepse ju keni bërë tashmë një transaksioni (et) me një tjetër UOM. Ju do të duhet për të krijuar një artikull të ri për të përdorur një Default ndryshme UOM. apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Shuma e ndarë nuk mund të jetë negative DocType: Purchase Order Item,Billed Amt,Faturuar Amt DocType: Warehouse,A logical Warehouse against which stock entries are made.,Një Magazina logjik kundër të cilit janë bërë të hyra të aksioneve. @@ -510,14 +511,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Shitjet Taksat dhe Tarifat DocType: Employee,Organization Profile,Organizata Profilin apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,Ju lutem Setup numëron seri për Pjesëmarrja nëpërmjet Setup> Numërimi Series DocType: Employee,Reason for Resignation,Arsyeja për dorëheqjen -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Template për vlerësimit të punës. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Template për vlerësimit të punës. DocType: Payment Reconciliation,Invoice/Journal Entry Details,Fatura / Journal Hyrja Detajet apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' nuk është në Vitin Fiskal {2} DocType: Buying Settings,Settings for Buying Module,Cilësimet për Blerja Module apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,Ju lutemi shkruani vërtetim Blerje parë DocType: Buying Settings,Supplier Naming By,Furnizuesi Emërtimi By DocType: Activity Type,Default Costing Rate,Default kushton Vlerësoni -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Mirëmbajtja Orari +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Mirëmbajtja Orari apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Pastaj Çmimeve Rregullat janë filtruar në bazë të konsumatorëve, Grupi Customer, Territorit, Furnizuesin, Furnizuesi Lloji, fushatën, Sales Partner etj" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Ndryshimi neto në Inventarin DocType: Employee,Passport Number,Pasaporta Numri @@ -556,7 +557,7 @@ DocType: Purchase Invoice,Quarterly,Tremujor DocType: Selling Settings,Delivery Note Required,Ofrimit Shënim kërkuar DocType: Sales Order Item,Basic Rate (Company Currency),Norma bazë (Kompania Valuta) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush të lëndëve të para në bazë të -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,Ju lutem shkruani të dhënat pika +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,Ju lutem shkruani të dhënat pika DocType: Purchase Receipt,Other Details,Detaje të tjera DocType: Account,Accounts,Llogaritë apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Marketing @@ -569,7 +570,7 @@ DocType: Employee,Provide email id registered in company,Sigurojë id mail regji DocType: Hub Settings,Seller City,Shitës qytetit DocType: Email Digest,Next email will be sent on:,Email ardhshëm do të dërgohet në: DocType: Offer Letter Term,Offer Letter Term,Oferta Letër Term -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Item ka variante. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Item ka variante. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Item {0} nuk u gjet DocType: Bin,Stock Value,Stock Vlera apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Tree Type @@ -577,7 +578,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Qty konsumuar për njësi DocType: Serial No,Warranty Expiry Date,Garanci Data e skadimit DocType: Material Request Item,Quantity and Warehouse,Sasia dhe Magazina DocType: Sales Invoice,Commission Rate (%),Vlerësoni komision (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Kundër Bonon Lloji duhet të jetë një nga Sales Rendit, Sales Fatura ose Journal Hyrja" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Kundër Bonon Lloji duhet të jetë një nga Sales Rendit, Sales Fatura ose Journal Hyrja" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Hapësirës ajrore DocType: Journal Entry,Credit Card Entry,Credit Card Hyrja apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Detyra Subjekt @@ -645,10 +646,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Detyrim apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Shuma e sanksionuar nuk mund të jetë më e madhe se shuma e kërkesës në Row {0}. DocType: Company,Default Cost of Goods Sold Account,Gabim Kostoja e mallrave të shitura Llogaria -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Lista e Çmimeve nuk zgjidhet +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Lista e Çmimeve nuk zgjidhet DocType: Employee,Family Background,Historiku i familjes DocType: Process Payroll,Send Email,Dërgo Email -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Warning: Attachment Invalid {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Warning: Attachment Invalid {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Nuk ka leje DocType: Company,Default Bank Account,Gabim Llogarisë Bankare apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Për të filtruar në bazë të Partisë, Partia zgjidhni llojin e parë" @@ -676,7 +677,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Mbës DocType: Features Setup,"To enable ""Point of Sale"" features",Për të mundësuar "Pika e Shitjes" karakteristika DocType: Bin,Moving Average Rate,Moving norma mesatare DocType: Production Planning Tool,Select Items,Zgjidhni Items -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},"{0} kundër Bill {1} {2}, datë" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},"{0} kundër Bill {1} {2}, datë" DocType: Maintenance Visit,Completion Status,Përfundimi Statusi DocType: Sales Invoice Item,Target Warehouse,Target Magazina DocType: Item,Allow over delivery or receipt upto this percent,Lejo mbi ofrimin ose pranimin upto këtë qind @@ -736,7 +737,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Kurs apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Në pamundësi për të gjetur vend i caktuar kohë në {0} ditëve të ardhshme për funksionimin {1} DocType: Production Order,Plan material for sub-assemblies,Materiali plan për nën-kuvendet apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} duhet të jetë aktiv -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,Ju lutem zgjidhni llojin e dokumentit të parë +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Ju lutem zgjidhni llojin e dokumentit të parë apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Goto Shporta apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Anuloje Vizitat Materiale {0} para anulimit të kësaj vizite Mirëmbajtja DocType: Salary Slip,Leave Encashment Amount,Lini arkëtim Shuma @@ -754,7 +755,7 @@ DocType: Purchase Receipt,Range,Varg DocType: Supplier,Default Payable Accounts,Default Llogaritë e pagueshme apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Punonjës {0} nuk është aktiv apo nuk ekziston DocType: Features Setup,Item Barcode,Item Barkodi -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Item Variantet {0} përditësuar +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Item Variantet {0} përditësuar DocType: Quality Inspection Reading,Reading 6,Leximi 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Blerje Faturë Advance DocType: Address,Shop,Dyqan @@ -777,7 +778,7 @@ DocType: Salary Slip,Total in words,Gjithsej në fjalë DocType: Material Request Item,Lead Time Date,Lead Data Koha apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,është i detyrueshëm. Ndoshta rekord Currency Exchange nuk është krijuar për apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Row # {0}: Ju lutem specifikoni Serial Jo për Item {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Për sendet e 'Produkt Bundle', depo, pa serial dhe Serisë Nuk do të konsiderohet nga 'Paketimi listë' tryezë. Nëse Magazina dhe Serisë Nuk janë të njëjta për të gjitha sendet e paketimit për çdo send 'produkt Bundle', këto vlera mund të futen në tabelën kryesore Item, vlerat do të kopjohet në 'Paketimi listë' tryezë." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Për sendet e 'Produkt Bundle', depo, pa serial dhe Serisë Nuk do të konsiderohet nga 'Paketimi listë' tryezë. Nëse Magazina dhe Serisë Nuk janë të njëjta për të gjitha sendet e paketimit për çdo send 'produkt Bundle', këto vlera mund të futen në tabelën kryesore Item, vlerat do të kopjohet në 'Paketimi listë' tryezë." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Dërgesat për klientët. DocType: Purchase Invoice Item,Purchase Order Item,Rendit Blerje Item apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Të ardhurat indirekte @@ -798,6 +799,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Zgjidh pagave vit dhe Mua apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Shko në grupin e duhur (zakonisht Aplikimi i Fondeve> asetet aktuale> llogaritë bankare dhe për të krijuar një llogari të re (duke klikuar mbi Shto fëmijë) të tipit "Banka" DocType: Workstation,Electricity Cost,Kosto të energjisë elektrike DocType: HR Settings,Don't send Employee Birthday Reminders,Mos dërgoni punonjës Ditëlindja Përkujtesat +,Employee Holiday Attendance,Punonjës Festa Pjesëmarrja DocType: Opportunity,Walk In,Ecni Në apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Stock Entries DocType: Item,Inspection Criteria,Kriteret e Inspektimit @@ -820,7 +822,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,S DocType: Journal Entry Account,Expense Claim,Shpenzim Claim apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Qty për {0} DocType: Leave Application,Leave Application,Lini Aplikimi -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Lini Alokimi Tool +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Lini Alokimi Tool DocType: Leave Block List,Leave Block List Dates,Dërgo Block Lista Datat DocType: Company,If Monthly Budget Exceeded (for expense account),Nëse tejkaluar buxhetin mujor (për llogari shpenzim) DocType: Workstation,Net Hour Rate,Shkalla neto Ore @@ -830,7 +832,7 @@ DocType: Packing Slip Item,Packing Slip Item,Paketimi Shqip Item DocType: POS Profile,Cash/Bank Account,Cash / Llogarisë Bankare apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Artikuj hequr me asnjë ndryshim në sasi ose në vlerë. DocType: Delivery Note,Delivery To,Ofrimit të -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Tabela atribut është i detyrueshëm +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Tabela atribut është i detyrueshëm DocType: Production Planning Tool,Get Sales Orders,Get Sales urdhëron apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} nuk mund të jetë negative apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Zbritje @@ -894,7 +896,7 @@ DocType: SMS Center,Total Characters,Totali Figurë apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},"Ju lutem, përzgjidhni bom në fushën BOM për Item {0}" DocType: C-Form Invoice Detail,C-Form Invoice Detail,Detail C-Forma Faturë DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Pagesa Pajtimi Faturë -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Kontributi% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Kontributi% DocType: Item,website page link,faqe e internetit lidhje DocType: Company,Company registration numbers for your reference. Tax numbers etc.,Numrat e regjistrimit kompani për referencë tuaj. Numrat e taksave etj DocType: Sales Partner,Distributor,Shpërndarës @@ -936,10 +938,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM Konvertimi Faktori DocType: Stock Settings,Default Item Group,Gabim Item Grupi apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Bazës së të dhënave Furnizuesi. DocType: Account,Balance Sheet,Bilanci i gjendjes -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Qendra Kosto Per Item me Kodin Item " +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Qendra Kosto Per Item me Kodin Item " DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,Personi i shitjes juaj do të merrni një kujtesë në këtë datë të kontaktoni klientin apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Llogaritë e mëtejshme mund të bëhen në bazë të grupeve, por hyra mund të bëhet kundër jo-grupeve" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Tatimore dhe zbritjet e tjera të pagave. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Tatimore dhe zbritjet e tjera të pagave. DocType: Lead,Lead,Lead DocType: Email Digest,Payables,Pagueshme DocType: Account,Warehouse,Depo @@ -956,10 +958,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Detajet e pagesës DocType: Global Defaults,Current Fiscal Year,Vitin aktual fiskal DocType: Global Defaults,Disable Rounded Total,Disable rrumbullakosura Total DocType: Lead,Call,Thirrje -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,"Hyrjet" nuk mund të jetë bosh +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,"Hyrjet" nuk mund të jetë bosh apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Duplicate rresht {0} me të njëjtën {1} ,Trial Balance,Bilanci gjyqi -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Ngritja Punonjësit +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Ngritja Punonjësit apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid """,Grid " apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,"Ju lutem, përzgjidhni prefiks parë" apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Hulumtim @@ -968,7 +970,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,User ID apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Shiko Ledger apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Hershme -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Një Grup Item ekziston me të njëjtin emër, ju lutemi të ndryshojë emrin pika ose riemërtoj grupin pika" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Një Grup Item ekziston me të njëjtin emër, ju lutemi të ndryshojë emrin pika ose riemërtoj grupin pika" DocType: Production Order,Manufacture against Sales Order,Prodhimi kundër Sales Rendit apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Pjesa tjetër e botës apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,Item {0} nuk mund të ketë Serisë @@ -993,7 +995,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Magazina refuzuar DocType: GL Entry,Against Voucher,Kundër Bonon DocType: Item,Default Buying Cost Center,Gabim Qendra Blerja Kosto apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Për të marrë më të mirë nga ERPNext, ne ju rekomandojmë që të marrë disa kohë dhe të shikojnë këto video ndihmë." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Item {0} duhet të jetë i artikullit Sales +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Item {0} duhet të jetë i artikullit Sales apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,në DocType: Item,Lead Time in days,Lead Koha në ditë ,Accounts Payable Summary,Llogaritë e pagueshme Përmbledhje @@ -1019,7 +1021,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Bujqësi apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Produktet ose shërbimet tuaja DocType: Mode of Payment,Mode of Payment,Mënyra e pagesës -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Faqja Image duhet të jetë një file publik ose URL website +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Faqja Image duhet të jetë një file publik ose URL website apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,Ky është një grup artikull rrënjë dhe nuk mund të redaktohen. DocType: Journal Entry Account,Purchase Order,Rendit Blerje DocType: Warehouse,Warehouse Contact Info,Magazina Kontaktimit @@ -1030,7 +1032,7 @@ DocType: Serial No,Serial No Details,Serial No Detajet DocType: Purchase Invoice Item,Item Tax Rate,Item Tax Rate apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","Për {0}, vetëm llogaritë e kreditit mund të jetë i lidhur kundër një tjetër hyrje debiti" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Ofrimit Shënim {0} nuk është dorëzuar -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Item {0} duhet të jetë një nënkontraktohet Item +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Item {0} duhet të jetë një nënkontraktohet Item apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Pajisje kapitale apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Rregulla e Çmimeve është zgjedhur për herë të parë në bazë të "Apliko në 'fushë, të cilat mund të jenë të artikullit, Grupi i artikullit ose markë." DocType: Hub Settings,Seller Website,Shitës Faqja @@ -1039,7 +1041,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Qëllim DocType: Sales Invoice Item,Edit Description,Ndrysho Përshkrimi apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Pritet Data e dorëzimit është më e vogël se sa ishte planifikuar Data e fillimit. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,Për Furnizuesin +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,Për Furnizuesin DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Vendosja Tipi Llogarisë ndihmon në zgjedhjen e kësaj llogarie në transaksionet. DocType: Purchase Invoice,Grand Total (Company Currency),Grand Total (Kompania Valuta) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Largohet Total @@ -1091,7 +1093,6 @@ DocType: Authorization Rule,Average Discount,Discount mesatar DocType: Address,Utilities,Shërbime komunale DocType: Purchase Invoice Item,Accounting,Llogaritje DocType: Features Setup,Features Setup,Features Setup -DocType: Item,Is Service Item,Është Shërbimi i artikullit apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Periudha e aplikimit nuk mund të jetë periudhë ndarja leje jashtë DocType: Activity Cost,Projects,Projektet apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,"Ju lutem, përzgjidhni Viti Fiskal" @@ -1112,7 +1113,7 @@ DocType: Item,Maintain Stock,Ruajtja Stock apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Stock Entries krijuar tashmë për Rendin Production apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Ndryshimi neto në aseteve fikse DocType: Leave Control Panel,Leave blank if considered for all designations,Lini bosh nëse konsiderohet për të gjitha përcaktimeve -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Ngarkesa e tipit 'aktuale' në rresht {0} nuk mund të përfshihen në Item Rate +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Ngarkesa e tipit 'aktuale' në rresht {0} nuk mund të përfshihen në Item Rate apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Nga datetime DocType: Email Digest,For Company,Për Kompaninë @@ -1121,8 +1122,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Transporti Adresa Emri apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Lista e Llogarive DocType: Material Request,Terms and Conditions Content,Termat dhe Kushtet Përmbajtja -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,nuk mund të jetë më i madh se 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Item {0} nuk është një gjendje Item +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,nuk mund të jetë më i madh se 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Item {0} nuk është një gjendje Item DocType: Maintenance Visit,Unscheduled,Paplanifikuar DocType: Employee,Owned,Pronësi DocType: Salary Slip Deduction,Depends on Leave Without Pay,Varet në pushim pa pagesë @@ -1143,7 +1144,7 @@ Used for Taxes and Charges",Detaje taksave tryezë sforcuar nga mjeshtri pika si apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Punonjësi nuk mund të raportojnë për veten e tij. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Në qoftë se llogaria është e ngrirë, shënimet janë të lejuar për përdoruesit të kufizuara." DocType: Email Digest,Bank Balance,Bilanci bankë -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Hyrja Kontabiliteti për {0}: {1} mund të bëhen vetëm në monedhën: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Hyrja Kontabiliteti për {0}: {1} mund të bëhen vetëm në monedhën: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Asnjë Struktura Paga aktiv gjetur për punonjës {0} dhe muajit DocType: Job Opening,"Job profile, qualifications required etc.","Profili i punës, kualifikimet e nevojshme etj" DocType: Journal Entry Account,Account Balance,Bilanci i llogarisë @@ -1160,7 +1161,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Kuvendet Nën DocType: Shipping Rule Condition,To Value,Të vlerës DocType: Supplier,Stock Manager,Stock Menaxher apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Depo Burimi është i detyrueshëm për rresht {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Shqip Paketimi +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Shqip Paketimi apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Zyra Qira apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Setup SMS settings portë apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Import dështoi! @@ -1204,7 +1205,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,Bom Detail Asnjë DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Shtesë Shuma Discount (Valuta Company) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Gabim: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,Ju lutem të krijuar një llogari të re nga Chart e Llogarive. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Mirëmbajtja Vizitoni +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Mirëmbajtja Vizitoni apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Customer> Grupi Customer> Territori DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Batch dispozicion Qty në Magazina DocType: Time Log Batch Detail,Time Log Batch Detail,Koha Identifikohu Batch Detail @@ -1213,7 +1214,7 @@ DocType: Leave Block List,Block Holidays on important days.,Festat bllok në dit ,Accounts Receivable Summary,Llogaritë Arkëtueshme Përmbledhje apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,Ju lutemi të vendosur User fushë ID në një rekord të Punonjësve të vendosur Roli punonjës DocType: UOM,UOM Name,Emri UOM -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Shuma Kontribut +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Shuma Kontribut DocType: Sales Invoice,Shipping Address,Transporti Adresa DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,Ky mjet ju ndihmon për të rinovuar ose të rregulluar sasinë dhe vlerësimin e aksioneve në sistemin. Ajo është përdorur zakonisht për të sinkronizuar vlerat e sistemit dhe çfarë në të vërtetë ekziston në depo tuaj. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,Me fjalë do të jetë i dukshëm një herë ju ruani notën shpërndarëse. @@ -1254,7 +1255,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Për të gjetur objekte duke përdorur barcode. Ju do të jenë në gjendje për të hyrë artikuj në Shënimin shitjes dhe ofrimit të Faturës nga skanimi barcode e sendit. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Ridergo Pagesa Email DocType: Dependent Task,Dependent Task,Detyra e varur -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Faktori i konvertimit për Njësinë e parazgjedhur të Masës duhet të jetë 1 në rreshtin e {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Faktori i konvertimit për Njësinë e parazgjedhur të Masës duhet të jetë 1 në rreshtin e {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Pushimi i tipit {0} nuk mund të jetë më i gjatë se {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Provoni planifikimin e operacioneve për ditë X paraprakisht. DocType: HR Settings,Stop Birthday Reminders,Stop Ditëlindja Harroni @@ -1264,7 +1265,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Shiko apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Ndryshimi neto në para të gatshme DocType: Salary Structure Deduction,Salary Structure Deduction,Struktura e pagave Zbritje -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Njësia e masës {0} ka hyrë më shumë se një herë në Konvertimi Faktori Tabelën +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Njësia e masës {0} ka hyrë më shumë se një herë në Konvertimi Faktori Tabelën apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Kërkesa pagesa tashmë ekziston {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Kostoja e Artikujve emetuara apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Sasia nuk duhet të jetë më shumë se {0} @@ -1293,7 +1294,7 @@ DocType: BOM Item,BOM Item,Bom Item DocType: Appraisal,For Employee,Për punonjësit apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Row {0}: Advance kundër Furnizuesit duhet të debiti DocType: Company,Default Values,Vlerat Default -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Row {0}: Shuma e pagesës nuk mund të jetë negative +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Row {0}: Shuma e pagesës nuk mund të jetë negative DocType: Expense Claim,Total Amount Reimbursed,Shuma totale rimbursohen apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Kundër Furnizuesin Fatura {0} datë {1} DocType: Customer,Default Price List,E albumit Lista e Çmimeve @@ -1321,8 +1322,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Gar DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Replace një bom të veçantë në të gjitha BOM-in e tjera ku është përdorur. Ajo do të zëvendësojë vjetër linkun bom, Përditëso koston dhe rigjenerimin "bom Shpërthimi pika" tryezë si për të ri bom" DocType: Shopping Cart Settings,Enable Shopping Cart,Aktivizo Shporta DocType: Employee,Permanent Address,Adresa e përhershme -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Item {0} duhet të jetë një element i Shërbimit. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Advance paguar kundër {0} {1} nuk mund të jetë më e madhe \ se Grand Total {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Ju lutemi zgjidhni kodin pika DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Ulja e zbritjes për pushim pa pagesë (LWP) @@ -1378,12 +1378,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Kryesor apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Variant DocType: Naming Series,Set prefix for numbering series on your transactions,Prefiksi vendosur për numëron seri mbi transaksionet tuaja +DocType: Employee Attendance Tool,Employees HTML,punonjësit HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Urdhri u ndal nuk mund të anulohet. Heq tapën për të anulluar. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Gabim BOM ({0}) duhet të jetë aktiv për këtë artikull ose template saj +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Gabim BOM ({0}) duhet të jetë aktiv për këtë artikull ose template saj DocType: Employee,Leave Encashed?,Dërgo arkëtuar? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Opportunity Nga fushë është e detyrueshme DocType: Item,Variants,Variantet -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Bëni Rendit Blerje +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Bëni Rendit Blerje DocType: SMS Center,Send To,Send To apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Nuk ka bilanc mjaft leje për pushim Lloji {0} DocType: Payment Reconciliation Payment,Allocated amount,Shuma e ndarë @@ -1483,7 +1484,7 @@ DocType: Sales Person,Name and Employee ID,Emri dhe punonjës ID apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,Për shkak Data nuk mund të jetë para se të postimi Data DocType: Website Item Group,Website Item Group,Faqja kryesore Item Grupi apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Detyrat dhe Taksat -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,Ju lutem shkruani datën Reference +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,Ju lutem shkruani datën Reference apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Pagesa Gateway Llogaria nuk është i konfiguruar apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} shënimet e pagesës nuk mund të filtrohen nga {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,Tabela për çështje që do të shfaqet në Web Site @@ -1504,7 +1505,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Rezoluta Detajet DocType: Quality Inspection Reading,Acceptance Criteria,Kriteret e pranimit DocType: Item Attribute,Attribute Name,Atribut Emri -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Item {0} duhet të jetë i Sales ose shërbimi i artikullit në {1} DocType: Item Group,Show In Website,Shfaq Në Website apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Grup DocType: Task,Expected Time (in hours),Koha pritet (në orë) @@ -1536,7 +1536,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Shuma e anijeve ,Pending Amount,Në pritje Shuma DocType: Purchase Invoice Item,Conversion Factor,Konvertimi Faktori DocType: Purchase Order,Delivered,Dorëzuar -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Setup server hyrje për Punë email id. (P.sh. jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Setup server hyrje për Punë email id. (P.sh. jobs@example.com) DocType: Purchase Receipt,Vehicle Number,Numri i Automjeteve DocType: Purchase Invoice,The date on which recurring invoice will be stop,Data në të cilën përsëritura fatura do të ndalet apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Gjithsej gjethet e ndara {0} nuk mund të jetë më pak se gjethet tashmë të miratuara {1} për periudhën @@ -1553,7 +1553,7 @@ DocType: HR Settings,HR Settings,HR Cilësimet apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Shpenzim Kërkesa është në pritje të miratimit. Vetëm aprovuesi shpenzimeve mund update statusin. DocType: Purchase Invoice,Additional Discount Amount,Shtesë Shuma Discount DocType: Leave Block List Allow,Leave Block List Allow,Dërgo Block Lista Lejoni -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abbr nuk mund të jetë bosh ose hapësirë +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abbr nuk mund të jetë bosh ose hapësirë apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Grup për jo-Group apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Sportiv apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Gjithsej aktuale @@ -1577,7 +1577,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},Faktori UOM Konvertimi është e nevojshme në rresht {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Data Pastrimi nuk mund të jetë para datës Kontrolloni në rresht {0} DocType: Salary Slip,Deduction,Zbritje -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Item Çmimi shtuar për {0} në çmim Lista {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Item Çmimi shtuar për {0} në çmim Lista {1} DocType: Address Template,Address Template,Adresa Template apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,Ju lutemi shkruani punonjës Id i këtij personi të shitjes DocType: Territory,Classification of Customers by region,Klasifikimi i Konsumatorëve sipas rajonit @@ -1594,7 +1594,7 @@ DocType: Employee,Date of Birth,Data e lindjes apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Item {0} tashmë është kthyer DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** Viti Fiskal ** përfaqëson një viti financiar. Të gjitha shënimet e kontabilitetit dhe transaksionet tjera të mëdha janë gjurmuar kundër Vitit Fiskal ** **. DocType: Opportunity,Customer / Lead Address,Customer / Adresa Lead -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Warning: certifikatë SSL Invalid në shtojcën {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Warning: certifikatë SSL Invalid në shtojcën {0} DocType: Production Order Operation,Actual Operation Time,Aktuale Operacioni Koha DocType: Authorization Rule,Applicable To (User),Për të zbatueshme (User) DocType: Purchase Taxes and Charges,Deduct,Zbres @@ -1611,7 +1611,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Shënim Split dorëzimit në pako. apps/erpnext/erpnext/hooks.py +69,Shipments,Dërgesat DocType: Purchase Order Item,To be delivered to customer,Që do të dërgohen për të klientit -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Koha Identifikohu Statusi duhet të dorëzohet. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Koha Identifikohu Statusi duhet të dorëzohet. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,Serial Asnjë {0} nuk i përkasin ndonjë Magazina apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Row # DocType: Purchase Invoice,In Words (Company Currency),Me fjalë (Kompania Valuta) @@ -1628,7 +1628,7 @@ DocType: Leave Application,Total Leave Days,Ditët Totali i pushimeve DocType: Email Digest,Note: Email will not be sent to disabled users,Shënim: Email nuk do të dërgohet për përdoruesit me aftësi të kufizuara apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Zgjidh kompanisë ... DocType: Leave Control Panel,Leave blank if considered for all departments,Lini bosh nëse konsiderohet për të gjitha departamentet -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Llojet e punësimit (, kontratë të përhershme, etj intern)." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Llojet e punësimit (, kontratë të përhershme, etj intern)." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} është e detyrueshme për Item {1} DocType: Currency Exchange,From Currency,Nga Valuta apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Ju lutem, përzgjidhni Shuma e ndarë, tip fature, si dhe numrin e faturës në atleast një rresht" @@ -1647,7 +1647,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,Në Procesin DocType: Authorization Rule,Itemwise Discount,Itemwise Discount DocType: Purchase Order Item,Reference Document Type,Referenca Document Type -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} kundër Sales Rendit {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} kundër Sales Rendit {1} DocType: Account,Fixed Asset,Aseteve fikse apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Inventar serialized DocType: Activity Type,Default Billing Rate,Default Faturimi Vlerësoni @@ -1657,7 +1657,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Rendit Shitjet për Pagesa DocType: Expense Claim Detail,Expense Claim Detail,Shpenzim Kërkesa Detail apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Koha Shkrime krijuar: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,"Ju lutem, përzgjidhni llogarinë e saktë" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,"Ju lutem, përzgjidhni llogarinë e saktë" DocType: Item,Weight UOM,Pesha UOM DocType: Employee,Blood Group,Grup gjaku DocType: Purchase Invoice Item,Page Break,Faqe Pushim @@ -1692,7 +1692,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM recursion: {0} nuk mund të jetë prindi ose fëmija i {2} DocType: Production Order Operation,Completed Qty,Kompletuar Qty apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","Për {0}, vetëm llogaritë e debitit mund të jetë i lidhur kundër një tjetër hyrjes krediti" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Lista e Çmimeve {0} është me aftësi të kufizuara +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Lista e Çmimeve {0} është me aftësi të kufizuara DocType: Manufacturing Settings,Allow Overtime,Lejo jashtë orarit apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} Numrat Serial nevojshme për Item {1}. Ju keni dhënë {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Shkalla aktuale Vlerësimi @@ -1743,7 +1743,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Nuk apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Rast No. nuk mund të jetë 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,"Nëse keni shitjet e ekipit dhe shitje Partnerët (Channel Partnerët), ato mund të jenë të etiketuar dhe të mbajnë kontributin e tyre në aktivitetin e shitjes" DocType: Item,Show a slideshow at the top of the page,Tregojnë një Slideshow në krye të faqes -DocType: Item,"Allow in Sales Order of type ""Service""",Lejo në Sales Rendit të tipit "Shërbimi" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Dyqane DocType: Time Log,Projects Manager,Projektet Menaxher DocType: Serial No,Delivery Time,Koha e dorëzimit @@ -1758,6 +1757,7 @@ DocType: Rename Tool,Rename Tool,Rename Tool apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Update Kosto DocType: Item Reorder,Item Reorder,Item reorder apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Material Transferimi +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Item {0} duhet të jetë një artikull Sales në {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Specifikoni operacionet, koston operative dhe të japë një operacion i veçantë nuk ka për operacionet tuaja." DocType: Purchase Invoice,Price List Currency,Lista e Çmimeve Valuta DocType: Naming Series,User must always select,Përdoruesi duhet të zgjidhni gjithmonë @@ -1778,7 +1778,7 @@ DocType: Appraisal,Employee,Punonjës apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Import Email Nga apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Fto si Përdorues DocType: Features Setup,After Sale Installations,Pas Instalimeve Shitje -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} është faturuar plotësisht +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} është faturuar plotësisht DocType: Workstation Working Hour,End Time,Fundi Koha apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Kushtet e kontratës standarde për shitje ose blerje. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Grupi nga Bonon @@ -1804,7 +1804,7 @@ DocType: Upload Attendance,Attendance To Date,Pjesëmarrja në datën apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Setup server hyrje për shitjet email id. (P.sh. sales@example.com) DocType: Warranty Claim,Raised By,Ngritur nga DocType: Payment Gateway Account,Payment Account,Llogaria e pagesës -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,Ju lutemi specifikoni kompanisë për të vazhduar +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,Ju lutemi specifikoni kompanisë për të vazhduar apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Ndryshimi neto në llogarive të arkëtueshme apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Kompensues Off DocType: Quality Inspection Reading,Accepted,Pranuar @@ -1816,14 +1816,14 @@ DocType: Shipping Rule,Shipping Rule Label,Rregulla Transporti Label apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Lëndëve të para nuk mund të jetë bosh. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Nuk mund të rinovuar aksioneve, fatura përmban anijeve rënie artikull." DocType: Newsletter,Test,Provë -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Si ka transaksione ekzistuese të aksioneve për këtë artikull, \ ju nuk mund të ndryshojë vlerat e 'ka Serial', 'Has Serisë Jo', 'A Stock Item' dhe 'Metoda Vlerësimi'" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Quick Journal Hyrja apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,Ju nuk mund të ndryshoni normës nëse bom përmendur agianst çdo send DocType: Employee,Previous Work Experience,Përvoja e mëparshme e punës DocType: Stock Entry,For Quantity,Për Sasia apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},Ju lutem shkruani e planifikuar Qty për Item {0} në rresht {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} nuk është dorëzuar +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} nuk është dorëzuar apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Kërkesat për sendet. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Mënyrë e veçantë prodhimi do të krijohen për secilin artikull përfunduar mirë. DocType: Purchase Invoice,Terms and Conditions1,Termat dhe Conditions1 @@ -1848,6 +1848,7 @@ DocType: Notification Control,Expense Claim Approved Message,Shpenzim Kërkesa M DocType: Email Digest,How frequently?,Sa shpesh? DocType: Purchase Receipt,Get Current Stock,Get Stock aktual apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Pema e Bill e materialeve +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Mark pranishëm apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Data e fillimit të mirëmbajtjes nuk mund të jetë para datës së dorëzimit për Serial Nr {0} DocType: Production Order,Actual End Date,Aktuale End Date DocType: Authorization Rule,Applicable To (Role),Për të zbatueshme (Roli) @@ -1862,7 +1863,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Kontrata Data e përfundimit duhet të jetë më i madh se data e bashkimit DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,Një shpërndarës i palës së tretë / tregtari / komision agjent / degë / reseller që shet produkte kompani për një komision. DocType: Customer Group,Has Child Node,Ka Nyja e fëmijëve -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} kundër Rendit Blerje {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} kundër Rendit Blerje {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Shkruani parametrave statike url këtu (P.sh.. Dërguesi = ERPNext, emrin = ERPNext, fjalëkalimi = 1234, etj)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} jo në çdo Viti Fiskal aktive. Për më shumë detaje shikoni {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Kjo është një website shembull auto-generated nga ERPNext @@ -1890,7 +1891,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Add or Deduct: Whether you want to add or deduct the tax.","Template Standard taksave që mund të aplikohet për të gjitha transaksionet e blerjes. Kjo template mund të përmbajë listë të krerëve të taksave si dhe kokat e tjera të shpenzimeve, si "tregtar", "Sigurimi", "Trajtimi" etj #### Shënim norma e tatimit që ju të përcaktuar këtu do të jetë norma standarde e taksave për të gjitha ** Items * *. Nëse ka Items ** ** që kanë norma të ndryshme, ato duhet të shtohet në ** Item Tatimit ** Tabela në ** Item ** zotit. #### Përshkrimi i Shtyllave 1. Llogaritja Type: - Kjo mund të jetë në ** neto totale ** (që është shuma e shumës bazë). - ** Në rreshtit të mëparshëm totalit / Shuma ** (për taksat ose tarifat kumulative). Në qoftë se ju zgjidhni këtë opsion, tatimi do të aplikohet si një përqindje e rreshtit të mëparshëm (në tabelën e taksave) shumën apo total. - ** ** Aktuale (siç u përmend). 2. Llogaria Udhëheqës: Libri Llogaria nën të cilat kjo taksë do të jetë e rezervuar 3. Qendra Kosto: Nëse tatimi i / Akuza është një ardhura (si anijet) ose shpenzime ajo duhet të jetë e rezervuar ndaj Qendrës kosto. 4. Përshkrimi: Përshkrimi i tatimit (që do të shtypen në faturat / thonjëza). 5. Rate: Shkalla tatimore. 6. Shuma: Shuma Tatimore. 7. Gjithsej: totale kumulative në këtë pikë. 8. Shkruani Row: Nëse në bazë të "rreshtit të mëparshëm Total" ju mund të zgjidhni numrin e rreshtit të cilat do të merren si bazë për këtë llogaritje (default është rreshtit të mëparshëm). 9. Konsideroni tatim apo detyrim per: Në këtë seksion ju mund të specifikoni nëse taksa / çmimi është vetëm për vlerësimin (jo një pjesë e totalit) apo vetëm për totalin (nuk shtojnë vlerën e sendit), ose për të dyja. 10. Add ose Zbres: Nëse ju dëshironi të shtoni ose të zbres tatimin." DocType: Purchase Receipt Item,Recd Quantity,Recd Sasia apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Nuk mund të prodhojë më shumë Item {0} se sasia Sales Rendit {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Stock Hyrja {0} nuk është dorëzuar +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Stock Hyrja {0} nuk është dorëzuar DocType: Payment Reconciliation,Bank / Cash Account,Llogarisë Bankare / Cash DocType: Tax Rule,Billing City,Faturimi i qytetit DocType: Global Defaults,Hide Currency Symbol,Fshih Valuta size @@ -1916,7 +1917,7 @@ DocType: Salary Structure,Total Earning,Fituar Total DocType: Purchase Receipt,Time at which materials were received,Koha në të cilën janë pranuar materialet e apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Adresat e mia DocType: Stock Ledger Entry,Outgoing Rate,Largohet Rate -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Mjeshtër degë organizatë. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Mjeshtër degë organizatë. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,ose DocType: Sales Order,Billing Status,Faturimi Statusi apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Shpenzimet komunale @@ -1954,7 +1955,7 @@ DocType: Bin,Reserved Quantity,Sasia e rezervuara DocType: Landed Cost Voucher,Purchase Receipt Items,Items Receipt Blerje apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Format customizing DocType: Account,Income Account,Llogaria ardhurat -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Ofrimit të +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Ofrimit të DocType: Stock Reconciliation Item,Current Qty,Qty tanishme DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",Shih "Shkalla e materialeve në bazë të" në nenin kushton DocType: Appraisal Goal,Key Responsibility Area,Key Zona Përgjegjësia @@ -1966,8 +1967,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,Kup DocType: Notification Control,Purchase Order Message,Rendit Blerje mesazh DocType: Tax Rule,Shipping Country,Shipping Vendi DocType: Upload Attendance,Upload HTML,Ngarko HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})",Gjithsej paraprakisht ({0}) kundër Rendit {1} nuk mund të jetë më e madhe \ se Grand Total ({2}) DocType: Employee,Relieving Date,Lehtësimin Data apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Rregulla e Çmimeve është bërë për të prishësh LISTA E ÇMIMEVE / definojnë përqindje zbritje, në bazë të disa kritereve." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Magazina mund të ndryshohet vetëm përmes Stock Hyrja / dorëzimit Shënim / Pranimi Blerje @@ -1977,8 +1976,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Tatim apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Nëse Rregulla zgjedhur Çmimeve është bërë për 'Çmimi', ajo do të prishësh listën e çmimeve. Çmimi Rregulla e Çmimeve është çmimi përfundimtar, kështu që nuk ka zbritje të mëtejshme duhet të zbatohet. Për këtë arsye, në transaksione si Sales Rendit, Rendit Blerje etj, ajo do të sjellë në fushën e 'norma', në vend se të fushës "listën e çmimeve normë '." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Track kryeson nga Industrisë Type. DocType: Item Supplier,Item Supplier,Item Furnizuesi -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,Ju lutemi shkruani Kodin artikull për të marrë grumbull asnjë -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},"Ju lutem, përzgjidhni një vlerë për {0} quotation_to {1}" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,Ju lutemi shkruani Kodin artikull për të marrë grumbull asnjë +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},"Ju lutem, përzgjidhni një vlerë për {0} quotation_to {1}" apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Të gjitha adresat. DocType: Company,Stock Settings,Stock Cilësimet apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Shkrirja është e mundur vetëm nëse prona e mëposhtme janë të njëjta në të dy regjistrat. Është Grupi, Root Type, Kompania" @@ -2001,7 +2000,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Numri çek DocType: Payment Tool Detail,Payment Tool Detail,Detail Tool Pagesa ,Sales Browser,Shitjet Browser DocType: Journal Entry,Total Credit,Gjithsej Credit -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Warning: Një tjetër {0} # {1} ekziston kundër hyrjes aksioneve {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Warning: Një tjetër {0} # {1} ekziston kundër hyrjes aksioneve {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Lokal apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Kreditë dhe paradhëniet (aktiveve) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Debitorët @@ -2021,8 +2020,8 @@ DocType: Price List,Price List Master,Lista e Çmimeve Master DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,Gjitha Shitjet Transaksionet mund të tagged kundër shumta ** Personat Sales ** në mënyrë që ju mund të vendosni dhe monitoruar objektivat. ,S.O. No.,SO Nr DocType: Production Order Operation,Make Time Log,Bëni kohë Kyçu -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Ju lutemi të vendosur sasinë Reorder -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},Ju lutem të krijuar Customer nga Lead {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Ju lutemi të vendosur sasinë Reorder +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},Ju lutem të krijuar Customer nga Lead {0} DocType: Price List,Applicable for Countries,Të zbatueshme për vendet apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Kompjuter apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,Ky është një grup të konsumatorëve rrënjë dhe nuk mund të redaktohen. @@ -2058,7 +2057,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Faturi DocType: Payment Reconciliation Invoice,Outstanding Amount,Shuma Outstanding DocType: Project Task,Working,Punës DocType: Stock Ledger Entry,Stock Queue (FIFO),Stock Radhë (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,"Ju lutem, përzgjidhni Koha Shkrime." +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,"Ju lutem, përzgjidhni Koha Shkrime." apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} nuk i përkasin kompanisë {1} DocType: Account,Round Off,Rrumbullohem ,Requested Qty,Kërkohet Qty @@ -2096,7 +2095,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Get gjitha relevante apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Hyrja kontabilitetit për magazinë DocType: Sales Invoice,Sales Team1,Shitjet Team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Item {0} nuk ekziston +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Item {0} nuk ekziston DocType: Sales Invoice,Customer Address,Customer Adresa DocType: Payment Request,Recipient and Message,Marrësi dhe Mesazh DocType: Purchase Invoice,Apply Additional Discount On,Aplikoni shtesë zbritje në @@ -2115,7 +2114,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Mute Email apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Ushqim, Pije & Duhani" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL ose BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Vetëm mund të bëni pagesën kundër pafaturuar {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Vetëm mund të bëni pagesën kundër pafaturuar {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Shkalla e Komisionit nuk mund të jetë më e madhe se 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Niveli minimal Inventari DocType: Stock Entry,Subcontract,Nënkontratë @@ -2133,9 +2132,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Program apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Ngjyra DocType: Maintenance Visit,Scheduled,Planifikuar apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Ju lutem zgjidhni Item ku "A Stock Pika" është "Jo" dhe "është pika e shitjes" është "Po", dhe nuk ka asnjë tjetër Bundle Produktit" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Gjithsej paraprakisht ({0}) kundër Rendit {1} nuk mund të jetë më e madhe se Grand Total ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Zgjidh Shpërndarja mujore të pabarabartë shpërndarë objektiva të gjithë muajve. DocType: Purchase Invoice Item,Valuation Rate,Vlerësimi Rate -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Lista e Çmimeve Valuta nuk zgjidhet +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Lista e Çmimeve Valuta nuk zgjidhet apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,Item Row {0}: Pranimi Blerje {1} nuk ekziston në tabelën e mësipërme "Blerje Pranimet ' apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Punonjës {0} ka aplikuar tashmë për {1} midis {2} dhe {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Projekti Data e Fillimit @@ -2147,6 +2147,7 @@ DocType: Quality Inspection,Inspection Type,Inspektimi Type apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},"Ju lutem, përzgjidhni {0}" DocType: C-Form,C-Form No,C-Forma Nuk ka DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,Pjesëmarrja pashënuar apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Studiues apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,Ju lutemi ruani Newsletter para se të dërgonte apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Emri ose adresa është e detyrueshme @@ -2172,7 +2173,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,I konfi DocType: Payment Gateway,Gateway,Portë apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Furnizuesi> Furnizuesi Type apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Ju lutemi të hyrë në lehtësimin datën. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Sasia +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Sasia apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,Vetëm Dërgo Aplikacione me status 'miratuar' mund të dorëzohet apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Adresa Titulli është i detyrueshëm. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,Shkruani emrin e fushatës nëse burimi i hetimit është fushatë @@ -2187,10 +2188,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Magazina pranuar DocType: Bank Reconciliation Detail,Posting Date,Posting Data DocType: Item,Valuation Method,Vlerësimi Metoda apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Në pamundësi për të gjetur kursin e këmbimit për {0} në {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Mark Gjysma Dita DocType: Sales Invoice,Sales Team,Sales Ekipi apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Hyrja Duplicate DocType: Serial No,Under Warranty,Nën garanci -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Gabim] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Gabim] DocType: Sales Order,In Words will be visible once you save the Sales Order.,Me fjalë do të jetë i dukshëm një herë ju ruani Rendit Sales. ,Employee Birthday,Punonjës Ditëlindja apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Venture Capital @@ -2213,6 +2215,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,Qendra Kosto me transaksionet ekzistuese nuk mund të konvertohet në grup DocType: Account,Depreciation,Amortizim apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Furnizuesi (s) +DocType: Employee Attendance Tool,Employee Attendance Tool,Punonjës Pjesëmarrja Tool DocType: Supplier,Credit Limit,Limit Credit apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Përzgjidhni llojin e transaksionit DocType: GL Entry,Voucher No,Voucher Asnjë @@ -2239,7 +2242,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Llogari rrënjë nuk mund të fshihet ,Is Primary Address,Është Adresimi Fillor DocType: Production Order,Work-in-Progress Warehouse,Puna në progres Magazina -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Referenca # {0} datë {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Referenca # {0} datë {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Manage Adresat DocType: Pricing Rule,Item Code,Kodi i artikullit DocType: Production Planning Tool,Create Production Orders,Krijo urdhërat e prodhimit @@ -2266,7 +2269,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Banka Pajtimit apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Get Updates apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Materiali Kërkesë {0} është anuluar ose ndërprerë apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Shto një pak të dhënat mostër -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Lini Menaxhimi +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Lini Menaxhimi apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Grupi nga Llogaria DocType: Sales Order,Fully Delivered,Dorëzuar plotësisht DocType: Lead,Lower Income,Të ardhurat më të ulëta @@ -2281,6 +2284,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','Nga Data "duhet të jetë pas" deri më sot " ,Stock Projected Qty,Stock Projektuar Qty apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Customer {0} nuk i përket projektit {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Pjesëmarrja e shënuar HTML DocType: Sales Order,Customer's Purchase Order,Rendit Blerje konsumatorit DocType: Warranty Claim,From Company,Nga kompanisë apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Vlera ose Qty @@ -2345,6 +2349,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Wire Transfer apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,"Ju lutem, përzgjidhni llogarinë bankare" DocType: Newsletter,Create and Send Newsletters,Krijoni dhe dërgoni Buletinet +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,kontrollo të gjitha DocType: Sales Order,Recurring Order,Rendit përsëritur DocType: Company,Default Income Account,Llogaria e albumit ardhurat apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Grupi Customer / Customer @@ -2376,6 +2381,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Kthehu kundër Blerje DocType: Item,Warranty Period (in days),Garanci Periudha (në ditë) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Paraja neto nga operacionet apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,p.sh. TVSH +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Pjesëmarrja Mark punonjës në Bulk apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Pika 4 DocType: Journal Entry Account,Journal Entry Account,Llogaria Journal Hyrja DocType: Shopping Cart Settings,Quotation Series,Citat Series @@ -2520,14 +2526,14 @@ DocType: Task,Actual Start Date (via Time Logs),Aktuale Data e Fillimit (nëpër DocType: Stock Reconciliation Item,Before reconciliation,Para se të pajtimit apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Për {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Taksat dhe Tarifat Shtuar (Kompania Valuta) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Row Tatimore pika {0} duhet të keni një llogari te tipit Tatimit ose e ardhur ose shpenzim ose ngarkimit +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Row Tatimore pika {0} duhet të keni një llogari te tipit Tatimit ose e ardhur ose shpenzim ose ngarkimit DocType: Sales Order,Partly Billed,Faturuar Pjesërisht DocType: Item,Default BOM,Gabim bom apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,Ju lutem ri-lloj emri i kompanisë për të konfirmuar apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Outstanding Amt Total DocType: Time Log Batch,Total Hours,Totali Orë DocType: Journal Entry,Printing Settings,Printime Cilësimet -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Debiti i përgjithshëm duhet të jetë e barabartë me totalin e kredisë. Dallimi është {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Debiti i përgjithshëm duhet të jetë e barabartë me totalin e kredisë. Dallimi është {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Automobilistik apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Nga dorëzim Shënim DocType: Time Log,From Time,Nga koha @@ -2573,7 +2579,7 @@ DocType: Purchase Invoice Item,Image View,Image Shiko DocType: Issue,Opening Time,Koha e hapjes apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,Nga dhe në datat e kërkuara apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Letrave me Vlerë dhe Shkëmbimeve të Mallrave -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Default njësinë e matjes për Varianti '{0}' duhet të jetë i njëjtë si në Template '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Default njësinë e matjes për Varianti '{0}' duhet të jetë i njëjtë si në Template '{1}' DocType: Shipping Rule,Calculate Based On,Llogaritur bazuar në DocType: Delivery Note Item,From Warehouse,Nga Magazina DocType: Purchase Taxes and Charges,Valuation and Total,Vlerësimi dhe Total @@ -2595,7 +2601,7 @@ DocType: Leave Application,Follow via Email,Ndiqni nëpërmjet Email DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Shuma e taksave Pas Shuma ulje apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Llogari fëmijë ekziston për këtë llogari. Ju nuk mund të fshini këtë llogari. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Ose Qty objektiv ose shuma e synuar është e detyrueshme -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},Nuk ekziston parazgjedhur bom për Item {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},Nuk ekziston parazgjedhur bom për Item {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,"Ju lutem, përzgjidhni datën e postimit parë" apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Hapja Data duhet të jetë para datës së mbylljes DocType: Leave Control Panel,Carry Forward,Bart @@ -2672,7 +2678,7 @@ DocType: Leave Type,Is Encash,Është marr me para në dorë DocType: Purchase Invoice,Mobile No,Mobile Asnjë DocType: Payment Tool,Make Journal Entry,Bëni Journal Hyrja DocType: Leave Allocation,New Leaves Allocated,Gjethet e reja të alokuar -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Të dhënat Project-i mençur nuk është në dispozicion për Kuotim +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Të dhënat Project-i mençur nuk është në dispozicion për Kuotim DocType: Project,Expected End Date,Pritet Data e Përfundimit DocType: Appraisal Template,Appraisal Template Title,Vlerësimi Template Titulli apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Komercial @@ -2720,6 +2726,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,Re apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Ju lutem specifikoni një DocType: Offer Letter,Awaiting Response,Në pritje të përgjigjes apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Sipër +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Koha Log është faturuar DocType: Salary Slip,Earning & Deduction,Fituar dhe Zbritje apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Llogaria {0} nuk mund të jetë një grup apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Fakultative. Ky rregullim do të përdoret për të filtruar në transaksionet e ndryshme. @@ -2790,14 +2797,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Sukses të fshihen të gjitha transaksionet që lidhen me këtë kompani! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Si në Data apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Provë -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Gabim Magazina është e detyrueshme për aksioneve Item. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Gabim Magazina është e detyrueshme për aksioneve Item. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Pagesa e pagës për muajin {0} dhe vitin {1} DocType: Stock Settings,Auto insert Price List rate if missing,Auto insert Shkalla Lista e Çmimeve nëse mungon apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Gjithsej shuma e paguar ,Transferred Qty,Transferuar Qty apps/erpnext/erpnext/config/learn.py +11,Navigating,Vozitja apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Planifikim -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Bëni Koha Identifikohu Batch +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Bëni Koha Identifikohu Batch apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Lëshuar DocType: Project,Total Billing Amount (via Time Logs),Shuma totale Faturimi (nëpërmjet Koha Shkrime) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Ne shesim këtë artikull @@ -2805,7 +2812,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Sasia duhet të jetë më e madhe se 0 DocType: Journal Entry,Cash Entry,Hyrja Cash DocType: Sales Partner,Contact Desc,Kontakt Përshkrimi -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Lloji i lë si rastësor, të sëmurë etj" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Lloji i lë si rastësor, të sëmurë etj" DocType: Email Digest,Send regular summary reports via Email.,Dërgo raporte të rregullta përmbledhje nëpërmjet Email. DocType: Brand,Item Manager,Item Menaxher DocType: Cost Center,Add rows to set annual budgets on Accounts.,Shto rreshtave për të vendosur buxhetet vjetore në llogaritë. @@ -2820,7 +2827,7 @@ DocType: GL Entry,Party Type,Lloji Partia apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Lëndë e parë nuk mund të jetë i njëjtë si pika kryesore DocType: Item Attribute Value,Abbreviation,Shkurtim apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Jo Authroized që nga {0} tejkalon kufijtë -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Mjeshtër paga template. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Mjeshtër paga template. DocType: Leave Type,Max Days Leave Allowed,Max Ditët Pushimi Lejohet apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Set Rregulla Taksa për shopping cart DocType: Payment Tool,Set Matching Amounts,Set Shumat Matching @@ -2833,7 +2840,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Kuotat DocType: Stock Settings,Role Allowed to edit frozen stock,Roli i lejuar për të redaktuar aksioneve të ngrirë ,Territory Target Variance Item Group-Wise,Territori i synuar Varianca Item Grupi i urti apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Të gjitha grupet e konsumatorëve -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} është i detyrueshëm. Ndoshta rekord Currency Exchange nuk është krijuar për {1} të {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} është i detyrueshëm. Ndoshta rekord Currency Exchange nuk është krijuar për {1} të {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Template tatimi është i detyrueshëm. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Llogaria {0}: llogari Parent {1} nuk ekziston DocType: Purchase Invoice Item,Price List Rate (Company Currency),Lista e Çmimeve Rate (Kompania Valuta) @@ -2853,8 +2860,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Item Tatimore urti Deta ,Item-wise Price List Rate,Pika-mençur Lista e Çmimeve Rate apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Furnizuesi Citat DocType: Quotation,In Words will be visible once you save the Quotation.,Me fjalë do të jetë i dukshëm një herë ju ruani Kuotim. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} është ndalur -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Barkodi {0} përdorur tashmë në pikën {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} është ndalur +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Barkodi {0} përdorur tashmë në pikën {1} DocType: Lead,Add to calendar on this date,Shtoni në kalendarin në këtë datë apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Rregullat për të shtuar shpenzimet e transportit detar. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Ngjarje të ardhshme @@ -2880,8 +2887,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,Sh apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Atleast një depo është e detyrueshme DocType: Serial No,Out of Warranty,Nga Garanci DocType: BOM Replace Tool,Replace,Zëvendësoj -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} kundër Shitjeve Faturës {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Ju lutem shkruani Njësia e parazgjedhur e Masës +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} kundër Shitjeve Faturës {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Ju lutem shkruani Njësia e parazgjedhur e Masës DocType: Purchase Invoice Item,Project Name,Emri i Projektit DocType: Supplier,Mention if non-standard receivable account,Përmend në qoftë se jo-standarde llogari të arkëtueshme DocType: Journal Entry Account,If Income or Expense,Nëse të ardhura ose shpenzime @@ -2906,7 +2913,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Viti Fiskal: {0} nuk ekziston DocType: Currency Exchange,To Currency,Për të Valuta DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Lejo përdoruesit e mëposhtme të miratojë Dërgo Aplikacione për ditë bllok. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Llojet e shpenzimeve kërkesës. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Llojet e shpenzimeve kërkesës. DocType: Item,Taxes,Tatimet apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Paguar dhe nuk dorëzohet DocType: Project,Default Cost Center,Qendra Kosto e albumit @@ -2936,7 +2943,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Row # {0}: serial {1} nuk përputhet me {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Lini Rastesishme DocType: Batch,Batch ID,ID Batch -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Shënim: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Shënim: {0} ,Delivery Note Trends,Trendet ofrimit Shënim apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Përmbledhja e kësaj jave apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} duhet të jetë një element i blerë ose nën-kontraktuar në rresht {1} @@ -2976,6 +2983,7 @@ DocType: Project Task,Pending Review,Në pritje Rishikimi apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Kliko këtu për të paguar DocType: Task,Total Expense Claim (via Expense Claim),Gjithsej Kërkesa shpenzimeve (nëpërmjet shpenzimeve Kërkesës) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Customer Id +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Mark Mungon apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Për Koha duhet të jetë më e madhe se sa nga koha DocType: Journal Entry Account,Exchange Rate,Exchange Rate apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Sales Order {0} nuk është dorëzuar @@ -3023,7 +3031,7 @@ DocType: Item Group,Default Expense Account,Llogaria e albumit shpenzimeve DocType: Employee,Notice (days),Njoftim (ditë) DocType: Tax Rule,Sales Tax Template,Template Sales Tax DocType: Employee,Encashment Date,Arkëtim Data -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Kundër Bonon Lloji duhet të jetë një e Rendit Blerje, Blerje Faturë ose Journal Hyrja" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Kundër Bonon Lloji duhet të jetë një e Rendit Blerje, Blerje Faturë ose Journal Hyrja" DocType: Account,Stock Adjustment,Stock Rregullimit apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Kosto e albumit Aktiviteti ekziston për Aktivizimi Tipi - {0} DocType: Production Order,Planned Operating Cost,Planifikuar Kosto Operative @@ -3077,6 +3085,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Shkruani Off Hyrja DocType: BOM,Rate Of Materials Based On,Shkalla e materialeve në bazë të apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Analtyics Mbështetje +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Uncheck gjitha apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Kompania është e humbur në depo {0} DocType: POS Profile,Terms and Conditions,Termat dhe Kushtet apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},Deri më sot duhet të jetë brenda vitit fiskal. Duke supozuar në datën = {0} @@ -3098,7 +3107,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Për të vendosur këtë vit fiskal si default, klikoni mbi 'Bëje si Default'" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Setup server hyrje për mbështetjen e email id. (P.sh. support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Mungesa Qty -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Item variant {0} ekziston me atributet e njëjta +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Item variant {0} ekziston me atributet e njëjta DocType: Salary Slip,Salary Slip,Shqip paga apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,"Deri më sot" është e nevojshme DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Generate paketim rrëshqet për paketat që do të dërgohen. Përdoret për të njoftuar numrin paketë, paketë përmbajtjen dhe peshën e saj." @@ -3146,7 +3155,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Shiko k DocType: Item Attribute Value,Attribute Value,Atribut Vlera apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","Email ID duhet të jetë unike, tashmë ekziston për {0}" ,Itemwise Recommended Reorder Level,Itemwise Recommended reorder Niveli -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,"Ju lutem, përzgjidhni {0} parë" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,"Ju lutem, përzgjidhni {0} parë" DocType: Features Setup,To get Item Group in details table,Për të marrë Group send në detaje tabelën e apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Batch {0} i artikullit {1} ka skaduar. DocType: Sales Invoice,Commission,Komision @@ -3190,7 +3199,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Get Vauçera papaguara DocType: Warranty Claim,Resolved By,Zgjidhen nga DocType: Appraisal,Start Date,Data e Fillimit -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Alokimi i lë për një periudhë. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Alokimi i lë për një periudhë. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Çeqet dhe Depozitat pastruar gabimisht apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Kliko këtu për të verifikuar apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Llogaria {0}: Ju nuk mund të caktojë veten si llogari prind @@ -3210,7 +3219,7 @@ DocType: Employee,Educational Qualification,Kualifikimi arsimor DocType: Workstation,Operating Costs,Shpenzimet Operative DocType: Employee Leave Approver,Employee Leave Approver,Punonjës Pushimi aprovuesi apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} është shtuar me sukses në listën tonë Newsletter. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Row {0}: Një hyrje Reorder tashmë ekziston për këtë depo {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Row {0}: Një hyrje Reorder tashmë ekziston për këtë depo {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Nuk mund të deklarojë si të humbur, sepse Kuotim i është bërë." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Blerje Master Menaxher apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Prodhimi Rendit {0} duhet të dorëzohet @@ -3234,7 +3243,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Shitjet Faturë {0} tashmë është dorëzuar apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Data e përfundimit DocType: Purchase Invoice Item,Amount (Company Currency),Shuma (Kompania Valuta) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Njësia Organizata (departamenti) mjeshtër. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Njësia Organizata (departamenti) mjeshtër. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Ju lutemi shkruani nos celular vlefshme DocType: Budget Detail,Budget Detail,Detail Buxheti apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,Ju lutem shkruani mesazhin para se të dërgonte @@ -3250,13 +3259,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Marrë dhe pranuar ,Serial No Service Contract Expiry,Serial Asnjë Shërbimit Kontratë Expiry DocType: Item,Unit of Measure Conversion,Njësia e masës këmbimit apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Punonjësi nuk mund të ndryshohet -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Ju nuk mund të kreditit dhe debitit njëjtën llogari në të njëjtën kohë +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Ju nuk mund të kreditit dhe debitit njëjtën llogari në të njëjtën kohë DocType: Naming Series,Help HTML,Ndihmë HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Weightage Gjithsej caktuar duhet të jetë 100%. Kjo është {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Kompensimi për tejkalimin {0} kaloi për Item {1} DocType: Address,Name of person or organization that this address belongs to.,Emri i personit ose organizatës që kjo adresë takon. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Furnizuesit tuaj -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,Nuk mund të vendosur si Humbur si Sales Order është bërë. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,Nuk mund të vendosur si Humbur si Sales Order është bërë. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,Një tjetër Struktura Paga {0} është aktive për punonjës {1}. Ju lutemi të bëjë statusi i saj "jo aktive" për të vazhduar. DocType: Purchase Invoice,Contact,Kontakt apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Marrë nga @@ -3266,11 +3275,11 @@ DocType: Item,Has Serial No,Nuk ka Serial DocType: Employee,Date of Issue,Data e lëshimit apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: Nga {0} për {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Row # {0}: Furnizuesi Set për pika {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Faqja Image {0} bashkangjitur në pikën {1} nuk mund të gjendet +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Faqja Image {0} bashkangjitur në pikën {1} nuk mund të gjendet DocType: Issue,Content Type,Përmbajtja Type apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Kompjuter DocType: Item,List this Item in multiple groups on the website.,Lista këtë artikull në grupe të shumta në faqen e internetit. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,Ju lutem kontrolloni opsionin Multi Valuta për të lejuar llogaritë me valutë tjetër +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,Ju lutem kontrolloni opsionin Multi Valuta për të lejuar llogaritë me valutë tjetër apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Item: {0} nuk ekziston në sistemin apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Ju nuk jeni i autorizuar për të vendosur vlerën e ngrira DocType: Payment Reconciliation,Get Unreconciled Entries,Get Unreconciled Entries @@ -3280,14 +3289,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Çfarë do t DocType: Delivery Note,To Warehouse,Për Magazina apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Llogaria {0} ka hyrë më shumë se një herë për vitin fiskal {1} ,Average Commission Rate,Mesatare Rate Komisioni -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'Nuk ka Serial' nuk mund të jetë 'Po' për jo-aksioneve artikull +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'Nuk ka Serial' nuk mund të jetë 'Po' për jo-aksioneve artikull apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Pjesëmarrja nuk mund të shënohet për datat e ardhshme DocType: Pricing Rule,Pricing Rule Help,Rregulla e Çmimeve Ndihmë DocType: Purchase Taxes and Charges,Account Head,Shef llogari apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Update shpenzimet shtesë për të llogaritur koston ul të artikujve apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Elektrik DocType: Stock Entry,Total Value Difference (Out - In),Gjithsej Diferenca Vlera (Out - In) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Row {0}: Exchange Rate është i detyrueshëm +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Row {0}: Exchange Rate është i detyrueshëm apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},Përdoruesi ID nuk është caktuar për punonjësit {0} DocType: Stock Entry,Default Source Warehouse,Gabim Burimi Magazina DocType: Item,Customer Code,Kodi Klientit @@ -3306,15 +3315,15 @@ DocType: Notification Control,Sales Invoice Message,Mesazh Shitjet Faturë apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Llogarisë {0} Mbyllja duhet të jetë e tipit me Përgjegjësi / ekuitetit DocType: Authorization Rule,Based On,Bazuar në DocType: Sales Order Item,Ordered Qty,Urdhërohet Qty -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Item {0} është me aftësi të kufizuara +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Item {0} është me aftësi të kufizuara DocType: Stock Settings,Stock Frozen Upto,Stock ngrira Upto apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Periudha nga dhe periudha në datat e detyrueshme për të përsëritura {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Aktiviteti i projekt / detyra. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Generate paga rrëshqet +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Generate paga rrëshqet apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Blerja duhet të kontrollohet, nëse është e aplikueshme për të është zgjedhur si {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Discount duhet të jetë më pak se 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Shkruaj Off Shuma (Kompania Valuta) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Row # {0}: Ju lutemi të vendosur sasinë Reorder +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Row # {0}: Ju lutemi të vendosur sasinë Reorder DocType: Landed Cost Voucher,Landed Cost Voucher,Zbarkoi Voucher Kosto apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},Ju lutemi të vendosur {0} DocType: Purchase Invoice,Repeat on Day of Month,Përsëriteni në Ditën e Muajit @@ -3366,7 +3375,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Default Puna Në Magazina Progresit apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Default settings për transaksionet e kontabilitetit. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Data e pritshme nuk mund të jetë e para materiale Kërkesë Data -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Item {0} duhet të jetë një Sales Item +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Item {0} duhet të jetë një Sales Item DocType: Naming Series,Update Series Number,Update Seria Numri DocType: Account,Equity,Barazia DocType: Sales Order,Printing Details,Shtypi Detajet @@ -3418,7 +3427,7 @@ DocType: Task,Review Date,Data shqyrtim DocType: Purchase Invoice,Advance Payments,Pagesat e paradhënies DocType: Purchase Taxes and Charges,On Net Total,On Net Total apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Magazinë synuar në radhë {0} duhet të jetë i njëjtë si Rendit Prodhimi -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Nuk ka leje për të përdorur mjet pagese +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Nuk ka leje për të përdorur mjet pagese apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,"Njoftimi Email Adresat 'jo të specifikuara për përsëritura% s apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,"Valuta nuk mund të ndryshohet, pasi duke e bërë shënimet duke përdorur disa valutë tjetër" DocType: Company,Round Off Account,Rrumbullakët Off Llogari @@ -3441,7 +3450,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Sasia e sendit të marra pas prodhimit / ripaketimin nga sasi të caktuara të lëndëve të para DocType: Payment Reconciliation,Receivable / Payable Account,Arkëtueshme / pagueshme Llogaria DocType: Delivery Note Item,Against Sales Order Item,Kundër Sales Rendit Item -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},Ju lutem specifikoni atribut Vlera për atribut {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},Ju lutem specifikoni atribut Vlera për atribut {0} DocType: Item,Default Warehouse,Gabim Magazina DocType: Task,Actual End Date (via Time Logs),Aktuale End Date (nëpërmjet Koha Shkrime) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Buxheti nuk mund të caktohet kundër Llogaria Grupit {0} @@ -3466,10 +3475,10 @@ DocType: Lead,Blog Subscriber,Blog Subscriber apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Krijo rregulla për të kufizuar transaksionet në bazë të vlerave. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Nëse kontrolluar, Gjithsej nr. i ditëve të punës do të përfshijë pushimet, dhe kjo do të zvogëlojë vlerën e pagave Per Day" DocType: Purchase Invoice,Total Advance,Advance Total -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Përpunimi Pagave +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Përpunimi Pagave DocType: Opportunity Item,Basic Rate,Norma bazë DocType: GL Entry,Credit Amount,Shuma e kreditit -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Bëje si Lost +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Bëje si Lost apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Pagesa Pranimi Shënim DocType: Supplier,Credit Days Based On,Ditët e kredisë së bazuar në DocType: Tax Rule,Tax Rule,Rregulla Tatimore @@ -3499,7 +3508,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Sasi të pranuar apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} nuk ekziston apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Faturat e ngritura për të Konsumatorëve. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Projekti Id -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Row Asnjë {0}: Shuma nuk mund të jetë më e madhe se pritje Shuma kundër shpenzimeve sipas Pretendimit {1}. Në pritje Shuma është {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Row Asnjë {0}: Shuma nuk mund të jetë më e madhe se pritje Shuma kundër shpenzimeve sipas Pretendimit {1}. Në pritje Shuma është {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} abonentë shtuar DocType: Maintenance Schedule,Schedule,Orar DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Define Buxheti për këtë qendër kosto. Për të vendosur veprimin e buxhetit, shih "Lista e Kompanive"" @@ -3560,19 +3569,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS Profilin DocType: Payment Gateway Account,Payment URL Message,Pagesa URL Mesazh apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Sezonalitetit për vendosjen buxhetet, objektivat etj" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Row {0}: Shuma e pagesës nuk mund të jetë më e madhe se shuma e papaguar +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Row {0}: Shuma e pagesës nuk mund të jetë më e madhe se shuma e papaguar apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Gjithsej papaguar -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Koha Identifikohu nuk është billable -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Item {0} është një template, ju lutem zgjidhni një nga variantet e saj" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Koha Identifikohu nuk është billable +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Item {0} është një template, ju lutem zgjidhni një nga variantet e saj" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Blerës apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Paguajnë neto nuk mund të jetë negative -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Ju lutem shkruani kundër Vauçera dorë +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Ju lutem shkruani kundër Vauçera dorë DocType: SMS Settings,Static Parameters,Parametrat statike DocType: Purchase Order,Advance Paid,Advance Paid DocType: Item,Item Tax,Tatimi i artikullit apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Materiale për Furnizuesin apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Akciza Faturë DocType: Expense Claim,Employees Email Id,Punonjësit Email Id +DocType: Employee Attendance Tool,Marked Attendance,Pjesëmarrja e shënuar apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Detyrimet e tanishme apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Dërgo SMS në masë për kontaktet tuaja DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Konsideroni tatimit apo detyrimit për @@ -3595,7 +3605,7 @@ DocType: Item Attribute,Numeric Values,Vlerat numerike apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Bashkangjit Logo DocType: Customer,Commission Rate,Rate Komisioni apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Bëni Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Aplikacionet pushimit bllok nga departamenti. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Aplikacionet pushimit bllok nga departamenti. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Shporta është bosh DocType: Production Order,Actual Operating Cost,Aktuale Kosto Operative apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Rrënjë nuk mund të redaktohen. @@ -3614,7 +3624,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,Automatikisht të krijojë materiale Kërkesë nëse sasia bie nën këtë nivel ,Item-wise Purchase Register,Pika-mençur Blerje Regjistrohu DocType: Batch,Expiry Date,Data e Mbarimit -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Për të vendosur nivelin Reorder, pika duhet të jetë një artikull i blerë ose Prodhim Item" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Për të vendosur nivelin Reorder, pika duhet të jetë një artikull i blerë ose Prodhim Item" ,Supplier Addresses and Contacts,Adresat Furnizues dhe Kontaktet apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,Ju lutemi zgjidhni kategorinë e parë apps/erpnext/erpnext/config/projects.py +18,Project master.,Mjeshtër projekt. diff --git a/erpnext/translations/sr.csv b/erpnext/translations/sr.csv index da47e21f65..00f66e1666 100644 --- a/erpnext/translations/sr.csv +++ b/erpnext/translations/sr.csv @@ -164,14 +164,14 @@ DocType: Journal Entry Account,Credit in Company Currency,Кредит у вал DocType: Delivery Note,Installation Status,Инсталација статус apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Принято + Отклоненные Кол-во должно быть равно полученного количества по пункту {0} DocType: Item,Supply Raw Materials for Purchase,Набавка сировина за куповину -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Пункт {0} должен быть Покупка товара +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Пункт {0} должен быть Покупка товара DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Преузмите шаблон, попуните одговарајуће податке и приложите измењену датотеку. Све датуми и запослени комбинација у одабраном периоду ће доћи у шаблону, са постојећим евиденцију" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,Пункт {0} не является активным или конец жизни был достигнут DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Да ли ће бити ажурирани након продаје Рачун се подноси. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Для учета налога в строке {0} в размере Item , налоги в строках должны быть также включены {1}" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Настройки для модуля HR +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Для учета налога в строке {0} в размере Item , налоги в строках должны быть также включены {1}" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Настройки для модуля HR DocType: SMS Center,SMS Center,СМС центар DocType: BOM Replace Tool,New BOM,Нови БОМ apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Батцх Тиме трупци за наплату. @@ -199,7 +199,7 @@ DocType: Offer Letter,Select Terms and Conditions,Изаберите Услов DocType: Production Planning Tool,Sales Orders,Салес Ордерс DocType: Purchase Taxes and Charges,Valuation,Вредновање ,Purchase Order Trends,Куповина Трендови Ордер -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Додела лишће за годину. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Додела лишће за годину. DocType: Earning Type,Earning Type,Зарада Вид DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Искључи Планирање капацитета и Тиме Трацкинг DocType: Bank Reconciliation,Bank Account,Банковни рачун @@ -237,7 +237,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Ставка Сајт Спецификација DocType: Payment Tool,Reference No,Референца број apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Оставите Блокирани -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Пункт {0} достигла своей жизни на {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Пункт {0} достигла своей жизни на {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,годовой DocType: Stock Reconciliation Item,Stock Reconciliation Item,Стоцк Помирење артикла DocType: Stock Entry,Sales Invoice No,Продаја Рачун Нема @@ -249,7 +249,7 @@ DocType: Item,Minimum Order Qty,Минимална количина за пор DocType: Pricing Rule,Supplier Type,Снабдевач Тип DocType: Item,Publish in Hub,Објављивање у Хуб ,Terretory,Терретори -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Пункт {0} отменяется +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Пункт {0} отменяется apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Материјал Захтев DocType: Bank Reconciliation,Update Clearance Date,Упдате Дате клиренс DocType: Item,Purchase Details,Куповина Детаљи @@ -261,11 +261,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Одбијен Количина DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Поље доступан у напомени испоруке, понуде, продаје фактуре, продаје Наруџбеница" DocType: SMS Settings,SMS Sender Name,СМС Сендер Наме DocType: Contact,Is Primary Contact,Да ли Примарни контакт +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Време се је дозирано за наплату DocType: Notification Control,Notification Control,Обавештење Контрола DocType: Lead,Suggestions,Предлози DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Сет тачка Групе мудрих буџете на овој територији. Такође можете укључити сезонски постављањем дистрибуције. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},Молимо вас да унесете родитељску групу рачуна за складиште {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Плаћање по {0} {1} не може бити већи од преосталог износа {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Плаћање по {0} {1} не може бити већи од преосталог износа {2} DocType: Supplier,Address HTML,Адреса ХТМЛ DocType: Lead,Mobile No.,Мобиле Но DocType: Maintenance Schedule,Generate Schedule,Генериши Распоред @@ -282,7 +283,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Синхронизују са Хуб apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Погрешна Лозинка DocType: Item,Variant Of,Варијанта -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Пункт {0} должно быть Service Элемент apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',Завршен ком не може бити већи од 'Количина за производњу' DocType: Period Closing Voucher,Closing Account Head,Затварање рачуна Хеад DocType: Employee,External Work History,Спољни власници @@ -294,10 +294,10 @@ DocType: Newsletter,Newsletter,Билтен DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Обавестити путем емаила на стварању аутоматског материјала захтеву DocType: Journal Entry,Multi Currency,Тема Валута DocType: Payment Reconciliation Invoice,Invoice Type,Фактура Тип -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Обавештење о пријему пошиљке +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Обавештење о пријему пошиљке apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Подешавање Порези apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,Плаћање Ступање је модификована након што га извукао. Молимо вас да га опет повуците. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} вводится дважды в пункт налоге +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} вводится дважды в пункт налоге apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Преглед за ову недељу и чекају активности DocType: Workstation,Rent Cost,Издавање Трошкови apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Изаберите месец и годину @@ -308,7 +308,7 @@ DocType: Shipping Rule,Valid for Countries,Важи за земље DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Все импорта смежных областях , как валюты, обменный курс , общий объем импорта , импорт общего итога и т.д. доступны в ТОВАРНЫЙ ЧЕК , поставщиков цитаты , счета-фактуры Заказа т.д." apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,Ово је тачка шаблона и не може се користити у трансакцијама. Атрибути јединица ће бити копирани у варијанти осим 'Нема Копирање' постављено apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Укупно Ордер Сматра -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Сотрудник обозначение (например генеральный директор , директор и т.д.) ." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Сотрудник обозначение (например генеральный директор , директор и т.д.) ." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,"Пожалуйста, введите ' Repeat на день месяца ' значения поля" DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,Стопа по којој Купац Валута се претварају у основне валуте купца DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Доступный в спецификации , накладной , счете-фактуре, производственного заказа , заказа на поставку , покупка получение, счет-фактура , заказ клиента , фондовой въезда, расписания" @@ -357,7 +357,7 @@ DocType: Workstation,Consumable Cost,Потрошни трошкова apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) мора имати улогу 'Напусти Аппровер DocType: Purchase Receipt,Vehicle Date,Датум возила apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,медицинский -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Разлог за губљење +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Разлог за губљење apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Радна станица је затворена на следеће датуме по Холидаи Лист: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Могућности DocType: Employee,Single,Самац @@ -385,14 +385,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Цханнел Партнер DocType: Account,Old Parent,Стари Родитељ DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,Прилагодите уводни текст који иде као део тог поште. Свака трансакција има посебан уводном тексту. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Не укључују симболе (нпр. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Продаја Мастер менаџер apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Глобална подешавања за свим производним процесима. DocType: Accounts Settings,Accounts Frozen Upto,Рачуни Фрозен Упто DocType: SMS Log,Sent On,Послата -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Атрибут {0} изабран више пута у атрибутима табели +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Атрибут {0} изабран више пута у атрибутима табели DocType: HR Settings,Employee record is created using selected field. ,Запослени Запис се креира коришћењем изабрано поље. DocType: Sales Order,Not Applicable,Није применљиво -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Мастер отдыха . +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Мастер отдыха . DocType: Material Request Item,Required Date,Потребан датум DocType: Delivery Note,Billing Address,Адреса за наплату apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,Унесите Шифра . @@ -428,7 +429,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,Унесите складиште за које Материјал Захтев ће бити подигнута DocType: Production Order,Additional Operating Cost,Додатни Оперативни трошкови apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,козметика -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Да бисте објединили , следеће особине морају бити исти за обе ставке" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Да бисте објединили , следеће особине морају бити исти за обе ставке" DocType: Shipping Rule,Net Weight,Нето тежина DocType: Employee,Emergency Phone,Хитна Телефон ,Serial No Warranty Expiry,Серијски Нема гаранције истека @@ -486,17 +487,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Обрачун и Статус испоруке apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Репеат Купци DocType: Leave Control Panel,Allocate,Доделити -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Продаја Ретурн +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Продаја Ретурн DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Изаберите продајних налога из које желите да креирате налоге производњу. DocType: Item,Delivered by Supplier (Drop Ship),Деливеред би добављача (Дроп Схип) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Плата компоненте. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Плата компоненте. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,База потенцијалних купаца. DocType: Authorization Rule,Customer or Item,Кориснички или артикла apps/erpnext/erpnext/config/crm.py +17,Customer database.,Кориснички базе података. DocType: Quotation,Quotation To,Цитат DocType: Lead,Middle Income,Средњи приход apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Открытие (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Уобичајено јединица мере за тачке {0} не може директно мењати, јер сте већ направили неке трансакције (с) са другим УЦГ. Мораћете да креирате нову ставку да користи другачији Дефаулт УЦГ." +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"Уобичајено јединица мере за тачке {0} не може директно мењати, јер сте већ направили неке трансакције (с) са другим УЦГ. Мораћете да креирате нову ставку да користи другачији Дефаулт УЦГ." apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Додељена сума не може бити негативан DocType: Purchase Order Item,Billed Amt,Фактурисане Амт DocType: Warehouse,A logical Warehouse against which stock entries are made.,Логичан Магацин против које уноси хартије су направљени. @@ -515,14 +516,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Продаја Порези и н DocType: Employee,Organization Profile,Профиль организации apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,"Пожалуйста, установите нумерация серии для Посещаемость через Настройка> нумерации серии" DocType: Employee,Reason for Resignation,Разлог за оставку -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Шаблон для аттестации . +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Шаблон для аттестации . DocType: Payment Reconciliation,Invoice/Journal Entry Details,Фактура / Јоурнал Ентри Детаљи apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} ' {1}' не в финансовом году {2} DocType: Buying Settings,Settings for Buying Module,Подешавања за Буиинг Модуле apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,Молимо вас да унесете први оригинални рачун DocType: Buying Settings,Supplier Naming By,Добављач назив под DocType: Activity Type,Default Costing Rate,Уобичајено Кошта курс -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Одржавање Распоред +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Одржавање Распоред apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Онда Ценовник Правила се филтрирају на основу клијента, корисника услуга Група, Територија, добављача, добављач Тип, кампање, продаја партнер итд" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Нето промена у инвентару DocType: Employee,Passport Number,Пасош Број @@ -561,7 +562,7 @@ DocType: Purchase Invoice,Quarterly,Тромесечни DocType: Selling Settings,Delivery Note Required,Испорука Напомена Обавезно DocType: Sales Order Item,Basic Rate (Company Currency),Основни курс (Друштво валута) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Бацкфлусх сировине на основу -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,"Пожалуйста, введите детали деталя" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,"Пожалуйста, введите детали деталя" DocType: Purchase Receipt,Other Details,Остали детаљи DocType: Account,Accounts,Рачуни apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,маркетинг @@ -574,7 +575,7 @@ DocType: Employee,Provide email id registered in company,Обезбедити и DocType: Hub Settings,Seller City,Продавац Град DocType: Email Digest,Next email will be sent on:,Следећа порука ће бити послата на: DocType: Offer Letter Term,Offer Letter Term,Понуда Леттер Терм -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Тачка има варијанте. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Тачка има варијанте. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Пункт {0} не найден DocType: Bin,Stock Value,Вредност акције apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Дрво Тип @@ -582,7 +583,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Кол Потрошено по DocType: Serial No,Warranty Expiry Date,Гаранција Датум истека DocType: Material Request Item,Quantity and Warehouse,Количина и Магацин DocType: Sales Invoice,Commission Rate (%),Комисија Стопа (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Против Ваучер Тип мора бити један од продаје Реда, продаја Фактура или Јоурнал Ентри" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Против Ваучер Тип мора бити један од продаје Реда, продаја Фактура или Јоурнал Ентри" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,ваздушно-космички простор DocType: Journal Entry,Credit Card Entry,Кредитна картица Ступање apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Задатак Предмет @@ -669,10 +670,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,одговорност apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Санкционисани износ не може бити већи од износ потраживања у низу {0}. DocType: Company,Default Cost of Goods Sold Account,Уобичајено Набавна вредност продате робе рачуна -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Прайс-лист не выбран +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Прайс-лист не выбран DocType: Employee,Family Background,Породица Позадина DocType: Process Payroll,Send Email,Сенд Емаил -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Упозорење: Неважећи Прилог {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Упозорење: Неважећи Прилог {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Без дозвола DocType: Company,Default Bank Account,Уобичајено банковног рачуна apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Филтрирање на основу партије, изаберите партија Типе први" @@ -700,7 +701,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,По DocType: Features Setup,"To enable ""Point of Sale"" features",Да бисте омогућили "Поинт оф Сале" Феатурес DocType: Bin,Moving Average Rate,Мовинг Авераге рате DocType: Production Planning Tool,Select Items,Изаберите ставке -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} против Предлога закона {1} {2} од +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} против Предлога закона {1} {2} од DocType: Maintenance Visit,Completion Status,Завршетак статус DocType: Sales Invoice Item,Target Warehouse,Циљна Магацин DocType: Item,Allow over delivery or receipt upto this percent,Дозволите преко испоруку или пријем упто овом одсто @@ -760,7 +761,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Ма apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Није могуће пронаћи време за наредних {0} дана за рад {1} DocType: Production Order,Plan material for sub-assemblies,План материјал за подсклопови apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,БОМ {0} мора бити активна -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,Прво изаберите врсту документа +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Прво изаберите врсту документа apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Иди Корпа apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Отменить Материал просмотров {0} до отмены этого обслуживания визит DocType: Salary Slip,Leave Encashment Amount,Оставите Износ Енцасхмент @@ -778,7 +779,7 @@ DocType: Purchase Receipt,Range,Домет DocType: Supplier,Default Payable Accounts,Уобичајено се плаћају рачуни apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Сотрудник {0} не активен или не существует DocType: Features Setup,Item Barcode,Ставка Баркод -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Ставка Варијанте {0} ажурирани +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Ставка Варијанте {0} ажурирани DocType: Quality Inspection Reading,Reading 6,Читање 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Фактури Адванце DocType: Address,Shop,Продавница @@ -801,7 +802,7 @@ DocType: Salary Slip,Total in words,Укупно у речима DocType: Material Request Item,Lead Time Date,Олово Датум Време apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,је обавезно. Можда Мењачница запис није створен за apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Ред # {0}: Наведите Сериал но за пункт {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","За 'производ' Бундле предмета, Магацин, редни број и серијски бр ће се сматрати из "листе паковања 'табели. Ако Складиште и серијски бр су исти за све ставке паковање за било коју 'производ' Бундле ставке, те вредности се могу уносити у главном табели тачка, вредности ће бити копирана у 'Паковање лист' сто." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","За 'производ' Бундле предмета, Магацин, редни број и серијски бр ће се сматрати из "листе паковања 'табели. Ако Складиште и серијски бр су исти за све ставке паковање за било коју 'производ' Бундле ставке, те вредности се могу уносити у главном табели тачка, вредности ће бити копирана у 'Паковање лист' сто." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Испоруке купцима. DocType: Purchase Invoice Item,Purchase Order Item,Куповина ставке поруџбине apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Косвенная прибыль @@ -822,6 +823,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Изабери Паиро apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Иди на одговарајуће групе (обично Примена средстава> обртна имовина> банковне рачуне и креирати нови налог (кликом на Додај Цхилд) типа "Банка" DocType: Workstation,Electricity Cost,Струја Трошкови DocType: HR Settings,Don't send Employee Birthday Reminders,Немојте слати запослених подсетник за рођендан +,Employee Holiday Attendance,Запослени Холидаи Присуство DocType: Opportunity,Walk In,Шетња у apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Сток Записи DocType: Item,Inspection Criteria,Инспекцијски Критеријуми @@ -844,7 +846,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options, DocType: Journal Entry Account,Expense Claim,Расходи потраживање apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Количина за {0} DocType: Leave Application,Leave Application,Оставите апликацију -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Оставите Тоол доделе +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Оставите Тоол доделе DocType: Leave Block List,Leave Block List Dates,Оставите Датуми листу блокираних DocType: Company,If Monthly Budget Exceeded (for expense account),Ако Месечни буџет Прекорачено (за расход рачун) DocType: Workstation,Net Hour Rate,Нет час курс @@ -854,7 +856,7 @@ DocType: Packing Slip Item,Packing Slip Item,Паковање Слип Итем DocType: POS Profile,Cash/Bank Account,Готовина / банковног рачуна apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Уклоњене ствари без промене у количини или вриједности. DocType: Delivery Note,Delivery To,Достава Да -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Атрибут сто је обавезно +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Атрибут сто је обавезно DocType: Production Planning Tool,Get Sales Orders,Гет продајних налога apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} не може бити негативан apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Попуст @@ -918,7 +920,7 @@ DocType: SMS Center,Total Characters,Укупно Карактери apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},Молимо Вас да изаберете БОМ БОМ у пољу за ставку {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,Ц-Форм Рачун Детаљ DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Плаћање Помирење Фактура -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Допринос% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Допринос% DocType: Item,website page link,веб страница веза DocType: Company,Company registration numbers for your reference. Tax numbers etc.,. Компанија регистарски бројеви за референцу Порески бројеви итд DocType: Sales Partner,Distributor,Дистрибутер @@ -955,14 +957,15 @@ apps/erpnext/erpnext/utilities/doctype/contact/contact.py +67,Please set Email I DocType: Item,UOMs,УОМс apps/erpnext/erpnext/stock/utils.py +171,{0} valid serial nos for Item {1},{0} действительные серийные NOS для Пункт {1} apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +57,Item Code cannot be changed for Serial No.,Шифра не може се мењати за серијским бројем +apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +22,POS Profile {0} already created for user: {1} and company {2},ПОС профил {0} већ створена за корисника: {1} и компанија {2} DocType: Purchase Order Item,UOM Conversion Factor,УОМ конверзије фактор DocType: Stock Settings,Default Item Group,Уобичајено тачка Група apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Снабдевач базе података. DocType: Account,Balance Sheet,баланс -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Цост Центер За ставку са Код товара ' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Цост Центер За ставку са Код товара ' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,Ваша особа продаја ће добити подсетник на овај датум да се контактира купца apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Даље рачуни могу бити у групама, али уноса можете извршити над несрпским групама" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Порески и други плата одбитака. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Порески и други плата одбитака. DocType: Lead,Lead,Довести DocType: Email Digest,Payables,Обавезе DocType: Account,Warehouse,Магацин @@ -979,10 +982,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Неусаглаш DocType: Global Defaults,Current Fiscal Year,Текуће фискалне године DocType: Global Defaults,Disable Rounded Total,Онемогући Роундед Укупно DocType: Lead,Call,Позив -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,"""Уноси"" не могу бити празни" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,"""Уноси"" не могу бити празни" apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Дубликат строка {0} с же {1} ,Trial Balance,Пробни биланс -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Подешавање Запослени +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Подешавање Запослени apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","Мрежа """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,"Пожалуйста, выберите префикс первым" apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,истраживање @@ -991,7 +994,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,Кориснички ИД apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Погледај Леџер apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Најраније -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Пункт Группа существует с тем же именем , пожалуйста, измените имя элемента или переименовать группу товаров" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Пункт Группа существует с тем же именем , пожалуйста, измените имя элемента или переименовать группу товаров" DocType: Production Order,Manufacture against Sales Order,Производња против налога за продају apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Остальной мир apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,Ставка {0} не може имати Батцх @@ -1016,7 +1019,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Одбијен Магацин DocType: GL Entry,Against Voucher,Против ваучер DocType: Item,Default Buying Cost Center,По умолчанию Покупка МВЗ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Да бисте добили најбоље од ЕРПНект, препоручујемо да узмете мало времена и гледати ове видео снимке помоћ." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Пункт {0} должно быть Продажи товара +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Пункт {0} должно быть Продажи товара apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,у DocType: Item,Lead Time in days,Олово Време у данима ,Accounts Payable Summary,Обавезе према добављачима Преглед @@ -1042,7 +1045,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,пољопривреда apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Ваши производи или услуге DocType: Mode of Payment,Mode of Payment,Начин плаћања -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Сајт Слика треба да буде јавни фајл или УРЛ веб-сајта +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Сајт Слика треба да буде јавни фајл или УРЛ веб-сајта apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,То јекорен ставка група и не може се мењати . DocType: Journal Entry Account,Purchase Order,Налог за куповину DocType: Warehouse,Warehouse Contact Info,Магацин Контакт Инфо @@ -1053,7 +1056,7 @@ DocType: Serial No,Serial No Details,Серијска Нема детаља DocType: Purchase Invoice Item,Item Tax Rate,Ставка Пореска стопа apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","За {0}, само кредитне рачуни могу бити повезани против неке друге ставке дебитне" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Доставка Примечание {0} не представлено -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Пункт {0} должен быть Субдоговорная Пункт +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Пункт {0} должен быть Субдоговорная Пункт apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Капитальные оборудование apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Правилник о ценама је први изабран на основу 'Примени на ""терену, који могу бити артикла, шифра групе или Марка." DocType: Hub Settings,Seller Website,Продавац Сајт @@ -1062,7 +1065,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Циљ DocType: Sales Invoice Item,Edit Description,Измени опис apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Очекивани Датум испоруке је мањи од планираног почетка Датум. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,За добављача +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,За добављача DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Подешавање Тип налога помаже у одабиру овог рачуна у трансакцијама. DocType: Purchase Invoice,Grand Total (Company Currency),Гранд Укупно (Друштво валута) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Укупно Одлазећи @@ -1114,7 +1117,6 @@ DocType: Authorization Rule,Average Discount,Просечна дисконтна DocType: Address,Utilities,Комуналне услуге DocType: Purchase Invoice Item,Accounting,Рачуноводство DocType: Features Setup,Features Setup,Функције за подешавање -DocType: Item,Is Service Item,Да ли је услуга шифра apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Период примене не може бити изван одсуство расподела Период DocType: Activity Cost,Projects,Пројекти apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,"Пожалуйста, выберите финансовый год" @@ -1135,7 +1137,7 @@ DocType: Item,Maintain Stock,Одржавајте Стоцк apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Сток уноси већ створене за производно Реда apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Нето промена у основном средству DocType: Leave Control Panel,Leave blank if considered for all designations,Оставите празно ако се сматра за све ознакама -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Начисление типа «Актуальные ' в строке {0} не могут быть включены в пункт Оценить +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Начисление типа «Актуальные ' в строке {0} не могут быть включены в пункт Оценить apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Мак: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Од датетиме DocType: Email Digest,For Company,За компаније @@ -1144,8 +1146,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Достава Адреса Име apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Контни DocType: Material Request,Terms and Conditions Content,Услови коришћења садржаја -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,не може бити већи од 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Пункт {0} не является акционерным Пункт +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,не може бити већи од 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Пункт {0} не является акционерным Пункт DocType: Maintenance Visit,Unscheduled,Неплански DocType: Employee,Owned,Овнед DocType: Salary Slip Deduction,Depends on Leave Without Pay,Зависи оставити без Паи @@ -1167,7 +1169,7 @@ Used for Taxes and Charges","Пореска детаљ сто учитани и apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Запослени не може пријавити за себе. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Аконалог је замрзнут , уноси могу да ограничене корисницима ." DocType: Email Digest,Bank Balance,Стање на рачуну -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Књиговодство Ступање на {0}: {1} може се вршити само у валути: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Књиговодство Ступање на {0}: {1} може се вршити само у валути: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Не активна структура плата фоунд фор запосленом {0} и месец DocType: Job Opening,"Job profile, qualifications required etc.","Профиль работы , квалификация , необходимые т.д." DocType: Journal Entry Account,Account Balance,Рачун Биланс @@ -1184,7 +1186,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Sub сбор DocType: Shipping Rule Condition,To Value,Да вредност DocType: Supplier,Stock Manager,Сток директор apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Источник склад является обязательным для ряда {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Паковање Слип +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Паковање Слип apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,аренда площади для офиса apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Подешавање Подешавања СМС Гатеваи apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Увоз није успело ! @@ -1228,7 +1230,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,БОМ Детаљ Нема DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Додатне Износ попуста (Фирма валута) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Ошибка: {0} > {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,Молимо креирајте нови налог из контном оквиру . -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Одржавање посета +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Одржавање посета apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Кориснички> Кориснички Група> Територија DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Доступно партије Кол у складишту DocType: Time Log Batch Detail,Time Log Batch Detail,Време Лог Групно Детаљ @@ -1237,7 +1239,7 @@ DocType: Leave Block List,Block Holidays on important days.,Блоцк Холи ,Accounts Receivable Summary,Потраживања од купаца Преглед apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,Молимо поставите Усер ИД поље у запису запослених за постављање Емплоиее Роле DocType: UOM,UOM Name,УОМ Име -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Допринос Износ +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Допринос Износ DocType: Sales Invoice,Shipping Address,Адреса испоруке DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,Овај алат помаже вам да ажурирају и поправити количину и вредновање складишту у систему. Обично се користи за синхронизацију вредности система и шта заправо постоји у вашим складиштима. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,У речи ће бити видљив када сачувате напомену Деливери. @@ -1278,7 +1280,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Да бисте пратили ставки помоћу баркод. Моћи ћете да унесете ставке у испоруци напомени и продаје фактуру за скенирање баркода на ставке. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Поново плаћања Емаил DocType: Dependent Task,Dependent Task,Зависна Задатак -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Коэффициент пересчета для дефолтного Единица измерения должна быть 1 в строке {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Коэффициент пересчета для дефолтного Единица измерения должна быть 1 в строке {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},"Оставить типа {0} не может быть больше, чем {1}" DocType: Manufacturing Settings,Try planning operations for X days in advance.,Покушајте планирање операција за Кс дана унапред. DocType: HR Settings,Stop Birthday Reminders,Стани Рођендан Подсетници @@ -1288,7 +1290,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Погледај apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Нето промена на пари DocType: Salary Structure Deduction,Salary Structure Deduction,Плата Структура Одбитак -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Единица измерения {0} был введен более чем один раз в таблицу преобразования Factor +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Единица измерения {0} был введен более чем один раз в таблицу преобразования Factor apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Плаћање Захтјев већ постоји {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Трошкови издатих ставки apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Количина не сме бити више од {0} @@ -1317,7 +1319,7 @@ DocType: BOM Item,BOM Item,БОМ шифра DocType: Appraisal,For Employee,За запосленог apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Ред {0}: Унапред против добављач мора да се задужи DocType: Company,Default Values,Уобичајено Вредности -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Ров {0}: Плаћање износ не може бити негативан +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Ров {0}: Плаћање износ не може бити негативан DocType: Expense Claim,Total Amount Reimbursed,Укупан износ рефундирају apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Против добављача Фактура {0} {1} од DocType: Customer,Default Price List,Уобичајено Ценовник @@ -1345,8 +1347,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Г DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Замените одређену БОМ у свим осталим саставница у којима се користи. Она ће заменити стару БОМ везу, упдате трошкове и регенерише ""БОМ Експлозија итем"" табелу по новом БОМ" DocType: Shopping Cart Settings,Enable Shopping Cart,Омогући Корпа DocType: Employee,Permanent Address,Стална адреса -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Пункт {0} должен быть Service Элемент . -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Унапред платио против {0} {1} не може бити већи \ од ГРАНД Укупно {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,"Пожалуйста, выберите элемент кода" DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Смањите одбитка за дозволу без плате (ЛВП) @@ -1402,12 +1403,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,основной apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Варијанта DocType: Naming Series,Set prefix for numbering series on your transactions,Сет префикс за нумерисање серију на својим трансакцијама +DocType: Employee Attendance Tool,Employees HTML,zaposleni ХТМЛ apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Остановился заказ не может быть отменен. Unstop отменить . -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Уобичајено БОМ ({0}) мора бити активан за ову ставку или његовог шаблон +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Уобичајено БОМ ({0}) мора бити активан за ову ставку или његовог шаблон DocType: Employee,Leave Encashed?,Оставите Енцасхед? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Прилика Од пољу је обавезна DocType: Item,Variants,Варијанте -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Маке наруџбенице +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Маке наруџбенице DocType: SMS Center,Send To,Пошаљи apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Существует не хватает отпуск баланс для отпуске Тип {0} DocType: Payment Reconciliation Payment,Allocated amount,Додијељени износ @@ -1431,6 +1433,7 @@ apps/erpnext/erpnext/config/manufacturing.py +24,Time Logs for manufacturing.,Т DocType: Item,Apply Warehouse-wise Reorder Level,Нанесите Варехоусе-Висе Реордер Левел apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +425,BOM {0} must be submitted,БОМ {0} мора да се поднесе DocType: Authorization Control,Authorization Control,Овлашћење за контролу +apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +92,Row #{0}: Rejected Warehouse is mandatory against rejected Item {1},Ред # {0}: Одбијен Складиште је обавезна против одбијен тачком {1} apps/erpnext/erpnext/config/projects.py +23,Time Log for tasks.,Време Пријава за задатке. apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +562,Payment,Плаћање DocType: Production Order Operation,Actual Time and Cost,Тренутно време и трошак @@ -1506,7 +1509,7 @@ DocType: Sales Person,Name and Employee ID,Име и број запослени apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,"Впритык не может быть , прежде чем отправлять Дата" DocType: Website Item Group,Website Item Group,Сајт тачка Група apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Пошлины и налоги -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,"Пожалуйста, введите дату Ссылка" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,"Пожалуйста, введите дату Ссылка" apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Паимент Гатеваи налог није конфигурисан apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} уноса плаћања не може да се филтрира од {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,Табела за ставку која ће бити приказана у веб сајта @@ -1527,7 +1530,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Резолуција Детаљи DocType: Quality Inspection Reading,Acceptance Criteria,Критеријуми за пријем DocType: Item Attribute,Attribute Name,Назив атрибута -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Пункт {0} должно быть продажи или в пункте СЕРВИС {1} DocType: Item Group,Show In Website,Схов у сајт apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Група DocType: Task,Expected Time (in hours),Очекивано време (у сатима) @@ -1559,7 +1561,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Достава Износ ,Pending Amount,Чека Износ DocType: Purchase Invoice Item,Conversion Factor,Конверзија Фактор DocType: Purchase Order,Delivered,Испоручено -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Настройка сервера входящей подрабатывать электронный идентификатор . (например jobs@example.com ) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Настройка сервера входящей подрабатывать электронный идентификатор . (например jobs@example.com ) DocType: Purchase Receipt,Vehicle Number,Број возила DocType: Purchase Invoice,The date on which recurring invoice will be stop,Датум на који се понавља фактура ће бити зауставити apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Укупно издвојена лишће {0} не може бити мањи од већ одобрених лишћа {1} за период @@ -1576,7 +1578,7 @@ DocType: HR Settings,HR Settings,ХР Подешавања apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Расходи Тужба се чека на одобрење . СамоРасходи одобраватељ да ажурирате статус . DocType: Purchase Invoice,Additional Discount Amount,Додатне Износ попуста DocType: Leave Block List Allow,Leave Block List Allow,Оставите листу блокираних Аллов -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Аббр не може бити празно или простор +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Аббр не може бити празно или простор apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Група не-Гроуп apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,спортски apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Укупно Стварна @@ -1600,7 +1602,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},Фактор Единица измерения преобразования требуется в строке {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Дата просвет не может быть до даты регистрации в строке {0} DocType: Salary Slip,Deduction,Одузимање -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Ставка Цена додат за {0} у ценовнику {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Ставка Цена додат за {0} у ценовнику {1} DocType: Address Template,Address Template,Адреса шаблона apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,Молимо Вас да унесете Ид радник ове продаје особе DocType: Territory,Classification of Customers by region,Класификација купаца по региону @@ -1617,7 +1619,7 @@ DocType: Employee,Date of Birth,Датум рођења apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Пункт {0} уже вернулся DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,**Фискална година** представља Финансијску годину. Све рачуноводствене уносе и остале главне трансакције се прате наспрам **Фискалне фодине**. DocType: Opportunity,Customer / Lead Address,Кориснички / Олово Адреса -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Упозорење: Неважећи сертификат ССЛ на везаности {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Упозорење: Неважећи сертификат ССЛ на везаности {0} DocType: Production Order Operation,Actual Operation Time,Стварна Операција време DocType: Authorization Rule,Applicable To (User),Важећи Да (Корисник) DocType: Purchase Taxes and Charges,Deduct,Одбити @@ -1634,7 +1636,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Сплит Напомена Испорука у пакетима. apps/erpnext/erpnext/hooks.py +69,Shipments,Пошиљке DocType: Purchase Order Item,To be delivered to customer,Који ће бити достављен купца -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Време Пријави статус мора да се поднесе. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Време Пријави статус мора да се поднесе. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,Серијски број {0} не припада ниједној Варехоусе apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Ров # DocType: Purchase Invoice,In Words (Company Currency),Речима (Друштво валута) @@ -1650,7 +1652,7 @@ DocType: Leave Application,Total Leave Days,Укупно ЛЕАВЕ Дана DocType: Email Digest,Note: Email will not be sent to disabled users,Напомена: Е-маил неће бити послат са инвалидитетом корисницима apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Изаберите фирму ... DocType: Leave Control Panel,Leave blank if considered for all departments,Оставите празно ако се сматра за сва одељења -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Виды занятости (постоянная , контракт, стажер и т.д. ) ." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Виды занятости (постоянная , контракт, стажер и т.д. ) ." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} является обязательным для п. {1} DocType: Currency Exchange,From Currency,Од валутног apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Молимо Вас да изаберете издвајају, Тип фактуре и број фактуре у атлеаст једном реду" @@ -1669,7 +1671,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,У процесу DocType: Authorization Rule,Itemwise Discount,Итемвисе Попуст DocType: Purchase Order Item,Reference Document Type,Референтна Тип документа -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} против Салес Ордер {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} против Салес Ордер {1} DocType: Account,Fixed Asset,Исправлена активами apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Серијализоване Инвентар DocType: Activity Type,Default Billing Rate,Уобичајено обрачуна курс @@ -1679,7 +1681,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Продаја Налог за плаћања DocType: Expense Claim Detail,Expense Claim Detail,Расходи потраживање Детаљ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Време трупци цреатед: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,Молимо изаберите исправан рачун +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,Молимо изаберите исправан рачун DocType: Item,Weight UOM,Тежина УОМ DocType: Employee,Blood Group,Крв Група DocType: Purchase Invoice Item,Page Break,Страна Пауза @@ -1714,7 +1716,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM рекурсия : {0} не может быть родитель или ребенок {2} DocType: Production Order Operation,Completed Qty,Завршен Кол apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","За {0}, само дебитне рачуни могу бити повезани против другог кредитног уласка" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Прайс-лист {0} отключена +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Прайс-лист {0} отключена DocType: Manufacturing Settings,Allow Overtime,Дозволи Овертиме apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} серијски бројеви који су потребни за тачком {1}. Ви сте под условом {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Тренутни Процена курс @@ -1765,7 +1767,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Не apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Предмет бр не може бити 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,Уколико имате продајни тим и продаја партнерима (Цханнел Партнерс) они могу бити означене и одржава свој допринос у активностима продаје DocType: Item,Show a slideshow at the top of the page,Приказивање слајдова на врху странице -DocType: Item,"Allow in Sales Order of type ""Service""",Дозволите у Салес Ордер типа "службе" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Магазины DocType: Time Log,Projects Manager,Пројекти менаџер DocType: Serial No,Delivery Time,Време испоруке @@ -1780,6 +1781,7 @@ DocType: Rename Tool,Rename Tool,Преименовање Тоол apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Ажурирање Трошкови DocType: Item Reorder,Item Reorder,Предмет Реордер apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Пренос материјала +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Итем {0} мора бити продаје предмета на {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Наведите операције , оперативне трошкове и дају јединствену операцију без своје пословање ." DocType: Purchase Invoice,Price List Currency,Ценовник валута DocType: Naming Series,User must always select,Корисник мора увек изабрати @@ -1800,7 +1802,7 @@ DocType: Appraisal,Employee,Запосленик apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Увоз е-маил Од apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Позови као корисник DocType: Features Setup,After Sale Installations,Након инсталације продају -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} је у потпуности наплаћује +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} је у потпуности наплаћује DocType: Workstation Working Hour,End Time,Крајње време apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Стандартные условия договора для продажи или покупки. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Группа по ваучером @@ -1826,7 +1828,7 @@ DocType: Upload Attendance,Attendance To Date,Присуство Дате apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Настройка сервера входящей для продажи электронный идентификатор . (например sales@example.com ) DocType: Warranty Claim,Raised By,Подигао DocType: Payment Gateway Account,Payment Account,Плаћање рачуна -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,Наведите компанија наставити +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,Наведите компанија наставити apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Нето Промена Потраживања apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Компенсационные Выкл DocType: Quality Inspection Reading,Accepted,Примљен @@ -1838,14 +1840,14 @@ DocType: Shipping Rule,Shipping Rule Label,Достава Правило Лаб apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Сировине не може бити празан. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Није могуће ажурирати залихе, фактура садржи испоруку ставку дроп." DocType: Newsletter,Test,Тест -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Као што постоје постојеће трансакције стоцк за ову ставку, \ не можете променити вредности 'има серијски Не', 'Има серијски бр', 'Да ли лагеру предмета' и 'Процена Метод'" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Брзо Јоурнал Ентри apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,Не можете променити стопу ако бом помиње агианст било које ставке DocType: Employee,Previous Work Experience,Претходно радно искуство DocType: Stock Entry,For Quantity,За Количина apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},"Пожалуйста, введите Запланированное Количество по пункту {0} в строке {1}" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} не представлено +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} не представлено apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Захтеви за ставке. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Одвојена производња поруџбина ће бити направљен за сваку готовог добар ставке. DocType: Purchase Invoice,Terms and Conditions1,Услови и Цондитионс1 @@ -1870,6 +1872,7 @@ DocType: Notification Control,Expense Claim Approved Message,Расходи по DocType: Email Digest,How frequently?,Колико често? DocType: Purchase Receipt,Get Current Stock,Гет тренутним залихама apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Дрво Билл оф Материалс +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Марко Садашња apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Техническое обслуживание дата не может быть до даты доставки для Serial No {0} DocType: Production Order,Actual End Date,Сунце Датум завршетка DocType: Authorization Rule,Applicable To (Role),Важећи Да (улога) @@ -1884,7 +1887,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,"Конец контракта Дата должна быть больше, чем дата вступления" DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,Треће лице дистрибутер / дилер / заступника / сарадник / дистрибутер који продаје компанијама производе за провизију. DocType: Customer Group,Has Child Node,Има деце Ноде -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} против нарудзбенице {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} против нарудзбенице {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Унесите статичке параметре овде УРЛ адресу (нпр. пошиљалац = ЕРПНект, усернаме = ЕРПНект, лозинком = 1234 итд)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} ни на који активно фискалној години. За више детаља проверите {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Это пример сайт автоматически сгенерированный из ERPNext @@ -1932,7 +1935,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Додајте или Одузети: Било да желите да додате или одбије порез." DocType: Purchase Receipt Item,Recd Quantity,Рецд Количина apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},"Не можете производить больше элемент {0} , чем количество продаж Заказать {1}" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Сток Ступање {0} не поднесе +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Сток Ступање {0} не поднесе DocType: Payment Reconciliation,Bank / Cash Account,Банка / готовински рачун DocType: Tax Rule,Billing City,Биллинг Цити DocType: Global Defaults,Hide Currency Symbol,Сакриј симбол валуте @@ -1958,7 +1961,7 @@ DocType: Salary Structure,Total Earning,Укупна Зарада DocType: Purchase Receipt,Time at which materials were received,Време у коме су примљене материјали apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Моје адресе DocType: Stock Ledger Entry,Outgoing Rate,Одлазећи курс -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Организация филиал мастер . +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Организация филиал мастер . apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,или DocType: Sales Order,Billing Status,Обрачун статус apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Коммунальные расходы @@ -1996,7 +1999,7 @@ DocType: Bin,Reserved Quantity,Резервисани Количина DocType: Landed Cost Voucher,Purchase Receipt Items,Куповина Ставке пријема apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Прилагођавање Облици DocType: Account,Income Account,Приходи рачуна -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Испорука +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Испорука DocType: Stock Reconciliation Item,Current Qty,Тренутни ком DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",Погледајте "стопа материјала на бази" у Цостинг одељак DocType: Appraisal Goal,Key Responsibility Area,Кључна Одговорност Површина @@ -2008,9 +2011,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,В DocType: Notification Control,Purchase Order Message,Куповина поруку Ордер DocType: Tax Rule,Shipping Country,Достава Земља DocType: Upload Attendance,Upload HTML,Уплоад ХТМЛ -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","Укупно унапред ({0}) против Реда {1} не може бити већи од Великог \ - Укупно ({2})" DocType: Employee,Relieving Date,Разрешење Дате apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Правилник о ценама је направљен да замени Ценовник / дефинисати попуст проценат, на основу неких критеријума." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Складиште може да се промени само преко Сток Улаз / Испорука Напомена / рачуном @@ -2020,8 +2020,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,по apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Ако изабрана Правилник о ценама је направљен за '' Прице, он ће преписати Ценовник. Правилник о ценама цена је коначна цена, тако да би требало да се примени даље попуст. Стога, у трансакцијама као што продаје Реда, наруџбину итд, то ће бити продата у ""рате"" терену, а не области 'Ценовник рате'." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Стаза води од индустрије Типе . DocType: Item Supplier,Item Supplier,Ставка Снабдевач -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,Унесите Шифра добити пакет не -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},"Пожалуйста, выберите значение для {0} quotation_to {1}" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,Унесите Шифра добити пакет не +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},"Пожалуйста, выберите значение для {0} quotation_to {1}" apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Све адресе. DocType: Company,Stock Settings,Стоцк Подешавања apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Спајање је могуће само ако следеће особине су исти у оба записа. Да ли је група, корен тип, Компанија" @@ -2044,7 +2044,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Чек Број DocType: Payment Tool Detail,Payment Tool Detail,Плаћање Алат Детаљ ,Sales Browser,Браузер по продажам DocType: Journal Entry,Total Credit,Укупна кредитна -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Упозорење: Још једна {0} # {1} постоји против уласка залиха {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Упозорење: Још једна {0} # {1} постоји против уласка залиха {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,местный apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Кредиты и авансы ( активы ) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Дужници @@ -2064,8 +2064,8 @@ DocType: Price List,Price List Master,Ценовник Мастер DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,Све продаје Трансакције се могу означена против више лица ** ** Продаја тако да можете подесити и пратити циљеве. ,S.O. No.,С.О. Не. DocType: Production Order Operation,Make Time Log,Маке Тиме Пријави -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Молимо поставите количину преусмеравање -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},"Пожалуйста, создайте Клиента от свинца {0}" +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Молимо поставите количину преусмеравање +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},"Пожалуйста, создайте Клиента от свинца {0}" DocType: Price List,Applicable for Countries,Важи за земље apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Компьютеры apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,То јекорен група купац и не може се мењати . @@ -2113,7 +2113,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Обр DocType: Payment Reconciliation Invoice,Outstanding Amount,Изванредна Износ DocType: Project Task,Working,Радни DocType: Stock Ledger Entry,Stock Queue (FIFO),Берза Куеуе (ФИФО) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Изаберите време Протоколи. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Изаберите време Протоколи. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} не принадлежит компании {1} DocType: Account,Round Off,Заокружити ,Requested Qty,Тражени Кол @@ -2151,11 +2151,12 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Гет Релевантне уносе apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Рачуноводство Ентри за Деонице DocType: Sales Invoice,Sales Team1,Продаја Теам1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Пункт {0} не существует +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Пункт {0} не существует DocType: Sales Invoice,Customer Address,Кориснички Адреса DocType: Payment Request,Recipient and Message,Прималац и порука DocType: Purchase Invoice,Apply Additional Discount On,Нанесите додатни попуст Он DocType: Account,Root Type,Корен Тип +apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +84,Row # {0}: Cannot return more than {1} for Item {2},Ред # {0}: Не могу да се врате више од {1} за тачком {2} apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +52,Plot,заплет DocType: Item Group,Show this slideshow at the top of the page,Покажи ову пројекцију слајдова на врху странице DocType: BOM,Item UOM,Ставка УОМ @@ -2169,7 +2170,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Муте-маил apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Храна , пиће и дуван" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,ПЛ или БС -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Може само извршити уплату против ненаплаћене {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Може само извршити уплату против ненаплаћене {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,"Скорость Комиссия не может быть больше, чем 100" apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Минимална Инвентар Ниво DocType: Stock Entry,Subcontract,Подуговор @@ -2187,9 +2188,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,софтв apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Боја DocType: Maintenance Visit,Scheduled,Планиран apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle",Молимо одаберите ставку где "је акционарско тачка" је "Не" и "Да ли је продаје Тачка" "Да" и нема другог производа Бундле +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Укупно Адванце ({0}) против Реда {1} не може бити већи од Великог Укупно ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Изаберите мјесечни неравномерно дистрибуира широм мете месеци. DocType: Purchase Invoice Item,Valuation Rate,Процена Стопа -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Прайс-лист Обмен не выбран +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Прайс-лист Обмен не выбран apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,Ставка Ред {0}: Куповина Пријем {1} не постоји у табели 'пурцхасе примитака' apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Сотрудник {0} уже подало заявку на {1} между {2} и {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Пројекат Датум почетка @@ -2201,6 +2203,7 @@ DocType: Quality Inspection,Inspection Type,Инспекција Тип apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},"Пожалуйста, выберите {0}" DocType: C-Form,C-Form No,Ц-Образац бр DocType: BOM,Exploded_items,Екплодед_итемс +DocType: Employee Attendance Tool,Unmarked Attendance,Необележен Присуство apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,истраживач apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,"Пожалуйста, сохраните бюллетень перед отправкой" apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Име или е-маил је обавезан @@ -2226,7 +2229,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Пот DocType: Payment Gateway,Gateway,Пролаз apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Добављач> Добављач Тип apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,"Пожалуйста, введите даты снятия ." -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Амт +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Амт apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,"Только Оставьте приложений с статуса ""Одобрено"" могут быть представлены" apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Адрес Название является обязательным. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,"Унесите назив кампање, ако извор истраге је кампања" @@ -2241,10 +2244,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Прихваћено Мага DocType: Bank Reconciliation Detail,Posting Date,Постављање Дате DocType: Item,Valuation Method,Процена Метод apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Није могуће пронаћи курс за {0} до {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Марка Пола дан DocType: Sales Invoice,Sales Team,Продаја Тим apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Дупликат унос DocType: Serial No,Under Warranty,Под гаранцијом -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Грешка] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Грешка] DocType: Sales Order,In Words will be visible once you save the Sales Order.,У речи ће бити видљив када сачувате продајних налога. ,Employee Birthday,Запослени Рођендан apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Вентуре Цапитал @@ -2267,6 +2271,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,МВЗ с существующими сделок не могут быть преобразованы в группе DocType: Account,Depreciation,амортизация apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Супплиер (с) +DocType: Employee Attendance Tool,Employee Attendance Tool,Запослени Присуство Алат DocType: Supplier,Credit Limit,Кредитни лимит apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Изаберите тип трансакције DocType: GL Entry,Voucher No,Ваучер Бр. @@ -2293,7 +2298,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Корневая учетная запись не может быть удалена ,Is Primary Address,Примарна Адреса DocType: Production Order,Work-in-Progress Warehouse,Рад у прогресу Магацин -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Ссылка # {0} от {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Ссылка # {0} от {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Управљање адресе DocType: Pricing Rule,Item Code,Шифра DocType: Production Planning Tool,Create Production Orders,Креирање налога Производне @@ -2320,7 +2325,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Банка помирење apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Гет Упдатес apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Материал Запрос {0} отменяется или остановлен apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Додајте неколико узорака евиденцију -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Оставите Манагемент +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Оставите Манагемент apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Группа по Счет DocType: Sales Order,Fully Delivered,Потпуно Испоручено DocType: Lead,Lower Income,Доња прихода @@ -2335,6 +2340,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"""Од датума"" мора бити након ""До датума""" ,Stock Projected Qty,Пројектовани Стоцк Кти apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Клиент {0} не принадлежит к проекту {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Приметан Присуство ХТМЛ DocType: Sales Order,Customer's Purchase Order,Куповина нарудзбини DocType: Warranty Claim,From Company,Из компаније apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Вредност или Кол @@ -2399,6 +2405,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Вире Трансфер apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,Изаберите банковни рачун DocType: Newsletter,Create and Send Newsletters,Стварање и слање Билтен +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Štiklirati sve DocType: Sales Order,Recurring Order,Понављало Ордер DocType: Company,Default Income Account,Уобичајено прихода Рачун apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Кориснички Група / Кориснички @@ -2430,6 +2437,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Повратак пр DocType: Item,Warranty Period (in days),Гарантни период (у данима) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Нето готовина из пословања apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,например НДС +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Марка запослених Присуство у ринфузи apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Тачка 4 DocType: Journal Entry Account,Journal Entry Account,Јоурнал Ентри рачуна DocType: Shopping Cart Settings,Quotation Series,Цитат Серија @@ -2572,14 +2580,14 @@ DocType: Task,Actual Start Date (via Time Logs),Стварна Датум поч DocType: Stock Reconciliation Item,Before reconciliation,Пре помирења apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Да {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Порези и накнаде додавања (Друштво валута) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Пункт Налоговый ряд {0} должен иметь учетную запись типа налога или доходов или расходов или платная +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Пункт Налоговый ряд {0} должен иметь учетную запись типа налога или доходов или расходов или платная DocType: Sales Order,Partly Billed,Делимично Изграђена DocType: Item,Default BOM,Уобичајено БОМ apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,Молимо Вас да поново тип цомпани наме да потврди apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Укупно Изванредна Амт DocType: Time Log Batch,Total Hours,Укупно време DocType: Journal Entry,Printing Settings,Принтинг Подешавања -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Укупно задуживање мора бити једнак укупном кредитном . +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Укупно задуживање мора бити једнак укупном кредитном . apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,аутомобилски apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Из доставница DocType: Time Log,From Time,Од времена @@ -2626,7 +2634,7 @@ DocType: Purchase Invoice Item,Image View,Слика Погледај DocType: Issue,Opening Time,Радно време apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,"От и До даты , необходимых" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Хартије од вредности и робним берзама -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Уобичајено Јединица мере за варијанту '{0}' мора бити исти као у темплате '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Уобичајено Јединица мере за варијанту '{0}' мора бити исти као у темплате '{1}' DocType: Shipping Rule,Calculate Based On,Израчунајте Басед Он DocType: Delivery Note Item,From Warehouse,Од Варехоусе DocType: Purchase Taxes and Charges,Valuation and Total,Вредновање и Тотал @@ -2648,7 +2656,7 @@ DocType: Leave Application,Follow via Email,Пратите преко е-пош DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Сумма налога После скидка сумма apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Детский учетная запись существует для этой учетной записи . Вы не можете удалить этот аккаунт . apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Либо целевой Количество или целевое количество является обязательным -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},Нет умолчанию спецификации не существует Пункт {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},Нет умолчанию спецификации не существует Пункт {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,Молимо Вас да изаберете датум постања први apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Датум отварања треба да буде пре затварања Дате DocType: Leave Control Panel,Carry Forward,Пренети @@ -2726,7 +2734,7 @@ DocType: Leave Type,Is Encash,Да ли уновчити DocType: Purchase Invoice,Mobile No,Мобилни Нема DocType: Payment Tool,Make Journal Entry,Маке Јоурнал Ентри DocType: Leave Allocation,New Leaves Allocated,Нови Леавес Издвојена -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Проект мудрый данные не доступны для коммерческого предложения +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Проект мудрый данные не доступны для коммерческого предложения DocType: Project,Expected End Date,Очекивани датум завршетка DocType: Appraisal Template,Appraisal Template Title,Процена Шаблон Наслов apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,коммерческий @@ -2774,6 +2782,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,И apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Наведите DocType: Offer Letter,Awaiting Response,Очекујем одговор apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Горе +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Време се је Приходована DocType: Salary Slip,Earning & Deduction,Зарада и дедукције apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Счет {0} не может быть группа apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Опционо . Ова поставка ће се користити за филтрирање у различитим трансакцијама . @@ -2844,14 +2853,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Успешно избрисали све трансакције везане за ову компанију! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Као и на датум apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,пробни рад -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,По умолчанию Склад является обязательным для складе Пункт . +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,По умолчанию Склад является обязательным для складе Пункт . apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Выплата заработной платы за месяц {0} и год {1} DocType: Stock Settings,Auto insert Price List rate if missing,Аутоматско уметак Ценовник стопа ако недостаје apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Укупно Плаћени износ ,Transferred Qty,Пренето Кти apps/erpnext/erpnext/config/learn.py +11,Navigating,Навигација apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,планирање -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Маке Тиме Лог Батцх +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Маке Тиме Лог Батцх apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Издато DocType: Project,Total Billing Amount (via Time Logs),Укупно цард Износ (преко Тиме Протоколи) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Ми продајемо ову ставку @@ -2859,7 +2868,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Количину треба већи од 0 DocType: Journal Entry,Cash Entry,Готовина Ступање DocType: Sales Partner,Contact Desc,Контакт Десц -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Тип листова као што су повремене, болесне итд" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Тип листова као што су повремене, болесне итд" DocType: Email Digest,Send regular summary reports via Email.,Пошаљи редовне збирне извештаје путем е-маил. DocType: Brand,Item Manager,Тачка директор DocType: Cost Center,Add rows to set annual budgets on Accounts.,Додајте редове одређује годишње буџете на рачунима. @@ -2874,7 +2883,7 @@ DocType: GL Entry,Party Type,партия Тип apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,"Сырье не может быть такой же, как главный пункт" DocType: Item Attribute Value,Abbreviation,Скраћеница apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Не Authroized с {0} превышает пределы -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Шаблоном Зарплата . +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Шаблоном Зарплата . DocType: Leave Type,Max Days Leave Allowed,Мак Дани Оставите животиње apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Сет Пореска Правило за куповину DocType: Payment Tool,Set Matching Amounts,Сет Матцхинг Износи @@ -2887,7 +2896,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Цит DocType: Stock Settings,Role Allowed to edit frozen stock,Улога дозвољено да мењате замрзнуте залихе ,Territory Target Variance Item Group-Wise,Территория Целевая Разница Пункт Группа Мудрого apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Все Группы клиентов -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} је обавезно. Можда Мењачница запис није створен за {1} на {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} је обавезно. Можда Мењачница запис није створен за {1} на {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Пореска Шаблон је обавезно. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Рачун {0}: {1 Родитељ рачун} не постоји DocType: Purchase Invoice Item,Price List Rate (Company Currency),Ценовник Цена (Друштво валута) @@ -2907,8 +2916,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Пункт Мудрый ,Item-wise Price List Rate,Ставка - мудар Ценовник курс apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Снабдевач Понуда DocType: Quotation,In Words will be visible once you save the Quotation.,У речи ће бити видљив када сачувате цитат. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} је заустављена -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Штрих {0} уже используется в пункте {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} је заустављена +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Штрих {0} уже используется в пункте {1} DocType: Lead,Add to calendar on this date,Додај у календар овог датума apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Правила для добавления стоимости доставки . apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Предстојећи догађаји @@ -2935,8 +2944,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,С apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Атлеаст једно складиште је обавезно DocType: Serial No,Out of Warranty,Од гаранције DocType: BOM Replace Tool,Replace,Заменити -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} против продаје фактуре {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,"Пожалуйста, введите умолчанию единицу измерения" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} против продаје фактуре {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,"Пожалуйста, введите умолчанию единицу измерения" DocType: Purchase Invoice Item,Project Name,Назив пројекта DocType: Supplier,Mention if non-standard receivable account,Спомените ако нестандардни потраживања рачуна DocType: Journal Entry Account,If Income or Expense,Ако прихода или расхода @@ -2961,7 +2970,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Фискална година: {0} не постоји DocType: Currency Exchange,To Currency,Валутном DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Дозволи следеће корисницима да одобри Апликације оставити за блок дана. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Врсте расхода потраживања. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Врсте расхода потраживања. DocType: Item,Taxes,Порези apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Паид и није испоручена DocType: Project,Default Cost Center,Уобичајено Трошкови Центар @@ -2991,7 +3000,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Ред # {0}: Серијски број {1} не одговара {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Повседневная Оставить DocType: Batch,Batch ID,Батцх ИД -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Примечание: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Примечание: {0} ,Delivery Note Trends,Достава Напомена трендови apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Овонедељном Преглед apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} должен быть куплены или субподрядчиком Пункт в строке {1} @@ -3006,6 +3015,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +61,Piecework,рад apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +68,Avg. Buying Rate,Про. Куповни DocType: Task,Actual Time (in Hours),Тренутно време (у сатима) DocType: Employee,History In Company,Историја У друштву +apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +127,The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than requested quantity {2} for Item {3},количина укупне емисије / Пренос {0} у Индустријска Захтев {1} не може бити већа од тражене количине {2} за тачком {3} apps/erpnext/erpnext/config/crm.py +151,Newsletters,Билтен DocType: Address,Shipping,Шпедиција DocType: Stock Ledger Entry,Stock Ledger Entry,Берза Леџер Ентри @@ -3030,6 +3040,7 @@ DocType: Project Task,Pending Review,Чека критику apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Кликните овде да плати DocType: Task,Total Expense Claim (via Expense Claim),Укупни расходи Цлаим (преко Екпенсе потраживања) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Кориснички Ид +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,марк Одсутан apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Да Време мора бити већи од Фром Тиме DocType: Journal Entry Account,Exchange Rate,Курс apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Заказ на продажу {0} не представлено @@ -3077,7 +3088,7 @@ DocType: Item Group,Default Expense Account,Уобичајено Трошков DocType: Employee,Notice (days),Обавештење ( дана ) DocType: Tax Rule,Sales Tax Template,Порез на промет Шаблон DocType: Employee,Encashment Date,Датум Енцасхмент -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Против Ваучер Тип мора бити један од нарудзбенице, фактури или Јоурнал Ентри" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Против Ваучер Тип мора бити један од нарудзбенице, фактури или Јоурнал Ентри" DocType: Account,Stock Adjustment,Фото со Регулировка apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Уобичајено активност Трошкови постоји за тип активности - {0} DocType: Production Order,Planned Operating Cost,Планирани Оперативни трошкови @@ -3131,6 +3142,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Отпис Ентри DocType: BOM,Rate Of Materials Based On,Стопа материјала на бази apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Подршка Аналтиицс +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Искључи све apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Компания на складах отсутствует {0} DocType: POS Profile,Terms and Conditions,Услови apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},Да би требало да буде дата у фискалну годину. Под претпоставком То Дате = {0} @@ -3152,7 +3164,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Да бисте подесили ову фискалну годину , као подразумевајуће , кликните на "" Сет ас Дефаулт '" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Настройка сервера входящей для поддержки электронный идентификатор . (например support@example.com ) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Мањак Количина -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Тачка варијанта {0} постоји са истим атрибутима +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Тачка варијанта {0} постоји са истим атрибутима DocType: Salary Slip,Salary Slip,Плата Слип apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,' To Date ' требуется DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Генерисати паковање признанице за да буде испоручена пакети. Користи се за обавијести пакет број, Садржај пакета и његову тежину." @@ -3200,7 +3212,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Пог DocType: Item Attribute Value,Attribute Value,Вредност атрибута apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","Удостоверение личности электронной почты должен быть уникальным , уже существует для {0}" ,Itemwise Recommended Reorder Level,Препоручени ниво Итемвисе Реордер -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,Изаберите {0} први +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,Изаберите {0} први DocType: Features Setup,To get Item Group in details table,Да бисте добили групу ставка у табели детаљније apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Батцх {0} од тачке {1} је истекао. DocType: Sales Invoice,Commission,комисија @@ -3255,7 +3267,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Гет Изванредна ваучери DocType: Warranty Claim,Resolved By,Решен DocType: Appraisal,Start Date,Датум почетка -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Выделите листья на определенный срок. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Выделите листья на определенный срок. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Чекови и депозити погрешно ситуацију apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Кликните овде да бисте проверили apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Рачун {0}: Не може да се доделити као родитељ налог @@ -3275,7 +3287,7 @@ DocType: Employee,Educational Qualification,Образовни Квалифик DocType: Workstation,Operating Costs,Оперативни трошкови DocType: Employee Leave Approver,Employee Leave Approver,Запослени одсуство одобраватељ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} је успешно додат у нашој листи билтен. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Ров {0}: Унос Прераспоређивање већ постоји у овој магацин {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Ров {0}: Унос Прераспоређивање већ постоји у овој магацин {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Не могу прогласити као изгубљен , јер Понуда је учињен ." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Куповина Мастер менаџер apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Производственный заказ {0} должны быть представлены @@ -3299,7 +3311,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Счет Продажи {0} уже представлен apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Завршетак датум DocType: Purchase Invoice Item,Amount (Company Currency),Износ (Друштво валута) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Название подразделения (департамент) хозяин. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Название подразделения (департамент) хозяин. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Введите действительные мобильных NOS DocType: Budget Detail,Budget Detail,Буџет Детаљ apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,"Пожалуйста, введите сообщение перед отправкой" @@ -3315,13 +3327,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Примио и прихв ,Serial No Service Contract Expiry,Серијски број услуга Уговор Истек DocType: Item,Unit of Measure Conversion,Јединица мере Цонверсион apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Запослени не може да се промени -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Ви не можете кредитних и дебитних исти налог у исто време +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Ви не можете кредитних и дебитних исти налог у исто време DocType: Naming Series,Help HTML,Помоћ ХТМЛ apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Всего Weightage назначен должна быть 100% . Это {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Исправка за преко-{0} {прешао за тачке 1} DocType: Address,Name of person or organization that this address belongs to.,Име особе или организације која је ова адреса припада. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Ваши Добављачи -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,Не можете поставити као Лост као Продаја Наручите је направљен . +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,Не можете поставити као Лост као Продаја Наручите је направљен . apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,Још један Плата Структура {0} је активан за запосленог {1}. Молимо вас да се његов статус као неактивне за наставак. DocType: Purchase Invoice,Contact,Контакт apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Primio od @@ -3334,7 +3346,7 @@ apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: S DocType: Issue,Content Type,Тип садржаја apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,рачунар DocType: Item,List this Item in multiple groups on the website.,Наведи ову ставку у више група на сајту. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,Молимо вас да проверите Мулти валута опцију да дозволи рачуне са другој валути +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,Молимо вас да проверите Мулти валута опцију да дозволи рачуне са другој валути apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Итем: {0} не постоји у систему apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Нисте овлашћени да подесите вредност Фрозен DocType: Payment Reconciliation,Get Unreconciled Entries,Гет неусаглашених уносе @@ -3344,14 +3356,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Шта он DocType: Delivery Note,To Warehouse,Да Варехоусе apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Счет {0} был введен более чем один раз в течение финансового года {1} ,Average Commission Rate,Просечан курс Комисија -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,"""Има серијски број"" не може бити ""Да"" за артикл који није на залихама" +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,"""Има серијски број"" не може бити ""Да"" за артикл који није на залихама" apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Гледалаца не може бити означен за будуће датуме DocType: Pricing Rule,Pricing Rule Help,Правилник о ценама Помоћ DocType: Purchase Taxes and Charges,Account Head,Рачун шеф apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Упдате додатне трошкове да израчуна слетео трошак ставке apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,электрический DocType: Stock Entry,Total Value Difference (Out - In),Укупна вредност Разлика (Оут - Ин) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Ред {0}: курс је обавезна +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Ред {0}: курс је обавезна apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},ID пользователя не установлен Требуются {0} DocType: Stock Entry,Default Source Warehouse,Уобичајено Извор Магацин DocType: Item,Customer Code,Кориснички Код @@ -3370,15 +3382,15 @@ DocType: Notification Control,Sales Invoice Message,Продаја Рачун П apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Затварање рачуна {0} мора бити типа одговорности / Екуити DocType: Authorization Rule,Based On,На Дана DocType: Sales Order Item,Ordered Qty,Ж Кол -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Ставка {0} је онемогућен +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Ставка {0} је онемогућен DocType: Stock Settings,Stock Frozen Upto,Берза Фрозен Упто apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Период од периода до датума и обавезних се понављају {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Пројекат активност / задатак. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Генериши стаје ПЛАТА +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Генериши стаје ПЛАТА apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Куповина се мора проверити, ако је применљиво Јер је изабрана као {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Скидка должна быть меньше 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Отпис Износ (Фирма валута) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Ред # {0}: Молим вас сет количину преусмеравање +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Ред # {0}: Молим вас сет количину преусмеравање DocType: Landed Cost Voucher,Landed Cost Voucher,Слетео Трошкови Ваучер apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},"Пожалуйста, установите {0}" DocType: Purchase Invoice,Repeat on Day of Month,Поновите на дан у месецу @@ -3431,7 +3443,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Уобичајено Ворк Ин Прогресс Варехоусе apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Настройки по умолчанию для бухгалтерских операций . apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Очекивани датум не може бити пре Материјал Захтев Датум -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Пункт {0} должен быть Продажи товара +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Пункт {0} должен быть Продажи товара DocType: Naming Series,Update Series Number,Упдате Број DocType: Account,Equity,капитал DocType: Sales Order,Printing Details,Штампање Детаљи @@ -3483,7 +3495,7 @@ DocType: Task,Review Date,Прегледајте Дате DocType: Purchase Invoice,Advance Payments,Адванце Плаћања DocType: Purchase Taxes and Charges,On Net Total,Он Нет Укупно apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,"Целевая склад в строке {0} должно быть таким же , как производственного заказа" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Нема дозволе за коришћење средства наплате +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Нема дозволе за коришћење средства наплате apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,'Нотифицатион Емаил Аддрессес' не указано се понављају и% с apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Валута не може да се промени након што уносе користите неки други валуте DocType: Company,Round Off Account,Заокружити рачун @@ -3506,7 +3518,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Количина тачке добија након производњи / препакивање од датих количине сировина DocType: Payment Reconciliation,Receivable / Payable Account,Примања / обавезе налог DocType: Delivery Note Item,Against Sales Order Item,Против продаје Ордер тачком -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},Наведите Вредност атрибута за атрибут {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},Наведите Вредност атрибута за атрибут {0} DocType: Item,Default Warehouse,Уобичајено Магацин DocType: Task,Actual End Date (via Time Logs),Стварна Датум завршетка (преко Тиме Протоколи) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Буџет не може бити додељен против групе рачуна {0} @@ -3531,10 +3543,10 @@ DocType: Lead,Blog Subscriber,Блог Претплатник apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Создание правил для ограничения операций на основе значений . DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Уколико је означено, Укупно нема. радних дана ће се укључити празника, а то ће смањити вредност зараде по дану" DocType: Purchase Invoice,Total Advance,Укупно Адванце -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Обрада платног списка +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Обрада платног списка DocType: Opportunity Item,Basic Rate,Основна стопа DocType: GL Entry,Credit Amount,Износ кредита -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Постави као Лост +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Постави као Лост apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Плаћање Пријем Напомена DocType: Supplier,Credit Days Based On,Кредитни дана по основу DocType: Tax Rule,Tax Rule,Пореска Правило @@ -3564,7 +3576,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Прихваћено Колич apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} не постоји apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Рачуни подигао купцима. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Ид пројецт -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Ред Не {0}: Износ не може бити већи од очекивању износ од трошковником потраживања {1}. У очекивању Износ је {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Ред Не {0}: Износ не може бити већи од очекивању износ од трошковником потраживања {1}. У очекивању Износ је {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} је додао претплатници DocType: Maintenance Schedule,Schedule,Распоред DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Дефинисати буџет за ову трошкова Центра. Да бисте поставили буџета акцију, погледајте "Компанија Листа"" @@ -3625,19 +3637,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,ПОС Профил DocType: Payment Gateway Account,Payment URL Message,Плаћање УРЛ адреса Порука apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Сезонски за постављање буџети, мете итд" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Ров {0}: Плаћање Износ не може бити већи од преосталог износа +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Ров {0}: Плаћање Износ не може бити већи од преосталог износа apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Укупно Неплаћено -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Време Пријави се не наплаћују -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Ставка {0} је шаблон, изаберите једну од својих варијанти" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Време Пријави се не наплаћују +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Ставка {0} је шаблон, изаберите једну од својих варијанти" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Купац apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Чистая зарплата не может быть отрицательным -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Молимо Вас да унесете против ваучери ручно +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Молимо Вас да унесете против ваучери ручно DocType: SMS Settings,Static Parameters,Статички параметри DocType: Purchase Order,Advance Paid,Адванце Паид DocType: Item,Item Tax,Ставка Пореска apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Материјал за добављача apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Акцизе фактура DocType: Expense Claim,Employees Email Id,Запослени Емаил ИД +DocType: Employee Attendance Tool,Marked Attendance,Приметан Присуство apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Текущие обязательства apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Пошаљи СМС масовне вашим контактима DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Размислите пореза или оптужба за @@ -3660,7 +3673,7 @@ DocType: Item Attribute,Numeric Values,Нумеричке вредности apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Прикрепите логотип DocType: Customer,Commission Rate,Комисија Оцени apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Маке Вариант -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Блок оставите апликације по одељењу. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Блок оставите апликације по одељењу. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Корпа је празна DocType: Production Order,Actual Operating Cost,Стварни Оперативни трошкови apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Корневая не могут быть изменены . @@ -3679,7 +3692,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,Аутоматско креирање Материал захтев ако количина падне испод тог нивоа ,Item-wise Purchase Register,Тачка-мудар Куповина Регистрација DocType: Batch,Expiry Date,Датум истека -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item",Да бисте поставили ниво преусмеравање тачка мора бити Куповина јединица или Производња артикла +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item",Да бисте поставили ниво преусмеравање тачка мора бити Куповина јединица или Производња артикла ,Supplier Addresses and Contacts,Добављач Адресе и контакти apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,Прво изаберите категорију apps/erpnext/erpnext/config/projects.py +18,Project master.,Пројекат господар. diff --git a/erpnext/translations/sv.csv b/erpnext/translations/sv.csv index 6cf65a1e56..a9000392a3 100644 --- a/erpnext/translations/sv.csv +++ b/erpnext/translations/sv.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,Kredit i bolaget Valut DocType: Delivery Note,Installation Status,Installationsstatus apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Godkända + Avvisad Antal måste vara lika med mottagna kvantiteten för punkt {0} DocType: Item,Supply Raw Materials for Purchase,Leverera råvaror för köp -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Produkt {0} måste vara en beställningsprodukt +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Produkt {0} måste vara en beställningsprodukt DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Hämta mallen, fyll lämpliga uppgifter och bifoga den modifierade filen. Alla datum och anställdas kombinationer i den valda perioden kommer i mallen, med befintliga närvaroutdrag" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,Produkt {0} är inte aktiv eller uttjänta har nåtts DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Kommer att uppdateras efter fakturan skickas. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Om du vill inkludera skatt i rad {0} i punkt hastighet, skatter i rader {1} måste också inkluderas" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Inställningar för HR-modul +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Om du vill inkludera skatt i rad {0} i punkt hastighet, skatter i rader {1} måste också inkluderas" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Inställningar för HR-modul DocType: SMS Center,SMS Center,SMS Center DocType: BOM Replace Tool,New BOM,Ny BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Batch tidsloggar för fakturering. @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,Välj Villkor DocType: Production Planning Tool,Sales Orders,Kundorder DocType: Purchase Taxes and Charges,Valuation,Värdering ,Purchase Order Trends,Inköpsorder Trender -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Fördela avgångar för året. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Fördela avgångar för året. DocType: Earning Type,Earning Type,Vinsttyp DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Inaktivera kapacitetsplanering och tidsuppföljning DocType: Bank Reconciliation,Bank Account,Bankkonto @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Produkt hemsidespecifikation DocType: Payment Tool,Reference No,Referensnummer apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Lämna Blockerad -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Punkt {0} har nått slutet av sin livslängd på {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Punkt {0} har nått slutet av sin livslängd på {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Årlig DocType: Stock Reconciliation Item,Stock Reconciliation Item,Lager Avstämning Punkt DocType: Stock Entry,Sales Invoice No,Försäljning Faktura nr @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,Minimum Antal DocType: Pricing Rule,Supplier Type,Leverantör Typ DocType: Item,Publish in Hub,Publicera i Hub ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Punkt {0} avbryts +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Punkt {0} avbryts apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Materialförfrågan DocType: Bank Reconciliation,Update Clearance Date,Uppdatera Clearance Datum DocType: Item,Purchase Details,Inköpsdetaljer @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Avvisad Kvantitet DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Fältet finns i följesedel, Offert, Försäljning Faktura, kundorder" DocType: SMS Settings,SMS Sender Name,SMS avsändarnamn DocType: Contact,Is Primary Contact,Är Primär kontaktperson +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Time Log har Doserad för Billing DocType: Notification Control,Notification Control,Anmälningskontroll DocType: Lead,Suggestions,Förslag DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Ange artikelgrupp visa budgetar på detta område. Du kan även inkludera säsongs genom att ställa in Distribution. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},Ange huvudkontogrupp för lager {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Betalning mot {0} {1} inte kan vara större än utestående beloppet {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Betalning mot {0} {1} inte kan vara större än utestående beloppet {2} DocType: Supplier,Address HTML,Adress HTML DocType: Lead,Mobile No.,Mobilnummer. DocType: Maintenance Schedule,Generate Schedule,Generera Schema @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Synkroniserad med Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Fel Lösenord DocType: Item,Variant Of,Variant av -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Produkt {0} måste vara serviceprodukt apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',"Avslutade Antal kan inte vara större än ""antal för Tillverkning '" DocType: Period Closing Voucher,Closing Account Head,Stänger Konto Huvud DocType: Employee,External Work History,Extern Arbetserfarenhet @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,Nyhetsbrev DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Meddela via e-post om skapandet av automatisk Material Begäran DocType: Journal Entry,Multi Currency,Flera valutor DocType: Payment Reconciliation Invoice,Invoice Type,Faktura Typ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Följesedel +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Följesedel apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Ställa in skatter apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,Betalningsposten har ändrats efter att du hämtade den. Vänligen hämta igen. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} inlagd två gånger under punkten Skatt +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} inlagd två gånger under punkten Skatt apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Sammanfattning för denna vecka och pågående aktiviteter DocType: Workstation,Rent Cost,Hyr Kostnad apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Välj månad och år @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,Gäller för länder DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Alla importrelaterade områden som valuta, växelkurs, import totalt importtotalsumma osv finns i inköpskvitto, leverantör Offert, Inköp Faktura, inköpsorder mm" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,Denna punkt är en mall och kan inte användas i transaktioner. Punkt attribut kommer att kopieras över till varianterna inte "Nej Kopiera" ställs in apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Den totala order Anses -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Anställd beteckning (t.ex. VD, direktör osv)." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Anställd beteckning (t.ex. VD, direktör osv)." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,Ange "Upprepa på Dag i månaden" fältvärde DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,I takt med vilket kundens Valuta omvandlas till kundens basvaluta DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Finns i BOM, följesedel, Inköp Faktura, produktionsorder, inköpsorder, inköpskvitto, Försäljning Faktura, kundorder, införande i lager, Tidrapport" @@ -355,7 +355,7 @@ DocType: Workstation,Consumable Cost,Förbrukningsartiklar Kostnad apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',"{0} ({1}) måste ha rollen ""Ledighetsgodkännare""" DocType: Purchase Receipt,Vehicle Date,Fordons Datum apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Medicinsk -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Anledning till att förlora +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Anledning till att förlora apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Arbetsstation är stängd på följande datum enligt kalender: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Möjligheter DocType: Employee,Single,Singel @@ -383,14 +383,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Kanalpartner DocType: Account,Old Parent,Gammalt mål DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,Anpassa inledande text som går som en del av e-postmeddelandet. Varje transaktion har en separat introduktionstext. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Ta inte med symboler (ex. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Försäljnings master föreståndaren apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Globala inställningar för alla tillverkningsprocesser. DocType: Accounts Settings,Accounts Frozen Upto,Konton frysta upp till DocType: SMS Log,Sent On,Skickas på -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Attribut {0} valda flera gånger i attribut Tabell +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Attribut {0} valda flera gånger i attribut Tabell DocType: HR Settings,Employee record is created using selected field. ,Personal register skapas med hjälp av valda fältet. DocType: Sales Order,Not Applicable,Inte Tillämpbar -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Semester topp. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Semester topp. DocType: Material Request Item,Required Date,Obligatorisk Datum DocType: Delivery Note,Billing Address,Fakturaadress apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,Ange Artikelkod. @@ -426,7 +427,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,Ange vilket lager som Material Begäran kommer att anges mot DocType: Production Order,Additional Operating Cost,Ytterligare driftkostnader apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Kosmetika -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","För att sammanfoga, måste följande egenskaper vara samma för båda objekten" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","För att sammanfoga, måste följande egenskaper vara samma för båda objekten" DocType: Shipping Rule,Net Weight,Nettovikt DocType: Employee,Emergency Phone,Nödtelefon ,Serial No Warranty Expiry,Serial Ingen garanti löper ut @@ -481,17 +482,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Fakturering och leveransstatus apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Återkommande kunder DocType: Leave Control Panel,Allocate,Fördela -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Sales Return +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Sales Return DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Välj kundorder som du vill skapa produktionsorder. DocType: Item,Delivered by Supplier (Drop Ship),Levereras av leverantören (Drop Ship) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Lönedelar. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Lönedelar. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Databas för potentiella kunder. DocType: Authorization Rule,Customer or Item,Kund eller föremål apps/erpnext/erpnext/config/crm.py +17,Customer database.,Kunddatabas. DocType: Quotation,Quotation To,Offert Till DocType: Lead,Middle Income,Medelinkomst apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Öppning (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Standard mätenhet för punkt {0} kan inte ändras direkt eftersom du redan har gjort vissa transaktioner (s) med en annan UOM. Du måste skapa en ny punkt för att använda en annan standard UOM. +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Standard mätenhet för punkt {0} kan inte ändras direkt eftersom du redan har gjort vissa transaktioner (s) med en annan UOM. Du måste skapa en ny punkt för att använda en annan standard UOM. apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Avsatt belopp kan inte vara negativ DocType: Purchase Order Item,Billed Amt,Fakturerat ant. DocType: Warehouse,A logical Warehouse against which stock entries are made.,Ett aktuell lagerlokal mot vilken lager noteringar görs. @@ -510,14 +511,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Försäljnings skatter och avgift DocType: Employee,Organization Profile,Organisation Profil apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,Vänligen ange nummerserier för Närvaro via Inställningar> nummerserie DocType: Employee,Reason for Resignation,Anledning till Avgång -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Mall för utvecklingssamtal. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Mall för utvecklingssamtal. DocType: Payment Reconciliation,Invoice/Journal Entry Details,Faktura / Journalanteckning Detaljer apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} {1} "inte under räkenskapsåret {2} DocType: Buying Settings,Settings for Buying Module,Inställningar för att köpa Modul apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,Ange inköpskvitto först DocType: Buying Settings,Supplier Naming By,Leverantör Naming Genom DocType: Activity Type,Default Costing Rate,Standardkalkyl betyg -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Underhållsschema +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Underhållsschema apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Sedan prissättningsregler filtreras bort baserat på kundens, Customer Group, Territory, leverantör, leverantör typ, kampanj, Sales Partner etc." apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Nettoförändring i Inventory DocType: Employee,Passport Number,Passnummer @@ -556,7 +557,7 @@ DocType: Purchase Invoice,Quarterly,Kvartals DocType: Selling Settings,Delivery Note Required,Följesedel Krävs DocType: Sales Order Item,Basic Rate (Company Currency),Baskurs (Företagsvaluta) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Återrapportering Råvaror Based On -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,Ange produktdetaljer +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,Ange produktdetaljer DocType: Purchase Receipt,Other Details,Övriga detaljer DocType: Account,Accounts,Konton apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Marknadsföring @@ -569,7 +570,7 @@ DocType: Employee,Provide email id registered in company,Ange E-post ID registre DocType: Hub Settings,Seller City,Säljaren stad DocType: Email Digest,Next email will be sent on:,Nästa e-post kommer att skickas på: DocType: Offer Letter Term,Offer Letter Term,Erbjudande Brev Villkor -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Produkten har varianter. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Produkten har varianter. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Produkt {0} hittades inte DocType: Bin,Stock Value,Stock Värde apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Tree Typ @@ -577,7 +578,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Antal konsumeras per Enhet DocType: Serial No,Warranty Expiry Date,Garanti Förfallodatum DocType: Material Request Item,Quantity and Warehouse,Kvantitet och Lager DocType: Sales Invoice,Commission Rate (%),Provisionsandel (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Mot kupongtyp måste vara en av kundorder, försäljningsfakturan eller journalanteckning" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Mot kupongtyp måste vara en av kundorder, försäljningsfakturan eller journalanteckning" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Aerospace DocType: Journal Entry,Credit Card Entry,Kreditkorts logg apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Uppgift Ämne @@ -645,10 +646,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Ansvar apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Sanktionerade Belopp kan inte vara större än fordringsbelopp i raden {0}. DocType: Company,Default Cost of Goods Sold Account,Standardkostnad Konto Sålda Varor -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Prislista inte valt +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Prislista inte valt DocType: Employee,Family Background,Familjebakgrund DocType: Process Payroll,Send Email,Skicka Epost -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Varning: Ogiltig Attachment {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Varning: Ogiltig Attachment {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Inget Tillstånd DocType: Company,Default Bank Account,Standard bankkonto apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","För att filtrera baserat på partiet, väljer Party Typ först" @@ -676,7 +677,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Suppo DocType: Features Setup,"To enable ""Point of Sale"" features",För att aktivera "Point of Sale" funktioner DocType: Bin,Moving Average Rate,Rörligt medelvärdes hastighet DocType: Production Planning Tool,Select Items,Välj objekt -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} mot räkning {1} daterad {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} mot räkning {1} daterad {2} DocType: Maintenance Visit,Completion Status,Slutförande Status DocType: Sales Invoice Item,Target Warehouse,Target Lager DocType: Item,Allow over delivery or receipt upto this percent,Tillåt överleverans eller mottagande upp till denna procent @@ -736,7 +737,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Valu apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Det går inte att hitta tidslucka i de närmaste {0} dagar för Operation {1} DocType: Production Order,Plan material for sub-assemblies,Planera material för underenheter apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} måste vara aktiv -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,Välj dokumenttyp först +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Välj dokumenttyp först apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Goto kundvagn apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Avbryt Material {0} innan du avbryter detta Underhållsbesök DocType: Salary Slip,Leave Encashment Amount,Lämna inlösningsmängd @@ -754,7 +755,7 @@ DocType: Purchase Receipt,Range,Intervall DocType: Supplier,Default Payable Accounts,Standard avgiftskonton apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Medarbetare {0} är inte aktiv eller existerar inte DocType: Features Setup,Item Barcode,Produkt Streckkod -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Produkt Varianter {0} uppdaterad +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Produkt Varianter {0} uppdaterad DocType: Quality Inspection Reading,Reading 6,Avläsning 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Inköpsfakturan Advancerat DocType: Address,Shop,Shop @@ -777,7 +778,7 @@ DocType: Salary Slip,Total in words,Totalt i ord DocType: Material Request Item,Lead Time Date,Ledtid datum apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,är obligatoriskt. Kanske Valutaväxling posten inte skapas för apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Rad # {0}: Ange Löpnummer för punkt {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","För ""Produktgrupper"" poster, Lager, Serienummer och Batch kommer att övervägas från ""Packlistan"". Om Lager och Batch inte är samma för alla förpacknings objekt för alla ""Produktgrupper"" , kan dessa värden skrivas in i huvud produkten, kommer värden kopieras till ""Packlistan""." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","För ""Produktgrupper"" poster, Lager, Serienummer och Batch kommer att övervägas från ""Packlistan"". Om Lager och Batch inte är samma för alla förpacknings objekt för alla ""Produktgrupper"" , kan dessa värden skrivas in i huvud produkten, kommer värden kopieras till ""Packlistan""." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Transporter till kunder. DocType: Purchase Invoice Item,Purchase Order Item,Inköpsorder Artikeln apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Indirekt inkomst @@ -798,6 +799,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Välj Lön År och Månad apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""","Gå till lämplig grupp (vanligtvis Tillämpning av fonder> Omsättningstillgångar> bankkonton och skapa ett nytt konto (genom att klicka på Lägg till typ) av typen ""Bank""" DocType: Workstation,Electricity Cost,Elkostnad DocType: HR Settings,Don't send Employee Birthday Reminders,Skicka inte anställdas födelsedagspåminnelser +,Employee Holiday Attendance,Anställd Semester Närvaro DocType: Opportunity,Walk In,Gå In apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Stock Inlägg DocType: Item,Inspection Criteria,Inspektionskriterier @@ -820,7 +822,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,O DocType: Journal Entry Account,Expense Claim,Utgiftsräkning apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Antal för {0} DocType: Leave Application,Leave Application,Ledighetsansöknan -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Ledighet Tilldelningsverktyget +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Ledighet Tilldelningsverktyget DocType: Leave Block List,Leave Block List Dates,Lämna Block Lista Datum DocType: Company,If Monthly Budget Exceeded (for expense account),Om månadsbudgeten överskrids (för utgiftskonto) DocType: Workstation,Net Hour Rate,Netto timmekostnad @@ -830,7 +832,7 @@ DocType: Packing Slip Item,Packing Slip Item,Följesedels artikel DocType: POS Profile,Cash/Bank Account,Kontant / Bankkonto apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Borttagna objekt med någon förändring i kvantitet eller värde. DocType: Delivery Note,Delivery To,Leverans till -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Attributtabell är obligatoriskt +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Attributtabell är obligatoriskt DocType: Production Planning Tool,Get Sales Orders,Hämta kundorder apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} kan inte vara negativ apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Rabatt @@ -894,7 +896,7 @@ DocType: SMS Center,Total Characters,Totalt Tecken apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},Välj BOM i BOM fältet för produkt{0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-Form faktura Detalj DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Betalning Avstämning Faktura -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Bidrag% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Bidrag% DocType: Item,website page link,webbsida länk DocType: Company,Company registration numbers for your reference. Tax numbers etc.,Organisationsnummer som referens. Skattenummer etc. DocType: Sales Partner,Distributor,Distributör @@ -936,10 +938,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM Omvandlingsfaktor DocType: Stock Settings,Default Item Group,Standard Varugrupp apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Leverantörsdatabas. DocType: Account,Balance Sheet,Balansräkning -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',"Kostnadcenter för artikel med artikelkod """ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',"Kostnadcenter för artikel med artikelkod """ DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,Din säljare kommer att få en påminnelse om detta datum att kontakta kunden apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Ytterligare konton kan göras inom ramen för grupper, men poster kan göras mot icke-grupper" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Skatt och andra löneavdrag. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Skatt och andra löneavdrag. DocType: Lead,Lead,Prospekt DocType: Email Digest,Payables,Skulder DocType: Account,Warehouse,Lager @@ -956,10 +958,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Sonade Betalningsin DocType: Global Defaults,Current Fiscal Year,Innevarande räkenskapsår DocType: Global Defaults,Disable Rounded Total,Inaktivera avrundat Totalbelopp DocType: Lead,Call,Ring -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'poster' kan inte vara tomt +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'poster' kan inte vara tomt apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Duplicate raden {0} med samma {1} ,Trial Balance,Trial Balans -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Ställa in Anställda +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Ställa in Anställda apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid """,Grid " apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,Välj prefix först apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Forskning @@ -968,7 +970,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,Användar ID apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Se journal apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Tidigast -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Ett varugrupp finns med samma namn, ändra objektets namn eller byta namn på varugrupp" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Ett varugrupp finns med samma namn, ändra objektets namn eller byta namn på varugrupp" DocType: Production Order,Manufacture against Sales Order,Tillverkning mot kundorder apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Resten av världen apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,Item {0} kan inte ha Batch @@ -993,7 +995,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Avvisat Lager DocType: GL Entry,Against Voucher,Mot Kupong DocType: Item,Default Buying Cost Center,Standard Inköpsställe apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","För att få ut det bästa av ERPNext, rekommenderar vi att du tar dig tid och titta på dessa hjälp videor." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Produkt {0} måste vara försäljningsprodukt +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Produkt {0} måste vara försäljningsprodukt apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,till DocType: Item,Lead Time in days,Ledtid i dagar ,Accounts Payable Summary,Leverantörsreskontra Sammanfattning @@ -1019,7 +1021,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Jordbruk apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Dina produkter eller tjänster DocType: Mode of Payment,Mode of Payment,Betalningssätt -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Website Bild bör vara en offentlig fil eller webbadress +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Website Bild bör vara en offentlig fil eller webbadress apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,Detta är en rot varugrupp och kan inte ändras. DocType: Journal Entry Account,Purchase Order,Inköpsorder DocType: Warehouse,Warehouse Contact Info,Lagrets kontaktinfo @@ -1030,7 +1032,7 @@ DocType: Serial No,Serial No Details,Serial Inga detaljer DocType: Purchase Invoice Item,Item Tax Rate,Produkt Skattesats apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry",För {0} kan endast kreditkonton länkas mot en annan debitering apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Följesedel {0} är inte lämnad -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Produkt {0} måste vara ett underleverantörs produkt +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Produkt {0} måste vara ett underleverantörs produkt apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Kapital Utrustning apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Prissättning regel baseras först på ""Lägg till på' fälten, som kan vara artikel, artikelgrupp eller Märke." DocType: Hub Settings,Seller Website,Säljare Webbplatsen @@ -1039,7 +1041,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Mål DocType: Sales Invoice Item,Edit Description,Redigera Beskrivning apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Förväntad leveransdatum är mindre än planerat startdatum. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,För Leverantör +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,För Leverantör DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Ställa Kontotyp hjälper i att välja detta konto i transaktioner. DocType: Purchase Invoice,Grand Total (Company Currency),Totalsumma (Företagsvaluta) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Totalt Utgående @@ -1091,7 +1093,6 @@ DocType: Authorization Rule,Average Discount,Genomsnittlig rabatt DocType: Address,Utilities,Verktyg DocType: Purchase Invoice Item,Accounting,Redovisning DocType: Features Setup,Features Setup,Funktioner Inställning -DocType: Item,Is Service Item,Är Serviceobjekt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Ansökningstiden kan inte vara utanför ledighet fördelningsperioden DocType: Activity Cost,Projects,Projekt apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,Välj Räkenskapsårets @@ -1112,7 +1113,7 @@ DocType: Item,Maintain Stock,Behåll Lager apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Aktie Inlägg redan skapats för produktionsorder apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Netto Förändring av anläggningstillgång DocType: Leave Control Panel,Leave blank if considered for all designations,Lämna tomt om det anses vara för alla beteckningar -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,"Avgift av typ ""faktiska"" i raden {0} kan inte ingå i artikelomsättningen" +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,"Avgift av typ ""faktiska"" i raden {0} kan inte ingå i artikelomsättningen" apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Från Daterad tid DocType: Email Digest,For Company,För Företag @@ -1121,8 +1122,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Leveransadress Namn apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Kontoplan DocType: Material Request,Terms and Conditions Content,Villkor Innehåll -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,kan inte vara större än 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Produkt {0} är inte en lagervara +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,kan inte vara större än 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Produkt {0} är inte en lagervara DocType: Maintenance Visit,Unscheduled,Ledig DocType: Employee,Owned,Ägs DocType: Salary Slip Deduction,Depends on Leave Without Pay,Beror på avgång utan lön @@ -1143,7 +1144,7 @@ Used for Taxes and Charges",Skatte detalj tabell hämtas från punkt mästare so apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Anställd kan inte anmäla sig själv. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Om kontot är fruset, är poster endast tillgängligt för begränsade användare." DocType: Email Digest,Bank Balance,BANKTILLGODOHAVANDE -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Kontering för {0}: {1} kan endast göras i valuta: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Kontering för {0}: {1} kan endast göras i valuta: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Ingen aktiv lönesättning hittades för anställd {0} och månaden DocType: Job Opening,"Job profile, qualifications required etc.","Jobb profil, kvalifikationer som krävs osv" DocType: Journal Entry Account,Account Balance,Balanskonto @@ -1160,7 +1161,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Sub Assemblie DocType: Shipping Rule Condition,To Value,Att Värdera DocType: Supplier,Stock Manager,Lagrets direktör apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Källa lager är obligatoriskt för rad {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Följesedel +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Följesedel apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Kontorshyra apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Setup SMS-gateway-inställningar apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Import misslyckades! @@ -1204,7 +1205,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM Detalj nr DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Ytterligare rabattbeloppet (Företagsvaluta) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Fel: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,Skapa nytt konto från kontoplan. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Servicebesök +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Servicebesök apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Kund> Kundgrupp > Område DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Tillgänglig Batch Antal vid Lager DocType: Time Log Batch Detail,Time Log Batch Detail,Tid Log Batch Detalj @@ -1213,7 +1214,7 @@ DocType: Leave Block List,Block Holidays on important days.,Block Semester på v ,Accounts Receivable Summary,Kundfordringar Sammanfattning apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,Ställ in användar-ID fältet i en anställd post för att ställa in anställdes Roll DocType: UOM,UOM Name,UOM Namn -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Bidragsbelopp +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Bidragsbelopp DocType: Sales Invoice,Shipping Address,Leverans Adress DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,Detta verktyg hjälper dig att uppdatera eller rätta mängden och värdering av lager i systemet. Det är oftast används för att synkronisera systemvärden och vad som faktiskt finns i dina lager. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,I Ord kommer att synas när du sparar följesedel. @@ -1254,7 +1255,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Om du vill spåra objekt med streckkod. Du kommer att kunna komma in poster i följesedeln och fakturan genom att skanna streckkoder av objekt. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Skicka om Betalning E DocType: Dependent Task,Dependent Task,Beroende Uppgift -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Omvandlingsfaktor för standardmåttenhet måste vara en i raden {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Omvandlingsfaktor för standardmåttenhet måste vara en i raden {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Ledighet av typen {0} inte kan vara längre än {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Försök att planera verksamheten för X dagar i förväg. DocType: HR Settings,Stop Birthday Reminders,Stop födelsedag Påminnelser @@ -1264,7 +1265,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Visa apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Nettoförändring i Cash DocType: Salary Structure Deduction,Salary Structure Deduction,Lönestruktur Avdrag -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Mätenhet {0} har angetts mer än en gång i Omvandlingsfaktor Tabell +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Mätenhet {0} har angetts mer än en gång i Omvandlingsfaktor Tabell apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Betalning förfrågan finns redan {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Kostnad för utfärdade artiklar apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Antal får inte vara mer än {0} @@ -1293,7 +1294,7 @@ DocType: BOM Item,BOM Item,BOM Punkt DocType: Appraisal,For Employee,För anställd apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Rad {0}: Advance mot Leverantören måste debitera DocType: Company,Default Values,Standardvärden -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Rad {0}: Betalningsbelopp kan inte vara negativ +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Rad {0}: Betalningsbelopp kan inte vara negativ DocType: Expense Claim,Total Amount Reimbursed,Totala belopp som ersatts apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Mot leverantörsfakturor {0} den {1} DocType: Customer,Default Price List,Standard Prislista @@ -1321,8 +1322,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Gar DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Ersätt en viss BOM i alla andra strukturlistor där det används. Det kommer att ersätta den gamla BOM länken, uppdatera kostnader och regenerera ""BOM Punkter"" tabellen som per nya BOM" DocType: Shopping Cart Settings,Enable Shopping Cart,Aktivera Varukorgen DocType: Employee,Permanent Address,Permanent Adress -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Produkt {0} måste vara ett serviceobjekt. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Förskott som betalats mot {0} {1} kan inte vara större \ än Totalsumma {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Välj artikelkod DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Minska Avdrag för ledighet utan lön (LWP) @@ -1378,12 +1378,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Huvud apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Variant DocType: Naming Series,Set prefix for numbering series on your transactions,Ställ prefix för nummerserie på dina transaktioner +DocType: Employee Attendance Tool,Employees HTML,Anställda HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Stoppad ordning kan inte avbrytas. Unstop att avbryta. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Standard BOM ({0}) måste vara aktiv för denna artikel eller dess mall +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Standard BOM ({0}) måste vara aktiv för denna artikel eller dess mall DocType: Employee,Leave Encashed?,Lämna inlösen? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Möjlighet Från fältet är obligatoriskt DocType: Item,Variants,Varianter -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Skapa beställning +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Skapa beställning DocType: SMS Center,Send To,Skicka Till apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Det finns inte tillräckligt ledighet balans för Lämna typ {0} DocType: Payment Reconciliation Payment,Allocated amount,Avsatt mängd @@ -1483,7 +1484,7 @@ DocType: Sales Person,Name and Employee ID,Namn och Anställnings ID apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,Förfallodatum kan inte vara före Publiceringsdatum DocType: Website Item Group,Website Item Group,Webbplats Produkt Grupp apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Tullar och skatter -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,Ange Referensdatum +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,Ange Referensdatum apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Betalning Gateway konto har inte konfigurerats apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} betalningsposter kan inte filtreras genom {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,Tabell för punkt som kommer att visas i Web Site @@ -1504,7 +1505,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Åtgärds Detaljer DocType: Quality Inspection Reading,Acceptance Criteria,Acceptanskriterier DocType: Item Attribute,Attribute Name,Attribut Namn -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Produkt {0} måste vara försäljning eller serviceprodukt i {1} DocType: Item Group,Show In Website,Visa i Webbsida apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Grupp DocType: Task,Expected Time (in hours),Förväntad tid (i timmar) @@ -1536,7 +1536,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Fraktbelopp ,Pending Amount,Väntande antal DocType: Purchase Invoice Item,Conversion Factor,Omvandlingsfaktor DocType: Purchase Order,Delivered,Levereras -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Inställning inkommande server jobb e-id. (T.ex. jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Inställning inkommande server jobb e-id. (T.ex. jobs@example.com) DocType: Purchase Receipt,Vehicle Number,Fordonsnummer DocType: Purchase Invoice,The date on which recurring invoice will be stop,Den dag då återkommande faktura kommer att stoppa apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Totalt tilldelade blad {0} kan inte vara mindre än redan godkända blad {1} för perioden @@ -1553,7 +1553,7 @@ DocType: HR Settings,HR Settings,HR Inställningar apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Räkning väntar på godkännande. Endast Utgiftsgodkännare kan uppdatera status. DocType: Purchase Invoice,Additional Discount Amount,Ytterligare rabatt Belopp DocType: Leave Block List Allow,Leave Block List Allow,Lämna Block List Tillåt -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Förkortning kan inte vara tomt +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Förkortning kan inte vara tomt apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Grupp till icke-Group apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Sport apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Totalt Faktisk @@ -1577,7 +1577,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},UOM omräkningsfaktor i rad {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Utförsäljningsdatumet kan inte vara före markerat datum i rad {0} DocType: Salary Slip,Deduction,Avdrag -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Artikel Pris till för {0} i prislista {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Artikel Pris till för {0} i prislista {1} DocType: Address Template,Address Template,Adress Mall apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,Ange anställnings Id för denna säljare DocType: Territory,Classification of Customers by region,Klassificering av kunder per region @@ -1594,7 +1594,7 @@ DocType: Employee,Date of Birth,Födelsedatum apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Punkt {0} redan har returnerat DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** Räkenskapsårets ** representerar budgetåret. Alla bokföringsposter och andra större transaktioner spåras mot ** räkenskapsår **. DocType: Opportunity,Customer / Lead Address,Kund / Huvudadress -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Varning: Ogiltig SSL-certifikat på fäst {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Varning: Ogiltig SSL-certifikat på fäst {0} DocType: Production Order Operation,Actual Operation Time,Faktisk driftstid DocType: Authorization Rule,Applicable To (User),Är tillämpligt för (Användare) DocType: Purchase Taxes and Charges,Deduct,Dra av @@ -1611,7 +1611,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Split följesedel i paket. apps/erpnext/erpnext/hooks.py +69,Shipments,Transporter DocType: Purchase Order Item,To be delivered to customer,Som skall levereras till kund -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Tid Log Status måste lämnas in. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Tid Log Status måste lämnas in. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,Löpnummer {0} inte tillhör någon Warehouse apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Rad # DocType: Purchase Invoice,In Words (Company Currency),I ord (Företagsvaluta) @@ -1628,7 +1628,7 @@ DocType: Leave Application,Total Leave Days,Totalt semesterdagar DocType: Email Digest,Note: Email will not be sent to disabled users,Obs: E-post kommer inte att skickas till inaktiverade användare apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Välj Företaget ... DocType: Leave Control Panel,Leave blank if considered for all departments,Lämna tomt om det anses vara för alla avdelningar -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Typer av anställning (permanent, kontrakts, praktikant osv)." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Typer av anställning (permanent, kontrakts, praktikant osv)." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} är obligatoriskt för punkt {1} DocType: Currency Exchange,From Currency,Från Valuta apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Välj tilldelade beloppet, Faktura Typ och fakturanumret i minst en rad" @@ -1647,7 +1647,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,Pågående DocType: Authorization Rule,Itemwise Discount,Produktvis rabatt DocType: Purchase Order Item,Reference Document Type,Referensdokument Typ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} mot kundorder {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} mot kundorder {1} DocType: Account,Fixed Asset,Fast tillgångar apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Serial numrerade Inventory DocType: Activity Type,Default Billing Rate,Standardfakturerings betyg @@ -1657,7 +1657,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Kundorder till betalning DocType: Expense Claim Detail,Expense Claim Detail,Räkningen Detalj apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Tid Loggar skapat: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,Välj rätt konto +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,Välj rätt konto DocType: Item,Weight UOM,Vikt UOM DocType: Employee,Blood Group,Blodgrupp DocType: Purchase Invoice Item,Page Break,Sidbrytning @@ -1692,7 +1692,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM rekursion: {0} kan inte vara över eller barn under {2} DocType: Production Order Operation,Completed Qty,Avslutat Antal apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry",För {0} kan bara debitkonton länkas mot en annan kreditering -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Prislista {0} är inaktiverad +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Prislista {0} är inaktiverad DocType: Manufacturing Settings,Allow Overtime,Tillåt övertid apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} serienummer krävs för punkt {1}. Du har gett {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Nuvarande värderingensomsättning @@ -1743,7 +1743,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Inge apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Ärendenr kan inte vara 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,Om du har säljteam och Försäljning Partners (Channel Partners) kan märkas och behålla sitt bidrag i försäljningsaktiviteten DocType: Item,Show a slideshow at the top of the page,Visa ett bildspel på toppen av sidan -DocType: Item,"Allow in Sales Order of type ""Service""",Tillåt i kundorder av typen "Service" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Butiker DocType: Time Log,Projects Manager,Projekt Chef DocType: Serial No,Delivery Time,Leveranstid @@ -1758,6 +1757,7 @@ DocType: Rename Tool,Rename Tool,Ändrings Verktyget apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Uppdatera Kostnad DocType: Item Reorder,Item Reorder,Produkt Ändra ordning apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Transfermaterial +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Punkt {0} måste vara ett försäljnings objekt i {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Ange verksamhet, driftskostnad och ger en unik drift nej till din verksamhet." DocType: Purchase Invoice,Price List Currency,Prislista Valuta DocType: Naming Series,User must always select,Användaren måste alltid välja @@ -1778,7 +1778,7 @@ DocType: Appraisal,Employee,Anställd apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Importera e-post från apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Bjud in som Användare DocType: Features Setup,After Sale Installations,Eftermarknadsinstallationer -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} är fullt fakturerad +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} är fullt fakturerad DocType: Workstation Working Hour,End Time,Sluttid apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Standard avtalsvillkor för försäljning eller köp. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Grupp av Voucher @@ -1804,7 +1804,7 @@ DocType: Upload Attendance,Attendance To Date,Närvaro Till Datum apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Inställning inkommande server för försäljning e-id. (T.ex. sales@example.com) DocType: Warranty Claim,Raised By,Höjt av DocType: Payment Gateway Account,Payment Account,Betalningskonto -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,Ange vilket bolag för att fortsätta +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,Ange vilket bolag för att fortsätta apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Nettoförändring av kundfordringar apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Kompensations Av DocType: Quality Inspection Reading,Accepted,Godkända @@ -1816,14 +1816,14 @@ DocType: Shipping Rule,Shipping Rule Label,Frakt Regel Etikett apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Råvaror kan inte vara tomt. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Det gick inte att uppdatera lager, faktura innehåller släppa sjöfarten objekt." DocType: Newsletter,Test,Test -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Eftersom det redan finns lagertransaktioner för denna artikel, \ kan du inte ändra värdena för ""Har Löpnummer"", ""Har Batch Nej"", ""Är Lagervara"" och ""Värderingsmetod""" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Quick Journal Entry apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,Du kan inte ändra kurs om BOM nämnts mot någon artikel DocType: Employee,Previous Work Experience,Tidigare Arbetslivserfarenhet DocType: Stock Entry,For Quantity,För Antal apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},Ange planerad Antal till punkt {0} vid rad {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} inte lämnad +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} inte lämnad apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Begäran efter artiklar DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Separat produktionsorder kommer att skapas för varje färdig bra objekt. DocType: Purchase Invoice,Terms and Conditions1,Villkor och Conditions1 @@ -1848,6 +1848,7 @@ DocType: Notification Control,Expense Claim Approved Message,Räkningen Godkänd DocType: Email Digest,How frequently?,Hur ofta? DocType: Purchase Receipt,Get Current Stock,Få Nuvarande lager apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Tree of Bill of Materials +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Mark Närvarande apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Underhåll startdatum kan inte vara före leveransdatum för Löpnummer {0} DocType: Production Order,Actual End Date,Faktiskt Slutdatum DocType: Authorization Rule,Applicable To (Role),Är tillämpligt för (Roll) @@ -1862,7 +1863,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Kontraktets Slutdatum måste vara större än Datum för inträde DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,En tredje parts distributör / återförsäljare / bonusagent / affiliate / återförsäljare som säljer företagens produkter för en provision. DocType: Customer Group,Has Child Node,Har Under Node -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} mot beställning {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} mot beställning {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Ange statiska url parametrar här (T.ex.. Avsändare = ERPNext, användarnamn = ERPNext, lösenord = 1234 mm)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} inte någon aktiv räkenskapsår. För mer information kolla {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Detta är ett exempel webbplats automatiskt genererade från ERPNext @@ -1890,7 +1891,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Add or Deduct: Whether you want to add or deduct the tax.","Schablonskatt mall som kan tillämpas på alla köptransaktioner. Denna mall kan innehålla en lista över skatte huvuden och även andra kostnadshuvuden som "Shipping", "Försäkring", "Hantera" etc. #### Obs Skattesatsen du definierar här kommer att bli den schablonskatt för alla ** artiklar * *. Om det finns ** artiklar ** som har olika priser, måste de läggas till i ** Punkt skatt ** tabellen i ** Punkt ** mästare. #### Beskrivning av kolumner 1. Beräkning Typ: - Det kan vara på ** Net Totalt ** (som är summan av grundbeloppet). - ** I föregående v Totalt / Belopp ** (för kumulativa skatter eller avgifter). Om du väljer det här alternativet, kommer skatten att tillämpas som en procentandel av föregående rad (i skattetabellen) belopp eller total. - ** Faktisk ** (som nämns). 2. Konto Head: Konto huvudbok enligt vilket denna skatt kommer att bokas 3. Kostnadsställe: Om skatten / avgiften är en inkomst (som sjöfarten) eller kostnader det måste bokas mot ett kostnadsställe. 4. Beskrivning: Beskrivning av skatten (som ska skrivas ut i fakturor / citationstecken). 5. Sätt betyg: skattesats. 6. Belopp Momsbelopp. 7. Totalt: Ackumulerad total till denna punkt. 8. Skriv Row: Om baserad på "Föregående rad Total" kan du välja radnumret som kommer att tas som en bas för denna beräkning (standard är föregående rad). 9. Tänk skatt eller avgift för: I det här avsnittet kan du ange om skatten / avgiften är endast för värdering (inte en del av den totala) eller endast för total (inte tillföra värde till objektet) eller för båda. 10. Lägg till eller dra av: Oavsett om du vill lägga till eller dra av skatten." DocType: Purchase Receipt Item,Recd Quantity,Recd Kvantitet apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Det går inte att producera mer artiklar {0} än kundorderns mängd {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Stock Entry {0} är inte lämnat +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Stock Entry {0} är inte lämnat DocType: Payment Reconciliation,Bank / Cash Account,Bank / Konto DocType: Tax Rule,Billing City,Fakturerings Ort DocType: Global Defaults,Hide Currency Symbol,Dölj Valutasymbol @@ -1916,7 +1917,7 @@ DocType: Salary Structure,Total Earning,Totalt Tjänar DocType: Purchase Receipt,Time at which materials were received,Tidpunkt för material mottogs apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Mina adresser DocType: Stock Ledger Entry,Outgoing Rate,Utgående betyg -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Organisation gren ledare. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Organisation gren ledare. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,eller DocType: Sales Order,Billing Status,Faktureringsstatus apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Utility Kostnader @@ -1954,7 +1955,7 @@ DocType: Bin,Reserved Quantity,Reserverad Kvantitet DocType: Landed Cost Voucher,Purchase Receipt Items,Inköpskvitto artiklar apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Anpassa formulären DocType: Account,Income Account,Inkomst konto -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Leverans +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Leverans DocType: Stock Reconciliation Item,Current Qty,Aktuellt Antal DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",Se "Rate of Materials Based On" i kalkyl avsnitt DocType: Appraisal Goal,Key Responsibility Area,Nyckelansvar Områden @@ -1966,8 +1967,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,Rab DocType: Notification Control,Purchase Order Message,Inköpsorder Meddelande DocType: Tax Rule,Shipping Country,Frakt Land DocType: Upload Attendance,Upload HTML,Ladda upp HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})",Totalt förskott ({0}) mot Beställ {1} kan inte vara större \ än totalsumma ({2}) DocType: Employee,Relieving Date,Avgångs Datum apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.",Prissättning regel görs för att skriva Prislista / definiera rabatt procentsats baserad på vissa kriterier. DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Lager kan endast ändras via lagerposter / följesedel / inköpskvitto @@ -1977,8 +1976,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Inkom apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Om du väljer prissättningsregel för ""Pris"", kommer det att överskriva Prislistas. Prissättningsregel priset är det slutliga priset, så ingen ytterligare rabatt bör tillämpas. Därför, i de transaktioner som kundorder, inköpsorder mm, kommer det att hämtas i ""Betygsätt fältet, snarare än"" Prislistavärde fältet." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Spår leder med Industry Type. DocType: Item Supplier,Item Supplier,Produkt Leverantör -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,Ange Artikelkod att få batchnr -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},Välj ett värde för {0} offert_till {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,Ange Artikelkod att få batchnr +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},Välj ett värde för {0} offert_till {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Alla adresser. DocType: Company,Stock Settings,Stock Inställningar apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Sammanslagning är endast möjligt om följande egenskaper är desamma i båda posterna. Är gruppen, Root typ, Företag" @@ -2001,7 +2000,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Check Nummer DocType: Payment Tool Detail,Payment Tool Detail,Betalning Verktygs Detalj ,Sales Browser,Försäljnings Webbläsare DocType: Journal Entry,Total Credit,Total Credit -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Varning: En annan {0} # {1} finns mot införande i lager {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Varning: En annan {0} # {1} finns mot införande i lager {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Lokal apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Utlåning (tillgångar) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Gäldenärer @@ -2021,8 +2020,8 @@ DocType: Price List,Price List Master,Huvudprislista DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,Alla försäljningstransaktioner kan märkas mot flera ** säljare ** så att du kan ställa in och övervaka mål. ,S.O. No.,SÅ Nej DocType: Production Order Operation,Make Time Log,Skapa tidslogg -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Ställ beställnings kvantitet -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},Skapa Kunden från Prospekt {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Ställ beställnings kvantitet +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},Skapa Kunden från Prospekt {0} DocType: Price List,Applicable for Countries,Gäller Länder apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Datorer apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,Detta är en rot kundgrupp och kan inte ändras. @@ -2058,7 +2057,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Faktur DocType: Payment Reconciliation Invoice,Outstanding Amount,Utestående Belopp DocType: Project Task,Working,Arbetande DocType: Stock Ledger Entry,Stock Queue (FIFO),Stock kö (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Välj Tidslogg. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Välj Tidslogg. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} tillhör inte Företag {1} DocType: Account,Round Off,Runda Av ,Requested Qty,Begärt Antal @@ -2096,7 +2095,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Hämta relevanta uppgifter apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Kontering för lager DocType: Sales Invoice,Sales Team1,Försäljnings Team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Punkt {0} inte existerar +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Punkt {0} inte existerar DocType: Sales Invoice,Customer Address,Kundadress DocType: Payment Request,Recipient and Message,Mottagare och Meddelande DocType: Purchase Invoice,Apply Additional Discount On,Applicera ytterligare rabatt på @@ -2115,7 +2114,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Mute E apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Mat, dryck och tobak" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL eller BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Kan bara göra betalning mot ofakturerade {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Kan bara göra betalning mot ofakturerade {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Provisionshastighet kan inte vara större än 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Minsta lagernivå DocType: Stock Entry,Subcontract,Subkontrakt @@ -2133,9 +2132,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Programvar apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Färg DocType: Maintenance Visit,Scheduled,Planerad apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Välj punkt där ""Är Lagervara"" är ""Nej"" och ""Är försäljningsprodukt"" är ""Ja"" och det finns ingen annat produktpaket" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Totalt förskott ({0}) mot Order {1} kan inte vara större än totalsumman ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Välj Månads Distribution till ojämnt fördela målen mellan månader. DocType: Purchase Invoice Item,Valuation Rate,Värderings betyg -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Prislista Valuta inte valt +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Prislista Valuta inte valt apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,"Produktrad {0}: inköpskvitto {1} finns inte i ovanstående ""kvitton""" apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Anställd {0} har redan ansökt om {1} mellan {2} och {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Projekt Startdatum @@ -2147,6 +2147,7 @@ DocType: Quality Inspection,Inspection Type,Inspektionstyp apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},Välj {0} DocType: C-Form,C-Form No,C-form Nr DocType: BOM,Exploded_items,Vidgade_artiklar +DocType: Employee Attendance Tool,Unmarked Attendance,omärkt Närvaro apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Forskare apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,Spara nyhetsbrevet innan du skickar apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Namn eller e-post är obligatoriskt @@ -2172,7 +2173,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Bekräf DocType: Payment Gateway,Gateway,Inkörsport apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Leverantör> Leverantör Typ apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Ange avlösningsdatum. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Ant +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Ant apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,"Endast ledighets applikationer med status ""Godkänd"" kan lämnas in" apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Adress titel är obligatorisk. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,Ange namnet på kampanjen om källförfrågan är kampanjen @@ -2187,10 +2188,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Godkänt Lager DocType: Bank Reconciliation Detail,Posting Date,Bokningsdatum DocType: Item,Valuation Method,Värderingsmetod apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Det går inte att hitta växelkursen för {0} till {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Mark Halvdag DocType: Sales Invoice,Sales Team,Sales Team apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Duplicera post DocType: Serial No,Under Warranty,Under garanti -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Fel] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Fel] DocType: Sales Order,In Words will be visible once you save the Sales Order.,I Ord kommer att synas när du sparar kundorder. ,Employee Birthday,Anställd Födelsedag apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Tilldelningskapital @@ -2213,6 +2215,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,Kostnadsställe med befintliga transaktioner kan inte omvandlas till grupp DocType: Account,Depreciation,Avskrivningar apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Leverantör (s) +DocType: Employee Attendance Tool,Employee Attendance Tool,Anställd närvaro Tool DocType: Supplier,Credit Limit,Kreditgräns apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Välj typ av transaktion DocType: GL Entry,Voucher No,Rabatt nr @@ -2239,7 +2242,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Root-kontot kan inte tas bort ,Is Primary Address,Är Primär adress DocType: Production Order,Work-in-Progress Warehouse,Pågående Arbete - Lager -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Referens # {0} den {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Referens # {0} den {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Hantera Adresser DocType: Pricing Rule,Item Code,Produktkod DocType: Production Planning Tool,Create Production Orders,Skapa produktionsorder @@ -2266,7 +2269,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Bankavstämning apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Hämta uppdateringar apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Material Begäran {0} avbryts eller stoppas apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Lägg till några exempeldokument -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Lämna ledning +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Lämna ledning apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Grupp per konto DocType: Sales Order,Fully Delivered,Fullt Levererad DocType: Lead,Lower Income,Lägre intäkter @@ -2281,6 +2284,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"Från datum" måste vara efter "Till datum" ,Stock Projected Qty,Lager Projicerad Antal apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Kund {0} tillhör inte projektet {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Markerad Närvaro HTML DocType: Sales Order,Customer's Purchase Order,Kundens beställning DocType: Warranty Claim,From Company,Från Företag apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Värde eller Antal @@ -2345,6 +2349,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Elektronisk Överföring apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,Välj bankkonto DocType: Newsletter,Create and Send Newsletters,Skapa och skicka nyhetsbrev +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Kontrollera alla DocType: Sales Order,Recurring Order,Återkommande Order DocType: Company,Default Income Account,Standard Inkomstkonto apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Kundgrupp / Kunder @@ -2376,6 +2381,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Återgå mot inköpsfa DocType: Item,Warranty Period (in days),Garantitiden (i dagar) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Netto kassaflöde från rörelsen apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,t.ex. moms +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Mark anställd Närvaro i bulk apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Produkt 4 DocType: Journal Entry Account,Journal Entry Account,Journalanteckning konto DocType: Shopping Cart Settings,Quotation Series,Offert Serie @@ -2520,14 +2526,14 @@ DocType: Task,Actual Start Date (via Time Logs),Faktiskt startdatum (via Tidslog DocType: Stock Reconciliation Item,Before reconciliation,Innan avstämning apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Till {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Skatter och avgifter Added (Company valuta) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Produkt Skatte Rad {0} måste ha typen Skatt eller intäkt eller kostnad eller Avgiftsbelagd +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Produkt Skatte Rad {0} måste ha typen Skatt eller intäkt eller kostnad eller Avgiftsbelagd DocType: Sales Order,Partly Billed,Delvis Faktuerard DocType: Item,Default BOM,Standard BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,Vänligen ange företagsnamn igen för att bekräfta apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Totalt Utestående Amt DocType: Time Log Batch,Total Hours,Totalt antal timmar DocType: Journal Entry,Printing Settings,Utskriftsinställningar -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Totalt Betal måste vara lika med de sammanlagda kredit. Skillnaden är {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Totalt Betal måste vara lika med de sammanlagda kredit. Skillnaden är {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Fordon apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Från Följesedel DocType: Time Log,From Time,Från Tid @@ -2573,7 +2579,7 @@ DocType: Purchase Invoice Item,Image View,Visa bild DocType: Issue,Opening Time,Öppnings Tid apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,Från och Till datum krävs apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Värdepapper och råvarubörserna -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Standard mätenhet för Variant "{0}" måste vara samma som i Mall "{1}" +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Standard mätenhet för Variant "{0}" måste vara samma som i Mall "{1}" DocType: Shipping Rule,Calculate Based On,Beräkna baserad på DocType: Delivery Note Item,From Warehouse,Från Warehouse DocType: Purchase Taxes and Charges,Valuation and Total,Värdering och Total @@ -2595,7 +2601,7 @@ DocType: Leave Application,Follow via Email,Följ via e-post DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Skattebelopp efter rabatt Belopp apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Underkonto existerar för det här kontot. Du kan inte ta bort det här kontot. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Antingen mål antal eller målbeloppet är obligatorisk -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},Ingen standard BOM finns till punkt {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},Ingen standard BOM finns till punkt {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,Välj Publiceringsdatum först apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Öppningsdatum ska vara innan Slutdatum DocType: Leave Control Panel,Carry Forward,Skicka Vidare @@ -2672,7 +2678,7 @@ DocType: Leave Type,Is Encash,Är incheckad DocType: Purchase Invoice,Mobile No,Mobilnummer DocType: Payment Tool,Make Journal Entry,Skapa journalanteckning DocType: Leave Allocation,New Leaves Allocated,Nya Ledigheter Avsatta -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Projektvis uppgifter finns inte tillgängligt för Offert +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Projektvis uppgifter finns inte tillgängligt för Offert DocType: Project,Expected End Date,Förväntad Slutdatum DocType: Appraisal Template,Appraisal Template Title,Bedömning mall Titel apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Kommersiell @@ -2720,6 +2726,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,In apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Ange en DocType: Offer Letter,Awaiting Response,Väntar på svar apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Ovan +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Time Log har fakturerats DocType: Salary Slip,Earning & Deduction,Vinst & Avdrag apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Kontot {0} kan inte vara en grupp apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Tillval. Denna inställning kommer att användas för att filtrera i olika transaktioner. @@ -2790,14 +2797,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Framgångsrikt bort alla transaktioner i samband med detta företag! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Som på Date apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Skyddstillsyn -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Standard Lager är obligatoriskt för lagervara. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Standard Lager är obligatoriskt för lagervara. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Utbetalning av lön för månaden {0} och år {1} DocType: Stock Settings,Auto insert Price List rate if missing,Diskinmatning Prislista ränta om saknas apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Sammanlagda belopp som betalats ,Transferred Qty,Överfört Antal apps/erpnext/erpnext/config/learn.py +11,Navigating,Navigera apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Planering -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Skapa tidsloggsbatch +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Skapa tidsloggsbatch apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Utfärdad DocType: Project,Total Billing Amount (via Time Logs),Totalt Billing Belopp (via Time Loggar) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Vi säljer detta objekt @@ -2805,7 +2812,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Kvantitet bör vara större än 0 DocType: Journal Entry,Cash Entry,Kontantinlägg DocType: Sales Partner,Contact Desc,Kontakt Desc -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Typ av löv som tillfällig, sjuka etc." +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Typ av löv som tillfällig, sjuka etc." DocType: Email Digest,Send regular summary reports via Email.,Skicka regelbundna sammanfattande rapporter via e-post. DocType: Brand,Item Manager,Produktansvarig DocType: Cost Center,Add rows to set annual budgets on Accounts.,Lägg rader för att ställa in årsbudgetar på konton. @@ -2820,7 +2827,7 @@ DocType: GL Entry,Party Type,Parti Typ apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Råvaror kan inte vara samma som huvudartikel DocType: Item Attribute Value,Abbreviation,Förkortning apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Inte auktoriserad eftersom {0} överskrider gränser -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Lön mall mästare. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Lön mall mästare. DocType: Leave Type,Max Days Leave Allowed,Max dagars ledighet tillåtna apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Ställ skatt Regel för varukorgen DocType: Payment Tool,Set Matching Amounts,Ställ matchande Belopp @@ -2833,7 +2840,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Offerte DocType: Stock Settings,Role Allowed to edit frozen stock,Roll tillåtet att redigera fryst lager ,Territory Target Variance Item Group-Wise,Territory Mål Varians Post Group-Wise apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Alla kundgrupper -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} är obligatorisk. Kanske Valutaväxlingsposten inte är skapad för {1} till {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} är obligatorisk. Kanske Valutaväxlingsposten inte är skapad för {1} till {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Skatte Mall är obligatorisk. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Konto {0}: Förälder konto {1} existerar inte DocType: Purchase Invoice Item,Price List Rate (Company Currency),Prislista värde (Företagsvaluta) @@ -2853,8 +2860,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Produktvis Skatte Detal ,Item-wise Price List Rate,Produktvis Prislistavärde apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Leverantör Offert DocType: Quotation,In Words will be visible once you save the Quotation.,I Ord kommer att synas när du sparar offerten. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} är stoppad -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Streckkod {0} används redan i punkt {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} är stoppad +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Streckkod {0} används redan i punkt {1} DocType: Lead,Add to calendar on this date,Lägg till i kalender på denna dag apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Regler för att lägga fraktkostnader. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,uppkommande händelser @@ -2880,8 +2887,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,St apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Minst ett lager är obligatorisk DocType: Serial No,Out of Warranty,Ingen garanti DocType: BOM Replace Tool,Replace,Ersätt -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} mot faktura {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Ange standardmåttenhet +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} mot faktura {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Ange standardmåttenhet DocType: Purchase Invoice Item,Project Name,Projektnamn DocType: Supplier,Mention if non-standard receivable account,Nämn om icke-standardiserade fordran konto DocType: Journal Entry Account,If Income or Expense,Om intäkter eller kostnader @@ -2906,7 +2913,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Räkenskapsårets: {0} inte existerar DocType: Currency Exchange,To Currency,Till Valuta DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Tillåt följande användarna att godkänna ledighetsansökningar för grupp dagar. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Olika typer av utgiftsräkning. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Olika typer av utgiftsräkning. DocType: Item,Taxes,Skatter apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Betald och inte levererats DocType: Project,Default Cost Center,Standardkostnadsställe @@ -2936,7 +2943,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Rad # {0}: Löpnummer {1} inte stämmer överens med {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Tillfällig ledighet DocType: Batch,Batch ID,Batch-ID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Obs: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Obs: {0} ,Delivery Note Trends,Följesedel Trender apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Veckans Sammanfattning apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} måste vara ett Köpt eller underleverantörers föremål i rad {1} @@ -2976,6 +2983,7 @@ DocType: Project Task,Pending Review,Väntar På Granskning apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Klicka här för att betala DocType: Task,Total Expense Claim (via Expense Claim),Totalkostnadskrav (via utgiftsräkning) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Kundnummer +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Mark Frånvarande apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Till tid måste vara större än From Time DocType: Journal Entry Account,Exchange Rate,Växelkurs apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Kundorder {0} är inte lämnat @@ -3023,7 +3031,7 @@ DocType: Item Group,Default Expense Account,Standardutgiftskonto DocType: Employee,Notice (days),Observera (dagar) DocType: Tax Rule,Sales Tax Template,Moms Mall DocType: Employee,Encashment Date,Inlösnings Datum -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Mot kupongtyp måste vara en av inköpsorder, inköpsfaktura eller journalanteckning" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Mot kupongtyp måste vara en av inköpsorder, inköpsfaktura eller journalanteckning" DocType: Account,Stock Adjustment,Lager för justering apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Standard Aktivitetskostnad existerar för Aktivitetstyp - {0} DocType: Production Order,Planned Operating Cost,Planerade driftkostnader @@ -3077,6 +3085,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Avskrivningspost DocType: BOM,Rate Of Materials Based On,Hastighet av material baserade på apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Stöd Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Avmarkera alla apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Företaget saknas i lager {0} DocType: POS Profile,Terms and Conditions,Villkor apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},Till Datum bör ligga inom räkenskapsåret. Förutsatt att Dag = {0} @@ -3098,7 +3107,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","För att ställa denna verksamhetsåret som standard, klicka på "Ange som standard"" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Inställning inkommande server stöd e-id. (T.ex. support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Brist Antal -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Punkt variant {0} finns med samma attribut +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Punkt variant {0} finns med samma attribut DocType: Salary Slip,Salary Slip,Lön Slip apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,"Till datum" krävs DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Skapa följesedlar efter paket som skall levereras. Används för att meddela kollinummer, paketets innehåll och dess vikt." @@ -3146,7 +3155,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Se pros DocType: Item Attribute Value,Attribute Value,Attribut Värde apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","E-post ID måste vara unikt, finns redan för {0}" ,Itemwise Recommended Reorder Level,Produktvis Rekommenderad Ombeställningsnivå -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,Välj {0} först +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,Välj {0} först DocType: Features Setup,To get Item Group in details table,För att få Post Group i detalj tabellen apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Batch {0} av Punkt {1} har löpt ut. DocType: Sales Invoice,Commission,Kommissionen @@ -3190,7 +3199,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Hämta Utestående Kuponger DocType: Warranty Claim,Resolved By,Åtgärdad av DocType: Appraisal,Start Date,Start Datum -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Tilldela avgångar under en period. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Tilldela avgångar under en period. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Checkar och Insättningar rensas felaktigt apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Klicka här för att kontrollera apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Konto {0}: Du kan inte tilldela sig själv som förälder konto @@ -3210,7 +3219,7 @@ DocType: Employee,Educational Qualification,Utbildnings Kvalificering DocType: Workstation,Operating Costs,Operations Kostnader DocType: Employee Leave Approver,Employee Leave Approver,Anställd Lämna godkännare apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} har lagts till vårt nyhetsbrev lista. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Rad {0}: En Beställnings post finns redan för detta lager {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Rad {0}: En Beställnings post finns redan för detta lager {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Det går inte att ange som förlorad, eftersom Offert har gjorts." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Inköpschef apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Produktionsorder {0} måste lämnas in @@ -3234,7 +3243,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Fakturan {0} har redan lämnats in apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Slutförande Datum DocType: Purchase Invoice Item,Amount (Company Currency),Belopp (Företagsvaluta) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Organisation enhet (avdelnings) ledare. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Organisation enhet (avdelnings) ledare. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Ange giltiga mobil nos DocType: Budget Detail,Budget Detail,Budgetdetalj apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,Ange meddelandet innan du skickar @@ -3250,13 +3259,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Mottagit och godkänt ,Serial No Service Contract Expiry,Löpnummer serviceavtal löper ut DocType: Item,Unit of Measure Conversion,Enhet Omvandling apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Anställd kan inte ändras -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Du kan inte kreditera och debitera samma konto på samma gång +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Du kan inte kreditera och debitera samma konto på samma gång DocType: Naming Series,Help HTML,Hjälp HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Totalt weightage delas ska vara 100%. Det är {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Ersättning för över {0} korsade till punkt {1} DocType: Address,Name of person or organization that this address belongs to.,Namn på den person eller organisation som den här adressen tillhör. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Dina Leverantörer -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,Kan inte ställa in då Förlorad kundorder är gjord. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,Kan inte ställa in då Förlorad kundorder är gjord. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,En annan lönestruktur {0} är aktiv anställd {1}. Gör sin status "Inaktiv" för att fortsätta. DocType: Purchase Invoice,Contact,Kontakt apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Mottagen från @@ -3266,11 +3275,11 @@ DocType: Item,Has Serial No,Har Löpnummer DocType: Employee,Date of Issue,Utgivningsdatum apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: Från {0} för {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Rad # {0}: Ställ Leverantör för punkt {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Website Bild {0} fäst till punkt {1} kan inte hittas +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Website Bild {0} fäst till punkt {1} kan inte hittas DocType: Issue,Content Type,Typ av innehåll apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Dator DocType: Item,List this Item in multiple groups on the website.,Lista detta objekt i flera grupper på webbplatsen. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,Kontrollera flera valutor möjlighet att tillåta konton med annan valuta +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,Kontrollera flera valutor möjlighet att tillåta konton med annan valuta apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Produkt: {0} existerar inte i systemet apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Du har inte behörighet att ställa in Frysta värden DocType: Payment Reconciliation,Get Unreconciled Entries,Hämta ej verifierade Anteckningar @@ -3280,14 +3289,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Vad gör den DocType: Delivery Note,To Warehouse,Till Warehouse apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Kontot {0} har angetts mer än en gång för räkenskapsåret {1} ,Average Commission Rate,Genomsnittligt commisionbetyg -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,"Har Löpnummer" kan inte vara "ja" för icke Beställningsvara +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,"Har Löpnummer" kan inte vara "ja" för icke Beställningsvara apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Närvaro kan inte markeras för framtida datum DocType: Pricing Rule,Pricing Rule Help,Prissättning Regel Hjälp DocType: Purchase Taxes and Charges,Account Head,Kontohuvud apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Uppdatera merkostnader för att beräkna landade kostnaden för objekt apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Elektrisk DocType: Stock Entry,Total Value Difference (Out - In),Total Value Skillnad (Out - In) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Rad {0}: Växelkurser är obligatorisk +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Rad {0}: Växelkurser är obligatorisk apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},Användar-ID inte satt för anställd {0} DocType: Stock Entry,Default Source Warehouse,Standardkälla Lager DocType: Item,Customer Code,Kund kod @@ -3306,15 +3315,15 @@ DocType: Notification Control,Sales Invoice Message,Fakturan Meddelande apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Utgående konto {0} måste vara av typen Ansvar / Equity DocType: Authorization Rule,Based On,Baserat På DocType: Sales Order Item,Ordered Qty,Beställde Antal -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Punkt {0} är inaktiverad +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Punkt {0} är inaktiverad DocType: Stock Settings,Stock Frozen Upto,Lager Fryst Upp apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Period Från och period datum obligatoriska för återkommande {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Projektverksamhet / uppgift. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Generera lönebesked +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Generera lönebesked apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Köp måste anges, i förekommande fall väljs som {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Rabatt måste vara mindre än 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Skriv engångsavgift (Company valuta) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Rad # {0}: Ställ in beställningsmängd +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Rad # {0}: Ställ in beställningsmängd DocType: Landed Cost Voucher,Landed Cost Voucher,Landad Kostnad rabatt apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},Ställ in {0} DocType: Purchase Invoice,Repeat on Day of Month,Upprepa på Månadsdag @@ -3366,7 +3375,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Standard Work In Progress Warehouse apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Standardinställningarna för bokföringstransaktioner. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Förväntad Datum kan inte vara före Material Begäran Datum -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Produkt {0} måste vara ett försäljningsprodukt +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Produkt {0} måste vara ett försäljningsprodukt DocType: Naming Series,Update Series Number,Uppdatera Serie Nummer DocType: Account,Equity,Eget kapital DocType: Sales Order,Printing Details,Utskrifter Detaljer @@ -3418,7 +3427,7 @@ DocType: Task,Review Date,Kontroll Datum DocType: Purchase Invoice,Advance Payments,Förskottsbetalningar DocType: Purchase Taxes and Charges,On Net Total,På Net Totalt apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Target lager i rad {0} måste vara densamma som produktionsorder -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Ingen tillåtelse att använda betalningsverktyg +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Ingen tillåtelse att använda betalningsverktyg apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,"""Anmälan e-postadresser"" inte angett för återkommande% s" apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Valuta kan inte ändras efter att ha gjort poster med någon annan valuta DocType: Company,Round Off Account,Avrunda konto @@ -3441,7 +3450,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Antal av objekt som erhålls efter tillverkning / ompackning från givna mängder av råvaror DocType: Payment Reconciliation,Receivable / Payable Account,Fordran / Betal konto DocType: Delivery Note Item,Against Sales Order Item,Mot Försäljningvara -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},Ange Attribut Värde för attribut {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},Ange Attribut Värde för attribut {0} DocType: Item,Default Warehouse,Standard Lager DocType: Task,Actual End Date (via Time Logs),Faktiskt Slutdatum (via Tidslogg) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Budget kan inte tilldelas mot gruppkonto {0} @@ -3466,10 +3475,10 @@ DocType: Lead,Blog Subscriber,Blogg Abonnent apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Skapa regler för att begränsa transaktioner som grundar sig på värderingar. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Om markerad, Totalt antal. arbetsdagar kommer att omfatta helgdagar, och detta kommer att minska värdet av lönen per dag" DocType: Purchase Invoice,Total Advance,Totalt Advance -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Bearbetning Lön +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Bearbetning Lön DocType: Opportunity Item,Basic Rate,Baskurs DocType: GL Entry,Credit Amount,Kreditbelopp -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Ange som förlorade +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Ange som förlorade apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Kvitto Notera DocType: Supplier,Credit Days Based On,Kredit dagar baserat på DocType: Tax Rule,Tax Rule,Skatte Rule @@ -3499,7 +3508,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Godkänd Kvantitet apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} existerar inte apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Fakturor till kunder. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Projekt Id -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Rad nr {0}: Beloppet kan inte vara större än utestående beloppet mot utgiftsräkning {1}. I avvaktan på Beloppet är {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Rad nr {0}: Beloppet kan inte vara större än utestående beloppet mot utgiftsräkning {1}. I avvaktan på Beloppet är {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} abonnenter tillagda DocType: Maintenance Schedule,Schedule,Tidtabell DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Definiera budget för detta kostnadsställe. Om du vill ställa budget action, se "Företag Lista"" @@ -3560,19 +3569,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS-Profil DocType: Payment Gateway Account,Payment URL Message,Betalning URL meddelande apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Säsongs för att fastställa budgeten, mål etc." -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Rad {0}: Betalningsbeloppet kan inte vara större än utestående beloppet +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Rad {0}: Betalningsbeloppet kan inte vara större än utestående beloppet apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Totalt Obetald -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Tid Log är inte debiterbar -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Punkt {0} är en mall, välj en av dess varianter" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Tid Log är inte debiterbar +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Punkt {0} är en mall, välj en av dess varianter" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Inköparen apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Nettolön kan inte vara negativ -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Ange mot mot vilken rabattkod manuellt +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Ange mot mot vilken rabattkod manuellt DocType: SMS Settings,Static Parameters,Statiska Parametrar DocType: Purchase Order,Advance Paid,Förskottsbetalning DocType: Item,Item Tax,Produkt Skatt apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Material till leverantören apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Punkt Faktura DocType: Expense Claim,Employees Email Id,Anställdas E-post Id +DocType: Employee Attendance Tool,Marked Attendance,Marked Närvaro apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Nuvarande Åtaganden apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Skicka mass SMS till dina kontakter DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Värdera skatt eller avgift för @@ -3595,7 +3605,7 @@ DocType: Item Attribute,Numeric Values,Numeriska värden apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Fäst Logo DocType: Customer,Commission Rate,Provisionbetyg apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Gör Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Block ledighet applikationer avdelningsvis. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Block ledighet applikationer avdelningsvis. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Kundvagnen är tom DocType: Production Order,Actual Operating Cost,Faktisk driftkostnad apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Root kan inte redigeras. @@ -3614,7 +3624,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,Skapa automatiskt Material Begäran om kvantitet understiger denna nivå ,Item-wise Purchase Register,Produktvis Inköpsregister DocType: Batch,Expiry Date,Utgångsdatum -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","För att ställa in beställningsnivå, måste objektet vara en inköpsobjekt eller tillverkning Punkt" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","För att ställa in beställningsnivå, måste objektet vara en inköpsobjekt eller tillverkning Punkt" ,Supplier Addresses and Contacts,Leverantör adresser och kontakter apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,Vänligen välj kategori först apps/erpnext/erpnext/config/projects.py +18,Project master.,Projektchef. diff --git a/erpnext/translations/ta.csv b/erpnext/translations/ta.csv index 78b76ee1b3..fd03aa19e3 100644 --- a/erpnext/translations/ta.csv +++ b/erpnext/translations/ta.csv @@ -164,14 +164,14 @@ DocType: Journal Entry Account,Credit in Company Currency,நிறுவனத DocType: Delivery Note,Installation Status,நிறுவல் நிலைமை apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},அக்செப்டட் + நிராகரிக்கப்பட்டது அளவு பொருள் பெறப்பட்டது அளவு சமமாக இருக்க வேண்டும் {0} DocType: Item,Supply Raw Materials for Purchase,வழங்கல் மூலப்பொருட்கள் வாங்க -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,பொருள் {0} ஒரு கொள்முதல் பொருள் இருக்க வேண்டும் +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,பொருள் {0} ஒரு கொள்முதல் பொருள் இருக்க வேண்டும் DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records",", டெம்ப்ளேட் பதிவிறக்கம் பொருத்தமான தரவு நிரப்ப செய்தது கோப்பு இணைக்கவும். தேர்வு காலம் இருக்கும் அனைத்து தேதிகளும் ஊழியர் இணைந்து ஏற்கனவே உள்ள வருகைப் பதிவேடுகள் கொண்டு, டெம்ப்ளேட் வரும்" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,பொருள் {0} செயலில் இல்லை அல்லது வாழ்க்கை முடிவுக்கு வந்து விட்டது DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,விற்பனை விலைப்பட்டியல் சமர்பிக்கப்பட்டதும் புதுப்பிக்கப்படும். -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","வரிசையில் வரி ஆகியவை அடங்கும் {0} பொருள் விகிதம் , வரிசைகளில் வரிகளை {1} சேர்க்கப்பட்டுள்ளது" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,அலுவலக தொகுதி அமைப்புகள் +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","வரிசையில் வரி ஆகியவை அடங்கும் {0} பொருள் விகிதம் , வரிசைகளில் வரிகளை {1} சேர்க்கப்பட்டுள்ளது" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,அலுவலக தொகுதி அமைப்புகள் DocType: SMS Center,SMS Center,எஸ்எம்எஸ் மையம் DocType: BOM Replace Tool,New BOM,புதிய BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,தொகுதி பில்லிங் நேரம் பதிவுகள். @@ -199,7 +199,7 @@ DocType: Offer Letter,Select Terms and Conditions,தேர்வு வித DocType: Production Planning Tool,Sales Orders,விற்பனை ஆணைகள் DocType: Purchase Taxes and Charges,Valuation,மதிப்பு மிக்க ,Purchase Order Trends,ஆர்டர் போக்குகள் வாங்குவதற்கு -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,ஆண்டு இலைகள் ஒதுக்க. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,ஆண்டு இலைகள் ஒதுக்க. DocType: Earning Type,Earning Type,வகை சம்பாதித்து DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,முடக்கு கொள்ளளவு திட்டமிடுதல் நேரம் டிராக்கிங் DocType: Bank Reconciliation,Bank Account,வங்கி கணக்கு @@ -237,7 +237,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,உருப்படியை வலைத்தளம் குறிப்புகள் DocType: Payment Tool,Reference No,குறிப்பு இல்லை apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,தடுக்கப்பட்ட விட்டு -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},பொருள் {0} வாழ்க்கை அதன் இறுதியில் அடைந்துவிட்டது {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},பொருள் {0} வாழ்க்கை அதன் இறுதியில் அடைந்துவிட்டது {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,வருடாந்திர DocType: Stock Reconciliation Item,Stock Reconciliation Item,பங்கு நல்லிணக்க பொருள் DocType: Stock Entry,Sales Invoice No,விற்பனை விலைப்பட்டியல் இல்லை @@ -249,7 +249,7 @@ DocType: Item,Minimum Order Qty,குறைந்தபட்ச ஆணை அ DocType: Pricing Rule,Supplier Type,வழங்குபவர் வகை DocType: Item,Publish in Hub,மையம் உள்ள வெளியிடு ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,பொருள் {0} ரத்து +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,பொருள் {0} ரத்து apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,பொருள் கோரிக்கை DocType: Bank Reconciliation,Update Clearance Date,இசைவு தேதி புதுப்பிக்க DocType: Item,Purchase Details,கொள்முதல் விவரம் @@ -261,11 +261,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,நிராகரிக்க DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","டெலிவரி குறிப்பு, மேற்கோள், விற்பனை விலைப்பட்டியல், விற்பனை ஆர்டர் கிடைக்கும் புலம்" DocType: SMS Settings,SMS Sender Name,எஸ்எம்எஸ் அனுப்பியவர் பெயர் DocType: Contact,Is Primary Contact,முதன்மை தொடர்பு இல்லை +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,நேரம் பதிவு பில்லிங் பேட்ச்சுடு DocType: Notification Control,Notification Control,அறிவிப்பு கட்டுப்பாடு DocType: Lead,Suggestions,பரிந்துரைகள் DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,இந்த மண்டலம் உருப்படி பிரிவு வாரியான வரவு செலவு திட்டம் அமைக்க. நீங்கள் விநியோகம் அமைக்க பருவகாலம் சேர்க்க முடியும். apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},கிடங்கு பெற்றோர் கணக்கு குழு உள்ளிடவும் {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},எதிராக செலுத்தும் {0} {1} மிகச்சிறந்த காட்டிலும் அதிகமாக இருக்க முடியாது {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},எதிராக செலுத்தும் {0} {1} மிகச்சிறந்த காட்டிலும் அதிகமாக இருக்க முடியாது {2} DocType: Supplier,Address HTML,HTML முகவரி DocType: Lead,Mobile No.,மொபைல் எண் DocType: Maintenance Schedule,Generate Schedule,அட்டவணை உருவாக்க @@ -282,7 +283,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,ஹப் ஒத்திசைய apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,தவறான கடவுச்சொல் DocType: Item,Variant Of,மாறுபாடு -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,பொருள் {0} சேவை பொருளாக இருக்க வேண்டும் apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',அது 'அளவு உற்பத்தி செய்ய' நிறைவு அளவு அதிகமாக இருக்க முடியாது DocType: Period Closing Voucher,Closing Account Head,கணக்கு தலைமை மூடுவதற்கு DocType: Employee,External Work History,வெளி வேலை வரலாறு @@ -294,10 +294,10 @@ DocType: Newsletter,Newsletter,செய்தி மடல் DocType: Stock Settings,Notify by Email on creation of automatic Material Request,தானியங்கி பொருள் கோரிக்கை உருவாக்கம் மின்னஞ்சல் மூலம் தெரிவிக்க DocType: Journal Entry,Multi Currency,பல நாணய DocType: Payment Reconciliation Invoice,Invoice Type,விலைப்பட்டியல் வகை -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,டெலிவரி குறிப்பு +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,டெலிவரி குறிப்பு apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,வரி அமைத்தல் apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,நீங்கள் அதை இழுத்து பின்னர் கொடுப்பனவு நுழைவு மாற்றப்பட்டுள்ளது. மீண்டும் அதை இழுக்க கொள்ளவும். -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} பொருள் வரி இரண்டு முறை +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} பொருள் வரி இரண்டு முறை apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,இந்த வாரம் மற்றும் நிலுவையில் நடவடிக்கைகள் சுருக்கம் DocType: Workstation,Rent Cost,வாடகை செலவு apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,மாதம் மற்றும் ஆண்டு தேர்ந்தெடுக்கவும் @@ -308,7 +308,7 @@ DocType: Shipping Rule,Valid for Countries,நாடுகள் செல்ல DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","நாணய , மாற்று விகிதம் , இறக்குமதி மொத்த இறக்குமதி பெரும் மொத்த போன்ற அனைத்து இறக்குமதி சார்ந்த துறைகள் கொள்முதல் ரசீது , வழங்குபவர் மேற்கோள் கொள்முதல் விலைப்பட்டியல் , கொள்முதல் ஆணை முதலியன உள்ளன" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,இந்த உருப்படி ஒரு டெம்ப்ளேட் உள்ளது பரிமாற்றங்களை பயன்படுத்த முடியாது. 'இல்லை நகல் அமைக்க வரை பொருள் பண்புகளை மாறிகள் மீது நகல் apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,அது கருதப்பட்டு மொத்த ஆணை -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","பணியாளர் பதவி ( எ.கா., தலைமை நிர்வாக அதிகாரி , இயக்குனர் முதலியன) ." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","பணியாளர் பதவி ( எ.கா., தலைமை நிர்வாக அதிகாரி , இயக்குனர் முதலியன) ." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,துறையில் மதிப்பு ' மாதம் நாளில் பூசை ' உள்ளிடவும் DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,விகிதம் இது வாடிக்கையாளர் நாணயத்தின் வாடிக்கையாளர் அடிப்படை நாணய மாற்றப்படும் DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Bom, டெலிவரி குறிப்பு , கொள்முதல் விலைப்பட்டியல் , உத்தரவு , கொள்முதல் ஆணை , கொள்முதல் ரசீது , கவிஞருக்கு , விற்பனை , பங்கு நுழைவு , எங்கோ கிடைக்கும்" @@ -357,7 +357,7 @@ DocType: Workstation,Consumable Cost,நுகர்வோர் விலை apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) பங்கு வேண்டும் 'விடுப்பு தரப்பில் சாட்சி' DocType: Purchase Receipt,Vehicle Date,வாகன தேதி apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,மருத்துவம் -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,இழந்து காரணம் +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,இழந்து காரணம் apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},பணிநிலையம் விடுமுறை பட்டியல் படி பின்வரும் தேதிகளில் மூடப்பட்டுள்ளது {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,வாய்ப்புகள் DocType: Employee,Single,ஒற்றை @@ -385,14 +385,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,சேனல் வரன்வாழ்க்கை துணை DocType: Account,Old Parent,பழைய பெற்றோர் DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,அந்த மின்னஞ்சல் ஒரு பகுதியாக சென்று அந்த அறிமுக உரை தனிப்பயனாக்கலாம். ஒவ்வொரு நடவடிக்கைக்கும் ஒரு தனி அறிமுக உரை உள்ளது. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),சின்னங்கள் சேர்க்க வேண்டாம் (முன்னாள். $) DocType: Sales Taxes and Charges Template,Sales Master Manager,விற்பனை மாஸ்டர் மேலாளர் apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,அனைத்து உற்பத்தி செயல்முறைகள் உலக அமைப்புகள். DocType: Accounts Settings,Accounts Frozen Upto,கணக்குகள் வரை உறை DocType: SMS Log,Sent On,அன்று அனுப்பப்பட்டது -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,கற்பிதம் {0} காரணிகள் அட்டவணை பல முறை தேர்வு +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,கற்பிதம் {0} காரணிகள் அட்டவணை பல முறை தேர்வு DocType: HR Settings,Employee record is created using selected field. ,பணியாளர் பதிவு தேர்ந்தெடுக்கப்பட்ட துறையில் பயன்படுத்தி உருவாக்கப்பட்டது. DocType: Sales Order,Not Applicable,பொருந்தாது -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,விடுமுறை மாஸ்டர் . +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,விடுமுறை மாஸ்டர் . DocType: Material Request Item,Required Date,தேவையான தேதி DocType: Delivery Note,Billing Address,பில்லிங் முகவரி apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,பொருள் கோட் உள்ளிடவும். @@ -428,7 +429,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,பொருள் கோரிக்கை எழுப்பப்படும் எந்த கிடங்கு உள்ளிடவும் DocType: Production Order,Additional Operating Cost,கூடுதல் இயக்க செலவு apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,ஒப்பனை -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","ஒன்றாக்க , பின்வரும் பண்புகளை இரு பொருட்களை சமமாக இருக்க வேண்டும்" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","ஒன்றாக்க , பின்வரும் பண்புகளை இரு பொருட்களை சமமாக இருக்க வேண்டும்" DocType: Shipping Rule,Net Weight,நிகர எடை DocType: Employee,Emergency Phone,அவசர தொலைபேசி ,Serial No Warranty Expiry,தொடர் இல்லை உத்தரவாதத்தை காலாவதியாகும் @@ -486,17 +487,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,பில்லிங் மற்றும் டெலிவரி நிலை apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,மீண்டும் வாடிக்கையாளர்கள் DocType: Leave Control Panel,Allocate,நிர்ணயி -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,விற்பனை Return +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,விற்பனை Return DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,நீங்கள் உற்பத்தி ஆணைகள் உருவாக்க வேண்டிய இருந்து விற்பனை ஆணைகள் தேர்ந்தெடுக்கவும். DocType: Item,Delivered by Supplier (Drop Ship),சப்ளையர் மூலம் வழங்கப்படுகிறது (டிராப் கப்பல்) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,சம்பளம் கூறுகள். +apps/erpnext/erpnext/config/hr.py +128,Salary components.,சம்பளம் கூறுகள். apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,வாடிக்கையாளர்கள் பற்றிய தகவல். DocType: Authorization Rule,Customer or Item,வாடிக்கையாளர் அல்லது பொருள் apps/erpnext/erpnext/config/crm.py +17,Customer database.,வாடிக்கையாளர் தகவல். DocType: Quotation,Quotation To,என்று மேற்கோள் DocType: Lead,Middle Income,நடுத்தர வருமானம் apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),துவாரம் ( CR) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"நீங்கள் ஏற்கனவே மற்றொரு UOM சில பரிவர்த்தனை (ங்கள்) செய்துவிட்டேன் ஏனெனில் பொருள் நடவடிக்கையாக, இயல்புநிலை பிரிவு {0} நேரடியாக மாற்ற முடியாது. நீங்கள் வேறு ஒரு இயல்புநிலை UOM பயன்படுத்த ஒரு புதிய பொருள் உருவாக்க வேண்டும்." +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"நீங்கள் ஏற்கனவே மற்றொரு UOM சில பரிவர்த்தனை (ங்கள்) செய்துவிட்டேன் ஏனெனில் பொருள் நடவடிக்கையாக, இயல்புநிலை பிரிவு {0} நேரடியாக மாற்ற முடியாது. நீங்கள் வேறு ஒரு இயல்புநிலை UOM பயன்படுத்த ஒரு புதிய பொருள் உருவாக்க வேண்டும்." apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,ஒதுக்கப்பட்ட தொகை எதிர்மறை இருக்க முடியாது DocType: Purchase Order Item,Billed Amt,கணக்கில் AMT DocType: Warehouse,A logical Warehouse against which stock entries are made.,"பங்கு உள்ளீடுகளை செய்யப்படுகின்றன எதிராக, ஒரு தருக்க கிடங்கு." @@ -515,14 +516,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,விற்பனை வரி DocType: Employee,Organization Profile,அமைப்பு செய்தது apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,அமைப்பு> எண் தொடர் வழியாக வருகை தயவுசெய்து அமைப்பு எண்களின் தொடர் DocType: Employee,Reason for Resignation,ராஜினாமாவுக்கான காரணம் -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,செயல்பாடு மதிப்பீடு டெம்ப்ளேட் . +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,செயல்பாடு மதிப்பீடு டெம்ப்ளேட் . DocType: Payment Reconciliation,Invoice/Journal Entry Details,விலைப்பட்டியல் / பத்திரிகை நுழைவு விவரம் apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} ' {1} ' இல்லை நிதி ஆண்டில் {2} DocType: Buying Settings,Settings for Buying Module,தொகுதி வாங்குதல் அமைப்புகள் apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,முதல் கொள்முதல் ரசீது உள்ளிடவும் DocType: Buying Settings,Supplier Naming By,மூலம் பெயரிடுதல் சப்ளையர் DocType: Activity Type,Default Costing Rate,இயல்புநிலை செலவு மதிப்பீடு -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,பராமரிப்பு அட்டவணை +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,பராமரிப்பு அட்டவணை apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","பின்னர் விலை விதிகள் வாடிக்கையாளர் அடிப்படையில் வடிகட்டப்பட்ட, வாடிக்கையாளர் குழு, மண்டலம், சப்ளையர், வழங்குபவர் வகை, இயக்கம், விற்பனை பங்குதாரரான முதலியன" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,சரக்கு நிகர மாற்றம் DocType: Employee,Passport Number,பாஸ்போர்ட் எண் @@ -561,7 +562,7 @@ DocType: Purchase Invoice,Quarterly,கால் ஆண்டுக்கு ஒ DocType: Selling Settings,Delivery Note Required,டெலிவரி குறிப்பு தேவை DocType: Sales Order Item,Basic Rate (Company Currency),அடிப்படை விகிதம் (நிறுவனத்தின் கரன்சி) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush மூலப்பொருட்கள் அடித்தளமாகக் -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,உருப்படியை விவரங்கள் உள்ளிடவும் +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,உருப்படியை விவரங்கள் உள்ளிடவும் DocType: Purchase Receipt,Other Details,மற்ற விவரங்கள் DocType: Account,Accounts,கணக்குகள் apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,மார்கெட்டிங் @@ -574,7 +575,7 @@ DocType: Employee,Provide email id registered in company,நிறுவனத DocType: Hub Settings,Seller City,விற்பனையாளர் நகரத்தை DocType: Email Digest,Next email will be sent on:,அடுத்த மின்னஞ்சலில் அனுப்பி வைக்கப்படும்: DocType: Offer Letter Term,Offer Letter Term,கடிதம் கால ஆஃபர் -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,பொருள் வகைகள் உண்டு. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,பொருள் வகைகள் உண்டு. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,பொருள் {0} இல்லை DocType: Bin,Stock Value,பங்கு மதிப்பு apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,மரம் வகை @@ -582,7 +583,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,அளவு அலகு ஒ DocType: Serial No,Warranty Expiry Date,உத்தரவாதத்தை காலாவதியாகும் தேதி DocType: Material Request Item,Quantity and Warehouse,அளவு மற்றும் சேமிப்பு கிடங்கு DocType: Sales Invoice,Commission Rate (%),கமிஷன் விகிதம் (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","வவுச்சர் எதிராக வகை விற்பனை ஆணை ஒன்று, விற்பனை விலைப்பட்டியல் அல்லது பத்திரிகை நுழைவு இருக்க வேண்டும்" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","வவுச்சர் எதிராக வகை விற்பனை ஆணை ஒன்று, விற்பனை விலைப்பட்டியல் அல்லது பத்திரிகை நுழைவு இருக்க வேண்டும்" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,ஏரோஸ்பேஸ் DocType: Journal Entry,Credit Card Entry,கடன் அட்டை நுழைவு apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,பணி தலைப்பு @@ -669,10 +670,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,கடமை apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,ஒப்புதல் தொகை ரோ கூறுகின்றனர் காட்டிலும் அதிகமாக இருக்க முடியாது {0}. DocType: Company,Default Cost of Goods Sold Account,பொருட்களை விற்பனை கணக்கு இயல்பான செலவு -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,விலை பட்டியல் தேர்வு +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,விலை பட்டியல் தேர்வு DocType: Employee,Family Background,குடும்ப பின்னணி DocType: Process Payroll,Send Email,மின்னஞ்சல் அனுப்ப -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},எச்சரிக்கை: தவறான இணைப்பு {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},எச்சரிக்கை: தவறான இணைப்பு {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,இல்லை அனுமதி DocType: Company,Default Bank Account,முன்னிருப்பு வங்கி கணக்கு apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first",கட்சி அடிப்படையில் வடிகட்ட தேர்ந்தெடுக்கவும் கட்சி முதல் வகை @@ -700,7 +701,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,வ DocType: Features Setup,"To enable ""Point of Sale"" features","விற்பனை செய்யுமிடம்" அம்சங்களை செயல்படுத்த DocType: Bin,Moving Average Rate,சராசரி விகிதம் நகரும் DocType: Production Planning Tool,Select Items,தேர்ந்தெடு -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} பில் எதிராக {1} தேதியிட்ட {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} பில் எதிராக {1} தேதியிட்ட {2} DocType: Maintenance Visit,Completion Status,நிறைவு நிலைமை DocType: Sales Invoice Item,Target Warehouse,இலக்கு கிடங்கு DocType: Item,Allow over delivery or receipt upto this percent,இந்த சதவிகிதம் வரை விநியோக அல்லது ரசீது மீது அனுமதிக்கவும் @@ -760,7 +761,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,ந apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},ஆபரேஷன் அடுத்த {0} நாட்கள் நேரத்தில் கண்டுபிடிக்க முடியவில்லை {1} DocType: Production Order,Plan material for sub-assemblies,துணை கூட்டங்கள் திட்டம் பொருள் apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} செயலில் இருக்க வேண்டும் -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,முதல் ஆவணம் வகையை தேர்ந்தெடுக்கவும் +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,முதல் ஆவணம் வகையை தேர்ந்தெடுக்கவும் apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,செல் வண்டியில் apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,இந்த பராமரிப்பு பணிகள் முன் பொருள் வருகைகள் {0} ரத்து DocType: Salary Slip,Leave Encashment Amount,பணமாக்கல் தொகை விட்டு @@ -778,7 +779,7 @@ DocType: Purchase Receipt,Range,எல்லை DocType: Supplier,Default Payable Accounts,இயல்புநிலை செலுத்தத்தக்க கணக்குகள் apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,பணியாளர் {0} செயலில் இல்லை அல்லது இல்லை DocType: Features Setup,Item Barcode,உருப்படியை பார்கோடு -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,பொருள் மாறிகள் {0} மேம்படுத்தப்பட்டது +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,பொருள் மாறிகள் {0} மேம்படுத்தப்பட்டது DocType: Quality Inspection Reading,Reading 6,6 படித்தல் DocType: Purchase Invoice Advance,Purchase Invoice Advance,விலைப்பட்டியல் அட்வான்ஸ் வாங்குவதற்கு DocType: Address,Shop,ஷாப்பிங் @@ -801,7 +802,7 @@ DocType: Salary Slip,Total in words,வார்த்தைகளில் ம DocType: Material Request Item,Lead Time Date,நேரம் தேதி இட்டு apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,கட்டாயமாகும். ஒருவேளை செலாவணி பதிவு செய்தது apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},ரோ # {0}: பொருள் சீரியல் இல்லை குறிப்பிடவும் {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","'தயாரிப்பு மூட்டை' பொருட்களை, சேமிப்புக் கிடங்கு, தொ.எ. மற்றும் தொகுதி இல்லை 'பேக்கிங்கை பட்டியலில் மேஜையிலிருந்து கருதப்படுகிறது. கிடங்கு மற்றும் தொகுதி இல்லை எந்த 'தயாரிப்பு மூட்டை' உருப்படியை அனைத்து பொதி பொருட்களை அதே இருந்தால், அந்த மதிப்புகள் முக்கிய பொருள் அட்டவணை உள்ளிட்ட முடியும், மதிப்புகள் மேஜை '' பட்டியல் பொதி 'நகலெடுக்கப்படும்." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","'தயாரிப்பு மூட்டை' பொருட்களை, சேமிப்புக் கிடங்கு, தொ.எ. மற்றும் தொகுதி இல்லை 'பேக்கிங்கை பட்டியலில் மேஜையிலிருந்து கருதப்படுகிறது. கிடங்கு மற்றும் தொகுதி இல்லை எந்த 'தயாரிப்பு மூட்டை' உருப்படியை அனைத்து பொதி பொருட்களை அதே இருந்தால், அந்த மதிப்புகள் முக்கிய பொருள் அட்டவணை உள்ளிட்ட முடியும், மதிப்புகள் மேஜை '' பட்டியல் பொதி 'நகலெடுக்கப்படும்." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,வாடிக்கையாளர்களுக்கு ஏற்றுமதி. DocType: Purchase Invoice Item,Purchase Order Item,ஆர்டர் பொருள் வாங்க apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,மறைமுக வருமானம் @@ -822,6 +823,7 @@ DocType: Process Payroll,Select Payroll Year and Month,சம்பளப்ப apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",அதற்கான குழு (பொதுவாக நிதிகள் விண்ணப்ப> நடப்பு சொத்துக்கள்> வங்கி கணக்குகள் சென்று வகை) குழந்தை சேர் கிளிக் செய்வதன் மூலம் (ஒரு புதிய கணக்கு உருவாக்க "வங்கி" DocType: Workstation,Electricity Cost,மின்சார செலவு DocType: HR Settings,Don't send Employee Birthday Reminders,பணியாளர் நினைவூட்டல்கள் அனுப்ப வேண்டாம் +,Employee Holiday Attendance,பணியாளர் விடுமுறை வருகை DocType: Opportunity,Walk In,ல் நடக்க apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,பங்கு பதிவுகள் DocType: Item,Inspection Criteria,ஆய்வு வரையறைகள் @@ -844,7 +846,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options, DocType: Journal Entry Account,Expense Claim,இழப்பில் கோரிக்கை apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},ஐந்து அளவு {0} DocType: Leave Application,Leave Application,விண்ணப்ப விட்டு -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,ஒதுக்கீடு கருவி விட்டு +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,ஒதுக்கீடு கருவி விட்டு DocType: Leave Block List,Leave Block List Dates,பிளாக் பட்டியல் தினங்கள் விட்டு DocType: Company,If Monthly Budget Exceeded (for expense account),மாதாந்திர பட்ஜெட் (செலவு கணக்கு க்கான) மீறிவிட்டது DocType: Workstation,Net Hour Rate,நிகர ஹவர் விகிதம் @@ -854,7 +856,7 @@ DocType: Packing Slip Item,Packing Slip Item,ஸ்லிப் பொரு DocType: POS Profile,Cash/Bank Account,பண / வங்கி கணக்கு apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,அளவு அல்லது மதிப்பு எந்த மாற்றமும் நீக்கப்பட்ட விடயங்கள். DocType: Delivery Note,Delivery To,வழங்கும் -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,கற்பிதம் அட்டவணையின் கட்டாயமாகும் +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,கற்பிதம் அட்டவணையின் கட்டாயமாகும் DocType: Production Planning Tool,Get Sales Orders,விற்பனை ஆணைகள் கிடைக்கும் apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} எதிர்மறை இருக்க முடியாது apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,தள்ளுபடி @@ -918,7 +920,7 @@ DocType: SMS Center,Total Characters,மொத்த எழுத்துக apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},பொருள் BOM துறையில் BOM தேர்ந்தெடுக்கவும் {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,சி படிவம் விலைப்பட்டியல் விரிவாக DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,கொடுப்பனவு நல்லிணக்க விலைப்பட்டியல் -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,பங்களிப்பு% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,பங்களிப்பு% DocType: Item,website page link,இணைய பக்கம் இணைப்பு DocType: Company,Company registration numbers for your reference. Tax numbers etc.,உங்கள் குறிப்பு நிறுவனத்தில் பதிவு எண்கள். வரி எண்கள் போன்ற DocType: Sales Partner,Distributor,பகிர்கருவி @@ -960,10 +962,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,மொறட்டுவ DocType: Stock Settings,Default Item Group,முன்னிருப்பு உருப்படி குழு apps/erpnext/erpnext/config/buying.py +13,Supplier database.,வழங்குபவர் தரவுத்தள. DocType: Account,Balance Sheet,ஐந்தொகை -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ','பொருள் கோட் பொருள் சென்டர் செலவாகும் +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ','பொருள் கோட் பொருள் சென்டர் செலவாகும் DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,உங்கள் விற்பனை நபர் வாடிக்கையாளர் தொடர்பு கொள்ள இந்த தேதியில் ஒரு நினைவூட்டல் வரும் apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","மேலும் கணக்குகளை குழுக்கள் கீழ் செய்யப்பட்ட, ஆனால் உள்ளீடுகளை அல்லாத குழுக்கள் எதிராகவும் முடியும்" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,வரி மற்றும் பிற சம்பளம் கழிவுகள். +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,வரி மற்றும் பிற சம்பளம் கழிவுகள். DocType: Lead,Lead,தலைமை DocType: Email Digest,Payables,Payables DocType: Account,Warehouse,கிடங்கு @@ -980,10 +982,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,ஒப்புர DocType: Global Defaults,Current Fiscal Year,தற்போதைய நிதியாண்டு DocType: Global Defaults,Disable Rounded Total,வட்டமான மொத்த முடக்கு DocType: Lead,Call,அழைப்பு -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,' பதிவுகள் ' காலியாக இருக்க முடியாது +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,' பதிவுகள் ' காலியாக இருக்க முடியாது apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},பிரதி வரிசையில் {0} அதே {1} ,Trial Balance,விசாரணை இருப்பு -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,ஊழியர் அமைத்தல் +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,ஊழியர் அமைத்தல் apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","கிரிட் """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,முதல் முன்னொட்டு தேர்வு செய்க apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,ஆராய்ச்சி @@ -992,7 +994,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,பயனர் ஐடி apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,காட்சி லெட்ஜர் apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,மிகமுந்திய -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","ஒரு உருப்படி குழு அதே பெயரில் , உருப்படி பெயர் மாற்ற அல்லது உருப்படியை குழு பெயர்மாற்றம் செய்க" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","ஒரு உருப்படி குழு அதே பெயரில் , உருப்படி பெயர் மாற்ற அல்லது உருப்படியை குழு பெயர்மாற்றம் செய்க" DocType: Production Order,Manufacture against Sales Order,விற்பனை அமைப்புக்கு எதிராக உற்பத்தி apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,உலகம் முழுவதும் apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,பொருள் {0} பணி முடியாது @@ -1017,7 +1019,7 @@ DocType: Purchase Receipt,Rejected Warehouse,நிராகரிக்கப DocType: GL Entry,Against Voucher,வவுச்சர் எதிராக DocType: Item,Default Buying Cost Center,இயல்புநிலை வாங்குதல் செலவு மையம் apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","ERPNext சிறந்த வெளியே, நாங்கள் உங்களுக்கு சில நேரம் இந்த உதவி வீடியோக்களை பார்க்க வேண்டும் என்று பரிந்துரைக்கிறோம்." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,பொருள் {0} விற்பனை பொருளாக இருக்க வேண்டும் +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,பொருள் {0} விற்பனை பொருளாக இருக்க வேண்டும் apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,செய்ய DocType: Item,Lead Time in days,நாட்கள் முன்னணி நேரம் ,Accounts Payable Summary,செலுத்தத்தக்க கணக்குகள் சுருக்கம் @@ -1043,7 +1045,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,விவசாயம் apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,உங்கள் தயாரிப்புகள் அல்லது சேவைகள் DocType: Mode of Payment,Mode of Payment,கட்டணம் செலுத்தும் முறை -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,இணைய பட ஒரு பொது கோப்பு அல்லது வலைத்தளத்தின் URL இருக்க வேண்டும் +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,இணைய பட ஒரு பொது கோப்பு அல்லது வலைத்தளத்தின் URL இருக்க வேண்டும் apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,இந்த ஒரு ரூட் உருப்படியை குழு மற்றும் திருத்த முடியாது . DocType: Journal Entry Account,Purchase Order,ஆர்டர் வாங்க DocType: Warehouse,Warehouse Contact Info,சேமிப்பு கிடங்கு தொடர்பு தகவல் @@ -1054,7 +1056,7 @@ DocType: Serial No,Serial No Details,தொடர் எண் விவர DocType: Purchase Invoice Item,Item Tax Rate,உருப்படியை வரி விகிதம் apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry",{0} மட்டுமே கடன் கணக்குகள் மற்றொரு பற்று நுழைவு எதிராக இணைக்கப்பட்ட ஐந்து apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,டெலிவரி குறிப்பு {0} சமர்ப்பிக்க -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,பொருள் {0} ஒரு துணை ஒப்பந்தம் பொருள் இருக்க வேண்டும் +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,பொருள் {0} ஒரு துணை ஒப்பந்தம் பொருள் இருக்க வேண்டும் apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,மூலதன கருவிகள் apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","விலை விதி முதல் பொருள், பொருள் பிரிவு அல்லது பிராண்ட் முடியும், துறையில் 'விண்ணப்பிக்க' அடிப்படையில் தேர்வு செய்யப்படுகிறது." DocType: Hub Settings,Seller Website,விற்பனையாளர் வலைத்தளம் @@ -1063,7 +1065,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,இலக்கு DocType: Sales Invoice Item,Edit Description,திருத்த விளக்கம் apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,எதிர்பார்த்த வழங்குதல் தேதி திட்டமிட்ட தொடக்க தேதி விட குறைந்த உள்ளது. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,சப்ளையர் +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,சப்ளையர் DocType: Account,Setting Account Type helps in selecting this Account in transactions.,அமைத்தல் கணக்கு வகை பரிமாற்றங்கள் இந்த கணக்கு தேர்வு உதவுகிறது. DocType: Purchase Invoice,Grand Total (Company Currency),கிராண்ட் மொத்த (நிறுவனத்தின் கரன்சி) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,மொத்த வெளிச்செல்லும் @@ -1115,7 +1117,6 @@ DocType: Authorization Rule,Average Discount,சராசரி தள்ளு DocType: Address,Utilities,பயன்பாடுகள் DocType: Purchase Invoice Item,Accounting,கணக்கு வைப்பு DocType: Features Setup,Features Setup,அம்சங்கள் அமைப்பு -DocType: Item,Is Service Item,சேவை பொருள் ஆகும் apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,விண்ணப்ப காலம் வெளியே விடுப்பு ஒதுக்கீடு காலம் இருக்க முடியாது DocType: Activity Cost,Projects,திட்டங்கள் apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,நிதியாண்டு தேர்வு செய்க @@ -1136,7 +1137,7 @@ DocType: Item,Maintain Stock,பங்கு பராமரிக்கவு apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,ஏற்கனவே உற்பத்தி ஆணை உருவாக்கப்பட்ட பங்கு பதிவுகள் apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,நிலையான சொத்து நிகர மாற்றம் DocType: Leave Control Panel,Leave blank if considered for all designations,அனைத்து வடிவ கருத்தில் இருந்தால் வெறுமையாக -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,வகை வரிசையில் {0} ல் ' உண்மையான ' பொறுப்பு மதிப்பிட சேர்க்கப்பட்டுள்ளது முடியாது +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,வகை வரிசையில் {0} ல் ' உண்மையான ' பொறுப்பு மதிப்பிட சேர்க்கப்பட்டுள்ளது முடியாது apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},அதிகபட்சம்: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,நாள்நேரம் இருந்து DocType: Email Digest,For Company,நிறுவனத்தின் @@ -1145,8 +1146,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,ஷிப்பிங் முகவரி பெயர் apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,கணக்கு விளக்கப்படம் DocType: Material Request,Terms and Conditions Content,நிபந்தனைகள் உள்ளடக்கம் -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,100 க்கும் அதிகமாக இருக்க முடியாது -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,பொருள் {0} ஒரு பங்கு பொருள் அல்ல +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,100 க்கும் அதிகமாக இருக்க முடியாது +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,பொருள் {0} ஒரு பங்கு பொருள் அல்ல DocType: Maintenance Visit,Unscheduled,திட்டமிடப்படாத DocType: Employee,Owned,சொந்தமானது DocType: Salary Slip Deduction,Depends on Leave Without Pay,சம்பளமில்லா விடுப்பு பொறுத்தது @@ -1168,7 +1169,7 @@ Used for Taxes and Charges","ஒரு சரம் போன்ற உரு apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,பணியாளர் தன்னை தெரிவிக்க முடியாது. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","கணக்கு முடக்கப்படும் என்றால், உள்ளீடுகளை தடை செய்த அனுமதிக்கப்படுகிறது ." DocType: Email Digest,Bank Balance,வங்கி மீதி -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},{1} மட்டுமே நாணய முடியும்: {0} பைனான்ஸ் நுழைவு {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},{1} மட்டுமே நாணய முடியும்: {0} பைனான்ஸ் நுழைவு {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,ஊழியர் {0} மற்றும் மாதம் எண் எதுவும் இல்லை செயலில் சம்பளம் அமைப்பு DocType: Job Opening,"Job profile, qualifications required etc.","Required வேலை சுயவிவரத்தை, தகுதிகள் முதலியன" DocType: Journal Entry Account,Account Balance,கணக்கு இருப்பு @@ -1185,7 +1186,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,துணை DocType: Shipping Rule Condition,To Value,மதிப்பு DocType: Supplier,Stock Manager,பங்கு மேலாளர் apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},மூல கிடங்கில் வரிசையில் கட்டாய {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,ஸ்லிப் பொதி +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,ஸ்லிப் பொதி apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,அலுவலகத்திற்கு வாடகைக்கு apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,அமைப்பு எஸ்எம்எஸ் வாயில் அமைப்புகள் apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,இறக்குமதி தோல்வி! @@ -1229,7 +1230,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM விரிவாக DocType: Purchase Invoice,Additional Discount Amount (Company Currency),கூடுதல் தள்ளுபடி தொகை (நிறுவனத்தின் நாணயம்) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},பிழை: {0} > {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,கணக்கு பட்டியலில் இருந்து புதிய கணக்கை உருவாக்கு . -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,பராமரிப்பு வருகை +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,பராமரிப்பு வருகை apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,வாடிக்கையாளர்> வாடிக்கையாளர் குழு> மண்டலம் DocType: Sales Invoice Item,Available Batch Qty at Warehouse,கிடங்கு உள்ள கிடைக்கும் தொகுதி அளவு DocType: Time Log Batch Detail,Time Log Batch Detail,நேரம் புகுபதிகை தொகுப்பு விரிவாக @@ -1238,7 +1239,7 @@ DocType: Leave Block List,Block Holidays on important days.,முக்கி ,Accounts Receivable Summary,கணக்குகள் சுருக்கம் apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,பணியாளர் பங்கு அமைக்க ஒரு பணியாளர் சாதனை பயனர் ஐடி துறையில் அமைக்கவும் DocType: UOM,UOM Name,மொறட்டுவ பல்கலைகழகம் பெயர் -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,பங்களிப்பு தொகை +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,பங்களிப்பு தொகை DocType: Sales Invoice,Shipping Address,கப்பல் முகவரி DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,"இந்த கருவியை நீங்கள் புதுப்பிக்க அல்லது அமைப்பு பங்கு அளவு மற்றும் மதிப்பீட்டு சரி செய்ய உதவுகிறது. இது பொதுவாக கணினியில் மதிப்புகள் என்ன, உண்மையில் உங்கள் கிடங்குகள் நிலவும் ஒருங்கிணைக்க பயன்படுகிறது." DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,நீங்கள் டெலிவரி குறிப்பு சேமிக்க முறை சொற்கள் காணக்கூடியதாக இருக்கும். @@ -1279,7 +1280,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,பார்கோடு பயன்படுத்தி பொருட்களை கண்காணிக்க வேண்டும். நீங்கள் உருப்படியின் பார்கோடு ஸ்கேனிங் மூலம் வினியோகம் குறிப்பு மற்றும் விற்பனை விலைப்பட்டியல் உள்ள பொருட்களை நுழைய முடியும். apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,கொடுப்பனவு மின்னஞ்சலை மீண்டும் அனுப்புக DocType: Dependent Task,Dependent Task,தங்கிவாழும் பணி -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},நடவடிக்கை இயல்புநிலை பிரிவு மாற்ற காரணி வரிசையில் 1 வேண்டும் {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},நடவடிக்கை இயல்புநிலை பிரிவு மாற்ற காரணி வரிசையில் 1 வேண்டும் {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},வகை விடுப்பு {0} மேலாக இருக்க முடியாது {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,முன்கூட்டியே எக்ஸ் நாட்கள் நடவடிக்கைகளுக்குத் திட்டமிட்டுள்ளது முயற்சி. DocType: HR Settings,Stop Birthday Reminders,நிறுத்து நினைவூட்டல்கள் @@ -1289,7 +1290,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} காண்க apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,பண நிகர மாற்றம் DocType: Salary Structure Deduction,Salary Structure Deduction,சம்பளம் அமைப்பு பொருத்தியறிதல் -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,நடவடிக்கை அலகு {0} மேலும் மாற்று காரணி அட்டவணை முறை விட உள்ளிட்ட +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,நடவடிக்கை அலகு {0} மேலும் மாற்று காரணி அட்டவணை முறை விட உள்ளிட்ட apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},பணம் கோரிக்கை ஏற்கனவே உள்ளது {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,வெளியிடப்படுகிறது பொருட்களை செலவு apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},அளவு அதிகமாக இருக்க கூடாது {0} @@ -1318,7 +1319,7 @@ DocType: BOM Item,BOM Item,BOM பொருள் DocType: Appraisal,For Employee,பணியாளர் தேவை apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,ரோ {0}: சப்ளையர் எதிராக அட்வான்ஸ் பற்று DocType: Company,Default Values,இயல்புநிலை கலாச்சாரம் -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,ரோ {0}: கட்டணம் அளவு எதிர்மறையாக இருக்க முடியாது +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,ரோ {0}: கட்டணம் அளவு எதிர்மறையாக இருக்க முடியாது DocType: Expense Claim,Total Amount Reimbursed,மொத்த அளவு திரும்ப apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},வழங்குபவர் எதிராக விலைப்பட்டியல் {0} தேதியிட்ட {1} DocType: Customer,Default Price List,முன்னிருப்பு விலை பட்டியல் @@ -1346,8 +1347,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,வ DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","பயன்படுத்தப்படும் அமைந்துள்ள மற்ற அனைத்து BOM கள் ஒரு குறிப்பிட்ட BOM மாற்றவும். ஏனெனில், அது BOM இணைப்பு பதிலாக செலவு மேம்படுத்தல் மற்றும் புதிய BOM படி ""BOM வெடிப்பு பொருள்"" அட்டவணை மீண்டும் உருவாக்க வேண்டும்" DocType: Shopping Cart Settings,Enable Shopping Cart,வண்டியில் இயக்கு DocType: Employee,Permanent Address,நிரந்தர முகவரி -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,பொருள் {0} ஒரு சேவை பொருளாக இருக்க வேண்டும். -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",மொத்தம் விட \ {0} {1} அதிகமாக இருக்க முடியும் எதிராக பணம் முன்கூட்டியே {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,உருப்படியை குறியீடு தேர்வு செய்க DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),சம்பளமில்லா விடுப்பு க்கான பொருத்தியறிதல் குறைக்க (LWP) @@ -1403,12 +1403,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,முதன்மை apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,மாற்று DocType: Naming Series,Set prefix for numbering series on your transactions,உங்கள் நடவடிக்கைகள் மீது தொடர் எண்ணுவதற்கான முன்னொட்டு அமைக்க +DocType: Employee Attendance Tool,Employees HTML,"ஊழியர், HTML" apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,நிறுத்தி பொருட்டு ரத்து செய்ய முடியாது . ரத்து செய்ய தடை இல்லாத . -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,"இயல்புநிலை BOM, ({0}) இந்த உருப்படியை அல்லது அதன் டெம்ப்ளேட் தீவிரமாக இருக்க வேண்டும்" +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,"இயல்புநிலை BOM, ({0}) இந்த உருப்படியை அல்லது அதன் டெம்ப்ளேட் தீவிரமாக இருக்க வேண்டும்" DocType: Employee,Leave Encashed?,காசாக்கப்பட்டால் விட்டு? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,துறையில் இருந்து வாய்ப்பு கட்டாய ஆகிறது DocType: Item,Variants,மாறிகள் -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,செய்ய கொள்முதல் ஆணை +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,செய்ய கொள்முதல் ஆணை DocType: SMS Center,Send To,அனுப்பு apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},விடுப்பு வகை போதுமான விடுப்பு சமநிலை இல்லை {0} DocType: Payment Reconciliation Payment,Allocated amount,ஒதுக்கப்பட்டுள்ள தொகை @@ -1509,7 +1510,7 @@ DocType: Sales Person,Name and Employee ID,பெயர் மற்றும் apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,காரணம் தேதி தேதி தகவல்களுக்கு முன் இருக்க முடியாது DocType: Website Item Group,Website Item Group,இணைய தகவல்கள் குழு apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,கடமைகள் மற்றும் வரி -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,குறிப்பு தேதியை உள்ளிடவும் +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,குறிப்பு தேதியை உள்ளிடவும் apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,பணம் நுழைவாயில் கணக்கு கட்டமைக்கப்பட்ட இல்லை apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} கட்டணம் உள்ளீடுகளை வடிகட்டி {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,வலை தளத்தில் காட்டப்படும் என்று பொருள் அட்டவணை @@ -1530,7 +1531,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,தீர்மானம் விவரம் DocType: Quality Inspection Reading,Acceptance Criteria,ஏற்று வரையறைகள் DocType: Item Attribute,Attribute Name,பெயர் பண்பு -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},பொருள் {0} விற்பனை அல்லது சேவை பொருளாக இருக்க வேண்டும் {1} DocType: Item Group,Show In Website,இணையத்தளம் காண்பி apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,தொகுதி DocType: Task,Expected Time (in hours),(மணி) இடைவெளியைத் @@ -1562,7 +1562,7 @@ DocType: Shipping Rule Condition,Shipping Amount,கப்பல் தொக ,Pending Amount,நிலுவையில் தொகை DocType: Purchase Invoice Item,Conversion Factor,மாற்ற காரணி DocType: Purchase Order,Delivered,வழங்கினார் -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),வேலைகள் மின்னஞ்சல் ஐடி அமைப்பு உள்வரும் சர்வர் . (எ. கா: jobs@example.com ) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),வேலைகள் மின்னஞ்சல் ஐடி அமைப்பு உள்வரும் சர்வர் . (எ. கா: jobs@example.com ) DocType: Purchase Receipt,Vehicle Number,வாகன எண் DocType: Purchase Invoice,The date on which recurring invoice will be stop,மீண்டும் விலைப்பட்டியல் நிறுத்த வேண்டும் எந்த தேதி apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,மொத்த ஒதுக்கீடு இலைகள் {0} குறைவாக இருக்க முடியாது காலம் ஏற்கனவே ஒப்புதல் இலைகள் {1} விட @@ -1579,7 +1579,7 @@ DocType: HR Settings,HR Settings,அலுவலக அமைப்புகள apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,செலவு கோரும் அனுமதிக்காக நிலுவையில் உள்ளது . மட்டுமே செலவு அப்ரூவரான நிலையை மேம்படுத்த முடியும் . DocType: Purchase Invoice,Additional Discount Amount,கூடுதல் தள்ளுபடி தொகை DocType: Leave Block List Allow,Leave Block List Allow,பிளாக் பட்டியல் அனுமதி விட்டு -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abbr வெற்று இடைவெளி அல்லது இருக்க முடியாது +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abbr வெற்று இடைவெளி அல்லது இருக்க முடியாது apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,அல்லாத குழு குழு apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,விளையாட்டு apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,உண்மையான மொத்த @@ -1603,7 +1603,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},மொறட்டுவ பல்கலைகழகம் மாற்ற காரணி வரிசையில் தேவைப்படுகிறது {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},இசைவு தேதி வரிசையில் காசோலை தேதி முன் இருக்க முடியாது {0} DocType: Salary Slip,Deduction,கழித்தல் -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},பொருள் விலை சேர்க்கப்பட்டது {0} விலை பட்டியல் உள்ள {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},பொருள் விலை சேர்க்கப்பட்டது {0} விலை பட்டியல் உள்ள {1} DocType: Address Template,Address Template,முகவரி டெம்ப்ளேட் apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,இந்த வியாபாரி பணியாளர் Id உள்ளிடவும் DocType: Territory,Classification of Customers by region,பிராந்தியம் மூலம் வாடிக்கையாளர்கள் பிரிவுகள் @@ -1620,7 +1620,7 @@ DocType: Employee,Date of Birth,பிறந்த நாள் apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,பொருள் {0} ஏற்கனவே திரும்பினார் DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** நிதியாண்டு ** ஒரு நிதி ஆண்டு பிரதிபலிக்கிறது. அனைத்து உள்ளீடுகளை மற்றும் பிற முக்கிய பரிமாற்றங்கள் ** ** நிதியாண்டு எதிரான கண்காணிக்கப்படும். DocType: Opportunity,Customer / Lead Address,வாடிக்கையாளர் / முன்னணி முகவரி -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},எச்சரிக்கை: இணைப்பு தவறான SSL சான்றிதழ் {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},எச்சரிக்கை: இணைப்பு தவறான SSL சான்றிதழ் {0} DocType: Production Order Operation,Actual Operation Time,உண்மையான நடவடிக்கையை நேரம் DocType: Authorization Rule,Applicable To (User),பொருந்தும் (பயனர்) DocType: Purchase Taxes and Charges,Deduct,தள்ளு @@ -1637,7 +1637,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,தொகுப்புகளை கொண்டு டெலிவரி குறிப்பு பிரிந்தது. apps/erpnext/erpnext/hooks.py +69,Shipments,படுவதற்கு DocType: Purchase Order Item,To be delivered to customer,வாடிக்கையாளர் வழங்க வேண்டும் -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,நேரம் பதிவு நிலைமை சமர்ப்பிக்க வேண்டும். +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,நேரம் பதிவு நிலைமை சமர்ப்பிக்க வேண்டும். apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,தொ.எ. {0} எந்த கிடங்கு சொந்தம் இல்லை apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,ரோ # DocType: Purchase Invoice,In Words (Company Currency),வேர்ட்ஸ் (நிறுவனத்தின் கரன்சி) @@ -1654,7 +1654,7 @@ DocType: Leave Application,Total Leave Days,மொத்த விடுப DocType: Email Digest,Note: Email will not be sent to disabled users,குறிப்பு: மின்னஞ்சல் ஊனமுற்ற செய்த அனுப்ப முடியாது apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,நிறுவனத்தின் தேர்ந்தெடுக்கவும் ... DocType: Leave Control Panel,Leave blank if considered for all departments,அனைத்து துறைகளில் கருதப்படுகிறது என்றால் வெறுமையாக -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","வேலைவாய்ப்பு ( நிரந்தர , ஒப்பந்த , பயிற்சி முதலியன) வகைகள் ." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","வேலைவாய்ப்பு ( நிரந்தர , ஒப்பந்த , பயிற்சி முதலியன) வகைகள் ." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} பொருள் கட்டாய {1} DocType: Currency Exchange,From Currency,நாணய இருந்து apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","குறைந்தது ஒரு வரிசையில் ஒதுக்கப்பட்டுள்ள தொகை, விலைப்பட்டியல் வகை மற்றும் விலைப்பட்டியல் எண் தேர்ந்தெடுக்கவும்" @@ -1673,7 +1673,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,செயல்முறை உள்ள DocType: Authorization Rule,Itemwise Discount,இனவாரியாக தள்ளுபடி DocType: Purchase Order Item,Reference Document Type,குறிப்பு ஆவண வகை -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} விற்பனை ஆணை எதிரான {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} விற்பனை ஆணை எதிரான {1} DocType: Account,Fixed Asset,நிலையான சொத்து apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,தொடர் சரக்கு DocType: Activity Type,Default Billing Rate,இயல்புநிலை பில்லிங் மதிப்பீடு @@ -1683,7 +1683,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,செலுத்துதல் விற்பனை ஆணை DocType: Expense Claim Detail,Expense Claim Detail,இழப்பில் உரிமைகோரல் விவரம் apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,நேரம் பதிவுகள் உருவாக்கப்பட்ட: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,சரியான கணக்கில் தேர்ந்தெடுக்கவும் +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,சரியான கணக்கில் தேர்ந்தெடுக்கவும் DocType: Item,Weight UOM,எடை மொறட்டுவ பல்கலைகழகம் DocType: Employee,Blood Group,குருதி பகுப்பினம் DocType: Purchase Invoice Item,Page Break,பக்கம் பிரேக் @@ -1718,7 +1718,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM மறுநிகழ்வு : {0} பெற்றோர் அல்லது குழந்தை இருக்க முடியாது {2} DocType: Production Order Operation,Completed Qty,நிறைவு அளவு apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry",{0} மட்டுமே டெபிட் கணக்குகள் மற்றொரு கடன் நுழைவு எதிராக இணைக்கப்பட்ட ஐந்து -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,விலை பட்டியல் {0} முடக்கப்பட்டுள்ளது +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,விலை பட்டியல் {0} முடக்கப்பட்டுள்ளது DocType: Manufacturing Settings,Allow Overtime,மேலதிக அனுமதிக்கவும் apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} பொருள் தேவையான சீரியல் எண்கள் {1}. நீங்கள் வழங்கிய {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,தற்போதைய மதிப்பீட்டு விகிதம் @@ -1769,7 +1769,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},ப apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,வழக்கு எண் 0 இருக்க முடியாது DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,நீங்கள் விற்பனை குழு மற்றும் விற்பனை பங்குதாரர்கள் (சேனல் பங்குதாரர்கள்) அவர்கள் குறித்துள்ளார் முடியும் மற்றும் விற்பனை நடவடிக்கைகளில் தங்களது பங்களிப்பை பராமரிக்க வேண்டும் DocType: Item,Show a slideshow at the top of the page,பக்கம் மேலே ஒரு ஸ்லைடு ஷோ -DocType: Item,"Allow in Sales Order of type ""Service""",வகை "சேவை" என்ற விற்பனை ஆணை அனுமதி apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,ஸ்டோர்கள் DocType: Time Log,Projects Manager,திட்டங்கள் மேலாளர் DocType: Serial No,Delivery Time,விநியோக நேரம் @@ -1784,6 +1783,7 @@ DocType: Rename Tool,Rename Tool,கருவி மறுபெயரிடு apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,மேம்படுத்தல் DocType: Item Reorder,Item Reorder,உருப்படியை மறுவரிசைப்படுத்துக apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,மாற்றம் பொருள் +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},பொருள் {0} ஒரு விற்பனை பொருள் இருக்க வேண்டும் {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","நடவடிக்கைகள் , இயக்க செலவு குறிப்பிட உங்கள் நடவடிக்கைகள் ஒரு தனிப்பட்ட நடவடிக்கை இல்லை கொடுக்க ." DocType: Purchase Invoice,Price List Currency,விலை பட்டியல் நாணயத்தின் DocType: Naming Series,User must always select,பயனர் எப்போதும் தேர்ந்தெடுக்க வேண்டும் @@ -1804,7 +1804,7 @@ DocType: Appraisal,Employee,ஊழியர் apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,இருந்து இறக்குமதி மின்னஞ்சல் apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,பயனர் அழை DocType: Features Setup,After Sale Installations,விற்பனை நிறுவல்கள் பிறகு -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} முழுமையாக வசூலிக்கப்படும் +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} முழுமையாக வசூலிக்கப்படும் DocType: Workstation Working Hour,End Time,முடிவு நேரம் apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,விற்பனை அல்லது கொள்முதல் தரநிலை ஒப்பந்த அடிப்படையில் . apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,வவுச்சர் மூலம் குழு @@ -1830,7 +1830,7 @@ DocType: Upload Attendance,Attendance To Date,தேதி வருகை apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),விற்பனை மின்னஞ்சல் ஐடி அமைப்பு உள்வரும் சர்வர் . (எ. கா: sales@example.com ) DocType: Warranty Claim,Raised By,எழுப்பப்பட்ட DocType: Payment Gateway Account,Payment Account,கொடுப்பனவு கணக்கு -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,நிறுவனத்தின் தொடர குறிப்பிடவும் +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,நிறுவனத்தின் தொடர குறிப்பிடவும் apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,கணக்குகள் நிகர மாற்றம் apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,இழப்பீட்டு இனிய DocType: Quality Inspection Reading,Accepted,ஏற்று @@ -1842,14 +1842,14 @@ DocType: Shipping Rule,Shipping Rule Label,கப்பல் விதி ல apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,மூலப்பொருட்கள் காலியாக இருக்க முடியாது. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","பங்கு புதுப்பிக்க முடியவில்லை, விலைப்பட்டியல் துளி கப்பல் உருப்படி உள்ளது." DocType: Newsletter,Test,சோதனை -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","இருக்கும் பங்கு பரிவர்த்தனைகள் நீங்கள் மதிப்புகள் மாற்ற முடியாது \ இந்த உருப்படி, உள்ளன 'என்பதைப் தொ.எ. உள்ளது', 'தொகுதி எவ்வித', 'பங்கு உருப்படியை' மற்றும் 'மதிப்பீட்டு முறை'" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,விரைவு ஜர்னல் நுழைவு apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,BOM எந்த பொருளை agianst குறிப்பிட்டுள்ள நீங்கள் வீதம் மாற்ற முடியாது DocType: Employee,Previous Work Experience,முந்தைய பணி அனுபவம் DocType: Stock Entry,For Quantity,அளவு apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},பொருள் திட்டமிடப்பட்டுள்ளது அளவு உள்ளிடவும் {0} வரிசையில் {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} சமர்ப்பிக்க +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} சமர்ப்பிக்க apps/erpnext/erpnext/config/stock.py +18,Requests for items.,பொருட்கள் கோரிக்கைகள். DocType: Production Planning Tool,Separate production order will be created for each finished good item.,தனி உற்பத்தி வரிசையில் ஒவ்வொரு முடிக்கப்பட்ட நல்ல உருப்படியை செய்தது. DocType: Purchase Invoice,Terms and Conditions1,விதிமுறைகள் மற்றும் Conditions1 @@ -1874,6 +1874,7 @@ DocType: Notification Control,Expense Claim Approved Message,இழப்பி DocType: Email Digest,How frequently?,எப்படி அடிக்கடி? DocType: Purchase Receipt,Get Current Stock,தற்போதைய பங்கு கிடைக்கும் apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,பொருட்களின் பில் ட்ரீ +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,மார்க் தற்போதைய apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},"பராமரிப்பு தொடக்க தேதி சீரியல் இல்லை , விநியோகம் தேதி முன் இருக்க முடியாது {0}" DocType: Production Order,Actual End Date,உண்மையான முடிவு தேதி DocType: Authorization Rule,Applicable To (Role),பொருந்தும் (பாத்திரம்) @@ -1888,7 +1889,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,இந்த ஒப்பந்தம் முடிவுக்கு தேதி சேர தேதி விட அதிகமாக இருக்க வேண்டும் DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,கமிஷன் நிறுவனங்கள் பொருட்கள் விற்கும் ஒரு மூன்றாம் தரப்பு விநியோகஸ்தராக / வியாபாரி / கமிஷன் முகவர் / இணைப்பு / விற்பனையாளரை. DocType: Customer Group,Has Child Node,குழந்தை கணு உள்ளது -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} கொள்முதல் ஆணை எதிரான {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} கொள்முதல் ஆணை எதிரான {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","இங்கே நிலையான URL அளவுருக்கள் (எ.கா. அனுப்புநர் = ERPNext, பயனர்பெயர் = ERPNext, கடவுச்சொல்லை = 1234 முதலியன) உள்ளிடவும்" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} எந்த செயலில் நிதி ஆண்டில். மேலும் விவரங்களுக்கு பார்க்கவும் {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,இந்த ERPNext இருந்து தானாக உருவாக்கப்பட்ட ஒரு உதாரணம் இணையதளம் உள்ளது @@ -1936,7 +1937,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. சேர் அல்லது கழித்து: நீங்கள் சேர்க்க அல்லது வரி கழித்து வேண்டும் என்பதை." DocType: Purchase Receipt Item,Recd Quantity,Recd அளவு apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},மேலும் பொருள் தயாரிக்க முடியாது {0} விட விற்பனை ஆணை அளவு {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,பங்கு நுழைவு {0} சமர்ப்பிக்க +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,பங்கு நுழைவு {0} சமர்ப்பிக்க DocType: Payment Reconciliation,Bank / Cash Account,வங்கி / பண கணக்கு DocType: Tax Rule,Billing City,பில்லிங் நகரம் DocType: Global Defaults,Hide Currency Symbol,நாணய சின்னம் மறைக்க @@ -1962,7 +1963,7 @@ DocType: Salary Structure,Total Earning,மொத்த வருமானம DocType: Purchase Receipt,Time at which materials were received,பொருட்கள் பெற்றனர் எந்த நேரத்தில் apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,என்னுடைய ஒரு முகவரிக்கு DocType: Stock Ledger Entry,Outgoing Rate,வெளிச்செல்லும் விகிதம் -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,அமைப்பு கிளை மாஸ்டர் . +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,அமைப்பு கிளை மாஸ்டர் . apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,அல்லது DocType: Sales Order,Billing Status,பில்லிங் நிலைமை apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,பயன்பாட்டு செலவுகள் @@ -2000,7 +2001,7 @@ DocType: Bin,Reserved Quantity,ஒதுக்கப்பட்ட அளவு DocType: Landed Cost Voucher,Purchase Receipt Items,ரசீது பொருட்கள் வாங்க apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,தனிப்பயனாக்குதலில் படிவங்கள் DocType: Account,Income Account,வருமான கணக்கு -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,டெலிவரி +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,டெலிவரி DocType: Stock Reconciliation Item,Current Qty,தற்போதைய அளவு DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",பகுதி செயற் கைக்கோள் நிலாவிலிருந்து உள்ள "அடிப்படையில் பொருட்களின் விகிதம்" பார்க்க DocType: Appraisal Goal,Key Responsibility Area,முக்கிய பொறுப்பு பகுதி @@ -2012,9 +2013,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,வ DocType: Notification Control,Purchase Order Message,ஆர்டர் செய்தி வாங்க DocType: Tax Rule,Shipping Country,கப்பல் நாடு DocType: Upload Attendance,Upload HTML,HTML பதிவேற்று -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","மொத்த முன்கூட்டியே ({0}) அமைப்புக்கு எதிராக {1} \ - அதிகமாக இருக்க முடியும் ஆக மொத்தம் விட ({2})" DocType: Employee,Relieving Date,தேதி நிவாரணத்தில் apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","விலை விதி சில அடிப்படை அடிப்படையில், விலை பட்டியல் / தள்ளுபடி சதவீதம் வரையறுக்க மேலெழுத செய்யப்படுகிறது." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,கிடங்கு மட்டுமே பங்கு நுழைவு / டெலிவரி குறிப்பு / கொள்முதல் ரசீது மூலம் மாற்ற முடியும் @@ -2024,8 +2022,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,வ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","தேர்ந்தெடுக்கப்பட்ட விலை விதி 'விலை' செய்யப்படுகிறது என்றால், அது விலை பட்டியல் மேலெழுதும். விலை விதி விலை இறுதி விலை ஆகிறது, அதனால் எந்த மேலும் தள்ளுபடி பயன்படுத்த வேண்டும். எனவே, போன்றவை விற்பனை ஆணை, கொள்முதல் ஆணை போன்ற நடவடிக்கைகளில், அதை விட 'விலை பட்டியல் விகிதம்' துறையில் விட, 'விலை' துறையில் தந்தது." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,ட்ராக் தொழில் வகை செல்கிறது. DocType: Item Supplier,Item Supplier,உருப்படியை சப்ளையர் -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,எந்த தொகுதி கிடைக்கும் பொருள் கோட் உள்ளிடவும் -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},ஒரு மதிப்பை தேர்ந்தெடுக்கவும் {0} quotation_to {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,எந்த தொகுதி கிடைக்கும் பொருள் கோட் உள்ளிடவும் +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},ஒரு மதிப்பை தேர்ந்தெடுக்கவும் {0} quotation_to {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,அனைத்து முகவரிகள். DocType: Company,Stock Settings,பங்கு அமைப்புகள் apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","பின்வரும் பண்புகளைக் சாதனைகளை அதே இருந்தால் அதை இணைத்தல் மட்டுமே சாத்தியம். குழு, ரூட் வகை, நிறுவனம்" @@ -2048,7 +2046,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,காசோலை எண DocType: Payment Tool Detail,Payment Tool Detail,கொடுப்பனவு கருவி விபரம் ,Sales Browser,விற்னையாளர் உலாவி DocType: Journal Entry,Total Credit,மொத்த கடன் -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},எச்சரிக்கை: மற்றொரு {0} # {1} பங்கு நுழைவதற்கு எதிராக உள்ளது {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},எச்சரிக்கை: மற்றொரு {0} # {1} பங்கு நுழைவதற்கு எதிராக உள்ளது {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,உள்ளூர் apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),கடன்கள் ( சொத்துக்கள் ) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,"இருப்பினும், கடனாளிகள்" @@ -2068,8 +2066,8 @@ DocType: Price List,Price List Master,விலை பட்டியல் ம DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,நீங்கள் அமைக்க மற்றும் இலக்குகள் கண்காணிக்க முடியும் என்று அனைத்து விற்பனை நடவடிக்கைகள் பல ** விற்பனை நபர்கள் ** எதிரான குறித்துள்ளார். ,S.O. No.,S.O. இல்லை DocType: Production Order Operation,Make Time Log,நேரம் பதிவு செய்ய -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,", ஆர்டர் அளவு அமைக்க, தயவு செய்து" -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},முன்னணி இருந்து வாடிக்கையாளர் உருவாக்க தயவுசெய்து {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,", ஆர்டர் அளவு அமைக்க, தயவு செய்து" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},முன்னணி இருந்து வாடிக்கையாளர் உருவாக்க தயவுசெய்து {0} DocType: Price List,Applicable for Countries,நாடுகள் பொருந்தும் apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,கணினி apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,இந்த ஒரு ரூட் வாடிக்கையாளர் குழு மற்றும் திருத்த முடியாது . @@ -2117,7 +2115,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),பி DocType: Payment Reconciliation Invoice,Outstanding Amount,சிறந்த தொகை DocType: Project Task,Working,உழைக்கும் DocType: Stock Ledger Entry,Stock Queue (FIFO),பங்கு வரிசையில் (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,நேரம் பதிவுகள் தேர்ந்தெடுக்கவும். +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,நேரம் பதிவுகள் தேர்ந்தெடுக்கவும். apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} நிறுவனத்திற்கு சொந்தமானது இல்லை {1} DocType: Account,Round Off,ஆஃப் சுற்றுக்கு ,Requested Qty,கோரப்பட்ட அளவு @@ -2155,7 +2153,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,தொடர்புடைய பதிவுகள் பெற apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,பங்கு பைனான்ஸ் நுழைவு DocType: Sales Invoice,Sales Team1,விற்பனை Team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,பொருள் {0} இல்லை +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,பொருள் {0} இல்லை DocType: Sales Invoice,Customer Address,வாடிக்கையாளர் முகவரி DocType: Payment Request,Recipient and Message,பெறுநர் மற்றும் செய்தி DocType: Purchase Invoice,Apply Additional Discount On,கூடுதல் தள்ளுபடி விண்ணப்பிக்கவும் @@ -2174,7 +2172,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,முடக்கு மின்னஞ்சல் apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","உணவு , குளிர்பானங்கள் & புகையிலை" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL அல்லது BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},மட்டுமே எதிரான கட்டணம் செய்யலாம் unbilled {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},மட்டுமே எதிரான கட்டணம் செய்யலாம் unbilled {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,கமிஷன் விகிதம் அதிகமாக 100 இருக்க முடியாது apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,குறைந்தபட்ச சரக்கு நிலை DocType: Stock Entry,Subcontract,உள் ஒப்பந்தம் @@ -2192,9 +2190,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,மென apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,வர்ண DocType: Maintenance Visit,Scheduled,திட்டமிடப்பட்ட apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle",""இல்லை" மற்றும் "விற்பனை பொருள் இது", "பங்கு உருப்படியை" எங்கே "ஆம்" என்று பொருள் தேர்ந்தெடுக்க மற்றும் வேறு எந்த தயாரிப்பு மூட்டை உள்ளது செய்க" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),மொத்த முன்கூட்டியே ({0}) ஒழுங்குக்கு எதிரான {1} மொத்தம் விட அதிகமாக இருக்க முடியாது ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,ஒரே சீராக பரவி மாதங்கள் முழுவதும் இலக்குகளை விநியோகிக்க மாதாந்திர விநியோகம் தேர்ந்தெடுக்கவும். DocType: Purchase Invoice Item,Valuation Rate,மதிப்பீட்டு விகிதம் -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,விலை பட்டியல் நாணய தேர்வு +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,விலை பட்டியல் நாணய தேர்வு apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,பொருள் வரிசை {0}: {1} மேலே 'வாங்குதல் ரசீதுகள்' அட்டவணை இல்லை வாங்கும் ரசீது apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},பணியாளர் {0} ஏற்கனவே இடையே {1} விண்ணப்பித்துள்ளனர் {2} {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,திட்ட தொடக்க தேதி @@ -2206,6 +2205,7 @@ DocType: Quality Inspection,Inspection Type,ஆய்வு அமைப்ப apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},தேர்வு செய்க {0} DocType: C-Form,C-Form No,இல்லை சி படிவம் DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,குறியகற்றப்பட்டது வருகை apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,ஆராய்ச்சியாளர் apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,"அனுப்பும் முன் செய்திமடல் சேமிக்க , தயவு செய்து" apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,பெயர் அல்லது மின்னஞ்சல் அத்தியாவசியமானதாகும் @@ -2231,7 +2231,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,உற DocType: Payment Gateway,Gateway,நுழைவாயில் apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,வழங்குபவர்> வழங்குபவர் வகை apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,தேதி நிவாரணத்தில் உள்ளிடவும். -apps/erpnext/erpnext/controllers/trends.py +137,Amt,விவரங்கள் +apps/erpnext/erpnext/controllers/trends.py +138,Amt,விவரங்கள் apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,மட்டுமே சமர்ப்பிக்க முடியும் ' அங்கீகரிக்கப்பட்ட ' நிலை பயன்பாடுகள் விட்டு apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,முகவரி தலைப்பு கட்டாயமாகும். DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,விசாரணை மூலம் பிரச்சாரம் என்று பிரச்சாரம் பெயரை உள்ளிடவும் @@ -2246,10 +2246,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,ஏற்று கிடங DocType: Bank Reconciliation Detail,Posting Date,தேதி தகவல்களுக்கு DocType: Item,Valuation Method,மதிப்பீட்டு முறை apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},{0} க்கான மாற்று விகிதம் கண்டுபிடிக்க முடியவில்லை {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,மார்க் அரை நாள் DocType: Sales Invoice,Sales Team,விற்பனை குழு apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,நுழைவு நகல் DocType: Serial No,Under Warranty,உத்தரவாதத்தின் கீழ் -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[பிழை] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[பிழை] DocType: Sales Order,In Words will be visible once you save the Sales Order.,நீங்கள் விற்பனை ஆணை சேமிக்க முறை சொற்கள் காணக்கூடியதாக இருக்கும். ,Employee Birthday,பணியாளர் பிறந்தநாள் apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,துணிகர முதலீடு @@ -2272,6 +2273,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,ஏற்கனவே பரிவர்த்தனைகள் செலவு மையம் குழு மாற்றப்பட முடியாது DocType: Account,Depreciation,மதிப்பிறக்கம் தேய்மானம் apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),வழங்குபவர் (கள்) +DocType: Employee Attendance Tool,Employee Attendance Tool,பணியாளர் வருகை கருவி DocType: Supplier,Credit Limit,கடன் எல்லை apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,பரிவர்த்தனை தேர்ந்தெடுக்கவும் DocType: GL Entry,Voucher No,ரசீது இல்லை @@ -2298,7 +2300,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,ரூட் கணக்கை நீக்க முடியாது ,Is Primary Address,முதன்மை முகவரி DocType: Production Order,Work-in-Progress Warehouse,"வேலை, செயலில் கிடங்கு" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},குறிப்பு # {0} தேதியிட்ட {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},குறிப்பு # {0} தேதியிட்ட {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,முகவரிகள் நிர்வகிக்கவும் DocType: Pricing Rule,Item Code,உருப்படியை கோட் DocType: Production Planning Tool,Create Production Orders,உற்பத்தி ஆணைகள் உருவாக்க @@ -2325,7 +2327,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,வங்கி நல்லி apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,மேம்படுத்தல்கள் கிடைக்கும் apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,பொருள் கோரிக்கை {0} ரத்து அல்லது நிறுத்தி apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,ஒரு சில மாதிரி பதிவுகளை சேர்க்கவும் -apps/erpnext/erpnext/config/hr.py +210,Leave Management,மேலாண்மை விடவும் +apps/erpnext/erpnext/config/hr.py +225,Leave Management,மேலாண்மை விடவும் apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,கணக்கு குழு DocType: Sales Order,Fully Delivered,முழுமையாக வழங்கப்படுகிறது DocType: Lead,Lower Income,குறைந்த வருமானம் @@ -2340,6 +2342,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',' வரம்பு தேதி ' தேதி ' பிறகு இருக்க வேண்டும் ,Stock Projected Qty,பங்கு அளவு திட்டமிடப்பட்ட apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},வாடிக்கையாளர் {0} திட்டம் அல்ல {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,"அடையாளமிட்ட வருகை, HTML" DocType: Sales Order,Customer's Purchase Order,வாடிக்கையாளர் கொள்முதல் ஆணை DocType: Warranty Claim,From Company,நிறுவனத்தின் இருந்து apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,மதிப்பு அல்லது அளவு @@ -2404,6 +2407,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,வயர் மாற்றம் apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,வங்கி கணக்கு தேர்ந்தெடுக்கவும் DocType: Newsletter,Create and Send Newsletters,உருவாக்க மற்றும் அனுப்பவும் செய்தி +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,அனைத்து பாருங்கள் DocType: Sales Order,Recurring Order,வழக்கமாகத் தோன்றும் ஆணை DocType: Company,Default Income Account,முன்னிருப்பு வருமானம் கணக்கு apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,வாடிக்கையாளர் குழு / வாடிக்கையாளர் @@ -2435,6 +2439,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,எதிராக க DocType: Item,Warranty Period (in days),உத்தரவாதத்தை காலம் (நாட்கள்) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,செயல்பாடுகள் இருந்து நிகர பண apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,"உதாரணமாக, வரி" +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,மொத்த உள்ள மார்க் பணியாளர் வருகை apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,பொருள் 4 DocType: Journal Entry Account,Journal Entry Account,பத்திரிகை நுழைவு கணக்கு DocType: Shopping Cart Settings,Quotation Series,மேற்கோள் தொடர் @@ -2580,14 +2585,14 @@ DocType: Task,Actual Start Date (via Time Logs),உண்மையான தெ DocType: Stock Reconciliation Item,Before reconciliation,சமரசம் முன் apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},எப்படி {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),வரிகள் மற்றும் கட்டணங்கள் சேர்க்கப்பட்டது (நிறுவனத்தின் கரன்சி) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,பொருள் வரி ரோ {0} வகை வரி அல்லது வருமான அல்லது செலவு அல்லது வசூலிக்கப்படும் கணக்கு இருக்க வேண்டும் +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,பொருள் வரி ரோ {0} வகை வரி அல்லது வருமான அல்லது செலவு அல்லது வசூலிக்கப்படும் கணக்கு இருக்க வேண்டும் DocType: Sales Order,Partly Billed,இதற்கு கட்டணம் DocType: Item,Default BOM,முன்னிருப்பு BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,மீண்டும் தட்டச்சு நிறுவனத்தின் பெயர் உறுதிப்படுத்த தயவு செய்து apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,மொத்த மிகச்சிறந்த விவரங்கள் DocType: Time Log Batch,Total Hours,மொத்த நேரம் DocType: Journal Entry,Printing Settings,அச்சிடுதல் அமைப்புகள் -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},மொத்த பற்று மொத்த கடன் சமமாக இருக்க வேண்டும் . +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},மொத்த பற்று மொத்த கடன் சமமாக இருக்க வேண்டும் . apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,வாகன apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,டெலிவரி குறிப்பு இருந்து DocType: Time Log,From Time,நேரம் இருந்து @@ -2634,7 +2639,7 @@ DocType: Purchase Invoice Item,Image View,பட காட்சி DocType: Issue,Opening Time,நேரம் திறந்து apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,தேவையான தேதிகள் மற்றும் இதயம் apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,செக்யூரிட்டிஸ் & பண்ட பரிமாற்ற -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',மாற்று அளவீடு இயல்புநிலை யூனிட் '{0}' டெம்ப்ளேட் அதே இருக்க வேண்டும் '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',மாற்று அளவீடு இயல்புநிலை யூனிட் '{0}' டெம்ப்ளேட் அதே இருக்க வேண்டும் '{1}' DocType: Shipping Rule,Calculate Based On,ஆனால் அடிப்படையில் கணக்கிட DocType: Delivery Note Item,From Warehouse,கிடங்கில் இருந்து DocType: Purchase Taxes and Charges,Valuation and Total,மதிப்பீடு மற்றும் மொத்த @@ -2656,7 +2661,7 @@ DocType: Leave Application,Follow via Email,மின்னஞ்சல் வ DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,தள்ளுபடி தொகை பிறகு வரி தொகை apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,குழந்தை கணக்கு இந்த கணக்கு உள்ளது . நீங்கள் இந்த கணக்கை நீக்க முடியாது . apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,இலக்கு அளவு அல்லது இலக்கு அளவு அல்லது கட்டாய -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},இயல்புநிலை BOM உள்ளது உருப்படி {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},இயல்புநிலை BOM உள்ளது உருப்படி {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,முதல் பதிவுசெய்ய தேதி தேர்ந்தெடுக்கவும் apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,தேதி திறந்து தேதி மூடுவதற்கு முன் இருக்க வேண்டும் DocType: Leave Control Panel,Carry Forward,முன்னெடுத்து செல் @@ -2734,7 +2739,7 @@ DocType: Leave Type,Is Encash,ரொக்கமான மாற்று இ DocType: Purchase Invoice,Mobile No,இல்லை மொபைல் DocType: Payment Tool,Make Journal Entry,பத்திரிகை பதிவு செய்ய DocType: Leave Allocation,New Leaves Allocated,புதிய ஒதுக்கப்பட்ட இலைகள் -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,திட்ட வாரியான தரவு மேற்கோள் கிடைக்கவில்லை +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,திட்ட வாரியான தரவு மேற்கோள் கிடைக்கவில்லை DocType: Project,Expected End Date,எதிர்பார்க்கப்படுகிறது முடிவு தேதி DocType: Appraisal Template,Appraisal Template Title,மதிப்பீட்டு வார்ப்புரு தலைப்பு apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,வர்த்தகம் @@ -2782,6 +2787,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No., apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,குறிப்பிடவும் ஒரு DocType: Offer Letter,Awaiting Response,பதிலை எதிர்பார்த்திருப்பதாகவும் apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,மேலே +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,நேரம் பதிவு Billed DocType: Salary Slip,Earning & Deduction,சம்பளம் மற்றும் பொருத்தியறிதல் apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,கணக்கு {0} ஒரு குழு இருக்க முடியாது apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,விருப்ப . இந்த அமைப்பு பல்வேறு நடவடிக்கைகளில் வடிகட்ட பயன்படும். @@ -2852,14 +2858,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,வெற்றிகரமாக இந்த நிறுவனம் தொடர்பான அனைத்து நடவடிக்கைகளில் நீக்கப்பட்டது! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,தேதி வரை apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,சோதனை காலம் -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,இயல்புநிலை கிடங்கு பங்கு பொருள் கட்டாயமாகும். +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,இயல்புநிலை கிடங்கு பங்கு பொருள் கட்டாயமாகும். apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},மாதம் சம்பளம் கொடுப்பனவு {0} மற்றும் ஆண்டு {1} DocType: Stock Settings,Auto insert Price List rate if missing,வாகன நுழைவு விலை பட்டியல் விகிதம் காணாமல் என்றால் apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,மொத்த கட்டண தொகை ,Transferred Qty,அளவு மாற்றம் apps/erpnext/erpnext/config/learn.py +11,Navigating,வழிநடத்தல் apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,திட்டமிடல் -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,நேரம் பதிவு தொகுதி செய்ய +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,நேரம் பதிவு தொகுதி செய்ய apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,வெளியிடப்படுகிறது DocType: Project,Total Billing Amount (via Time Logs),மொத்த பில்லிங் அளவு (நேரத்தில் பதிவுகள் வழியாக) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,நாம் இந்த பொருளை விற்க @@ -2867,7 +2873,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,அளவு 0 அதிகமாக இருக்க வேண்டும் DocType: Journal Entry,Cash Entry,பண நுழைவு DocType: Sales Partner,Contact Desc,தொடர்பு DESC -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","சாதாரண, உடம்பு போன்ற இலைகள் வகை" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","சாதாரண, உடம்பு போன்ற இலைகள் வகை" DocType: Email Digest,Send regular summary reports via Email.,மின்னஞ்சல் வழியாக வழக்கமான சுருக்கம் அறிக்கைகள் அனுப்பவும். DocType: Brand,Item Manager,பொருள் மேலாளர் DocType: Cost Center,Add rows to set annual budgets on Accounts.,கணக்கு ஆண்டு வரவு செலவு திட்டம் அமைக்க வரிசைகளை சேர்க்க. @@ -2882,7 +2888,7 @@ DocType: GL Entry,Party Type,கட்சி வகை apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,மூலப்பொருள் முக்கிய பொருள் அதே இருக்க முடியாது DocType: Item Attribute Value,Abbreviation,சுருக்கமான apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,{0} வரம்புகளை அதிகமாக இருந்து authroized -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,சம்பளம் வார்ப்புரு மாஸ்டர் . +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,சம்பளம் வார்ப்புரு மாஸ்டர் . DocType: Leave Type,Max Days Leave Allowed,மேக்ஸ் நாட்கள் அனுமதிக்கப்பட்ட விடவும் apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,வண்டியை அமைக்க வரி விதி DocType: Payment Tool,Set Matching Amounts,அமைக்கவும் மேட்சிங் தொகை @@ -2895,7 +2901,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,தா DocType: Stock Settings,Role Allowed to edit frozen stock,உறைந்த பங்கு திருத்த அனுமதி பங்கு ,Territory Target Variance Item Group-Wise,மண்டலம் இலக்கு வேறுபாடு பொருள் குழு வாரியாக apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,அனைத்து வாடிக்கையாளர் குழுக்கள் -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} கட்டாயமாகும். ஒருவேளை செலாவணி சாதனை {2} செய்ய {1} உருவாக்கப்பட்டது அல்ல. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} கட்டாயமாகும். ஒருவேளை செலாவணி சாதனை {2} செய்ய {1} உருவாக்கப்பட்டது அல்ல. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,வரி டெம்ப்ளேட் கட்டாயமாகும். apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,கணக்கு {0}: பெற்றோர் கணக்கு {1} இல்லை DocType: Purchase Invoice Item,Price List Rate (Company Currency),விலை பட்டியல் விகிதம் (நிறுவனத்தின் கரன்சி) @@ -2915,8 +2921,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,பொருள் வ ,Item-wise Price List Rate,பொருள் வாரியான விலை பட்டியல் விகிதம் apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,வழங்குபவர் விலைப்பட்டியல் DocType: Quotation,In Words will be visible once you save the Quotation.,நீங்கள் மேற்கோள் சேமிக்க முறை சொற்கள் காணக்கூடியதாக இருக்கும். -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} நிறுத்தி உள்ளது -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},பார்கோடு {0} ஏற்கனவே பொருள் பயன்படுத்தப்படுகிறது {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} நிறுத்தி உள்ளது +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},பார்கோடு {0} ஏற்கனவே பொருள் பயன்படுத்தப்படுகிறது {1} DocType: Lead,Add to calendar on this date,இந்த தேதி நாள்காட்டியில் சேர்க்கவும் apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,கப்பல் செலவுகள் சேர்த்து விதிகள் . apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,எதிர்வரும் நிகழ்வுகள் @@ -2943,8 +2949,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling, apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,குறைந்தது ஒரு கிடங்கில் அவசியமானதாகும் DocType: Serial No,Out of Warranty,உத்தரவாதத்தை வெளியே DocType: BOM Replace Tool,Replace,பதிலாக -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} விற்பனை விலைப்பட்டியல் எதிரான {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,நடவடிக்கை இயல்புநிலை அலகு உள்ளிடவும் +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} விற்பனை விலைப்பட்டியல் எதிரான {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,நடவடிக்கை இயல்புநிலை அலகு உள்ளிடவும் DocType: Purchase Invoice Item,Project Name,திட்டம் பெயர் DocType: Supplier,Mention if non-standard receivable account,குறிப்பிட தரமற்ற பெறத்தக்க கணக்கு என்றால் DocType: Journal Entry Account,If Income or Expense,என்றால் வருமானம் அல்லது செலவு @@ -2969,7 +2975,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,நிதியாண்டு {0} இல்லை உள்ளது DocType: Currency Exchange,To Currency,நாணய செய்ய DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,பின்வரும் பயனர்கள் தொகுதி நாட்கள் விடுப்பு விண்ணப்பங்கள் ஏற்று கொள்ள அனுமதிக்கும். -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,செலவின உரிமைகோரல் வகைகள். +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,செலவின உரிமைகோரல் வகைகள். DocType: Item,Taxes,வரி apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,ஊதியம் மற்றும் பெறாதபோது DocType: Project,Default Cost Center,இயல்புநிலை விலை மையம் @@ -2999,7 +3005,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},ரோ # {0}: தொ.எ. {1} பொருந்தவில்லை {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,தற்செயல் விடுப்பு DocType: Batch,Batch ID,தொகுதி அடையாள -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},குறிப்பு: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},குறிப்பு: {0} ,Delivery Note Trends,பந்து குறிப்பு போக்குகள் apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,இந்த வார சுருக்கம் apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} வரிசையில் ஒரு வாங்கப்பட்டது அல்லது துணை ஒப்பந்தம் பொருள் இருக்க வேண்டும் {1} @@ -3039,6 +3045,7 @@ DocType: Project Task,Pending Review,விமர்சனம் நிலுவ apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,செலுத்த இங்கே கிளிக் செய்யவும் DocType: Task,Total Expense Claim (via Expense Claim),(செலவு கூறுகின்றனர் வழியாக) மொத்த செலவு கூறுகின்றனர் apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,வாடிக்கையாளர் அடையாள +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,மார்க் இருக்காது apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,நேரம் இருந்து விட பெரியதாக இருக்க வேண்டும் வேண்டும் DocType: Journal Entry Account,Exchange Rate,அயல்நாட்டு நாணய பரிமாற்ற விகிதம் வீதம் apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,விற்பனை ஆணை {0} சமர்ப்பிக்க @@ -3086,7 +3093,7 @@ DocType: Item Group,Default Expense Account,முன்னிருப்பு DocType: Employee,Notice (days),அறிவிப்பு ( நாட்கள்) DocType: Tax Rule,Sales Tax Template,விற்பனை வரி டெம்ப்ளேட் DocType: Employee,Encashment Date,பணமாக்கல் தேதி -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","வவுச்சர் எதிராக வகை கொள்முதல் ஆணை ஒன்று, கொள்முதல் விலைப்பட்டியல் அல்லது பத்திரிகை நுழைவு இருக்க வேண்டும்" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","வவுச்சர் எதிராக வகை கொள்முதல் ஆணை ஒன்று, கொள்முதல் விலைப்பட்டியல் அல்லது பத்திரிகை நுழைவு இருக்க வேண்டும்" DocType: Account,Stock Adjustment,பங்கு சீரமைப்பு apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},இயல்புநிலை நடவடிக்கை செலவு நடவடிக்கை வகை உள்ளது - {0} DocType: Production Order,Planned Operating Cost,திட்டமிட்ட இயக்க செலவு @@ -3140,6 +3147,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,நுழைவு ஆஃப் எழுத DocType: BOM,Rate Of Materials Based On,ஆனால் அடிப்படையில் பொருட்களின் விகிதம் apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,ஆதரவு Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,அனைத்தையும் தேர்வுநீக்கு apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},நிறுவனத்தின் கிடங்குகளில் காணவில்லை {0} DocType: POS Profile,Terms and Conditions,நிபந்தனைகள் apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},தேதி நிதி ஆண்டின் க்குள் இருக்க வேண்டும். தேதி நிலையினை = {0} @@ -3161,7 +3169,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","இயல்புநிலை என இந்த நிதியாண்டில் அமைக்க, ' இயல்புநிலை அமை ' கிளிக்" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),ஆதரவு மின்னஞ்சல் ஐடி அமைப்பு உள்வரும் சர்வர் . (எ. கா: support@example.com ) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,பற்றாக்குறைவே அளவு -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,பொருள் மாறுபாடு {0} அதே பண்புகளை கொண்ட உள்ளது +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,பொருள் மாறுபாடு {0} அதே பண்புகளை கொண்ட உள்ளது DocType: Salary Slip,Salary Slip,சம்பளம் ஸ்லிப் apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,' தேதி ' தேவைப்படுகிறது DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","தொகுப்புகள் வழங்க வேண்டும் ஐந்து சீட்டுகள் பொதி உருவாக்குதல். தொகுப்பு எண், தொகுப்பு உள்ளடக்கங்களை மற்றும் அதன் எடை தெரிவிக்க பயன்படுகிறது." @@ -3209,7 +3217,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,கா DocType: Item Attribute Value,Attribute Value,மதிப்பு பண்பு apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","மின்னஞ்சல் அடையாள தனிப்பட்ட இருக்க வேண்டும் , ஏற்கனவே உள்ளது {0}" ,Itemwise Recommended Reorder Level,இனவாரியாக நிலை மறுவரிசைப்படுத்துக பரிந்துரைக்கப்பட்ட -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,முதல் {0} தேர்வு செய்க +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,முதல் {0} தேர்வு செய்க DocType: Features Setup,To get Item Group in details table,விவரங்கள் அட்டவணையில் உருப்படி குழு பெற apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,பொருள் ஒரு தொகுதி {0} {1} காலாவதியாகிவிட்டது. DocType: Sales Invoice,Commission,தரகு @@ -3264,7 +3272,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,மிகச்சிறந்த உறுதி சீட்டு கிடைக்கும் DocType: Warranty Claim,Resolved By,மூலம் தீர்க்கப்பட DocType: Appraisal,Start Date,தொடக்க தேதி -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,ஒரு காலத்தில் இலைகள் ஒதுக்க. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,ஒரு காலத்தில் இலைகள் ஒதுக்க. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,காசோலைகள் மற்றும் வைப்பு தவறாக அகற்றப்படும் apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,சரிபார்க்க இங்கே கிளிக் செய்யவும் apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,கணக்கு {0}: நீங்கள் பெற்றோர் கணக்கு தன்னை ஒதுக்க முடியாது @@ -3284,7 +3292,7 @@ DocType: Employee,Educational Qualification,கல்வி தகுதி DocType: Workstation,Operating Costs,செலவுகள் DocType: Employee Leave Approver,Employee Leave Approver,பணியாளர் விடுப்பு சர்க்கார் தரப்பில் சாட்சி apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} வெற்றிகரமாக எங்கள் செய்திமடல் பட்டியலில் சேர்க்க. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},ரோ {0}: ஒரு மறுவரிசைப்படுத்துக நுழைவு ஏற்கனவே இந்த கிடங்கு உள்ளது {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},ரோ {0}: ஒரு மறுவரிசைப்படுத்துக நுழைவு ஏற்கனவே இந்த கிடங்கு உள்ளது {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","இழந்தது மேற்கோள் செய்யப்பட்டது ஏனெனில் , அறிவிக்க முடியாது ." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,கொள்முதல் மாஸ்டர் மேலாளர் apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,உத்தரவு {0} சமர்ப்பிக்க வேண்டும் @@ -3308,7 +3316,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,கவிஞருக்கு {0} ஏற்கனவே சமர்ப்பித்த apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,நிறைவு நாள் DocType: Purchase Invoice Item,Amount (Company Currency),அளவு (நிறுவனத்தின் கரன்சி) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,அமைப்பு அலகு ( துறை ) மாஸ்டர் . +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,அமைப்பு அலகு ( துறை ) மாஸ்டர் . apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,சரியான மொபைல் இலக்கங்கள் உள்ளிடவும் DocType: Budget Detail,Budget Detail,வரவு செலவு திட்ட விரிவாக apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,அனுப்புவதற்கு முன் செய்தி உள்ளிடவும் @@ -3324,13 +3332,13 @@ DocType: Purchase Receipt Item,Received and Accepted,பெற்று ஏற ,Serial No Service Contract Expiry,தொடர் எண் சேவை ஒப்பந்தம் காலாவதியாகும் DocType: Item,Unit of Measure Conversion,நடவடிக்கையாக மாற்றும் அலகு apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,பணியாளர் மாற்ற முடியாது -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,நீங்கள் கடன் மற்றும் அதே நேரத்தில் அதே கணக்கு பற்று முடியாது +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,நீங்கள் கடன் மற்றும் அதே நேரத்தில் அதே கணக்கு பற்று முடியாது DocType: Naming Series,Help HTML,HTML உதவி apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},ஒதுக்கப்படும் மொத்த தாக்கத்தில் 100 % இருக்க வேண்டும். இது {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},அலவன்ஸ் அதிகமாக {0} பொருள் கடந்து ஐந்து {1} DocType: Address,Name of person or organization that this address belongs to.,நபர் அல்லது இந்த முகவரியை சொந்தமானது என்று நிறுவனத்தின் பெயர். apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,உங்கள் சப்ளையர்கள் -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,விற்பனை ஆணை உள்ளது என இழந்தது அமைக்க முடியாது. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,விற்பனை ஆணை உள்ளது என இழந்தது அமைக்க முடியாது. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,மற்றொரு சம்பள {0} ஊழியர் செயலில் உள்ளது {1}. அதன் நிலை 'செயலற்ற' தொடர உறுதி செய்து கொள்ளவும். DocType: Purchase Invoice,Contact,தொடர்பு apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,பெறப்படும் @@ -3340,11 +3348,11 @@ DocType: Item,Has Serial No,இல்லை வரிசை உள்ளது DocType: Employee,Date of Issue,இந்த தேதி apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0} இருந்து: {0} ஐந்து {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},ரோ # {0}: உருப்படியை அமைக்க சப்ளையர் {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,பொருள் {1} இணைக்கப்பட்ட வலைத்தளம் பட {0} காணலாம் +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,பொருள் {1} இணைக்கப்பட்ட வலைத்தளம் பட {0} காணலாம் DocType: Issue,Content Type,உள்ளடக்க வகை apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,கம்ப்யூட்டர் DocType: Item,List this Item in multiple groups on the website.,வலைத்தளத்தில் பல குழுக்கள் இந்த உருப்படி பட்டியல். -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,மற்ற நாணய கணக்குகளை அனுமதிக்க பல நாணய விருப்பத்தை சரிபார்க்கவும் +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,மற்ற நாணய கணக்குகளை அனுமதிக்க பல நாணய விருப்பத்தை சரிபார்க்கவும் apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,பொருள்: {0} அமைப்பின் இல்லை apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,நீங்கள் உறைந்த மதிப்பை அமைக்க அதிகாரம் இல்லை DocType: Payment Reconciliation,Get Unreconciled Entries,ஒப்புரவாகவேயில்லை பதிவுகள் பெற @@ -3354,14 +3362,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,அது DocType: Delivery Note,To Warehouse,சேமிப்பு கிடங்கு வேண்டும் apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},கணக்கு {0} மேலும் நிதியாண்டில் முறை உள்ளிட்ட{1} ,Average Commission Rate,சராசரி கமிஷன் விகிதம் -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,' சீரியல் இல்லை உள்ளது ' அல்லாத பங்கு உருப்படியை 'ஆம்' இருக்க முடியாது +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,' சீரியல் இல்லை உள்ளது ' அல்லாத பங்கு உருப்படியை 'ஆம்' இருக்க முடியாது apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,வருகை எதிர்கால நாட்களுக்கு குறித்தது முடியாது DocType: Pricing Rule,Pricing Rule Help,விலை விதி உதவி DocType: Purchase Taxes and Charges,Account Head,கணக்கு ஒதுக்கும் தலைப்பு - பிரிவு apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,பொருட்களை தரையிறங்கியது செலவு கணக்கிட கூடுதல் செலவுகள் புதுப்பிக்கவும் apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,மின் DocType: Stock Entry,Total Value Difference (Out - In),மொத்த மதிப்பு வேறுபாடு (அவுட் - ல்) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,ரோ {0}: மாற்று வீதம் கட்டாயமாகும் +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,ரோ {0}: மாற்று வீதம் கட்டாயமாகும் apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},பயனர் ஐடி பணியாளர் அமைக்க{0} DocType: Stock Entry,Default Source Warehouse,முன்னிருப்பு மூல கிடங்கு DocType: Item,Customer Code,வாடிக்கையாளர் கோட் @@ -3380,15 +3388,15 @@ DocType: Notification Control,Sales Invoice Message,விற்பனை வி apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,கணக்கு {0} நிறைவு வகை பொறுப்பு / ஈக்விட்டி இருக்க வேண்டும் DocType: Authorization Rule,Based On,அடிப்படையில் DocType: Sales Order Item,Ordered Qty,அளவு உத்தரவிட்டார் -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,பொருள் {0} முடக்கப்பட்டுள்ளது +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,பொருள் {0} முடக்கப்பட்டுள்ளது DocType: Stock Settings,Stock Frozen Upto,பங்கு வரை உறை apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},வரம்பு மற்றும் காலம் மீண்டும் மீண்டும் கட்டாய தேதிகள் காலம் {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,திட்ட செயல்பாடு / பணி. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,சம்பளம் தவறிவிடும் உருவாக்க +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,சம்பளம் தவறிவிடும் உருவாக்க apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","பொருந்துகின்ற என தேர்வு என்றால் வாங்குதல், சரிபார்க்கப்பட வேண்டும் {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,தள்ளுபடி 100 க்கும் குறைவான இருக்க வேண்டும் DocType: Purchase Invoice,Write Off Amount (Company Currency),தொகை ஆஃப் எழுத (நிறுவனத்தின் நாணய) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,ரோ # {0}: மீள் கட்டளை அளவு அமைக்க கொள்ளவும் +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,ரோ # {0}: மீள் கட்டளை அளவு அமைக்க கொள்ளவும் DocType: Landed Cost Voucher,Landed Cost Voucher,Landed செலவு வவுச்சர் apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},அமைக்கவும் {0} DocType: Purchase Invoice,Repeat on Day of Month,மாதம் ஒரு நாள் மீண்டும் @@ -3441,7 +3449,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,முன்னேற்றம் கிடங்கில் இயல்புநிலை வேலை apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,கணக்கு பரிமாற்றங்கள் இயல்புநிலை அமைப்புகளை . apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,எதிர்பார்க்கப்படுகிறது தேதி பொருள் கோரிக்கை தேதி முன் இருக்க முடியாது -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,பொருள் {0} ஒரு விற்பனை பொருளாக இருக்க வேண்டும் +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,பொருள் {0} ஒரு விற்பனை பொருளாக இருக்க வேண்டும் DocType: Naming Series,Update Series Number,மேம்படுத்தல் தொடர் எண் DocType: Account,Equity,ஈக்விட்டி DocType: Sales Order,Printing Details,அச்சிடுதல் விபரங்கள் @@ -3493,7 +3501,7 @@ DocType: Task,Review Date,தேதி DocType: Purchase Invoice,Advance Payments,அட்வான்ஸ் கொடுப்பனவு DocType: Purchase Taxes and Charges,On Net Total,நிகர மொத்தம் உள்ள apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,வரிசையில் இலக்கு கிடங்கில் {0} அதே இருக்க வேண்டும் உத்தரவு -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,அனுமதி இல்லை கொடுப்பனவு கருவி பயன்படுத்த +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,அனுமதி இல்லை கொடுப்பனவு கருவி பயன்படுத்த apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,% கள் மீண்டும் மீண்டும் குறிப்பிடப்படவில்லை 'அறிவிப்பு மின்னஞ்சல் முகவரிகளில்' apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,நாணய வேறு நாணயங்களுக்கு பயன்படுத்தி உள்ளீடுகள் செய்வதில் பிறகு மாற்றிக்கொள்ள DocType: Company,Round Off Account,கணக்கு ஆஃப் சுற்றுக்கு @@ -3516,7 +3524,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,உருப்படி அளவு மூலப்பொருட்களை கொடுக்கப்பட்ட அளவு இருந்து உற்பத்தி / repacking பின்னர் பெறப்படும் DocType: Payment Reconciliation,Receivable / Payable Account,பெறத்தக்க / செலுத்த வேண்டிய கணக்கு DocType: Delivery Note Item,Against Sales Order Item,விற்பனை ஆணை பொருள் எதிராக -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},பண்பு மதிப்பு பண்பு குறிப்பிடவும் {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},பண்பு மதிப்பு பண்பு குறிப்பிடவும் {0} DocType: Item,Default Warehouse,இயல்புநிலை சேமிப்பு கிடங்கு DocType: Task,Actual End Date (via Time Logs),உண்மையான தேதி (நேரத்தில் பதிவுகள் வழியாக) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},பட்ஜெட் குழு கணக்கை எதிராக ஒதுக்கப்படும் முடியாது {0} @@ -3541,10 +3549,10 @@ DocType: Lead,Blog Subscriber,வலைப்பதிவு சந்தாத apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,மதிப்புகள் அடிப்படையில் நடவடிக்கைகளை கட்டுப்படுத்த விதிகளை உருவாக்க . DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","சரி என்றால், மொத்த இல்லை. வேலை நாட்கள் விடுமுறை அடங்கும், இந்த நாள் ஒன்றுக்கு சம்பளம் மதிப்பு குறையும்" DocType: Purchase Invoice,Total Advance,மொத்த முன்பணம் -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,பதப்படுத்துதல் சம்பளப்பட்டியல் +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,பதப்படுத்துதல் சம்பளப்பட்டியல் DocType: Opportunity Item,Basic Rate,அடிப்படை விகிதம் DocType: GL Entry,Credit Amount,கடன் தொகை -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,லாஸ்ட் அமை +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,லாஸ்ட் அமை apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,கட்டணம் ரசீது குறிப்பு DocType: Supplier,Credit Days Based On,கடன் நாட்கள் அடிப்படையில் DocType: Tax Rule,Tax Rule,வரி விதி @@ -3574,7 +3582,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,ஏற்று அளவு apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} இல்லை உள்ளது apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,பில்கள் வாடிக்கையாளர்கள் உயர்த்தப்பட்டுள்ளது. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,திட்ட ஐடி -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},ரோ இல்லை {0}: தொகை செலவு கூறுகின்றனர் {1} எதிராக தொகை நிலுவையில் விட அதிகமாக இருக்க முடியாது. நிலுவையில் அளவு {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},ரோ இல்லை {0}: தொகை செலவு கூறுகின்றனர் {1} எதிராக தொகை நிலுவையில் விட அதிகமாக இருக்க முடியாது. நிலுவையில் அளவு {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} சந்தாதாரர்கள் சேர்ந்தன DocType: Maintenance Schedule,Schedule,அனுபந்தம் DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","இந்த செலவு மையம் பட்ஜெட் வரையறை. பட்ஜெட் அமைக்க, பார்க்க "நிறுவனத்தின் பட்டியல்"" @@ -3635,19 +3643,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,பிஓஎஸ் செய்தது DocType: Payment Gateway Account,Payment URL Message,கொடுப்பனவு URL ஐ செய்தி apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","அமைக்க வரவு செலவு திட்டம், இலக்குகளை முதலியன உங்கம்மா" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,ரோ {0}: பணம் அளவு நிலுவை தொகை விட அதிகமாக இருக்க முடியாது +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,ரோ {0}: பணம் அளவு நிலுவை தொகை விட அதிகமாக இருக்க முடியாது apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,செலுத்தப்படாத மொத்த -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,நேரம் பதிவு பில் இல்லை -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","{0} பொருள் ஒரு டெம்ப்ளேட் உள்ளது, அதன் வகைகள் ஒன்றைத் தேர்ந்தெடுக்கவும்" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,நேரம் பதிவு பில் இல்லை +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","{0} பொருள் ஒரு டெம்ப்ளேட் உள்ளது, அதன் வகைகள் ஒன்றைத் தேர்ந்தெடுக்கவும்" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,வாங்குபவர் apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,நிகர ஊதியம் எதிர்மறை இருக்க முடியாது -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,கைமுறையாக எதிராக உறுதி சீட்டு உள்ளிடவும் +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,கைமுறையாக எதிராக உறுதி சீட்டு உள்ளிடவும் DocType: SMS Settings,Static Parameters,நிலையான அளவுருக்களை DocType: Purchase Order,Advance Paid,முன்பணம் DocType: Item,Item Tax,உருப்படியை வரி apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,சப்ளையர் பொருள் apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,கலால் விலைப்பட்டியல் DocType: Expense Claim,Employees Email Id,ஊழியர்கள் மின்னஞ்சல் விலாசம் +DocType: Employee Attendance Tool,Marked Attendance,அடையாளமிட்ட வருகை apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,நடப்பு பொறுப்புகள் apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,உங்கள் தொடர்புகள் வெகுஜன எஸ்எம்எஸ் அனுப்ப DocType: Purchase Taxes and Charges,Consider Tax or Charge for,வரி அல்லது பொறுப்பு கருத்தில் @@ -3670,7 +3679,7 @@ DocType: Item Attribute,Numeric Values,எண்மதிப்பையும apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,லோகோ இணைக்கவும் DocType: Customer,Commission Rate,கமிஷன் விகிதம் apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,மாற்று செய்ய -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,துறை மூலம் பயன்பாடுகள் விட்டு தடுக்கும். +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,துறை மூலம் பயன்பாடுகள் விட்டு தடுக்கும். apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,கார்ட் காலியாக உள்ளது DocType: Production Order,Actual Operating Cost,உண்மையான இயக்க செலவு apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,ரூட் திருத்த முடியாது . @@ -3689,7 +3698,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,அளவு இந்த அளவு கீழே விழும் என்றால் தானாக பொருள் வேண்டுதல் உருவாக்க ,Item-wise Purchase Register,உருப்படியை வாரியான வாங்குதல் பதிவு DocType: Batch,Expiry Date,காலாவதியாகும் தேதி -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","மீள் கட்டளை நிலை அமைக்க, உருப்படி ஒரு கொள்முதல் பொருள் அல்லது தயாரிப்பு பொருள் இருக்க வேண்டும்" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","மீள் கட்டளை நிலை அமைக்க, உருப்படி ஒரு கொள்முதல் பொருள் அல்லது தயாரிப்பு பொருள் இருக்க வேண்டும்" ,Supplier Addresses and Contacts,வழங்குபவர் முகவரிகள் மற்றும் தொடர்புகள் apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,முதல் வகையை தேர்ந்தெடுக்கவும் apps/erpnext/erpnext/config/projects.py +18,Project master.,திட்டம் மாஸ்டர். diff --git a/erpnext/translations/te.csv b/erpnext/translations/te.csv index 974a83da38..3de7a94ba5 100644 --- a/erpnext/translations/te.csv +++ b/erpnext/translations/te.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,కంపెనీ క DocType: Delivery Note,Installation Status,సంస్థాపన స్థితి apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},ప్యాక్ చేసిన అంశాల తిరస్కరించబడిన అంగీకరించిన + అంశం అందుకున్నారు పరిమాణం సమానంగా ఉండాలి {0} DocType: Item,Supply Raw Materials for Purchase,సప్లై రా మెటీరియల్స్ కొనుగోలు కోసం -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,అంశం {0} కొనుగోలు అంశం ఉండాలి +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,అంశం {0} కొనుగోలు అంశం ఉండాలి DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records",", మూస తగిన డేటా నింపి ఆ మారిన ఫైలులో అటాచ్. ఎంపిక కాలంలో అన్ని తేదీలు మరియు ఉద్యోగి కలయిక ఉన్న హాజరు రికార్డుల తో, టెంప్లేట్ వస్తాయి" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,{0} ఐటెమ్ చురుకుగా కాదు లేదా జీవితాంతం చేరుకుంది చెయ్యబడింది DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,సేల్స్ వాయిస్ సమర్పించిన తర్వాత అప్డేట్ అవుతుంది. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","అంశం రేటు వరుసగా {0} లో పన్ను చేర్చడానికి, వరుసలలో పన్నులు {1} కూడా చేర్చారు తప్పక" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,ఆర్ మాడ్యూల్ కోసం సెట్టింగులు +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","అంశం రేటు వరుసగా {0} లో పన్ను చేర్చడానికి, వరుసలలో పన్నులు {1} కూడా చేర్చారు తప్పక" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,ఆర్ మాడ్యూల్ కోసం సెట్టింగులు DocType: SMS Center,SMS Center,SMS సెంటర్ DocType: BOM Replace Tool,New BOM,న్యూ BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,బ్యాచ్ బిల్లింగ్ కోసం సమయం దినచర్య. @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,Select నియమాలు DocType: Production Planning Tool,Sales Orders,సేల్స్ ఆర్డర్స్ DocType: Purchase Taxes and Charges,Valuation,వాల్యువేషన్ ,Purchase Order Trends,ఆర్డర్ ట్రెండ్లులో కొనుగోలు -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,సంవత్సరం ఆకులు కేటాయించుటకు. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,సంవత్సరం ఆకులు కేటాయించుటకు. DocType: Earning Type,Earning Type,ఎర్నింగ్ టైప్ DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,ఆపివేయి సామర్థ్యం ప్రణాళిక మరియు సమయం ట్రాకింగ్ DocType: Bank Reconciliation,Bank Account,బ్యాంకు ఖాతా @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,అంశం వెబ్సైట్ స్పెసిఫికేషన్ DocType: Payment Tool,Reference No,ప్రస్తావన apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Leave నిరోధిత -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},అంశం {0} జీవితం యొక్క దాని ముగింపు చేరుకుంది {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},అంశం {0} జీవితం యొక్క దాని ముగింపు చేరుకుంది {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,వార్షిక DocType: Stock Reconciliation Item,Stock Reconciliation Item,స్టాక్ సయోధ్య అంశం DocType: Stock Entry,Sales Invoice No,సేల్స్ వాయిస్ లేవు @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,కనీస ఆర్డర్ ప్యాక DocType: Pricing Rule,Supplier Type,సరఫరాదారు టైప్ DocType: Item,Publish in Hub,హబ్ లో ప్రచురించండి ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,{0} అంశం రద్దు +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,{0} అంశం రద్దు apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,మెటీరియల్ అభ్యర్థన DocType: Bank Reconciliation,Update Clearance Date,నవీకరణ క్లియరెన్స్ తేదీ DocType: Item,Purchase Details,కొనుగోలు వివరాలు @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,తిరస్కరించ DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","డెలివరీ గమనిక, కొటేషన్, సేల్స్ వాయిస్, అమ్మకాల ఉత్తర్వు అందుబాటులో ఫీల్డ్" DocType: SMS Settings,SMS Sender Name,SMS పంపినవారు పేరు DocType: Contact,Is Primary Contact,ప్రాథమిక సంప్రదించండి ఈజ్ +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,సమయం లాగిన్ బిల్లింగ్ కోసం బ్యాచ్ చెయ్యబడింది DocType: Notification Control,Notification Control,నోటిఫికేషన్ కంట్రోల్ DocType: Lead,Suggestions,సలహాలు DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,ఈ ప్రాంతములో సెట్ అంశం గ్రూప్ వారీగా బడ్జెట్లు. మీరు కూడా పంపిణీ అమర్చుట ద్వారా కాలికోద్యోగం చేర్చవచ్చు. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},గిడ్డంగి మాతృ గ్రూప్ ఖాతాలు నమోదు చేయండి {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},వ్యతిరేకంగా చెల్లింపు {0} {1} అసాధారణ మొత్తాన్ని కంటే ఎక్కువ ఉండకూడదు {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},వ్యతిరేకంగా చెల్లింపు {0} {1} అసాధారణ మొత్తాన్ని కంటే ఎక్కువ ఉండకూడదు {2} DocType: Supplier,Address HTML,చిరునామా HTML DocType: Lead,Mobile No.,మొబైల్ నం DocType: Maintenance Schedule,Generate Schedule,షెడ్యూల్ రూపొందించండి @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,హబ్ సమకాలీకరించబడింది apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,సరియినది కాని రహస్య పదము DocType: Item,Variant Of,వేరియంట్ -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,అంశం {0} సర్వీస్ అంశం ఉండాలి apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',కంటే 'ప్యాక్ చేసిన అంశాల తయారీకి' పూర్తి ప్యాక్ చేసిన అంశాల ఎక్కువ ఉండకూడదు DocType: Period Closing Voucher,Closing Account Head,ఖాతా తల ముగింపు DocType: Employee,External Work History,బాహ్య వర్క్ చరిత్ర @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,వార్తా DocType: Stock Settings,Notify by Email on creation of automatic Material Request,ఆటోమేటిక్ మెటీరియల్ అభ్యర్థన సృష్టి పై ఇమెయిల్ ద్వారా తెలియజేయి DocType: Journal Entry,Multi Currency,మల్టీ కరెన్సీ DocType: Payment Reconciliation Invoice,Invoice Type,వాయిస్ పద్ధతి -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,డెలివరీ గమనిక +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,డెలివరీ గమనిక apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,పన్నులు ఏర్పాటు apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,మీరు వైదొలగిన తర్వాత చెల్లింపు ఎంట్రీ మారిస్తే. మళ్ళీ తీసి దయచేసి. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} అంశం పన్ను రెండుసార్లు ఎంటర్ +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} అంశం పన్ను రెండుసార్లు ఎంటర్ apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,ఈ వారం పెండింగ్ కార్యకలాపాలకు సారాంశం DocType: Workstation,Rent Cost,రెంట్ ఖర్చు apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,నెల మరియు సంవత్సరం దయచేసి ఎంచుకోండి @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,దేశములలో చెలా DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","కరెన్సీ, మార్పిడి రేటు, దిగుమతి మొత్తం, దిగుమతి గ్రాండ్ మొత్తం etc వంటి అన్ని దిగుమతి సంబంధిత రంగాల్లో కొనుగోలు రసీదులు, సరఫరాదారు కొటేషన్, కొనుగోలు వాయిస్, పర్చేజ్ ఆర్డర్ మొదలైనవి అందుబాటులో ఉన్నాయి" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,ఈ అంశాన్ని ఒక మూస మరియు లావాదేవీలలో ఉపయోగించబడదు. 'నో కాపీ' సెట్ చేయబడితే తప్ప అంశం గుణాలను భేదకాలలోకి పైగా కాపీ అవుతుంది apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,భావించబడుతున్నది మొత్తం ఆర్డర్ -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Employee హోదా (ఉదా CEO, డైరెక్టర్ మొదలైనవి)." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Employee హోదా (ఉదా CEO, డైరెక్టర్ మొదలైనవి)." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,నమోదు రంగంలో విలువ 'డే ఆఫ్ ది మంత్ రిపీట్' దయచేసి DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,కస్టమర్ కరెన్సీ కస్టమర్ బేస్ కరెన్సీ మార్చబడుతుంది రేటుపై DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","బిఒఎం, డెలివరీ గమనిక, కొనుగోలు వాయిస్, ప్రొడక్షన్ ఆర్డర్, పర్చేజ్ ఆర్డర్, కొనుగోలు రసీదులు, సేల్స్ వాయిస్, అమ్మకాల ఉత్తర్వు, స్టాక్ ఎంట్రీ, timesheet అందుబాటులో" @@ -355,7 +355,7 @@ DocType: Workstation,Consumable Cost,వినిమయ వ్యయం apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) పాత్ర కలిగి ఉండాలి 'లీవ్ అప్రూవర్గా' DocType: Purchase Receipt,Vehicle Date,వాహనం తేదీ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,మెడికల్ -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,కోల్పోయినందుకు కారణము +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,కోల్పోయినందుకు కారణము apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},కార్యక్షేత్ర హాలిడే జాబితా ప్రకారం క్రింది తేదీలు మూసివేయబడింది: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,అవకాశాలు DocType: Employee,Single,సింగిల్ @@ -383,14 +383,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,ఛానల్ జీవిత భాగస్వామిలో DocType: Account,Old Parent,పాత మాతృ DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,ఆ ఈమెయిల్ భాగంగా వెళ్ళే పరిచయ టెక్స్ట్ అనుకూలీకరించండి. ప్రతి లావాదేవీ ఒక ప్రత్యేక పరిచయ టెక్స్ట్ ఉంది. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),కాదు చిహ్నాలు క్రింది వాటిని కలిగి లేదు (ఉదా. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,సేల్స్ మాస్టర్ మేనేజర్ apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,అన్ని తయారీ ప్రక్రియలకు గ్లోబల్ సెట్టింగులు. DocType: Accounts Settings,Accounts Frozen Upto,ఘనీభవించిన వరకు అకౌంట్స్ DocType: SMS Log,Sent On,న పంపిన -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,లక్షణం {0} గుణాలు పట్టిక పలుమార్లు ఎంపిక +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,లక్షణం {0} గుణాలు పట్టిక పలుమార్లు ఎంపిక DocType: HR Settings,Employee record is created using selected field. ,Employee రికార్డు ఎంపిక రంగంలో ఉపయోగించి రూపొందించినవారు ఉంది. DocType: Sales Order,Not Applicable,వర్తించదు -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,హాలిడే మాస్టర్. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,హాలిడే మాస్టర్. DocType: Material Request Item,Required Date,అవసరం తేదీ DocType: Delivery Note,Billing Address,రశీదు చిరునామా apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,అంశం కోడ్ను నమోదు చేయండి. @@ -426,7 +427,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,మెటీరియల్ అభ్యర్థన పెంచింది చేయబడే గిడ్డంగి నమోదు చేయండి DocType: Production Order,Additional Operating Cost,అదనపు నిర్వహణ ఖర్చు apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,కాస్మటిక్స్ -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","విలీనం, క్రింది రెండు లక్షణాలతో అంశాలను అదే ఉండాలి" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","విలీనం, క్రింది రెండు లక్షణాలతో అంశాలను అదే ఉండాలి" DocType: Shipping Rule,Net Weight,నికర బరువు DocType: Employee,Emergency Phone,అత్యవసర ఫోన్ ,Serial No Warranty Expiry,సీరియల్ తోబుట్టువుల సంఖ్య వారంటీ గడువు @@ -481,17 +482,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,బిల్లింగ్ మరియు డెలివరీ స్థాయి apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,పునరావృత DocType: Leave Control Panel,Allocate,కేటాయించాల్సిన -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,సేల్స్ చూపించు +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,సేల్స్ చూపించు DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,మీరు ఉత్పత్తి ఆర్డర్స్ సృష్టించడానికి కోరుకుంటున్న నుండి సేల్స్ ఆర్డర్స్ ఎంచుకోండి. DocType: Item,Delivered by Supplier (Drop Ship),సరఫరాదారు ద్వారా పంపిణీ (డ్రాప్ షిప్) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,జీతం భాగాలు. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,జీతం భాగాలు. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,సంభావ్య వినియోగదారులు డేటాబేస్. DocType: Authorization Rule,Customer or Item,కస్టమర్ లేదా అంశం apps/erpnext/erpnext/config/crm.py +17,Customer database.,కస్టమర్ డేటాబేస్. DocType: Quotation,Quotation To,.కొటేషన్ DocType: Lead,Middle Income,మధ్య ఆదాయ apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),ప్రారంభ (CR) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,మీరు ఇప్పటికే మరొక UoM కొన్ని ట్రాన్సాక్షన్ (లు) చేసిన ఎందుకంటే అంశం కోసం మెజర్ అప్రమేయ యూనిట్ {0} నేరుగా మారలేదు. మీరు వేరే డిఫాల్ట్ UoM ఉపయోగించడానికి ఒక కొత్త అంశాన్ని సృష్టించడానికి అవసరం. +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,మీరు ఇప్పటికే మరొక UoM కొన్ని ట్రాన్సాక్షన్ (లు) చేసిన ఎందుకంటే అంశం కోసం మెజర్ అప్రమేయ యూనిట్ {0} నేరుగా మారలేదు. మీరు వేరే డిఫాల్ట్ UoM ఉపయోగించడానికి ఒక కొత్త అంశాన్ని సృష్టించడానికి అవసరం. apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,కేటాయించింది మొత్తం ప్రతికూల ఉండకూడదు DocType: Purchase Order Item,Billed Amt,బిల్ ఆంట్ DocType: Warehouse,A logical Warehouse against which stock entries are made.,స్టాక్ ఎంట్రీలు తయారు చేస్తారు ఇది వ్యతిరేకంగా ఒక తార్కిక వేర్హౌస్. @@ -510,14 +511,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,సేల్స్ పన్న DocType: Employee,Organization Profile,ఆర్గనైజేషన్ ప్రొఫైల్ apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,సెటప్ నంబరింగ్ సిరీస్> సెటప్ ద్వారా హాజరు ధారావాహిక సంఖ్యలో దయచేసి DocType: Employee,Reason for Resignation,రాజీనామా కారణం -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,పనితీరు అంచనాలు కోసం టెంప్లేట్. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,పనితీరు అంచనాలు కోసం టెంప్లేట్. DocType: Payment Reconciliation,Invoice/Journal Entry Details,వాయిస్ / జర్నల్ ఎంట్రీ వివరాలు apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' లేదు ఫిస్కల్ ఇయర్ లో {2} DocType: Buying Settings,Settings for Buying Module,మాడ్యూల్ కొనుగోలు కోసం సెట్టింగులు apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,మొదటి కొనుగోలు రసీదులు నమోదు చేయండి DocType: Buying Settings,Supplier Naming By,ద్వారా సరఫరాదారు నేమింగ్ DocType: Activity Type,Default Costing Rate,డిఫాల్ట్ వ్యయంతో రేటు -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,నిర్వహణ షెడ్యూల్ +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,నిర్వహణ షెడ్యూల్ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","అప్పుడు ధర నిబంధనలకు మొదలైనవి కస్టమర్, కస్టమర్ గ్రూప్, భూభాగం, సరఫరాదారు, సరఫరాదారు పద్ధతి, ప్రచారం, అమ్మకపు భాగస్వామిగా ఆధారంగా వడకట్టేస్తుంది" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,ఇన్వెంటరీ నికర మార్పును DocType: Employee,Passport Number,పాస్పోర్ట్ సంఖ్య @@ -556,7 +557,7 @@ DocType: Purchase Invoice,Quarterly,క్వార్టర్లీ DocType: Selling Settings,Delivery Note Required,డెలివరీ గమనిక లు DocType: Sales Order Item,Basic Rate (Company Currency),ప్రాథమిక రేటు (కంపెనీ కరెన్సీ) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush రా మెటీరియల్స్ బేస్డ్ న -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,అంశం వివరాలు నమోదు చేయండి +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,అంశం వివరాలు నమోదు చేయండి DocType: Purchase Receipt,Other Details,ఇతర వివరాలు DocType: Account,Accounts,అకౌంట్స్ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,మార్కెటింగ్ @@ -569,7 +570,7 @@ DocType: Employee,Provide email id registered in company,సంస్థ నమ DocType: Hub Settings,Seller City,అమ్మకాల సిటీ DocType: Email Digest,Next email will be sent on:,తదుపరి ఇమెయిల్ పంపబడుతుంది: DocType: Offer Letter Term,Offer Letter Term,లెటర్ టర్మ్ ఆఫర్ -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,అంశం రకాల్లో. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,అంశం రకాల్లో. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,అంశం {0} దొరకలేదు DocType: Bin,Stock Value,స్టాక్ విలువ apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,ట్రీ టైప్ @@ -577,7 +578,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,ప్యాక్ చేస DocType: Serial No,Warranty Expiry Date,వారంటీ గడువు తేదీ DocType: Material Request Item,Quantity and Warehouse,పరిమాణ మరియు వేర్హౌస్ DocType: Sales Invoice,Commission Rate (%),కమిషన్ రేటు (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","ఓచర్ వ్యతిరేకంగా టైప్ అమ్మకాల ఉత్తర్వు ఒకటి, సేల్స్ వాయిస్ లేదా జర్నల్ ఎంట్రీ ఉండాలి" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","ఓచర్ వ్యతిరేకంగా టైప్ అమ్మకాల ఉత్తర్వు ఒకటి, సేల్స్ వాయిస్ లేదా జర్నల్ ఎంట్రీ ఉండాలి" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,ఏరోస్పేస్ DocType: Journal Entry,Credit Card Entry,క్రెడిట్ కార్డ్ ఎంట్రీ apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,టాస్క్ Subject @@ -645,10 +646,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,బాధ్యత apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,మంజూరు మొత్తం రో లో క్లెయిమ్ సొమ్ము కంటే ఎక్కువ ఉండకూడదు {0}. DocType: Company,Default Cost of Goods Sold Account,గూడ్స్ సోల్డ్ ఖాతా యొక్క డిఫాల్ట్ ఖర్చు -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,ధర జాబితా ఎంచుకోలేదు +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,ధర జాబితా ఎంచుకోలేదు DocType: Employee,Family Background,కుటుంబ నేపథ్యం DocType: Process Payroll,Send Email,ఇమెయిల్ పంపండి -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},హెచ్చరిక: చెల్లని జోడింపు {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},హెచ్చరిక: చెల్లని జోడింపు {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,అనుమతి లేదు DocType: Company,Default Bank Account,డిఫాల్ట్ బ్యాంక్ ఖాతా apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first",పార్టీ ఆధారంగా ఫిల్టర్ ఎన్నుకోండి పార్టీ మొదటి రకం @@ -676,7 +677,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,వ DocType: Features Setup,"To enable ""Point of Sale"" features","అమ్మకానికి పాయింట్" లక్షణాలను సాధ్యం చేయటానికి DocType: Bin,Moving Average Rate,సగటు రేటు మూవింగ్ DocType: Production Planning Tool,Select Items,ఐటమ్లను ఎంచుకోండి -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} బిల్లుకు వ్యతిరేకంగా {1} నాటి {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} బిల్లుకు వ్యతిరేకంగా {1} నాటి {2} DocType: Maintenance Visit,Completion Status,పూర్తి స్థితి DocType: Sales Invoice Item,Target Warehouse,టార్గెట్ వేర్హౌస్ DocType: Item,Allow over delivery or receipt upto this percent,ఈ శాతం వరకు డెలివరీ లేదా రసీదులు పైగా అనుమతించు @@ -736,7 +737,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,క apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},ఆపరేషన్ కోసం తదుపరి {0} రోజుల్లో టైమ్ స్లాట్ దొరక్కపోతే {1} DocType: Production Order,Plan material for sub-assemblies,ఉప శాసనసభలకు ప్రణాళిక పదార్థం apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,బిఒఎం {0} సక్రియ ఉండాలి -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,మొదటి డాక్యుమెంట్ రకాన్ని ఎంచుకోండి +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,మొదటి డాక్యుమెంట్ రకాన్ని ఎంచుకోండి apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,గోటో కార్ట్ apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,ఈ నిర్వహణ సందర్శించండి రద్దు ముందు రద్దు మెటీరియల్ సందర్శనల {0} DocType: Salary Slip,Leave Encashment Amount,ఎన్క్యాష్మెంట్ మొత్తం వదిలి @@ -754,7 +755,7 @@ DocType: Purchase Receipt,Range,రేంజ్ DocType: Supplier,Default Payable Accounts,డిఫాల్ట్ చెల్లించవలసిన అకౌంట్స్ apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,{0} ఉద్యోగి చురుకుగా కాదు లేదా ఉనికిలో లేదు DocType: Features Setup,Item Barcode,అంశం బార్కోడ్ -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,అంశం రకరకాలు {0} నవీకరించబడింది +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,అంశం రకరకాలు {0} నవీకరించబడింది DocType: Quality Inspection Reading,Reading 6,6 పఠనం DocType: Purchase Invoice Advance,Purchase Invoice Advance,వాయిస్ అడ్వాన్స్ కొనుగోలు DocType: Address,Shop,షాప్ @@ -777,7 +778,7 @@ DocType: Salary Slip,Total in words,పదాలు లో మొత్తం DocType: Material Request Item,Lead Time Date,లీడ్ సమయం తేదీ apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,తప్పనిసరి. బహుశా కరెన్సీ ఎక్స్ఛేంజ్ రికార్డు కోసం సృష్టించబడలేదు apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},రో # {0}: అంశం కోసం ఏ సీరియల్ రాయండి {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","'ఉత్పత్తి కట్ట అంశాలు, గిడ్డంగి, సీరియల్ లేవు మరియు బ్యాచ్ కోసం కాదు' ప్యాకింగ్ జాబితా 'పట్టిక నుండి పరిగణించబడుతుంది. వేర్హౌస్ మరియు బ్యాచ్ ఏ 'ఉత్పత్తి కట్ట' అంశం కోసం అన్ని ప్యాకింగ్ అంశాలను ఒకటే ఉంటే, ఆ విలువలు ప్రధాన అంశం పట్టిక ఎంటర్ చెయ్యబడతాయి, విలువలు పట్టిక 'జాబితా ప్యాకింగ్' కాపీ అవుతుంది." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","'ఉత్పత్తి కట్ట అంశాలు, గిడ్డంగి, సీరియల్ లేవు మరియు బ్యాచ్ కోసం కాదు' ప్యాకింగ్ జాబితా 'పట్టిక నుండి పరిగణించబడుతుంది. వేర్హౌస్ మరియు బ్యాచ్ ఏ 'ఉత్పత్తి కట్ట' అంశం కోసం అన్ని ప్యాకింగ్ అంశాలను ఒకటే ఉంటే, ఆ విలువలు ప్రధాన అంశం పట్టిక ఎంటర్ చెయ్యబడతాయి, విలువలు పట్టిక 'జాబితా ప్యాకింగ్' కాపీ అవుతుంది." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,వినియోగదారులకు ప్యాకేజీల. DocType: Purchase Invoice Item,Purchase Order Item,ఆర్డర్ అంశం కొనుగోలు apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,పరోక్ష ఆదాయం @@ -798,6 +799,7 @@ DocType: Process Payroll,Select Payroll Year and Month,పేరోల్ సం apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",తగిన సమూహం (సాధారణంగా నిధుల వర్తింపు> ప్రస్తుత ఆస్తులు> బ్యాంక్ ఖాతాలకు వెళ్ళండి మరియు రకం) చైల్డ్ జోడించండి క్లిక్ చేయడం ద్వారా (ఒక కొత్త ఖాతా సృష్టించు "బ్యాంక్" DocType: Workstation,Electricity Cost,విద్యుత్ ఖర్చు DocType: HR Settings,Don't send Employee Birthday Reminders,Employee జన్మదిన రిమైండర్లు పంపవద్దు +,Employee Holiday Attendance,Employee హాలిడే హాజరు DocType: Opportunity,Walk In,లో వల్క్ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,స్టాక్ ఎంట్రీలు DocType: Item,Inspection Criteria,ఇన్స్పెక్షన్ ప్రమాణం @@ -820,7 +822,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options, DocType: Journal Entry Account,Expense Claim,ఖర్చు చెప్పడం apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},కోసం చేసిన అంశాల {0} DocType: Leave Application,Leave Application,లీవ్ అప్లికేషన్ -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,కేటాయింపు టూల్ వదిలి +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,కేటాయింపు టూల్ వదిలి DocType: Leave Block List,Leave Block List Dates,బ్లాక్ జాబితా తేదీలు వదిలి DocType: Company,If Monthly Budget Exceeded (for expense account),మంత్లీ బడ్జెట్ (ఖర్చు ఖాతా కోసం) మించింది ఉంటే DocType: Workstation,Net Hour Rate,నికర గంట రేట్ @@ -830,7 +832,7 @@ DocType: Packing Slip Item,Packing Slip Item,ప్యాకింగ్ స్ DocType: POS Profile,Cash/Bank Account,క్యాష్ / బ్యాంక్ ఖాతా apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,పరిమాణం లేదా విలువ ఎటువంటి మార్పు తొలగించబడిన అంశాలు. DocType: Delivery Note,Delivery To,డెలివరీ -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,లక్షణం పట్టిక తప్పనిసరి +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,లక్షణం పట్టిక తప్పనిసరి DocType: Production Planning Tool,Get Sales Orders,సేల్స్ ఆర్డర్స్ పొందండి apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} ప్రతికూల ఉండకూడదు apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,డిస్కౌంట్ @@ -894,7 +896,7 @@ DocType: SMS Center,Total Characters,మొత్తం అక్షరాలు apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},అంశం కోసం BOM రంగంలో BOM దయచేసి ఎంచుకోండి {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,సి ఫారం వాయిస్ వివరాలు DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,చెల్లింపు సయోధ్య వాయిస్ -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,కాంట్రిబ్యూషన్% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,కాంట్రిబ్యూషన్% DocType: Item,website page link,వెబ్ పేజీ లింక్ DocType: Company,Company registration numbers for your reference. Tax numbers etc.,మీ సూచన కోసం కంపెనీ నమోదు సంఖ్యలు. పన్ను సంఖ్యలు మొదలైనవి DocType: Sales Partner,Distributor,పంపిణీదారు @@ -936,10 +938,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UoM మార్పిడి DocType: Stock Settings,Default Item Group,డిఫాల్ట్ అంశం గ్రూప్ apps/erpnext/erpnext/config/buying.py +13,Supplier database.,సరఫరాదారు డేటాబేస్. DocType: Account,Balance Sheet,బ్యాలెన్స్ షీట్ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ','అంశం కోడ్ అంశం సెంటర్ ఖర్చు +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ','అంశం కోడ్ అంశం సెంటర్ ఖర్చు DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,మీ అమ్మకాలు వ్యక్తి కస్టమర్ సంప్రదించండి తేదీన ఒక రిమైండర్ పొందుతారు apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","మరింత ఖాతాల గుంపులు కింద తయారు చేయవచ్చు, కానీ ఎంట్రీలు కాని గుంపులు వ్యతిరేకంగా తయారు చేయవచ్చు" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,పన్ను మరియు ఇతర జీతం తగ్గింపులకు. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,పన్ను మరియు ఇతర జీతం తగ్గింపులకు. DocType: Lead,Lead,లీడ్ DocType: Email Digest,Payables,Payables DocType: Account,Warehouse,వేర్హౌస్ @@ -956,10 +958,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Unreconciled చె DocType: Global Defaults,Current Fiscal Year,ప్రస్తుత ఆర్థిక సంవత్సరం DocType: Global Defaults,Disable Rounded Total,నున్నటి మొత్తం ఆపివేయి DocType: Lead,Call,కాల్ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'ఎంట్రీలు' ఖాళీగా ఉండకూడదు +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'ఎంట్రీలు' ఖాళీగా ఉండకూడదు apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},తో నకిలీ వరుసగా {0} అదే {1} ,Trial Balance,ట్రయల్ బ్యాలెన్స్ -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,ఉద్యోగులు ఏర్పాటు +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,ఉద్యోగులు ఏర్పాటు apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid """,గ్రిడ్ " apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,మొదటి ఉపసర్గ దయచేసి ఎంచుకోండి apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,రీసెర్చ్ @@ -968,7 +970,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,వినియోగదారుని గుర్తింపు apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,చూడండి లెడ్జర్ apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,తొట్టతొలి -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","ఒక అంశం గ్రూప్ అదే పేరుతో, అంశం పేరు మార్చడానికి లేదా అంశం సమూహం పేరు దయచేసి" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","ఒక అంశం గ్రూప్ అదే పేరుతో, అంశం పేరు మార్చడానికి లేదా అంశం సమూహం పేరు దయచేసి" DocType: Production Order,Manufacture against Sales Order,అమ్మకాల ఆర్డర్ వ్యతిరేకంగా తయారీ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,ప్రపంచంలోని మిగిలిన apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,అంశం {0} బ్యాచ్ ఉండకూడదు @@ -993,7 +995,7 @@ DocType: Purchase Receipt,Rejected Warehouse,తిరస్కరించబ DocType: GL Entry,Against Voucher,ఓచర్ వ్యతిరేకంగా DocType: Item,Default Buying Cost Center,డిఫాల్ట్ కొనుగోలు ఖర్చు సెంటర్ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","ERPNext యొక్క ఉత్తమ పొందడానికి, మేము మీరు కొంత సమయం తీసుకొని ఈ సహాయ వీడియోలను చూడటానికి సిఫార్సు చేస్తున్నాము." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,అంశం {0} సేల్స్ అంశం ఉండాలి +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,అంశం {0} సేల్స్ అంశం ఉండాలి apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,కు DocType: Item,Lead Time in days,రోజుల్లో ప్రధాన సమయం ,Accounts Payable Summary,చెల్లించవలసిన ఖాతాలు సారాంశం @@ -1019,7 +1021,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,వ్యవసాయం apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,మీ ఉత్పత్తులు లేదా సేవల DocType: Mode of Payment,Mode of Payment,చెల్లింపు విధానం -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,వెబ్సైట్ చిత్రం పబ్లిక్ ఫైలు లేదా వెబ్సైట్ URL అయి ఉండాలి +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,వెబ్సైట్ చిత్రం పబ్లిక్ ఫైలు లేదా వెబ్సైట్ URL అయి ఉండాలి apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,ఈ రూట్ అంశం సమూహం ఉంది మరియు సవరించడం సాధ్యం కాదు. DocType: Journal Entry Account,Purchase Order,కొనుగోలు ఆర్డర్ DocType: Warehouse,Warehouse Contact Info,వేర్హౌస్ సంప్రదింపు సమాచారం @@ -1030,7 +1032,7 @@ DocType: Serial No,Serial No Details,సీరియల్ సంఖ్య వ DocType: Purchase Invoice Item,Item Tax Rate,అంశం పన్ను రేటు apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","{0}, కేవలం క్రెడిట్ ఖాతాల మరొక డెబిట్ ప్రవేశం వ్యతిరేకంగా లింక్ చేయవచ్చు కోసం" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,డెలివరీ గమనిక {0} సమర్పించిన లేదు -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,అంశం {0} ఒక ఉప-ఒప్పంద అంశం ఉండాలి +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,అంశం {0} ఒక ఉప-ఒప్పంద అంశం ఉండాలి apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,రాజధాని పరికరాలు apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","ధర రూల్ మొదటి ఆధారంగా ఎంపిక ఉంటుంది అంశం, అంశం గ్రూప్ లేదా బ్రాండ్ కావచ్చు, ఫీల్డ్ 'న వర్తించు'." DocType: Hub Settings,Seller Website,అమ్మకాల వెబ్సైట్ @@ -1039,7 +1041,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,గోల్ DocType: Sales Invoice Item,Edit Description,ఎడిట్ వివరణ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,ఊహించినది డెలివరీ తేదీ అనుకున్న తేదీ ప్రారంభించండి కంటే తక్కువ. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,సరఫరాదారు కోసం +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,సరఫరాదారు కోసం DocType: Account,Setting Account Type helps in selecting this Account in transactions.,ఖాతా రకం చేస్తోంది లావాదేవీలు ఈ ఖాతా ఎంచుకోవడం లో సహాయపడుతుంది. DocType: Purchase Invoice,Grand Total (Company Currency),గ్రాండ్ మొత్తం (కంపెనీ కరెన్సీ) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,మొత్తం అవుట్గోయింగ్ @@ -1091,7 +1093,6 @@ DocType: Authorization Rule,Average Discount,సగటు డిస్కౌం DocType: Address,Utilities,యుటిలిటీస్ DocType: Purchase Invoice Item,Accounting,అకౌంటింగ్ DocType: Features Setup,Features Setup,ఫీచర్స్ సెటప్ -DocType: Item,Is Service Item,సర్వీస్ Item ఉంది apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,అప్లికేషన్ కాలం వెలుపల సెలవు కేటాయింపు కాలం ఉండకూడదు DocType: Activity Cost,Projects,ప్రాజెక్ట్స్ apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,ఫిస్కల్ ఇయర్ దయచేసి ఎంచుకోండి @@ -1112,7 +1113,7 @@ DocType: Item,Maintain Stock,స్టాక్ నిర్వహించడ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,ఇప్పటికే ఉత్పత్తి ఆర్డర్ రూపొందించినవారు స్టాక్ ఎంట్రీలు apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,స్థిర ఆస్తి నికర మార్పును DocType: Leave Control Panel,Leave blank if considered for all designations,అన్ని వివరణలకు భావిస్తారు ఉంటే ఖాళీ వదిలి -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,రకం 'యదార్థ' వరుసగా బాధ్యతలు {0} అంశాన్ని రేటు చేర్చారు సాధ్యం కాదు +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,రకం 'యదార్థ' వరుసగా బాధ్యతలు {0} అంశాన్ని రేటు చేర్చారు సాధ్యం కాదు apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},మాక్స్: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,తేదీసమయం నుండి DocType: Email Digest,For Company,కంపెనీ @@ -1121,8 +1122,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,షిప్పింగ్ చిరునామా పేరు apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,ఖాతాల చార్ట్ DocType: Material Request,Terms and Conditions Content,నియమాలు మరియు నిబంధనలు కంటెంట్ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,100 కంటే ఎక్కువ ఉండకూడదు -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,{0} అంశం స్టాక్ అంశం కాదు +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,100 కంటే ఎక్కువ ఉండకూడదు +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,{0} అంశం స్టాక్ అంశం కాదు DocType: Maintenance Visit,Unscheduled,అనుకోని DocType: Employee,Owned,ఆధ్వర్యంలోని DocType: Salary Slip Deduction,Depends on Leave Without Pay,పే లేకుండా వదిలి ఆధారపడి @@ -1143,7 +1144,7 @@ Used for Taxes and Charges",ఒక స్ట్రింగ్ వంటి అ apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Employee తనను రిపోర్ట్ చేయలేరు. DocType: Account,"If the account is frozen, entries are allowed to restricted users.",ఖాతా ఘనీభవించిన ఉంటే ప్రవేశాలు పరిమితం వినియోగదారులు అనుమతించబడతాయి. DocType: Email Digest,Bank Balance,బ్యాంకు బ్యాలెన్స్ -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},{1} ఏకైక కరెన్సీగా తయారు చేయవచ్చు: {0} కోసం అకౌంటింగ్ ఎంట్రీ {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},{1} ఏకైక కరెన్సీగా తయారు చేయవచ్చు: {0} కోసం అకౌంటింగ్ ఎంట్రీ {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,ఉద్యోగి {0} మరియు నెల కొరకు ఏవీ దొరకలేదు చురుకుగా జీతం నిర్మాణం DocType: Job Opening,"Job profile, qualifications required etc.","జాబ్ ప్రొఫైల్, అర్హతలు అవసరం మొదలైనవి" DocType: Journal Entry Account,Account Balance,ఖాతా నిలువ @@ -1160,7 +1161,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,సబ్ అ DocType: Shipping Rule Condition,To Value,విలువ DocType: Supplier,Stock Manager,స్టాక్ మేనేజర్ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},మూల గిడ్డంగి వరుసగా తప్పనిసరి {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,ప్యాకింగ్ స్లిప్ +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,ప్యాకింగ్ స్లిప్ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,ఆఫీసు రెంట్ apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,సెటప్ SMS గేట్వే సెట్టింగులు apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,దిగుమతి విఫలమైంది! @@ -1204,7 +1205,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,బిఒఎం వివర DocType: Purchase Invoice,Additional Discount Amount (Company Currency),అదనపు డిస్కౌంట్ మొత్తం (కంపెనీ కరెన్సీ) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},లోపం: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,ఖాతాల చార్ట్ నుండి కొత్త ఖాతాను సృష్టించండి. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,నిర్వహణ సందర్శించండి +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,నిర్వహణ సందర్శించండి apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,కస్టమర్> కస్టమర్ గ్రూప్> భూభాగం DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Warehouse వద్ద అందుబాటులో బ్యాచ్ ప్యాక్ చేసిన అంశాల DocType: Time Log Batch Detail,Time Log Batch Detail,సమయం లాగిన్ బ్యాచ్ వివరాలు @@ -1213,7 +1214,7 @@ DocType: Leave Block List,Block Holidays on important days.,ముఖ్యమ ,Accounts Receivable Summary,స్వీకరించదగిన ఖాతాలు సారాంశం apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,Employee పాత్ర సెట్ ఒక ఉద్యోగి రికార్డు వాడుకరి ID రంగంలో సెట్ చెయ్యండి DocType: UOM,UOM Name,UoM పేరు -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,చందా మొత్తాన్ని +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,చందా మొత్తాన్ని DocType: Sales Invoice,Shipping Address,షిప్పింగ్ చిరునామా DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,ఈ సాధనం అప్డేట్ లేదా వ్యవస్థలో స్టాక్ పరిమాణం మరియు మదింపు పరిష్కరించడానికి సహాయపడుతుంది. ఇది సాధారణంగా వ్యవస్థ విలువలు ఏ వాస్తవానికి మీ గిడ్డంగుల్లో ఉంది సమకాలీకరించడానికి ఉపయోగిస్తారు. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,మీరు డెలివరీ గమనిక సేవ్ ఒకసారి వర్డ్స్ కనిపిస్తుంది. @@ -1254,7 +1255,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,బార్కోడ్ను ఉపయోగించి అంశాలను ట్రాక్. మీరు అంశం బార్కోడ్ స్కానింగ్ ద్వారా డెలివరీ నోట్ మరియు సేల్స్ వాయిస్ అంశాలు ఎంటర్ చెయ్యగలరు. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,చెల్లింపు ఇమెయిల్ను మళ్లీ పంపండి DocType: Dependent Task,Dependent Task,అస్వతంత్ర టాస్క్ -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},మెజర్ యొక్క డిఫాల్ట్ యూనిట్ మార్పిడి అంశం వరుసగా 1 ఉండాలి {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},మెజర్ యొక్క డిఫాల్ట్ యూనిట్ మార్పిడి అంశం వరుసగా 1 ఉండాలి {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},రకం లీవ్ {0} కంటే ఎక్కువ ఉండరాదు {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,ముందుగానే X రోజులు కార్యకలాపాలు ప్రణాళిక ప్రయత్నించండి. DocType: HR Settings,Stop Birthday Reminders,ఆపు జన్మదిన రిమైండర్లు @@ -1264,7 +1265,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} చూడండి apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,నగదు నికర మార్పు DocType: Salary Structure Deduction,Salary Structure Deduction,జీతం నిర్మాణం తీసివేత -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,మెజర్ {0} యొక్క యూనిట్ మార్పిడి ఫాక్టర్ టేబుల్ లో ఒకసారి కంటే ఎక్కువ నమోదు చేయబడింది +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,మెజర్ {0} యొక్క యూనిట్ మార్పిడి ఫాక్టర్ టేబుల్ లో ఒకసారి కంటే ఎక్కువ నమోదు చేయబడింది apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},చెల్లింపు అభ్యర్థన ఇప్పటికే ఉంది {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,జారీచేయబడింది వస్తువుల ధర apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},పరిమాణం కంటే ఎక్కువ ఉండకూడదు {0} @@ -1293,7 +1294,7 @@ DocType: BOM Item,BOM Item,బిఒఎం అంశం DocType: Appraisal,For Employee,Employee కొరకు apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,రో {0}: సరఫరాదారు వ్యతిరేకంగా అడ్వాన్స్ డెబిట్ తప్పక DocType: Company,Default Values,డిఫాల్ట్ విలువలు -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,రో {0}: చెల్లింపు మొత్తంలో ప్రతికూల ఉండకూడదు +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,రో {0}: చెల్లింపు మొత్తంలో ప్రతికూల ఉండకూడదు DocType: Expense Claim,Total Amount Reimbursed,మొత్తం మొత్తం డబ్బులు apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},సరఫరాదారు వ్యతిరేకంగా వాయిస్ {0} నాటి {1} DocType: Customer,Default Price List,డిఫాల్ట్ ధర జాబితా @@ -1321,8 +1322,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,స DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM",అది ఉపయోగించిన అన్ని ఇతర BOMs ఒక నిర్దిష్ట BOM పునఃస్థాపించుము. ఇది పాత BOM లింక్ స్థానంలో ఖర్చు అప్డేట్ మరియు నూతన BOM ప్రకారం "BOM ప్రేలుడు అంశం" పట్టిక పునరుత్పత్తి చేస్తుంది DocType: Shopping Cart Settings,Enable Shopping Cart,షాపింగ్ కార్ట్ ప్రారంభించు DocType: Employee,Permanent Address,శాశ్వత చిరునామా -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,అంశం {0} సర్వీస్ అంశం ఉండాలి. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",గ్రాండ్ మొత్తం కంటే \ {0} {1} ఎక్కువ ఉండకూడదు వ్యతిరేకంగా చెల్లించిన అడ్వాన్స్ {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,అంశం కోడ్ దయచేసి ఎంచుకోండి DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),పే లేకుండా వదిలి తీసివేత తగ్గించండి (LWP) @@ -1378,12 +1378,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,ప్రధాన apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,వేరియంట్ DocType: Naming Series,Set prefix for numbering series on your transactions,మీ లావాదేవీలపై సిరీస్ నంబరింగ్ కోసం సెట్ ఉపసర్గ +DocType: Employee Attendance Tool,Employees HTML,ఉద్యోగులు HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,ఆగిపోయింది ఆర్డర్ రద్దు సాధ్యం కాదు. రద్దు Unstop. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,డిఫాల్ట్ BOM ({0}) ఈ అంశం లేదా దాని టెంప్లేట్ కోసం చురుకుగా ఉండాలి +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,డిఫాల్ట్ BOM ({0}) ఈ అంశం లేదా దాని టెంప్లేట్ కోసం చురుకుగా ఉండాలి DocType: Employee,Leave Encashed?,Encashed వదిలి? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,ఫీల్డ్ నుండి అవకాశం తప్పనిసరి DocType: Item,Variants,రకరకాలు -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,కొనుగోలు ఆర్డర్ చేయండి +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,కొనుగోలు ఆర్డర్ చేయండి DocType: SMS Center,Send To,పంపే apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},లీవ్ పద్ధతి కోసం తగినంత సెలవు సంతులనం లేదు {0} DocType: Payment Reconciliation Payment,Allocated amount,కేటాయించింది మొత్తం @@ -1483,7 +1484,7 @@ DocType: Sales Person,Name and Employee ID,పేరు మరియు Employee apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,గడువు తేదీ తేదీ చేసినది ముందు ఉండరాదు DocType: Website Item Group,Website Item Group,వెబ్సైట్ అంశం గ్రూప్ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,సుంకాలు మరియు పన్నుల -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,సూచన తేదీని ఎంటర్ చేయండి +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,సూచన తేదీని ఎంటర్ చేయండి apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,చెల్లింపు గేట్వే ఖాతా కాన్ఫిగర్ apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} చెల్లింపు ఎంట్రీలు ద్వారా వడపోత కాదు {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,వెబ్ సైట్ లో చూపబడుతుంది ఆ అంశం కోసం టేబుల్ @@ -1504,7 +1505,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,రిజల్యూషన్ వివరాలు DocType: Quality Inspection Reading,Acceptance Criteria,అంగీకారం ప్రమాణం DocType: Item Attribute,Attribute Name,పేరు లక్షణం -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},అంశం {0} లో సేల్స్ లేదా సర్వీస్ అంశం ఉండాలి {1} DocType: Item Group,Show In Website,వెబ్సైట్ షో apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,గ్రూప్ DocType: Task,Expected Time (in hours),(గంటల్లో) ఊహించినది సమయం @@ -1536,7 +1536,7 @@ DocType: Shipping Rule Condition,Shipping Amount,షిప్పింగ్ మ ,Pending Amount,పెండింగ్ మొత్తం DocType: Purchase Invoice Item,Conversion Factor,మార్పిడి ఫాక్టర్ DocType: Purchase Order,Delivered,పంపిణీ -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),ఉద్యోగాలు టపా కొరకు సెటప్ ఇన్కమింగ్ సర్వర్. (ఉదా jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),ఉద్యోగాలు టపా కొరకు సెటప్ ఇన్కమింగ్ సర్వర్. (ఉదా jobs@example.com) DocType: Purchase Receipt,Vehicle Number,వాహనం సంఖ్య DocType: Purchase Invoice,The date on which recurring invoice will be stop,పునరావృత ఇన్వాయిస్ ఆపడానికి చేయబడే తేదీ apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,మొత్తం కేటాయించింది ఆకులు {0} తక్కువ ఉండకూడదు కాలం కోసం ఇప్పటికే ఆమోదం ఆకులు {1} కంటే @@ -1553,7 +1553,7 @@ DocType: HR Settings,HR Settings,ఆర్ సెట్టింగ్స్ apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,ఖర్చు చెప్పడం ఆమోదం లభించవలసి ఉంది. మాత్రమే ఖర్చుల అప్రూవర్గా డేట్ చేయవచ్చు. DocType: Purchase Invoice,Additional Discount Amount,అదనపు డిస్కౌంట్ మొత్తం DocType: Leave Block List Allow,Leave Block List Allow,బ్లాక్ జాబితా అనుమతించు వదిలి -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abbr ఖాళీ లేదా ఖాళీ ఉండరాదు +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abbr ఖాళీ లేదా ఖాళీ ఉండరాదు apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,కాని గ్రూప్ గ్రూప్ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,క్రీడలు apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,యదార్థమైన మొత్తం @@ -1577,7 +1577,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},UoM మార్పిడి అంశం వరుసగా అవసరం {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},క్లియరెన్స్ తేదీ వరుసగా చెక్ తేదీ ముందు ఉండకూడదు {0} DocType: Salary Slip,Deduction,తీసివేత -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},అంశం ధర కోసం జోడించిన {0} ధర జాబితా లో {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},అంశం ధర కోసం జోడించిన {0} ధర జాబితా లో {1} DocType: Address Template,Address Template,చిరునామా మూస apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,ఈ విక్రయాల వ్యక్తి యొక్క ఉద్యోగి ID నమోదు చేయండి DocType: Territory,Classification of Customers by region,ప్రాంతం ద్వారా వినియోగదారుడు వర్గీకరణ @@ -1594,7 +1594,7 @@ DocType: Employee,Date of Birth,పుట్టిన తేది apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,అంశం {0} ఇప్పటికే తిరిగి చెయ్యబడింది DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** ఫిస్కల్ ఇయర్ ** ఆర్థిక సంవత్సరం సూచిస్తుంది. అన్ని అకౌంటింగ్ ఎంట్రీలు మరియు ఇతర ప్రధాన లావాదేవీల ** ** ఫిస్కల్ ఇయర్ వ్యతిరేకంగా చూడబడతాయి. DocType: Opportunity,Customer / Lead Address,కస్టమర్ / లీడ్ చిరునామా -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},హెచ్చరిక: అటాచ్మెంట్ చెల్లని SSL సర్టిఫికెట్ {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},హెచ్చరిక: అటాచ్మెంట్ చెల్లని SSL సర్టిఫికెట్ {0} DocType: Production Order Operation,Actual Operation Time,అసలు ఆపరేషన్ సమయం DocType: Authorization Rule,Applicable To (User),వర్తించదగిన (వాడుకరి) DocType: Purchase Taxes and Charges,Deduct,తీసివేయు @@ -1611,7 +1611,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,ప్యాకేజీలు స్ప్లిట్ డెలివరీ గమనించండి. apps/erpnext/erpnext/hooks.py +69,Shipments,ప్యాకేజీల DocType: Purchase Order Item,To be delivered to customer,కస్టమర్ పంపిణీ ఉంటుంది -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,సమయం లాగిన్ హోదా సమర్పించాలి. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,సమయం లాగిన్ హోదా సమర్పించాలి. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,సీరియల్ లేవు {0} ఏదైనా వేర్హౌస్ చెందినది కాదు apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,రో # DocType: Purchase Invoice,In Words (Company Currency),వర్డ్స్ (కంపెనీ కరెన్సీ) @@ -1628,7 +1628,7 @@ DocType: Leave Application,Total Leave Days,మొత్తం లీవ్ డ DocType: Email Digest,Note: Email will not be sent to disabled users,గమనిక: ఇమెయిల్ వికలాంగ వినియోగదారులకు పంపబడదు apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,కంపెనీ ఎంచుకోండి ... DocType: Leave Control Panel,Leave blank if considered for all departments,అన్ని శాఖల కోసం భావిస్తారు ఉంటే ఖాళీ వదిలి -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","ఉపాధి రకాలు (శాశ్వత, కాంట్రాక్టు ఇంటర్న్ మొదలైనవి)." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","ఉపాధి రకాలు (శాశ్వత, కాంట్రాక్టు ఇంటర్న్ మొదలైనవి)." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} అంశం తప్పనిసరి {1} DocType: Currency Exchange,From Currency,కరెన్సీ నుండి apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","కనీసం ఒక వరుసలో కేటాయించిన మొత్తం, వాయిస్ పద్ధతి మరియు వాయిస్ సంఖ్య దయచేసి ఎంచుకోండి" @@ -1647,7 +1647,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,ప్రక్రియ లో DocType: Authorization Rule,Itemwise Discount,Itemwise డిస్కౌంట్ DocType: Purchase Order Item,Reference Document Type,సూచన డాక్యుమెంట్ టైప్ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} అమ్మకాల ఆర్డర్ వ్యతిరేకంగా {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} అమ్మకాల ఆర్డర్ వ్యతిరేకంగా {1} DocType: Account,Fixed Asset,స్థిర ఆస్తి apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,సీరియల్ ఇన్వెంటరీ DocType: Activity Type,Default Billing Rate,డిఫాల్ట్ బిల్లింగ్ రేటు @@ -1657,7 +1657,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,చెల్లింపు కు అమ్మకాల ఆర్డర్ DocType: Expense Claim Detail,Expense Claim Detail,ఖర్చు చెప్పడం వివరాలు apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,సమయం దినచర్య రూపొందించినవారు: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,సరైన ఖాతాను ఎంచుకోండి +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,సరైన ఖాతాను ఎంచుకోండి DocType: Item,Weight UOM,బరువు UoM DocType: Employee,Blood Group,రక్తం గ్రూపు DocType: Purchase Invoice Item,Page Break,పుట విరుపు @@ -1692,7 +1692,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},బిఒఎం సూత్రం: {0} యొక్క పేరెంట్ లేదా బాల ఉండకూడదు {2} DocType: Production Order Operation,Completed Qty,పూర్తైన ప్యాక్ చేసిన అంశాల apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","{0}, మాత్రమే డెబిట్ ఖాతాల మరో క్రెడిట్ ప్రవేశానికి వ్యతిరేకంగా లింక్ చేయవచ్చు కోసం" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,ధర జాబితా {0} నిలిపివేయబడింది +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,ధర జాబితా {0} నిలిపివేయబడింది DocType: Manufacturing Settings,Allow Overtime,అదనపు అనుమతించు apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} అంశం అవసరం సీరియల్ సంఖ్యలు {1}. మీరు అందించిన {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,ప్రస్తుత లెక్కింపు రేటు @@ -1743,7 +1743,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},బ apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,కేస్ నం 0 ఉండకూడదు DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,మీరు (ఛానల్ భాగస్వాములు) సేల్స్ టీం మరియు అమ్మకానికి భాగస్వాములు ఉంటే వారు ట్యాగ్ మరియు అమ్మకాలు కార్యకలాపాలలో వారి సహకారం నిర్వహించడానికి చేయవచ్చు DocType: Item,Show a slideshow at the top of the page,పేజీ ఎగువన ఒక స్లైడ్ చూపించు -DocType: Item,"Allow in Sales Order of type ""Service""",రకం "సేవ" యొక్క అమ్మకాల ఉత్తర్వు అనుమతించు apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,దుకాణాలు DocType: Time Log,Projects Manager,ప్రాజెక్ట్స్ మేనేజర్ DocType: Serial No,Delivery Time,డెలివరీ సమయం @@ -1758,6 +1757,7 @@ DocType: Rename Tool,Rename Tool,టూల్ పేరుమార్చు apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,నవీకరణ ఖర్చు DocType: Item Reorder,Item Reorder,అంశం క్రమాన్ని మార్చు apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,ట్రాన్స్ఫర్ మెటీరియల్ +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},అంశం {0} లో ఒక సేల్స్ అంశం ఉండాలి {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","కార్యకలాపాలు, నిర్వహణ ఖర్చు పేర్కొనండి మరియు మీ కార్యకలాపాలను ఎలాంటి ఒక ఏకైక ఆపరేషన్ ఇస్తాయి." DocType: Purchase Invoice,Price List Currency,ధర జాబితా కరెన్సీ DocType: Naming Series,User must always select,వినియోగదారు ఎల్లప్పుడూ ఎంచుకోవాలి @@ -1778,7 +1778,7 @@ DocType: Appraisal,Employee,Employee apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,నుండి దిగుమతి ఇమెయిల్ apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,వాడుకరి ఆహ్వానించండి DocType: Features Setup,After Sale Installations,అమ్మకానికి సంస్థాపన తర్వాత -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} పూర్తిగా బిల్ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} పూర్తిగా బిల్ DocType: Workstation Working Hour,End Time,ముగింపు సమయం apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,సేల్స్ లేదా కొనుగోలు ప్రామాణిక ఒప్పందం నిబంధనలు. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,ఓచర్ ద్వారా గ్రూప్ @@ -1804,7 +1804,7 @@ DocType: Upload Attendance,Attendance To Date,తేదీ హాజరు apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),అమ్మకాలు టపా కొరకు సెటప్ ఇన్కమింగ్ సర్వర్. (ఉదా sales@example.com) DocType: Warranty Claim,Raised By,లేవనెత్తారు DocType: Payment Gateway Account,Payment Account,చెల్లింపు ఖాతా -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,కొనసాగాలని కంపెనీ రాయండి +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,కొనసాగాలని కంపెనీ రాయండి apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,స్వీకరించదగిన ఖాతాలు నికర మార్పును apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,పరిహార ఆఫ్ DocType: Quality Inspection Reading,Accepted,Accepted @@ -1816,14 +1816,14 @@ DocType: Shipping Rule,Shipping Rule Label,షిప్పింగ్ రూల apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,రా మెటీరియల్స్ ఖాళీ ఉండకూడదు. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","స్టాక్ అప్డేట్ కాలేదు, ఇన్వాయిస్ డ్రాప్ షిప్పింగ్ అంశం కలిగి." DocType: Newsletter,Test,టెస్ట్ -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","ఉన్న స్టాక్ లావాదేవీలను విలువలను మార్చలేరు \ ఈ అంశాన్ని కోసం ఉన్నాయి 'సీరియల్ చెప్పడం', 'బ్యాచ్ ఉంది నో', 'స్టాక్ అంశం' మరియు 'వాల్యుయేషన్ విధానం'" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,త్వరిత జర్నల్ ఎంట్రీ apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,బిఒఎం ఏ అంశం agianst పేర్కొన్నారు ఉంటే మీరు రేటు మార్చలేరు DocType: Employee,Previous Work Experience,మునుపటి పని అనుభవం DocType: Stock Entry,For Quantity,పరిమాణం apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},వరుస వద్ద అంశం {0} ప్రణాలిక ప్యాక్ చేసిన అంశాల నమోదు చేయండి {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} సమర్పించిన లేదు +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} సమర్పించిన లేదు apps/erpnext/erpnext/config/stock.py +18,Requests for items.,అంశాలను అభ్యర్థనలు. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,ప్రత్యేక నిర్మాణ ఆర్డర్ ప్రతి పూర్తయిన మంచి అంశం రూపొందించినవారు ఉంటుంది. DocType: Purchase Invoice,Terms and Conditions1,నిబంధనలు మరియు Conditions1 @@ -1848,6 +1848,7 @@ DocType: Notification Control,Expense Claim Approved Message,ఖర్చు చ DocType: Email Digest,How frequently?,ఎంత తరచుగా? DocType: Purchase Receipt,Get Current Stock,ప్రస్తుత స్టాక్ పొందండి apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,మెటీరియల్స్ బిల్లుని ట్రీ +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,మార్క్ ప్రెజెంట్ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},నిర్వహణ ప్రారంభ తేదీ సీరియల్ నో డెలివరీ తేదీ ముందు ఉండరాదు {0} DocType: Production Order,Actual End Date,వాస్తవిక ముగింపు తేదీ DocType: Authorization Rule,Applicable To (Role),వర్తించదగిన (పాత్ర) @@ -1862,7 +1863,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,కాంట్రాక్ట్ ముగింపు తేదీ చేరడం తేదీ కంటే ఎక్కువ ఉండాలి DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,కమిషన్ కొరకు కంపెనీలు ఉత్పత్తులను విక్రయిస్తుంది ఒక మూడవ పార్టీ పంపిణీదారు / డీలర్ / కమిషన్ ఏజెంట్ / అనుబంధ / పునఃవిక్రేత. DocType: Customer Group,Has Child Node,చైల్డ్ నోడ్ ఉంది -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} కొనుగోలు ఆర్డర్ వ్యతిరేకంగా {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} కొనుగోలు ఆర్డర్ వ్యతిరేకంగా {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","ఇక్కడ స్టాటిక్ url పారామితులు ఎంటర్ (ఉదా. పంపినవారు = ERPNext, యూజర్పేరు = ERPNext, password = 1234 మొదలైనవి)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} ఏ చురుకుగా ఫిస్కల్ ఇయర్ లో. మరిన్ని వివరాలకు తనిఖీ కోసం {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,ఈ ఒక ఉదాహరణ వెబ్సైట్ ERPNext నుండి ఆటో ఉత్పత్తి ఉంది @@ -1890,7 +1891,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Add or Deduct: Whether you want to add or deduct the tax.","అన్ని కొనుగోలు లావాదేవీల అన్వయించవచ్చు ప్రామాణిక పన్ను టెంప్లేట్. ఈ టెంప్లేట్ మొదలైనవి #### మీరు అన్ని ** అంశాలు ప్రామాణిక పన్ను రేటు ఉంటుంది ఇక్కడ నిర్వచించే పన్ను రేటు గమనిక "నిర్వహణకు" పన్ను తలలు మరియు "షిప్పింగ్", "బీమా" వంటి ఇతర ఖర్చుల తలలు జాబితా కలిగి చేయవచ్చు * *. వివిధ అవుతున్నాయి ** ఆ ** అంశాలు ఉన్నాయి ఉంటే, వారు ** అంశం టాక్స్లు జత చేయాలి ** ** అంశం ** మాస్టర్ పట్టిక. #### లు వివరణ 1. గణన పద్ధతి: - ఈ (ప్రాథమిక మొత్తాన్ని మొత్తానికి) ** నికర మొత్తం ** ఉండకూడదు. - ** మునుపటి రో మొత్తం / మొత్తం ** న (సంచిత పన్నులు లేదా ఆరోపణలు కోసం). మీరు ఈ ఎంపికను ఎంచుకుంటే, పన్ను మొత్తాన్ని లేదా మొత్తం (పన్ను పట్టికలో) మునుపటి వరుసగా శాతంగా వర్తించబడుతుంది. - ** ** వాస్తవాధీన (పేర్కొన్న). 2. ఖాతా హెడ్: ఈ పన్ను 3. ఖర్చు సెంటర్ బుక్ ఉంటుంది కింద ఖాతా లెడ్జర్: పన్ను / ఛార్జ్ (షిప్పింగ్ లాంటి) ఆదాయం లేదా వ్యయం ఉంటే అది ఖర్చుతో సెంటర్ వ్యతిరేకంగా బుక్ అవసరం. 4. వివరణ: పన్ను వివరణ (ఆ ఇన్వాయిస్లు / కోట్స్ లో ప్రింట్ చేయబడుతుంది). 5. రేటు: పన్ను రేటు. 6. మొత్తం: పన్ను మొత్తం. 7. మొత్తం: ఈ పాయింట్ సంచిత మొత్తం. 8. రో నమోదు చేయండి: ఆధారంగా ఉంటే "మునుపటి రో మొత్తం" మీరు ఈ లెక్కింపు కోసం ఒక బేస్ (డిఫాల్ట్ మునుపటి వరుస ఉంది) గా తీసుకోబడుతుంది ఇది వరుసగా సంఖ్య ఎంచుకోవచ్చు. 9. పన్ను లేదా ఛార్జ్ పరిగణించండి: పన్ను / ఛార్జ్ విలువను మాత్రమే (మొత్తం భాగం కాదు) లేదా (అంశం విలువ జోడించడానికి లేదు) మొత్తం లేదా రెండూ ఉంటే ఈ విభాగంలో మీరు పేర్కొనవచ్చు. 10. జోడించండి లేదా తగ్గించండి: మీరు జోడించవచ్చు లేదా పన్ను తీసివేయు నిశ్చఇ." DocType: Purchase Receipt Item,Recd Quantity,Recd పరిమాణం apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},అమ్మకాల ఆర్డర్ పరిమాణం కంటే ఎక్కువ అంశం {0} ఉత్పత్తి కాదు {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,స్టాక్ ఎంట్రీ {0} సమర్పించిన లేదు +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,స్టాక్ ఎంట్రీ {0} సమర్పించిన లేదు DocType: Payment Reconciliation,Bank / Cash Account,బ్యాంకు / క్యాష్ ఖాతా DocType: Tax Rule,Billing City,బిల్లింగ్ సిటీ DocType: Global Defaults,Hide Currency Symbol,కరెన్సీ మానవ చిత్ర దాచు @@ -1916,7 +1917,7 @@ DocType: Salary Structure,Total Earning,మొత్తం ఎర్నింగ DocType: Purchase Receipt,Time at which materials were received,పదార్థాలు అందుకున్న సమయంలో apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,నా చిరునామాలు DocType: Stock Ledger Entry,Outgoing Rate,అవుట్గోయింగ్ రేటు -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,ఆర్గనైజేషన్ శాఖ మాస్టర్. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,ఆర్గనైజేషన్ శాఖ మాస్టర్. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,లేదా DocType: Sales Order,Billing Status,బిల్లింగ్ స్థితి apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,యుటిలిటీ ఖర్చులు @@ -1954,7 +1955,7 @@ DocType: Bin,Reserved Quantity,రిసర్వ్డ్ పరిమాణం DocType: Landed Cost Voucher,Purchase Receipt Items,కొనుగోలు రసీదులు అంశాలు apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,మలచుకొనుట పత్రాలు DocType: Account,Income Account,ఆదాయపు ఖాతా -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,డెలివరీ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,డెలివరీ DocType: Stock Reconciliation Item,Current Qty,ప్రస్తుత ప్యాక్ చేసిన అంశాల DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",చూడండి వ్యయంతో విభాగం లో "Materials బేస్డ్ న రేటు" DocType: Appraisal Goal,Key Responsibility Area,కీ బాధ్యత ఏరియా @@ -1966,8 +1967,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,ఓ DocType: Notification Control,Purchase Order Message,ఆర్డర్ సందేశం కొనుగోలు DocType: Tax Rule,Shipping Country,షిప్పింగ్ దేశం DocType: Upload Attendance,Upload HTML,అప్లోడ్ HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})",మొత్తం ముందుగానే ({0}) ఆర్డర్ వ్యతిరేకంగా {1} \ ఎక్కువ ఉండకూడదు గ్రాండ్ మొత్తం కంటే ({2}) DocType: Employee,Relieving Date,ఉపశమనం తేదీ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","ధర నియమం కొన్ని ప్రమాణాల ఆధారంగా, / ధర జాబితా తిరిగి రాస్తుంది డిస్కౌంట్ శాతం నిర్వచించడానికి తయారు చేస్తారు." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,వేర్హౌస్ మాత్రమే స్టాక్ ఎంట్రీ ద్వారా మార్చవచ్చు / డెలివరీ గమనిక / కొనుగోలు రసీదులు @@ -1977,8 +1976,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,ఆ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","ఎంపిక ధర రూల్ 'ధర' కోసం చేసిన ఉంటే, అది ధర జాబితా తిరిగి రాస్తుంది. ధర రూల్ ధర తుది ధర ఇది, కాబట్టి ఎటువంటి తగ్గింపు పూయాలి. అందుకే, etc అమ్మకాల ఉత్తర్వు, పర్చేజ్ ఆర్డర్ వంటి లావాదేవీలు, అది కాకుండా 'ధర జాబితా రేటు' రంగంగా కాకుండా, 'రేటు' ఫీల్డ్లో సందేశం పొందబడుతుంది." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,ట్రాక్ పరిశ్రమ రకం ద్వారా నడిపించును. DocType: Item Supplier,Item Supplier,అంశం సరఫరాదారు -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,బ్యాచ్ ఏ పొందడానికి అంశం కోడ్ను నమోదు చేయండి -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},{0} quotation_to కోసం ఒక విలువను ఎంచుకోండి దయచేసి {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,బ్యాచ్ ఏ పొందడానికి అంశం కోడ్ను నమోదు చేయండి +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},{0} quotation_to కోసం ఒక విలువను ఎంచుకోండి దయచేసి {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,అన్ని చిరునామాలు. DocType: Company,Stock Settings,స్టాక్ సెట్టింగ్స్ apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","క్రింది రెండు లక్షణాలతో రికార్డులలో అదే ఉంటే విలీనం మాత్రమే సాధ్యమవుతుంది. గ్రూప్ రూట్ రకం, కంపెనీ" @@ -2001,7 +2000,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,ప్రిపే సంఖ DocType: Payment Tool Detail,Payment Tool Detail,చెల్లింపు టూల్ వివరాలు ,Sales Browser,సేల్స్ బ్రౌజర్ DocType: Journal Entry,Total Credit,మొత్తం క్రెడిట్ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},హెచ్చరిక: మరో {0} # {1} స్టాక్ ప్రవేశానికి వ్యతిరేకంగా ఉంది {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},హెచ్చరిక: మరో {0} # {1} స్టాక్ ప్రవేశానికి వ్యతిరేకంగా ఉంది {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,స్థానిక apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),రుణాలు మరియు అడ్వాన్సెస్ (ఆస్తులు) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,రుణగ్రస్తులు @@ -2021,8 +2020,8 @@ DocType: Price List,Price List Master,ధర జాబితా మాస్ట DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,మీరు సెట్ మరియు లక్ష్యాలు మానిటర్ విధంగా అన్ని సేల్స్ లావాదేవీలు బహుళ ** సేల్స్ పర్సన్స్ ** వ్యతిరేకంగా ట్యాగ్ చేయవచ్చు. ,S.O. No.,SO నం DocType: Production Order Operation,Make Time Log,సమయం లాగిన్ చేయండి -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,క్రమాన్ని పరిమాణం సెట్ చెయ్యండి -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},లీడ్ నుండి కస్టమర్ సృష్టించడానికి దయచేసి {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,క్రమాన్ని పరిమాణం సెట్ చెయ్యండి +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},లీడ్ నుండి కస్టమర్ సృష్టించడానికి దయచేసి {0} DocType: Price List,Applicable for Countries,దేశాలు వర్తించే apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,కంప్యూటర్లు apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,ఈ రూట్ కస్టమర్ సమూహం ఉంది మరియు సవరించడం సాధ్యం కాదు. @@ -2058,7 +2057,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),బి DocType: Payment Reconciliation Invoice,Outstanding Amount,అసాధారణ పరిమాణం DocType: Project Task,Working,వర్కింగ్ DocType: Stock Ledger Entry,Stock Queue (FIFO),స్టాక్ క్యూ (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,సమయం దినచర్య ఎంచుకోండి. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,సమయం దినచర్య ఎంచుకోండి. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} కంపెనీకి చెందినది కాదు {1} DocType: Account,Round Off,ఆఫ్ రౌండ్ ,Requested Qty,అభ్యర్థించిన ప్యాక్ చేసిన అంశాల @@ -2096,7 +2095,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,సంబంధిత ఎంట్రీలు పొందండి apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,స్టాక్ కోసం అకౌంటింగ్ ఎంట్రీ DocType: Sales Invoice,Sales Team1,సేల్స్ team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,అంశం {0} ఉనికిలో లేదు +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,అంశం {0} ఉనికిలో లేదు DocType: Sales Invoice,Customer Address,కస్టమర్ చిరునామా DocType: Payment Request,Recipient and Message,గ్రహీతకు అందిస్తామని మరియు సందేశం DocType: Purchase Invoice,Apply Additional Discount On,అదనపు డిస్కౌంట్ న వర్తించు @@ -2115,7 +2114,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,మ్యూట్ ఇమెయిల్ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","ఫుడ్, బేవరేజ్ పొగాకు" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL లేదా BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},మాత్రమే వ్యతిరేకంగా చెల్లింపు చేయవచ్చు unbilled {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},మాత్రమే వ్యతిరేకంగా చెల్లింపు చేయవచ్చు unbilled {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,కమిషన్ రేటు కంటే ఎక్కువ 100 ఉండకూడదు apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,కనీస జాబితా స్థాయి DocType: Stock Entry,Subcontract,Subcontract @@ -2133,9 +2132,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,సాఫ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,కలర్ DocType: Maintenance Visit,Scheduled,షెడ్యూల్డ్ apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle",""నో" మరియు "సేల్స్ అంశం" "స్టాక్ అంశం ఏమిటంటే" పేరు "అవును" ఉంది అంశాన్ని ఎంచుకుని, ఏ ఇతర ఉత్పత్తి కట్ట ఉంది దయచేసి" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),మొత్తం ముందుగానే ({0}) ఉత్తర్వు మీద {1} గ్రాండ్ మొత్తం కన్నా ఎక్కువ ఉండకూడదు ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,అసమానంగా నెలల అంతటా లక్ష్యాలను పంపిణీ మంత్లీ పంపిణీ ఎంచుకోండి. DocType: Purchase Invoice Item,Valuation Rate,వాల్యువేషన్ రేటు -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,ధర జాబితా కరెన్సీ ఎంపిక లేదు +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,ధర జాబితా కరెన్సీ ఎంపిక లేదు apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,అంశం రో {0}: {1} పైన 'కొనుగోలు రసీదులు' పట్టిక ఉనికిలో లేదు కొనుగోలు రసీదులు apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Employee {0} ఇప్పటికే దరఖాస్తు చేశారు {1} మధ్య {2} మరియు {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,ప్రాజెక్ట్ ప్రారంభ తేదీ @@ -2147,6 +2147,7 @@ DocType: Quality Inspection,Inspection Type,ఇన్స్పెక్షన్ apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},దయచేసి ఎంచుకోండి {0} DocType: C-Form,C-Form No,సి ఫారం లేవు DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,పేరుపెట్టని హాజరు apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,పరిశోధకులు apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,పంపే ముందు వార్తా సేవ్ చేయండి apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,పేరు లేదా ఇమెయిల్ తప్పనిసరి @@ -2172,7 +2173,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,ధృ DocType: Payment Gateway,Gateway,గేట్వే apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,సరఫరాదారు> సరఫరాదారు టైప్ apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,తేదీ ఉపశమనం ఎంటర్ చెయ్యండి. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,ఆంట్ +apps/erpnext/erpnext/controllers/trends.py +138,Amt,ఆంట్ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,కేవలం హోదా 'అప్రూవ్డ్ సమర్పించిన చేయవచ్చు దరఖాస్తులను వదిలి apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,చిరునామా శీర్షిక తప్పనిసరి. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,విచారణ సోర్స్ ప్రచారం ఉంటే ప్రచారం పేరు ఎంటర్ @@ -2187,10 +2188,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,అంగీకరించి DocType: Bank Reconciliation Detail,Posting Date,పోస్ట్ చేసిన తేదీ DocType: Item,Valuation Method,మదింపు పద్ధతి apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},{0} కు మారక రేటు దొరక్కపోతే {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,మార్క్ హాఫ్ డే DocType: Sales Invoice,Sales Team,సేల్స్ టీం apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,నకిలీ ఎంట్రీ DocType: Serial No,Under Warranty,వారంటీ కింద -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[లోపం] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[లోపం] DocType: Sales Order,In Words will be visible once you save the Sales Order.,మీరు అమ్మకాల ఉత్తర్వు సేవ్ ఒకసారి వర్డ్స్ కనిపిస్తుంది. ,Employee Birthday,Employee పుట్టినరోజు apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,వెంచర్ కాపిటల్ @@ -2213,6 +2215,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,ఉన్న లావాదేవీలతో ఖర్చు సెంటర్ సమూహం మార్చబడతాయి కాదు DocType: Account,Depreciation,అరుగుదల apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),సరఫరాదారు (లు) +DocType: Employee Attendance Tool,Employee Attendance Tool,ఉద్యోగి హాజరు టూల్ DocType: Supplier,Credit Limit,క్రెడిట్ పరిమితి apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,లావాదేవీ రకాన్ని ఎంచుకోండి DocType: GL Entry,Voucher No,ఓచర్ లేవు @@ -2239,7 +2242,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,రూటు ఖాతాను తొలగించడం సాధ్యం కాదు ,Is Primary Address,ప్రాథమిక చిరునామా DocType: Production Order,Work-in-Progress Warehouse,పని లో ప్రోగ్రెస్ వేర్హౌస్ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},సూచన # {0} నాటి {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},సూచన # {0} నాటి {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,చిరునామాలు నిర్వహించండి DocType: Pricing Rule,Item Code,Item కోడ్ DocType: Production Planning Tool,Create Production Orders,ఉత్పత్తి ఆర్డర్స్ సృష్టించు @@ -2266,7 +2269,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,బ్యాంక్ సయో apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,నవీకరణలు పొందండి apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,మెటీరియల్ అభ్యర్థన {0} రద్దు లేదా ఆగిపోయిన apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,కొన్ని నమూనా రికార్డులు జోడించండి -apps/erpnext/erpnext/config/hr.py +210,Leave Management,మేనేజ్మెంట్ వదిలి +apps/erpnext/erpnext/config/hr.py +225,Leave Management,మేనేజ్మెంట్ వదిలి apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,ఖాతా గ్రూప్ DocType: Sales Order,Fully Delivered,పూర్తిగా పంపిణీ DocType: Lead,Lower Income,తక్కువ ఆదాయ @@ -2281,6 +2284,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','తేదీ నుండి' తర్వాత 'తేదీ' ఉండాలి ,Stock Projected Qty,స్టాక్ ప్యాక్ చేసిన అంశాల ప్రొజెక్టెడ్ apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},చెందదు {0} కస్టమర్ ప్రొజెక్ట్ {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,గుర్తించ హాజరు HTML DocType: Sales Order,Customer's Purchase Order,కస్టమర్ యొక్క కొనుగోలు ఆర్డర్ DocType: Warranty Claim,From Company,కంపెనీ నుండి apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,విలువ లేదా ప్యాక్ చేసిన అంశాల @@ -2345,6 +2349,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,వైర్ ట్రాన్స్ఫర్ apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,బ్యాంక్ ఖాతా దయచేసి ఎంచుకోండి DocType: Newsletter,Create and Send Newsletters,సృష్టించు మరియు పంపండి వార్తాలేఖలు +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,అన్ని తనిఖీ DocType: Sales Order,Recurring Order,పునరావృత ఆర్డర్ DocType: Company,Default Income Account,డిఫాల్ట్ ఆదాయం ఖాతా apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,కస్టమర్ గ్రూప్ / కస్టమర్ @@ -2376,6 +2381,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,ఎగైనెస DocType: Item,Warranty Period (in days),(రోజుల్లో) వారంటీ వ్యవధి apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,ఆపరేషన్స్ నుండి నికర నగదు apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,ఉదా వేట్ +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,బల్క్ లో మార్క్ ఉద్యోగి హాజరు apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,అంశం 4 DocType: Journal Entry Account,Journal Entry Account,జర్నల్ ఎంట్రీ ఖాతా DocType: Shopping Cart Settings,Quotation Series,కొటేషన్ సిరీస్ @@ -2520,14 +2526,14 @@ DocType: Task,Actual Start Date (via Time Logs),వాస్తవ ప్రా DocType: Stock Reconciliation Item,Before reconciliation,సయోధ్య ముందు apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},కు {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),పన్నులు మరియు ఆరోపణలు చేర్చబడింది (కంపెనీ కరెన్సీ) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,అంశం పన్ను రో {0} రకం పన్ను లేదా ఆదాయం వ్యయం లేదా విధింపదగిన యొక్క ఖాతా ఉండాలి +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,అంశం పన్ను రో {0} రకం పన్ను లేదా ఆదాయం వ్యయం లేదా విధింపదగిన యొక్క ఖాతా ఉండాలి DocType: Sales Order,Partly Billed,పాక్షికంగా గుర్తింపు పొందిన DocType: Item,Default BOM,డిఫాల్ట్ BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,తిరిగి రకం కంపెనీ పేరు నిర్ధారించడానికి దయచేసి apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,మొత్తం అద్భుతమైన ఆంట్ DocType: Time Log Batch,Total Hours,మొత్తం గంటలు DocType: Journal Entry,Printing Settings,ప్రింటింగ్ సెట్టింగ్స్ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},మొత్తం డెబిట్ మొత్తం క్రెడిట్ సమానంగా ఉండాలి. తేడా {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},మొత్తం డెబిట్ మొత్తం క్రెడిట్ సమానంగా ఉండాలి. తేడా {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,ఆటోమోటివ్ apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,డెలివరీ గమనిక DocType: Time Log,From Time,సమయం నుండి @@ -2573,7 +2579,7 @@ DocType: Purchase Invoice Item,Image View,చిత్రం చూడండి DocType: Issue,Opening Time,ప్రారంభ సమయం apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,నుండి మరియు అవసరమైన తేదీలు apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,సెక్యూరిటీస్ అండ్ కమోడిటీ ఎక్స్చేంజెస్ -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',వేరియంట్ కోసం మెజర్ అప్రమేయ యూనిట్ '{0}' మూస లో అదే ఉండాలి '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',వేరియంట్ కోసం మెజర్ అప్రమేయ యూనిట్ '{0}' మూస లో అదే ఉండాలి '{1}' DocType: Shipping Rule,Calculate Based On,బేస్డ్ న లెక్కించు DocType: Delivery Note Item,From Warehouse,గిడ్డంగి నుండి DocType: Purchase Taxes and Charges,Valuation and Total,వాల్యుయేషన్ మరియు మొత్తం @@ -2595,7 +2601,7 @@ DocType: Leave Application,Follow via Email,ఇమెయిల్ ద్వా DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,డిస్కౌంట్ మొత్తాన్ని తర్వాత పన్ను సొమ్ము apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,చైల్డ్ ఖాతా ఈ ఖాతా అవసరమయ్యారు. మీరు ఈ ఖాతా తొలగించలేరు. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,గాని లక్ష్యాన్ని అంశాల లేదా లక్ష్యం మొత్తం తప్పనిసరి -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},డిఫాల్ట్ BOM అంశం కోసం ఉంది {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},డిఫాల్ట్ BOM అంశం కోసం ఉంది {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,మొదటి పోస్టింగ్ తేదీ దయచేసి ఎంచుకోండి apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,తేదీ తెరవడం తేదీ మూసివేయడం ముందు ఉండాలి DocType: Leave Control Panel,Carry Forward,కుంటున్న @@ -2672,7 +2678,7 @@ DocType: Leave Type,Is Encash,Encash ఉంది DocType: Purchase Invoice,Mobile No,మొబైల్ లేవు DocType: Payment Tool,Make Journal Entry,జర్నల్ ఎంట్రీ చేయండి DocType: Leave Allocation,New Leaves Allocated,కొత్త ఆకులు కేటాయించిన -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,ప్రాజెక్టు వారీగా డేటా కొటేషన్ అందుబాటులో లేదు +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,ప్రాజెక్టు వారీగా డేటా కొటేషన్ అందుబాటులో లేదు DocType: Project,Expected End Date,ఊహించినది ముగింపు తేదీ DocType: Appraisal Template,Appraisal Template Title,అప్రైసల్ మూస శీర్షిక apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,కమర్షియల్స్ @@ -2720,6 +2726,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No., apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,ఒక రాయండి DocType: Offer Letter,Awaiting Response,రెస్పాన్స్ వేచిఉండి apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,పైన +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,సమయం లాగిన్ కస్టమర్లకు చెయ్యబడింది DocType: Salary Slip,Earning & Deduction,ఎర్నింగ్ & తీసివేత apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,ఖాతా {0} గ్రూప్ ఉండకూడదు apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,ఐచ్ఛికము. ఈ సెట్టింగ్ వివిధ లావాదేవీలలో ఫిల్టర్ ఉపయోగించబడుతుంది. @@ -2790,14 +2797,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,విజయవంతంగా ఈ కంపెనీకి సంబంధించిన అన్ని లావాదేవీలు తొలగించబడింది! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,తేదీ నాటికి apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,పరిశీలన -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,డిఫాల్ట్ వేర్హౌస్ స్టాక్ అంశం తప్పనిసరి. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,డిఫాల్ట్ వేర్హౌస్ స్టాక్ అంశం తప్పనిసరి. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},నెల జీతం చెల్లింపు {0} మరియు సంవత్సరం {1} DocType: Stock Settings,Auto insert Price List rate if missing,ఆటో చొప్పించు ధర జాబితా రేటు లేదు ఉంటే apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,మొత్తం చెల్లించిన మొత్తాన్ని ,Transferred Qty,బదిలీ ప్యాక్ చేసిన అంశాల apps/erpnext/erpnext/config/learn.py +11,Navigating,నావిగేట్ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,ప్లానింగ్ -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,సమయం లాగిన్ బ్యాచ్ చేయండి +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,సమయం లాగిన్ బ్యాచ్ చేయండి apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,జారి చేయబడిన DocType: Project,Total Billing Amount (via Time Logs),మొత్తం బిల్లింగ్ మొత్తం (టైమ్ దినచర్య ద్వారా) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,మేము ఈ అంశం అమ్మే @@ -2805,7 +2812,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,పరిమాణం 0 కన్నా ఎక్కువ ఉండాలి DocType: Journal Entry,Cash Entry,క్యాష్ ఎంట్రీ DocType: Sales Partner,Contact Desc,సంప్రదించండి desc -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","సాధారణం వంటి ఆకులు రకం, జబ్బుపడిన మొదలైనవి" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","సాధారణం వంటి ఆకులు రకం, జబ్బుపడిన మొదలైనవి" DocType: Email Digest,Send regular summary reports via Email.,ఇమెయిల్ ద్వారా సాధారణ సారాంశం నివేదికలు పంపండి. DocType: Brand,Item Manager,అంశం మేనేజర్ DocType: Cost Center,Add rows to set annual budgets on Accounts.,అకౌంట్స్ వార్షిక బడ్జెట్లు సెట్ వరుసలు జోడించండి. @@ -2820,7 +2827,7 @@ DocType: GL Entry,Party Type,పార్టీ రకం apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,ముడిపదార్ధాల ప్రధాన అంశం అదే ఉండకూడదు DocType: Item Attribute Value,Abbreviation,సంక్షిప్త apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,{0} పరిమితులు మించిపోయింది నుండి authroized లేదు -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,జీతం టెంప్లేట్ మాస్టర్. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,జీతం టెంప్లేట్ మాస్టర్. DocType: Leave Type,Max Days Leave Allowed,మాక్స్ డేస్ లీవ్ అనుమతించబడినవి apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,షాపింగ్ కార్ట్ సెట్ పన్ను రూల్ DocType: Payment Tool,Set Matching Amounts,సెట్ సరిపోలిక మొత్తంలో @@ -2833,7 +2840,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,లీ DocType: Stock Settings,Role Allowed to edit frozen stock,పాత్ర ఘనీభవించిన స్టాక్ సవరించడానికి అనుమతించబడినవి ,Territory Target Variance Item Group-Wise,భూభాగం టార్గెట్ విస్తృతి అంశం గ్రూప్-వైజ్ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,అన్ని కస్టమర్ సమూహాలు -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} తప్పనిసరి. బహుశా కరెన్సీ ఎక్స్ఛేంజ్ రికార్డు {1} {2} కోసం సృష్టించబడలేదు. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} తప్పనిసరి. బహుశా కరెన్సీ ఎక్స్ఛేంజ్ రికార్డు {1} {2} కోసం సృష్టించబడలేదు. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,పన్ను మూస తప్పనిసరి. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,ఖాతా {0}: మాతృ ఖాతా {1} ఉనికిలో లేదు DocType: Purchase Invoice Item,Price List Rate (Company Currency),ధర జాబితా రేటు (కంపెనీ కరెన్సీ) @@ -2853,8 +2860,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,అంశం వై ,Item-wise Price List Rate,అంశం వారీగా ధర జాబితా రేటు apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,సరఫరాదారు కొటేషన్ DocType: Quotation,In Words will be visible once you save the Quotation.,మీరు కొటేషన్ సేవ్ ఒకసారి వర్డ్స్ కనిపిస్తుంది. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} ఆగిపోయింది ఉంది -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},బార్కోడ్ {0} ఇప్పటికే అంశం ఉపయోగిస్తారు {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} ఆగిపోయింది ఉంది +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},బార్కోడ్ {0} ఇప్పటికే అంశం ఉపయోగిస్తారు {1} DocType: Lead,Add to calendar on this date,ఈ తేదీ క్యాలెండర్ జోడించండి apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,షిప్పింగ్ ఖర్చులు జోడించడం కోసం రూల్స్. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,రాబోయే ఈవెంట్స్ @@ -2880,8 +2887,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling, apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,కనీసం ఒక గిడ్డంగి తప్పనిసరి DocType: Serial No,Out of Warranty,వారంటీ బయటకు DocType: BOM Replace Tool,Replace,పునఃస్థాపించుము -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} సేల్స్ వాయిస్ వ్యతిరేకంగా {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,మెజర్ యొక్క డిఫాల్ట్ యూనిట్ నమోదు చేయండి +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} సేల్స్ వాయిస్ వ్యతిరేకంగా {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,మెజర్ యొక్క డిఫాల్ట్ యూనిట్ నమోదు చేయండి DocType: Purchase Invoice Item,Project Name,ప్రాజెక్ట్ పేరు DocType: Supplier,Mention if non-standard receivable account,మెన్షన్ ప్రామాణికం కాని స్వీకరించదగిన ఖాతా ఉంటే DocType: Journal Entry Account,If Income or Expense,ఆదాయం వ్యయం ఉంటే @@ -2906,7 +2913,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,ఫిస్కల్ ఇయర్: {0} చేస్తుంది ఉందో DocType: Currency Exchange,To Currency,కరెన్సీ DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,క్రింది వినియోగదారులకు బ్లాక్ రోజులు లీవ్ అప్లికేషన్స్ ఆమోదించడానికి అనుమతించు. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,ఖర్చు చెప్పడం రకాలు. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,ఖర్చు చెప్పడం రకాలు. DocType: Item,Taxes,పన్నులు apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,చెల్లింపు మరియు పంపిణీ DocType: Project,Default Cost Center,డిఫాల్ట్ ఖర్చు సెంటర్ @@ -2936,7 +2943,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},రో # {0}: సీరియల్ లేవు {1} తో సరిపోలడం లేదు {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,సాధారణం లీవ్ DocType: Batch,Batch ID,బ్యాచ్ ID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},గమనిక: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},గమనిక: {0} ,Delivery Note Trends,డెలివరీ గమనిక ట్రెండ్లులో apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,ఈ వారపు సారాంశం apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} వరుసగా కొనుగోలు లేదా ఉప-ఒప్పంద అంశం ఉండాలి {1} @@ -2976,6 +2983,7 @@ DocType: Project Task,Pending Review,సమీక్ష పెండింగ్ apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,చెల్లించడానికి ఇక్కడ క్లిక్ చేయండి DocType: Task,Total Expense Claim (via Expense Claim),(ఖర్చు చెప్పడం ద్వారా) మొత్తం ఖర్చు చెప్పడం apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,కస్టమర్ ఐడి +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,మార్క్ కరువవడంతో apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,సమయం సమయం నుండి కంటే ఎక్కువ ఉండాలి కు DocType: Journal Entry Account,Exchange Rate,ఎక్స్చేంజ్ రేట్ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,అమ్మకాల ఆర్డర్ {0} సమర్పించిన లేదు @@ -3023,7 +3031,7 @@ DocType: Item Group,Default Expense Account,డిఫాల్ట్ వ్య DocType: Employee,Notice (days),నోటీసు (రోజులు) DocType: Tax Rule,Sales Tax Template,సేల్స్ టాక్స్ మూస DocType: Employee,Encashment Date,ఎన్క్యాష్మెంట్ తేదీ -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","ఓచర్ వ్యతిరేకంగా రకం కొనుగోలు ఆర్డర్ ఒకటి, కొనుగోలు వాయిస్ లేదా జర్నల్ ఎంట్రీ ఉండాలి" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","ఓచర్ వ్యతిరేకంగా రకం కొనుగోలు ఆర్డర్ ఒకటి, కొనుగోలు వాయిస్ లేదా జర్నల్ ఎంట్రీ ఉండాలి" DocType: Account,Stock Adjustment,స్టాక్ అడ్జస్ట్మెంట్ apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},డిఫాల్ట్ కార్యాచరణ ఖర్చు కార్యాచరణ పద్ధతి ఉంది - {0} DocType: Production Order,Planned Operating Cost,ప్రణాళిక నిర్వహణ ఖర్చు @@ -3077,6 +3085,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,ఎంట్రీ ఆఫ్ వ్రాయండి DocType: BOM,Rate Of Materials Based On,రేటు పదార్థాల బేస్డ్ న apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,మద్దతు Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,అన్నింటినీ apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},కంపెనీ గిడ్డంగుల్లో లేదు {0} DocType: POS Profile,Terms and Conditions,నిబంధనలు మరియు షరతులు apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},తేదీ ఫిస్కల్ ఇయర్ లోపల ఉండాలి. = తేదీ ఊహిస్తే {0} @@ -3098,7 +3107,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'",డిఫాల్ట్ గా ఈ ఆర్థిక సంవత్సరం సెట్ 'డిఫాల్ట్ గా సెట్' పై క్లిక్ apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),మద్దతు టపా కొరకు సెటప్ ఇన్కమింగ్ సర్వర్. (ఉదా support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,కొరత ప్యాక్ చేసిన అంశాల -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,అంశం వేరియంట్ {0} అదే లక్షణాలు తో ఉంది +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,అంశం వేరియంట్ {0} అదే లక్షణాలు తో ఉంది DocType: Salary Slip,Salary Slip,వేతనం స్లిప్ apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,తేదీ 'అవసరం DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","ప్యాకేజీలు అందజేసిన కోసం స్లిప్స్ ప్యాకింగ్ ఉత్పత్తి. ప్యాకేజీ సంఖ్య, ప్యాకేజీ విషయాలు మరియు దాని బరువు తెలియజేయడానికి వాడతారు." @@ -3146,7 +3155,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,చూ DocType: Item Attribute Value,Attribute Value,విలువ లక్షణం apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","ఇమెయిల్ ఐడి ఇప్పటికే ఉనికిలో ఉంది, ప్రత్యేకంగా ఉండాలి {0}" ,Itemwise Recommended Reorder Level,Itemwise క్రమాన్ని స్థాయి సిఫార్సు -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,ముందుగా {0} దయచేసి ఎంచుకోండి +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,ముందుగా {0} దయచేసి ఎంచుకోండి DocType: Features Setup,To get Item Group in details table,వివరాలు పట్టికలో అంశం సమూహం పొందుటకు apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,అంశం బ్యాచ్ {0} {1} గడువు ముగిసింది. DocType: Sales Invoice,Commission,కమిషన్ @@ -3190,7 +3199,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,అత్యుత్తమ వోచర్లు పొందండి DocType: Warranty Claim,Resolved By,ద్వారా పరిష్కరించిన DocType: Appraisal,Start Date,ప్రారంబపు తేది -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,ఒక కాలానికి ఆకులు కేటాయించుటకు. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,ఒక కాలానికి ఆకులు కేటాయించుటకు. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,చెక్కుల మరియు డిపాజిట్లు తప్పుగా క్లియర్ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,ధ్రువీకరించడం ఇక్కడ క్లిక్ చేయండి apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,ఖాతా {0}: మీరు పేరెంట్ ఖాతా గా కేటాయించలేరు @@ -3210,7 +3219,7 @@ DocType: Employee,Educational Qualification,అర్హతలు DocType: Workstation,Operating Costs,నిర్వహణ వ్యయాలు DocType: Employee Leave Approver,Employee Leave Approver,ఉద్యోగి సెలవు అప్రూవర్గా apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} విజయవంతంగా మా వార్తా జాబితా జతచేయబడింది. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},రో {0}: ఒక క్రమాన్ని ఎంట్రీ ఇప్పటికే ఈ గిడ్డంగి కోసం ఉంది {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},రో {0}: ఒక క్రమాన్ని ఎంట్రీ ఇప్పటికే ఈ గిడ్డంగి కోసం ఉంది {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","కొటేషన్ చేయబడింది ఎందుకంటే, కోల్పోయిన డిక్లేర్ కాదు." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,కొనుగోలు మాస్టర్ మేనేజర్ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,ఆర్డర్ {0} సమర్పించాలి ఉత్పత్తి @@ -3234,7 +3243,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,వాయిస్ {0} ఇప్పటికే సమర్పించబడింది సేల్స్ apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,పూర్తిచేసే తేదీ DocType: Purchase Invoice Item,Amount (Company Currency),మొత్తం (కంపెనీ కరెన్సీ) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,సంస్థ యూనిట్ (విభాగం) మాస్టర్. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,సంస్థ యూనిట్ (విభాగం) మాస్టర్. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,చెల్లే మొబైల్ nos నమోదు చేయండి DocType: Budget Detail,Budget Detail,బడ్జెట్ వివరాలు apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,పంపే ముందు సందేశాన్ని నమోదు చేయండి @@ -3250,13 +3259,13 @@ DocType: Purchase Receipt Item,Received and Accepted,అందుకున్న ,Serial No Service Contract Expiry,సీరియల్ లేవు సర్వీస్ కాంట్రాక్ట్ గడువు DocType: Item,Unit of Measure Conversion,కొలత మార్పిడి యూనిట్ apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Employee మారలేదు -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,మీరు క్రెడిట్ మరియు అదే సమయంలో అదే అకౌంటు డెబిట్ కాదు +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,మీరు క్రెడిట్ మరియు అదే సమయంలో అదే అకౌంటు డెబిట్ కాదు DocType: Naming Series,Help HTML,సహాయం HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},100% ఉండాలి కేటాయించిన మొత్తం వెయిటేజీ. ఇది {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},{0} అంశం కోసం దాటింది over- కోసం భత్యం {1} DocType: Address,Name of person or organization that this address belongs to.,ఈ చిరునామాకు చెందిన వ్యక్తి లేదా సంస్థ యొక్క పేరు. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,మీ సరఫరాదారులు -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,అమ్మకాల ఆర్డర్ చేసిన ఓడిపోయింది సెట్ చెయ్యబడదు. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,అమ్మకాల ఆర్డర్ చేసిన ఓడిపోయింది సెట్ చెయ్యబడదు. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,మరో జీతం నిర్మాణం {0} ఉద్యోగికి చురుకుగా ఉంది {1}. దాని స్థితి 'క్రియారహిత' కొనసాగాలని నిర్ధారించుకోండి. DocType: Purchase Invoice,Contact,సంప్రదించండి apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,నుండి అందుకున్న @@ -3266,11 +3275,11 @@ DocType: Item,Has Serial No,సీరియల్ లేవు ఉంది DocType: Employee,Date of Issue,జారీ చేసిన తేది apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: నుండి {0} కోసం {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},రో # {0}: అంశాన్ని సెట్ సరఫరాదారు {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,అంశం {1} జత వెబ్సైట్ చిత్రం {0} కనుగొనబడలేదు +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,అంశం {1} జత వెబ్సైట్ చిత్రం {0} కనుగొనబడలేదు DocType: Issue,Content Type,కంటెంట్ రకం apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,కంప్యూటర్ DocType: Item,List this Item in multiple groups on the website.,వెబ్ సైట్ బహుళ సమూహాలు ఈ అంశం జాబితా. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,ఇతర కరెన్సీ ఖాతాల అనుమతించటానికి మల్టీ కరెన్సీ ఎంపికను తనిఖీ చేయండి +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,ఇతర కరెన్సీ ఖాతాల అనుమతించటానికి మల్టీ కరెన్సీ ఎంపికను తనిఖీ చేయండి apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,అంశం: {0} వ్యవస్థ ఉనికిలో లేదు apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,మీరు స్తంభింపచేసిన విలువ సెట్ అధికారం లేదు DocType: Payment Reconciliation,Get Unreconciled Entries,Unreconciled ఎంట్రీలు పొందండి @@ -3280,14 +3289,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,ఇది DocType: Delivery Note,To Warehouse,గిడ్డంగి apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},ఖాతా {0} ఆర్థిక సంవత్సరానికి ఒకసారి కంటే ఎక్కువ నమోదు చేయబడింది {1} ,Average Commission Rate,సగటు కమిషన్ రేటు -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'అవును' ఉంటుంది కాని స్టాక్ అంశం కోసం కాదు 'సీరియల్ చెప్పడం' +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'అవును' ఉంటుంది కాని స్టాక్ అంశం కోసం కాదు 'సీరియల్ చెప్పడం' apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,హాజరు భవిష్యత్తులో తేదీలు కోసం గుర్తించబడవు DocType: Pricing Rule,Pricing Rule Help,ధర రూల్ సహాయం DocType: Purchase Taxes and Charges,Account Head,ఖాతా హెడ్ apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,అంశాల దిగిన ఖర్చు లెక్కించేందుకు అదనపు ఖర్చులు అప్డేట్ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,ఎలక్ట్రికల్ DocType: Stock Entry,Total Value Difference (Out - In),మొత్తం విలువ తేడా (అవుట్ - ఇన్) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,రో {0}: ఎక్స్చేంజ్ రేట్ తప్పనిసరి +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,రో {0}: ఎక్స్చేంజ్ రేట్ తప్పనిసరి apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},వాడుకరి ID ఉద్యోగి సెట్ {0} DocType: Stock Entry,Default Source Warehouse,డిఫాల్ట్ మూల వేర్హౌస్ DocType: Item,Customer Code,కస్టమర్ కోడ్ @@ -3306,15 +3315,15 @@ DocType: Notification Control,Sales Invoice Message,సేల్స్ వాయ apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,ఖాతా {0} మూసివేయడం రకం బాధ్యత / ఈక్విటీ ఉండాలి DocType: Authorization Rule,Based On,ఆధారంగా DocType: Sales Order Item,Ordered Qty,క్రమ ప్యాక్ చేసిన అంశాల -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,అంశం {0} నిలిపివేయబడింది +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,అంశం {0} నిలిపివేయబడింది DocType: Stock Settings,Stock Frozen Upto,స్టాక్ ఘనీభవించిన వరకు apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},నుండి మరియు కాలం పునరావృత తప్పనిసరి తేదీలు కాలం {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,ప్రాజెక్టు చర్య / పని. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,జీతం స్లిప్స్ రూపొందించండి +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,జీతం స్లిప్స్ రూపొందించండి apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}",వర్తించే ఎంపిక ఉంది ఉంటే కొనుగోలు తనిఖీ చెయ్యాలి {0} apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,డిస్కౌంట్ 100 కంటే తక్కువ ఉండాలి DocType: Purchase Invoice,Write Off Amount (Company Currency),మొత్తం ఆఫ్ వ్రాయండి (కంపెనీ కరెన్సీ) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,రో # {0}: క్రమాన్ని పరిమాణం సెట్ చెయ్యండి +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,రో # {0}: క్రమాన్ని పరిమాణం సెట్ చెయ్యండి DocType: Landed Cost Voucher,Landed Cost Voucher,అడుగుపెట్టాయి ఖర్చు ఓచర్ apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},సెట్ దయచేసి {0} DocType: Purchase Invoice,Repeat on Day of Month,నెల రోజు రిపీట్ @@ -3366,7 +3375,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,ప్రోగ్రెస్ వేర్హౌస్ డిఫాల్ట్ వర్క్ apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,అకౌంటింగ్ లావాదేవీలకు డిఫాల్ట్ సెట్టింగులను. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,ఊహించినది తేదీ మెటీరియల్ అభ్యర్థన తేదీ ముందు ఉండరాదు -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,అంశం {0} సేల్స్ అంశం ఉండాలి +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,అంశం {0} సేల్స్ అంశం ఉండాలి DocType: Naming Series,Update Series Number,నవీకరణ సిరీస్ సంఖ్య DocType: Account,Equity,ఈక్విటీ DocType: Sales Order,Printing Details,ప్రింటింగ్ వివరాలు @@ -3418,7 +3427,7 @@ DocType: Task,Review Date,రివ్యూ తేదీ DocType: Purchase Invoice,Advance Payments,అడ్వాన్స్ చెల్లింపులు DocType: Purchase Taxes and Charges,On Net Total,నికర మొత్తం apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,{0} వరుసగా టార్గెట్ గిడ్డంగి ఉత్పత్తి ఆర్డర్ అదే ఉండాలి -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,అనుమతి చెల్లింపు టూల్ ఉపయోగించడానికి +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,అనుమతి చెల్లింపు టూల్ ఉపయోగించడానికి apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,% S పునరావృత పేర్కొనబడలేదు 'నోటిఫికేషన్ ఇమెయిల్ చిరునామాలు' apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,కరెన్సీ కొన్ని ఇతర కరెన్సీ ఉపయోగించి ఎంట్రీలు తరువాత మారలేదు DocType: Company,Round Off Account,ఖాతా ఆఫ్ రౌండ్ @@ -3441,7 +3450,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,అంశం యొక్క మొత్తము ముడి పదార్థాల ఇచ్చిన పరిమాణంలో నుండి repacking / తయారీ తర్వాత పొందిన DocType: Payment Reconciliation,Receivable / Payable Account,స్వీకరించదగిన / చెల్లించవలసిన ఖాతా DocType: Delivery Note Item,Against Sales Order Item,అమ్మకాల ఆర్డర్ అంశం వ్యతిరేకంగా -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},గుణానికి విలువ లక్షణం రాయండి {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},గుణానికి విలువ లక్షణం రాయండి {0} DocType: Item,Default Warehouse,డిఫాల్ట్ వేర్హౌస్ DocType: Task,Actual End Date (via Time Logs),వాస్తవిక ముగింపు తేదీ (టైమ్ దినచర్య ద్వారా) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},బడ్జెట్ గ్రూప్ ఖాతా వ్యతిరేకంగా కేటాయించిన సాధ్యం కాదు {0} @@ -3466,10 +3475,10 @@ DocType: Lead,Blog Subscriber,బ్లాగు సబ్స్క్రయి apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,విలువలు ఆధారంగా లావాదేవీలు పరిమితం చేయడానికి నిబంధనలు సృష్టించు. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","ఎంచుకుంటే, మొత్తం no. వర్కింగ్ డేస్ సెలవులు కలిగి ఉంటుంది, మరియు ఈ జీతం రోజుకి విలువ తగ్గిస్తుంది" DocType: Purchase Invoice,Total Advance,మొత్తం అడ్వాన్స్ -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,ప్రోసెసింగ్ పేరోల్ +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,ప్రోసెసింగ్ పేరోల్ DocType: Opportunity Item,Basic Rate,ప్రాథమిక రేటు DocType: GL Entry,Credit Amount,క్రెడిట్ మొత్తం -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,లాస్ట్ గా సెట్ +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,లాస్ట్ గా సెట్ apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,చెల్లింపు రసీదు గమనిక DocType: Supplier,Credit Days Based On,క్రెడిట్ డేస్ ఆధారంగా DocType: Tax Rule,Tax Rule,పన్ను రూల్ @@ -3499,7 +3508,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,అంగీకరించి apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} చేస్తుంది ఉందో apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,వినియోగదారుడు ఎదిగింది బిల్లులు. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,ప్రాజెక్ట్ ఐడి -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},రో లేవు {0}: మొత్తం ఖర్చు చెప్పడం {1} వ్యతిరేకంగా మొత్తం పెండింగ్ కంటే ఎక్కువ ఉండకూడదు. పెండింగ్ మొత్తంలో {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},రో లేవు {0}: మొత్తం ఖర్చు చెప్పడం {1} వ్యతిరేకంగా మొత్తం పెండింగ్ కంటే ఎక్కువ ఉండకూడదు. పెండింగ్ మొత్తంలో {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} చందాదారులు జోడించారు DocType: Maintenance Schedule,Schedule,షెడ్యూల్ DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","ఈ ఖర్చు సెంటర్ బడ్జెట్ నిర్వచించండి. బడ్జెట్ చర్య సెట్, చూడండి "కంపెనీ జాబితా"" @@ -3560,19 +3569,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS ప్రొఫైల్ DocType: Payment Gateway Account,Payment URL Message,చెల్లింపు URL సందేశం apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","సెట్ బడ్జెట్లు, లక్ష్యాలను మొదలైనవి కోసం కాలికోద్యోగం" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,రో {0}: చెల్లింపు మొత్తం విశిష్ట మొత్తానికన్నా ఎక్కువ ఉండకూడదు +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,రో {0}: చెల్లింపు మొత్తం విశిష్ట మొత్తానికన్నా ఎక్కువ ఉండకూడదు apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,చెల్లించని మొత్తం -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,సమయం లాగిన్ బిల్ చేయగల కాదు -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","{0} అంశం ఒక టెంప్లేట్, దాని వైవిధ్యాలు ఒకటి ఎంచుకోండి దయచేసి" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,సమయం లాగిన్ బిల్ చేయగల కాదు +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","{0} అంశం ఒక టెంప్లేట్, దాని వైవిధ్యాలు ఒకటి ఎంచుకోండి దయచేసి" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,కొనుగోలుదారు apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,నికర పే ప్రతికూల ఉండకూడదు -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,మానవీయంగా వ్యతిరేకంగా వోచర్లు నమోదు చేయండి +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,మానవీయంగా వ్యతిరేకంగా వోచర్లు నమోదు చేయండి DocType: SMS Settings,Static Parameters,స్టాటిక్ పారామితులు DocType: Purchase Order,Advance Paid,అడ్వాన్స్ చెల్లింపు DocType: Item,Item Tax,అంశం పన్ను apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,సరఫరాదారు మెటీరియల్ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,ఎక్సైజ్ వాయిస్ DocType: Expense Claim,Employees Email Id,ఉద్యోగులు ఇమెయిల్ ఐడి +DocType: Employee Attendance Tool,Marked Attendance,గుర్తించ హాజరు apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,ప్రస్తుత బాధ్యతలు apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,మాస్ SMS మీ పరిచయాలను పంపండి DocType: Purchase Taxes and Charges,Consider Tax or Charge for,పన్ను లేదా ఛార్జ్ పరిగణించండి @@ -3595,7 +3605,7 @@ DocType: Item Attribute,Numeric Values,సంఖ్యా విలువలు apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,లోగో అటాచ్ DocType: Customer,Commission Rate,కమిషన్ రేటు apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,వేరియంట్ చేయండి -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,శాఖ బ్లాక్ సెలవు అప్లికేషన్లు. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,శాఖ బ్లాక్ సెలవు అప్లికేషన్లు. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,కార్ట్ ఖాళీగా ఉంది DocType: Production Order,Actual Operating Cost,వాస్తవ ఆపరేటింగ్ వ్యయం apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,రూట్ సంపాదకీయం సాధ్యం కాదు. @@ -3614,7 +3624,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,పరిమాణం ఈ స్థాయి దిగువకు పడిపోతే ఉంటే స్వయంచాలకంగా మెటీరియల్ అభ్యర్థన సృష్టించడానికి ,Item-wise Purchase Register,అంశం వారీగా కొనుగోలు నమోదు DocType: Batch,Expiry Date,గడువు తీరు తేదీ -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","క్రమాన్ని స్థాయి సెట్, అంశం కొనుగోలు అంశం లేదా తయారీ అంశం ఉండాలి" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","క్రమాన్ని స్థాయి సెట్, అంశం కొనుగోలు అంశం లేదా తయారీ అంశం ఉండాలి" ,Supplier Addresses and Contacts,సరఫరాదారు చిరునామాలు మరియు కాంటాక్ట్స్ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,మొదటి వర్గం ఎంచుకోండి దయచేసి apps/erpnext/erpnext/config/projects.py +18,Project master.,ప్రాజెక్టు మాస్టర్. diff --git a/erpnext/translations/th.csv b/erpnext/translations/th.csv index 969c154feb..f1bb97216c 100644 --- a/erpnext/translations/th.csv +++ b/erpnext/translations/th.csv @@ -164,14 +164,14 @@ DocType: Journal Entry Account,Credit in Company Currency,เครดิตส DocType: Delivery Note,Installation Status,สถานะการติดตั้ง apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},จำนวนสินค้าที่ผ่านการตรวจรับ + จำนวนสินค้าที่ไม่ผ่านการตรวจรับ จะต้องมีปริมาณเท่ากับ จำนวน สืนค้าที่ได้รับ สำหรับ รายการ {0} DocType: Item,Supply Raw Materials for Purchase,วัตถุดิบสำหรับการซื้อวัสดุสิ้นเปลือง -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,รายการ {0} จะต้องมี การสั่งซื้อ สินค้า +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,รายการ {0} จะต้องมี การสั่งซื้อ สินค้า DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","ดาวน์โหลดแม่แบบกรอกข้อมูลที่เหมาะสมและแนบไฟล์ที่ถูกแก้ไข ทุกวันและการรวมกันของพนักงานในระยะเวลาที่เลือกจะมาในแม่แบบที่มีการบันทึกการเข้าร่วมที่มีอยู่" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,รายการที่ {0} ไม่ได้ใช้งาน หรือจุดสิ้นสุดของ ชีวิต ได้ถึง DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,จะมีการปรับปรุงหลังจากที่ใบแจ้งหนี้การขายมีการส่ง -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included",จะรวมถึง ภาษี ในแถว {0} ใน อัตรา รายการ ภาษี ใน แถว {1} จะต้องรวม -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,การตั้งค่าสำหรับ โมดูล ทรัพยากรบุคคล +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included",จะรวมถึง ภาษี ในแถว {0} ใน อัตรา รายการ ภาษี ใน แถว {1} จะต้องรวม +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,การตั้งค่าสำหรับ โมดูล ทรัพยากรบุคคล DocType: SMS Center,SMS Center,ศูนย์ SMS DocType: BOM Replace Tool,New BOM,BOM ใหม่ apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,บันทึกเวลา Batch สำหรับการเรียกเก็บเงิน @@ -199,7 +199,7 @@ DocType: Offer Letter,Select Terms and Conditions,เลือกข้อตก DocType: Production Planning Tool,Sales Orders,ใบสั่งขาย DocType: Purchase Taxes and Charges,Valuation,การประเมินค่า ,Purchase Order Trends,แนวโน้มการสั่งซื้อ -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,จัดสรรใบสำหรับปี +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,จัดสรรใบสำหรับปี DocType: Earning Type,Earning Type,รายได้ประเภท DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,การวางแผนความจุปิดการใช้งานและการติดตามเวลา DocType: Bank Reconciliation,Bank Account,บัญชีเงินฝาก @@ -237,7 +237,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,สเปกเว็บไซต์รายการ DocType: Payment Tool,Reference No,อ้างอิง apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,ฝากที่ถูกบล็อก -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},รายการ {0} ได้ ถึงจุดสิ้นสุด ของ ชีวิตบน {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},รายการ {0} ได้ ถึงจุดสิ้นสุด ของ ชีวิตบน {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,ประจำปี DocType: Stock Reconciliation Item,Stock Reconciliation Item,สต็อกสินค้าสมานฉันท์ DocType: Stock Entry,Sales Invoice No,ขายใบแจ้งหนี้ไม่มี @@ -249,7 +249,7 @@ DocType: Item,Minimum Order Qty,จำนวนสั่งซื้อขั้ DocType: Pricing Rule,Supplier Type,ประเภทผู้ผลิต DocType: Item,Publish in Hub,เผยแพร่ใน Hub ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,รายการ {0} จะถูกยกเลิก +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,รายการ {0} จะถูกยกเลิก apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,ขอวัสดุ DocType: Bank Reconciliation,Update Clearance Date,อัพเดทวันที่ Clearance DocType: Item,Purchase Details,รายละเอียดการซื้อ @@ -261,11 +261,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,จำนวนปฏิเส DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","สนามที่มีอยู่ในหมายเหตุส่งใบเสนอราคา, ใบแจ้งหนี้การขาย, การสั่งซื้อการขาย" DocType: SMS Settings,SMS Sender Name,ส่ง SMS ชื่อ DocType: Contact,Is Primary Contact,ติดต่อหลักคือ +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,เวลาเข้าสู่ระบบได้รับการเรียกเก็บเงินสำหรับ batched DocType: Notification Control,Notification Control,ควบคุมการแจ้งเตือน DocType: Lead,Suggestions,ข้อเสนอแนะ DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,กำหนดงบประมาณกลุ่มฉลาดรายการในมณฑลนี้ คุณยังสามารถรวมฤดูกาลโดยการตั้งค่าการกระจาย apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},กรุณากรอกตัวอักษรกลุ่มบัญชีผู้ปกครองสำหรับคลังสินค้า {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},การชำระเงินกับ {0} {1} ไม่สามารถจะสูงกว่าจำนวนเงินที่โดดเด่น {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},การชำระเงินกับ {0} {1} ไม่สามารถจะสูงกว่าจำนวนเงินที่โดดเด่น {2} DocType: Supplier,Address HTML,ที่อยู่ HTML DocType: Lead,Mobile No.,เบอร์มือถือ DocType: Maintenance Schedule,Generate Schedule,สร้างตาราง @@ -282,7 +283,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,ซิงค์กับฮับ apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,รหัสผ่านผิด DocType: Item,Variant Of,แตกต่างจาก -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,รายการ {0} จะต้อง บริการ รายการ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',เสร็จสมบูรณ์จำนวนไม่สามารถจะสูงกว่า 'จำนวนการผลิต' DocType: Period Closing Voucher,Closing Account Head,ปิดหัวบัญชี DocType: Employee,External Work History,ประวัติการทำงานภายนอก @@ -294,10 +294,10 @@ DocType: Newsletter,Newsletter,จดหมายข่าว DocType: Stock Settings,Notify by Email on creation of automatic Material Request,แจ้งทางอีเมล์เมื่อการสร้างการร้องขอวัสดุโดยอัตโนมัติ DocType: Journal Entry,Multi Currency,หลายสกุลเงิน DocType: Payment Reconciliation Invoice,Invoice Type,ประเภทใบแจ้งหนี้ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,หมายเหตุจัดส่งสินค้า +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,หมายเหตุจัดส่งสินค้า apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,การตั้งค่าภาษี apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,เข้าชำระเงินได้รับการแก้ไขหลังจากที่คุณดึงมัน กรุณาดึงมันอีกครั้ง -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} ได้บันทึกเป็นครั้งที่สองใน รายการ ภาษี +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} ได้บันทึกเป็นครั้งที่สองใน รายการ ภาษี apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,สรุปในสัปดาห์นี้และกิจกรรมที่ค้างอยู่ DocType: Workstation,Rent Cost,ต้นทุนการ ให้เช่า apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,กรุณาเลือกเดือนและปี @@ -308,7 +308,7 @@ DocType: Shipping Rule,Valid for Countries,ที่ถูกต้องสำ DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","ทุก สาขา ที่เกี่ยวข้องกับ การนำเข้า เช่น สกุลเงิน อัตราการแปลง ทั้งหมด นำเข้า นำเข้า อื่น ๆ รวมใหญ่ ที่มีอยู่ใน การซื้อ ใบเสร็จรับเงิน ใบเสนอราคา ของผู้ผลิต , การสั่งซื้อ ใบแจ้งหนี้ ใบสั่งซื้อ ฯลฯ" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,รายการนี้เป็นแม่แบบและไม่สามารถนำมาใช้ในการทำธุรกรรม คุณลักษณะสินค้าจะถูกคัดลอกไปสู่สายพันธุ์เว้นแต่ 'ไม่คัดลอก' ถูกตั้งค่า apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,ยอดสั่งซื้อรวมถือว่า -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).",การแต่งตั้ง พนักงาน ของคุณ (เช่น ซีอีโอ ผู้อำนวยการ ฯลฯ ) +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).",การแต่งตั้ง พนักงาน ของคุณ (เช่น ซีอีโอ ผู้อำนวยการ ฯลฯ ) apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,กรุณากรอก ' ทำซ้ำ ในวัน เดือน ' ค่าของฟิลด์ DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,อัตราที่สกุลเงินลูกค้าจะแปลงเป็นสกุลเงินหลักของลูกค้า DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","ที่มีจำหน่ายใน BOM , หมายเหตุ การจัดส่ง ใบแจ้งหนี้ การซื้อ , การผลิต สั่งซื้อ สั่ง ซื้อ รับซื้อ , ขายใบแจ้งหนี้ การขายสินค้า สต็อก เข้า Timesheet" @@ -357,7 +357,7 @@ DocType: Workstation,Consumable Cost,ค่าใช้จ่ายที่ ส apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) จะต้องมีบทบาท 'ออกอนุมัติ' DocType: Purchase Receipt,Vehicle Date,วันที่ยานพาหนะ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,การแพทย์ -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,เหตุผล สำหรับการสูญเสีย +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,เหตุผล สำหรับการสูญเสีย apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},เวิร์คสเตชั่จะปิดทำการในวันที่ต่อไปนี้เป็นรายชื่อต่อวันหยุด: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,โอกาส DocType: Employee,Single,เดียว @@ -385,14 +385,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,พันธมิตรช่องทาง DocType: Account,Old Parent,ผู้ปกครองเก่า DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,ปรับแต่งข้อความเกริ่นนำที่จะไปเป็นส่วนหนึ่งของอีเมลที่ แต่ละรายการมีข้อความเกริ่นนำแยก +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),ไม่รวมถึงสัญลักษณ์ (อดีต. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,ผู้จัดการฝ่ายขายปริญญาโท apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,การตั้งค่าโดยรวม สำหรับกระบวนการผลิตทั้งหมด DocType: Accounts Settings,Accounts Frozen Upto,บัญชีถูกแช่แข็งจนถึง DocType: SMS Log,Sent On,ส่ง -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,แอตทริบิวต์ {0} เลือกหลายครั้งในคุณสมบัติตาราง +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,แอตทริบิวต์ {0} เลือกหลายครั้งในคุณสมบัติตาราง DocType: HR Settings,Employee record is created using selected field. ,ระเบียนของพนักงานจะถูกสร้างขึ้นโดยใช้เขตข้อมูลที่เลือก DocType: Sales Order,Not Applicable,ไม่สามารถใช้งาน -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,นาย ฮอลิเดย์ +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,นาย ฮอลิเดย์ DocType: Material Request Item,Required Date,วันที่ที่ต้องการ DocType: Delivery Note,Billing Address,ที่อยู่การเรียกเก็บเงิน apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,กรุณากรอก รหัสสินค้า @@ -428,7 +429,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,กรุณากรอก คลังสินค้า ที่ ขอ วัสดุ จะ ได้รับการเลี้ยงดู DocType: Production Order,Additional Operating Cost,เพิ่มเติมต้นทุนการดำเนินงาน apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,เครื่องสำอาง -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items",ที่จะ ผสาน คุณสมบัติต่อไปนี้ จะต้อง เหมือนกันสำหรับ ทั้งสองรายการ +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items",ที่จะ ผสาน คุณสมบัติต่อไปนี้ จะต้อง เหมือนกันสำหรับ ทั้งสองรายการ DocType: Shipping Rule,Net Weight,ปริมาณสุทธิ DocType: Employee,Emergency Phone,โทรศัพท์ ฉุกเฉิน ,Serial No Warranty Expiry,อนุกรมหมดอายุไม่มีการรับประกัน @@ -486,17 +487,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,เรียกเก็บเงินและสถานะการจัดส่ง apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,ทำซ้ำลูกค้า DocType: Leave Control Panel,Allocate,จัดสรร -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,ขายกลับ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,ขายกลับ DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,เลือกขายที่คุณต้องการที่จะสร้างคำสั่งการผลิตสั่งซื้อ DocType: Item,Delivered by Supplier (Drop Ship),จัดส่งโดยผู้ผลิต (Drop Ship) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,ส่วนประกอบเงินเดือน +apps/erpnext/erpnext/config/hr.py +128,Salary components.,ส่วนประกอบเงินเดือน apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,ฐานข้อมูลของลูกค้าที่มีศักยภาพ DocType: Authorization Rule,Customer or Item,ลูกค้าหรือรายการ apps/erpnext/erpnext/config/crm.py +17,Customer database.,ฐานข้อมูลลูกค้า DocType: Quotation,Quotation To,ใบเสนอราคาเพื่อ DocType: Lead,Middle Income,มีรายได้ปานกลาง apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),เปิด ( Cr ) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,เริ่มต้นหน่วยวัดสำหรับรายการ {0} ไม่สามารถเปลี่ยนแปลงได้โดยตรงเพราะคุณได้ทำแล้วการทำธุรกรรมบาง (s) กับ UOM อื่น คุณจะต้องสร้างรายการใหม่ที่จะใช้ที่แตกต่างกันเริ่มต้น UOM +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,เริ่มต้นหน่วยวัดสำหรับรายการ {0} ไม่สามารถเปลี่ยนแปลงได้โดยตรงเพราะคุณได้ทำแล้วการทำธุรกรรมบาง (s) กับ UOM อื่น คุณจะต้องสร้างรายการใหม่ที่จะใช้ที่แตกต่างกันเริ่มต้น UOM apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,จำนวนเงินที่จัดสรร ไม่สามารถ ลบ DocType: Purchase Order Item,Billed Amt,จำนวนจำนวนมากที่สุด DocType: Warehouse,A logical Warehouse against which stock entries are made.,โกดังตรรกะกับที่รายการหุ้นที่ทำ @@ -515,14 +516,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,ภาษีการขายแ DocType: Employee,Organization Profile,องค์กร รายละเอียด apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,กรุณา ติดตั้ง ชุด หมายเลข เพื่อ เข้าร่วม ผ่าน การตั้งค่า > หมายเลข ซีรีส์ DocType: Employee,Reason for Resignation,เหตุผลในการลาออก -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,แม่แบบสำหรับ การประเมิน ผลการปฏิบัติงาน +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,แม่แบบสำหรับ การประเมิน ผลการปฏิบัติงาน DocType: Payment Reconciliation,Invoice/Journal Entry Details,ใบแจ้งหนี้ / วารสารรายละเอียดการเข้า apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} ' {1} ' ไม่ได้อยู่ใน ปีงบประมาณ {2} DocType: Buying Settings,Settings for Buying Module,การตั้งค่าสำหรับโมดุลการซื้อ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,กรุณาใส่ใบเสร็จรับเงินครั้งแรก DocType: Buying Settings,Supplier Naming By,ซัพพลายเออร์ที่ตั้งชื่อตาม DocType: Activity Type,Default Costing Rate,เริ่มต้นอัตราการคิดต้นทุน -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,กำหนดการซ่อมบำรุง +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,กำหนดการซ่อมบำรุง apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","แล้วกฎราคาจะถูกกรองออกขึ้นอยู่กับลูกค้ากลุ่มลูกค้า, มณฑล, ผู้ผลิต, ผู้ผลิตประเภทแคมเปญพันธมิตรการขายอื่น ๆ" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,เปลี่ยนสุทธิในสินค้าคงคลัง DocType: Employee,Passport Number,หมายเลขหนังสือเดินทาง @@ -561,7 +562,7 @@ DocType: Purchase Invoice,Quarterly,ทุกไตรมาส DocType: Selling Settings,Delivery Note Required,หมายเหตุจัดส่งสินค้าที่จำเป็น DocType: Sales Order Item,Basic Rate (Company Currency),อัตราขั้นพื้นฐาน (สกุลเงินบริษัท ) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush วัตถุดิบที่ใช้ใน -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,กรุณากรอก รายละเอียดของรายการ +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,กรุณากรอก รายละเอียดของรายการ DocType: Purchase Receipt,Other Details,รายละเอียดอื่น ๆ DocType: Account,Accounts,บัญชี apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,การตลาด @@ -574,7 +575,7 @@ DocType: Employee,Provide email id registered in company,ให้ ID อีเ DocType: Hub Settings,Seller City,ผู้ขายเมือง DocType: Email Digest,Next email will be sent on:,อีเมล์ถัดไปจะถูกส่งเมื่อ: DocType: Offer Letter Term,Offer Letter Term,เสนอระยะจดหมาย -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,รายการที่มีสายพันธุ์ +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,รายการที่มีสายพันธุ์ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,รายการที่ {0} ไม่พบ DocType: Bin,Stock Value,มูลค่าหุ้น apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,ประเภท ต้นไม้ @@ -582,7 +583,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Consumed จำนวนต่ DocType: Serial No,Warranty Expiry Date,วันหมดอายุการรับประกัน DocType: Material Request Item,Quantity and Warehouse,ปริมาณและคลังสินค้า DocType: Sales Invoice,Commission Rate (%),อัตราค่าคอมมิชชั่น (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","กับคูปองประเภทต้องเป็นหนึ่งในการสั่งซื้อการขาย, การขายใบแจ้งหนี้หรือวารสารเข้า" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","กับคูปองประเภทต้องเป็นหนึ่งในการสั่งซื้อการขาย, การขายใบแจ้งหนี้หรือวารสารเข้า" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,การบินและอวกาศ DocType: Journal Entry,Credit Card Entry,เข้าบัตรเครดิต apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,ชื่องาน @@ -669,10 +670,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,ความรับผิดชอบ apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,ตามทำนองคลองธรรมจำนวนเงินไม่สามารถจะสูงกว่าจำนวนเงินที่เรียกร้องในแถว {0} DocType: Company,Default Cost of Goods Sold Account,เริ่มต้นค่าใช้จ่ายของบัญชีที่ขายสินค้า -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,ราคา ไม่ได้เลือก +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,ราคา ไม่ได้เลือก DocType: Employee,Family Background,ภูมิหลังของครอบครัว DocType: Process Payroll,Send Email,ส่งอีเมล์ -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},คำเตือน: สิ่งที่แนบมาไม่ถูกต้อง {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},คำเตือน: สิ่งที่แนบมาไม่ถูกต้อง {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,ไม่ได้รับอนุญาต DocType: Company,Default Bank Account,บัญชีธนาคารเริ่มต้น apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first",ในการกรองขึ้นอยู่กับพรรคเลือกพรรคพิมพ์ครั้งแรก @@ -700,7 +701,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,ค DocType: Features Setup,"To enable ""Point of Sale"" features",ต้องการเปิดใช้งาน "จุดขาย" คุณสมบัติ DocType: Bin,Moving Average Rate,ย้ายอัตราเฉลี่ย DocType: Production Planning Tool,Select Items,เลือกรายการ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} กับบิล {1} ลงวันที่ {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} กับบิล {1} ลงวันที่ {2} DocType: Maintenance Visit,Completion Status,สถานะเสร็จ DocType: Sales Invoice Item,Target Warehouse,คลังสินค้าเป้าหมาย DocType: Item,Allow over delivery or receipt upto this percent,อนุญาตให้ส่งมอบหรือใบเสร็จรับเงินได้ไม่เกินร้อยละนี้ @@ -760,7 +761,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,น apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},ไม่สามารถหาช่วงเวลาใน {0} วันถัดไปสำหรับการปฏิบัติงาน {1} DocType: Production Order,Plan material for sub-assemblies,วัสดุแผนประกอบย่อย apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} จะต้องใช้งาน -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,เลือกประเภทของเอกสารที่แรก +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,เลือกประเภทของเอกสารที่แรก apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,รถเข็นไปที่ apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,ยกเลิก การเข้าชม วัสดุ {0} ก่อนที่จะ ยกเลิก การบำรุงรักษา นี้ เยี่ยมชม DocType: Salary Slip,Leave Encashment Amount,ฝากเงินการได้เป็นเงินสด @@ -778,7 +779,7 @@ DocType: Purchase Receipt,Range,เทือกเขา DocType: Supplier,Default Payable Accounts,บัญชีเจ้าหนี้เริ่มต้น apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,พนักงาน {0} ไม่ได้ ใช้งานอยู่หรือ ไม่อยู่ DocType: Features Setup,Item Barcode,บาร์โค้ดสินค้า -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,สินค้าหลากหลายรูปแบบ {0} ปรับปรุง +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,สินค้าหลากหลายรูปแบบ {0} ปรับปรุง DocType: Quality Inspection Reading,Reading 6,Reading 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,ใบแจ้งหนี้การซื้อล่วงหน้า DocType: Address,Shop,ร้านค้า @@ -801,7 +802,7 @@ DocType: Salary Slip,Total in words,รวมอยู่ในคำพูด DocType: Material Request Item,Lead Time Date,นำวันเวลา apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,มีผลบังคับใช้ บางทีบันทึกแลกเปลี่ยนเงินตราต่างประเทศที่ไม่ได้สร้างขึ้นสำหรับ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},แถว # {0}: โปรดระบุหมายเลขเครื่องกับรายการ {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","สำหรับรายการ 'Bundle สินค้า, คลังสินค้า, ไม่มี Serial และรุ่นที่จะไม่ได้รับการพิจารณาจาก' บรรจุรายชื่อ 'ตาราง ถ้าคลังสินค้าและรุ่นที่ไม่มีเหมือนกันสำหรับรายการที่บรรจุทั้งหมดรายการใด ๆ 'Bundle สินค้า' ค่าเหล่านั้นสามารถป้อนในตารางรายการหลักค่าจะถูกคัดลอกไปบรรจุรายชื่อ 'ตาราง" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","สำหรับรายการ 'Bundle สินค้า, คลังสินค้า, ไม่มี Serial และรุ่นที่จะไม่ได้รับการพิจารณาจาก' บรรจุรายชื่อ 'ตาราง ถ้าคลังสินค้าและรุ่นที่ไม่มีเหมือนกันสำหรับรายการที่บรรจุทั้งหมดรายการใด ๆ 'Bundle สินค้า' ค่าเหล่านั้นสามารถป้อนในตารางรายการหลักค่าจะถูกคัดลอกไปบรรจุรายชื่อ 'ตาราง" apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,จัดส่งให้กับลูกค้า DocType: Purchase Invoice Item,Purchase Order Item,สั่งซื้อสินค้าสั่งซื้อ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,รายได้ ทางอ้อม @@ -822,6 +823,7 @@ DocType: Process Payroll,Select Payroll Year and Month,เลือกเงิ apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",ไปที่กลุ่มที่เหมาะสม (โดยปกติแอพลิเคชันของกองทุน> สินทรัพย์หมุนเวียน> บัญชีธนาคารและสร้างบัญชีใหม่ (โดยการคลิกที่เพิ่มเด็ก) ประเภท "ธนาคาร" DocType: Workstation,Electricity Cost,ค่าใช้จ่าย ไฟฟ้า DocType: HR Settings,Don't send Employee Birthday Reminders,อย่าส่ง พนักงาน เตือนวันเกิด +,Employee Holiday Attendance,พนักงานเข้าร่วมประชุมวันหยุด DocType: Opportunity,Walk In,Walk In apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,หุ้นรายการ DocType: Item,Inspection Criteria,เกณฑ์การตรวจสอบ @@ -844,7 +846,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options, DocType: Journal Entry Account,Expense Claim,เรียกร้องค่าใช้จ่าย apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},จำนวนสำหรับ {0} DocType: Leave Application,Leave Application,ออกจากแอพลิเคชัน -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,ฝากเครื่องมือการจัดสรร +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,ฝากเครื่องมือการจัดสรร DocType: Leave Block List,Leave Block List Dates,ไม่ระบุวันที่รายการบล็อก DocType: Company,If Monthly Budget Exceeded (for expense account),หากเกินงบประมาณรายเดือน (สำหรับบัญชีค่าใช้จ่าย) DocType: Workstation,Net Hour Rate,อัตราชั่วโมงสุทธิ @@ -854,7 +856,7 @@ DocType: Packing Slip Item,Packing Slip Item,บรรจุรายการ DocType: POS Profile,Cash/Bank Account,เงินสด / บัญชีธนาคาร apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,รายการที่ลบออกด้วยการเปลี่ยนแปลงในปริมาณหรือไม่มีค่า DocType: Delivery Note,Delivery To,เพื่อจัดส่งสินค้า -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,ตาราง Attribute มีผลบังคับใช้ +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,ตาราง Attribute มีผลบังคับใช้ DocType: Production Planning Tool,Get Sales Orders,รับการสั่งซื้อการขาย apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} ไม่สามารถเป็นจำนวนลบได้ apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,ส่วนลด @@ -918,7 +920,7 @@ DocType: SMS Center,Total Characters,ตัวอักษรรวม apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},กรุณาเลือก BOM BOM ในด้านการพิจารณาวาระที่ {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-Form รายละเอียดใบแจ้งหนี้ DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,กระทบยอดใบแจ้งหนี้การชำระเงิน -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,เงินสมทบ% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,เงินสมทบ% DocType: Item,website page link,การเชื่อมโยงหน้าเว็บไซต์ DocType: Company,Company registration numbers for your reference. Tax numbers etc.,เลขทะเบียน บริษัท สำหรับการอ้างอิงของคุณ ตัวเลขภาษี ฯลฯ DocType: Sales Partner,Distributor,ผู้จัดจำหน่าย @@ -960,10 +962,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,ปัจจัยการ DocType: Stock Settings,Default Item Group,กลุ่มสินค้าเริ่มต้น apps/erpnext/erpnext/config/buying.py +13,Supplier database.,ฐานข้อมูลผู้ผลิต DocType: Account,Balance Sheet,งบดุล -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',ศูนย์ต้นทุนสำหรับสินค้าที่มีรหัสสินค้า ' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',ศูนย์ต้นทุนสำหรับสินค้าที่มีรหัสสินค้า ' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,คนขายของคุณจะรับการแจ้งเตือนในวันนี้ที่จะติดต่อลูกค้า apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups",บัญชีเพิ่มเติมสามารถทำภายใต้กลุ่ม แต่รายการที่สามารถทำกับกลุ่มที่ไม่ -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,ภาษีและอื่น ๆ หักเงินเดือน +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,ภาษีและอื่น ๆ หักเงินเดือน DocType: Lead,Lead,ช่องทาง DocType: Email Digest,Payables,เจ้าหนี้ DocType: Account,Warehouse,คลังสินค้า @@ -980,10 +982,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,รายละเ DocType: Global Defaults,Current Fiscal Year,ปีงบประมาณปัจจุบัน DocType: Global Defaults,Disable Rounded Total,ปิดการใช้งานรวมโค้ง DocType: Lead,Call,โทรศัพท์ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,' รายการ ' ต้องไม่ว่างเปล่า +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,' รายการ ' ต้องไม่ว่างเปล่า apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},แถว ที่ซ้ำกัน {0} ด้วย เหมือนกัน {1} ,Trial Balance,งบทดลอง -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,การตั้งค่าพนักงาน +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,การตั้งค่าพนักงาน apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","ตาราง """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,กรุณาเลือก คำนำหน้า เป็นครั้งแรก apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,การวิจัย @@ -992,7 +994,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,รหัสผู้ใช้ apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,ดู บัญชีแยกประเภท apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,ที่เก่าแก่ที่สุด -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group",รายการกลุ่ม ที่มีอยู่ ที่มีชื่อเดียวกัน กรุณาเปลี่ยน ชื่อรายการหรือเปลี่ยนชื่อ กลุ่ม รายการ +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group",รายการกลุ่ม ที่มีอยู่ ที่มีชื่อเดียวกัน กรุณาเปลี่ยน ชื่อรายการหรือเปลี่ยนชื่อ กลุ่ม รายการ DocType: Production Order,Manufacture against Sales Order,การผลิตกับการสั่งซื้อการขาย apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,ส่วนที่เหลือ ของโลก apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,รายการ {0} ไม่สามารถมีแบทช์ @@ -1017,7 +1019,7 @@ DocType: Purchase Receipt,Rejected Warehouse,คลังสินค้าป DocType: GL Entry,Against Voucher,กับบัตรกำนัล DocType: Item,Default Buying Cost Center,ศูนย์รายจ่ายการซื้อเริ่มต้น apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.",เพื่อให้ได้สิ่งที่ดีที่สุดของ ERPNext เราขอแนะนำให้คุณใช้เวลาในการดูวิดีโอเหล่านี้ช่วย -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,รายการ {0} จะต้องมี รายการ ขาย +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,รายการ {0} จะต้องมี รายการ ขาย apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,ไปยัง DocType: Item,Lead Time in days,ระยะเวลาในวันที่ ,Accounts Payable Summary,สรุปบัญชีเจ้าหนี้ @@ -1043,7 +1045,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,การเกษตร apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,สินค้า หรือ บริการของคุณ DocType: Mode of Payment,Mode of Payment,โหมดของการชำระเงิน -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,ภาพ Website ควรจะเป็นไฟล์สาธารณะหรือ URL ของเว็บไซต์ +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,ภาพ Website ควรจะเป็นไฟล์สาธารณะหรือ URL ของเว็บไซต์ apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,กลุ่มนี้เป็นกลุ่ม รายการที่ ราก และ ไม่สามารถแก้ไขได้ DocType: Journal Entry Account,Purchase Order,ใบสั่งซื้อ DocType: Warehouse,Warehouse Contact Info,ข้อมูลการติดต่อคลังสินค้า @@ -1054,7 +1056,7 @@ DocType: Serial No,Serial No Details,รายละเอียดหมาย DocType: Purchase Invoice Item,Item Tax Rate,อัตราภาษีสินค้า apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry",มีบัญชีประเภทเครดิตเท่านั้น ที่สามารถเชื่อมโยงกับรายการประเภทเดบิต สำหรับ {0} apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,หมายเหตุ การจัดส่ง {0} ไม่ได้ ส่ง -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,รายการ {0} จะต้องเป็น รายการ ย่อย หด +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,รายการ {0} จะต้องเป็น รายการ ย่อย หด apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,อุปกรณ์ ทุน apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.",กฎข้อแรกคือการกำหนดราคาเลือกตาม 'สมัครในสนามซึ่งจะมีรายการกลุ่มสินค้าหรือยี่ห้อ DocType: Hub Settings,Seller Website,เว็บไซต์ขาย @@ -1063,7 +1065,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,เป้าหมาย DocType: Sales Invoice Item,Edit Description,แก้ไขรายละเอียด apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,วันที่จัดส่งสินค้าที่คาดว่าจะน้อยกว่าวันเริ่มต้นการวางแผน -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,สำหรับ ผู้ผลิต +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,สำหรับ ผู้ผลิต DocType: Account,Setting Account Type helps in selecting this Account in transactions.,ประเภทบัญชีการตั้งค่าช่วยในการเลือกบัญชีนี้ในการทำธุรกรรม DocType: Purchase Invoice,Grand Total (Company Currency),แกรนด์รวม (สกุลเงิน บริษัท ) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,ขาออกทั้งหมด @@ -1115,7 +1117,6 @@ DocType: Authorization Rule,Average Discount,ส่วนลดโดยเฉ DocType: Address,Utilities,ยูทิลิตี้ DocType: Purchase Invoice Item,Accounting,การบัญชี DocType: Features Setup,Features Setup,การติดตั้งสิ่งอำนวยความสะดวก -DocType: Item,Is Service Item,รายการบริการเป็น apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,รับสมัครไม่สามารถออกจากนอกระยะเวลาการจัดสรร DocType: Activity Cost,Projects,โครงการ apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,กรุณาเลือก ปีงบประมาณ @@ -1136,7 +1137,7 @@ DocType: Item,Maintain Stock,รักษาสต็อก apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,รายการสต็อกที่สร้างไว้แล้วสำหรับการสั่งซื้อการผลิต apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,เปลี่ยนสุทธิในสินทรัพย์ถาวร DocType: Leave Control Panel,Leave blank if considered for all designations,เว้นไว้หากพิจารณากำหนดทั้งหมด -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,ค่าใช้จ่าย ประเภท ' จริง ' ในแถว {0} ไม่สามารถ รวมอยู่ใน อัตรา รายการ +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,ค่าใช้จ่าย ประเภท ' จริง ' ในแถว {0} ไม่สามารถ รวมอยู่ใน อัตรา รายการ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},สูงสุด: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,จาก Datetime DocType: Email Digest,For Company,สำหรับ บริษัท @@ -1145,8 +1146,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,การจัดส่งสินค้าที่อยู่ชื่อ apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,ผังบัญชี DocType: Material Request,Terms and Conditions Content,ข้อตกลงและเงื่อนไขเนื้อหา -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,ไม่สามารถจะมากกว่า 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,รายการที่ {0} ไม่ได้เป็น รายการ สต็อก +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,ไม่สามารถจะมากกว่า 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,รายการที่ {0} ไม่ได้เป็น รายการ สต็อก DocType: Maintenance Visit,Unscheduled,ไม่ได้หมายกำหนดการ DocType: Employee,Owned,เจ้าของ DocType: Salary Slip Deduction,Depends on Leave Without Pay,ขึ้นอยู่กับการออกโดยไม่จ่ายเงิน @@ -1168,7 +1169,7 @@ Used for Taxes and Charges","ตารางรายละเอียดภา apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,พนักงานไม่สามารถรายงานให้กับตัวเอง DocType: Account,"If the account is frozen, entries are allowed to restricted users.",หากบัญชีถูกแช่แข็ง รายการ จะได้รับอนุญาต ให้กับผู้ใช้ ที่ จำกัด DocType: Email Digest,Bank Balance,ยอดเงินในธนาคาร -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},บัญชีรายการสำหรับ {0}: {1} สามารถทำได้ในสกุลเงิน: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},บัญชีรายการสำหรับ {0}: {1} สามารถทำได้ในสกุลเงิน: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,ไม่มีโครงสร้างเงินเดือนที่ต้องการใช้งานพบว่าพนักงาน {0} และเดือน DocType: Job Opening,"Job profile, qualifications required etc.",รายละเอียด งาน คุณสมบัติ ที่จำเป็น อื่น ๆ DocType: Journal Entry Account,Account Balance,ยอดเงินในบัญชี @@ -1185,7 +1186,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,ประก DocType: Shipping Rule Condition,To Value,เพื่อให้มีค่า DocType: Supplier,Stock Manager,ผู้จัดการ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},คลังสินค้า ที่มา มีผลบังคับใช้ แถว {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,สลิป +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,สลิป apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,สำนักงาน ให้เช่า apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,การตั้งค่าการติดตั้งเกตเวย์ SMS apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,นำเข้า ล้มเหลว @@ -1229,7 +1230,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,รายละเอีย DocType: Purchase Invoice,Additional Discount Amount (Company Currency),จำนวนส่วนลดเพิ่มเติม (สกุลเงิน บริษัท ) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},ข้อผิดพลาด: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,กรุณาสร้างบัญชีใหม่ จากผังบัญชี -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,การเข้ามาบำรุงรักษา +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,การเข้ามาบำรุงรักษา apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,ลูกค้า> กลุ่มลูกค้า> มณฑล DocType: Sales Invoice Item,Available Batch Qty at Warehouse,จำนวนชุดที่โกดัง DocType: Time Log Batch Detail,Time Log Batch Detail,รายละเอียดชุดบันทึกเวลา @@ -1238,7 +1239,7 @@ DocType: Leave Block List,Block Holidays on important days.,วันหยุ ,Accounts Receivable Summary,สรุปบัญชีลูกหนี้ apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,กรุณาตั้งค่าข้อมูลรหัสผู้ใช้ในการบันทึกพนักงานที่จะตั้งบทบาทของพนักงาน DocType: UOM,UOM Name,ชื่อ UOM -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,จํานวนเงินสมทบ +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,จํานวนเงินสมทบ DocType: Sales Invoice,Shipping Address,ที่อยู่จัดส่ง DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,เครื่องมือนี้จะช่วยให้คุณในการปรับปรุงหรือแก้ไขปริมาณและมูลค่าของหุ้นในระบบ มันมักจะใช้ในการประสานระบบค่าและสิ่งที่มีอยู่จริงในคลังสินค้าของคุณ DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,ในคำพูดของจะสามารถมองเห็นได้เมื่อคุณบันทึกหมายเหตุจัดส่งสินค้า @@ -1279,7 +1280,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,เพื่อติดตามรายการโดยใช้บาร์โค้ด คุณจะสามารถป้อนรายการในหมายเหตุจัดส่งสินค้าและขายใบแจ้งหนี้โดยการสแกนบาร์โค้ดของรายการ apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,ส่งอีเมล์การชำระเงิน DocType: Dependent Task,Dependent Task,ขึ้นอยู่กับงาน -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},ปัจจัย การแปลง หน่วย เริ่มต้น ของการวัด จะต้อง อยู่ในแถว ที่ 1 {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},ปัจจัย การแปลง หน่วย เริ่มต้น ของการวัด จะต้อง อยู่ในแถว ที่ 1 {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},การลา ประเภท {0} ไม่สามารถ จะยาวกว่า {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,ลองวางแผน X วันล่วงหน้า DocType: HR Settings,Stop Birthday Reminders,หยุด วันเกิด การแจ้งเตือน @@ -1289,7 +1290,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} ดู apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,เปลี่ยนเป็นเงินสดสุทธิ DocType: Salary Structure Deduction,Salary Structure Deduction,หักโครงสร้างเงินเดือน -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,หน่วย ของการวัด {0} ได้รับการป้อน มากกว่าหนึ่งครั้งใน การแปลง ปัจจัย ตาราง +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,หน่วย ของการวัด {0} ได้รับการป้อน มากกว่าหนึ่งครั้งใน การแปลง ปัจจัย ตาราง apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},รวมเข้ากับการชำระเงินที่มีอยู่แล้ว {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,ค่าใช้จ่ายของรายการที่ออก apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},จำนวนต้องไม่เกิน {0} @@ -1318,7 +1319,7 @@ DocType: BOM Item,BOM Item,รายการ BOM DocType: Appraisal,For Employee,สำหรับพนักงาน apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,แถว {0}: ล่วงหน้ากับต้องมีการหักเงินจากผู้ผลิต DocType: Company,Default Values,เริ่มต้นค่า -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,แถว {0}: จำนวนการชำระเงินไม่สามารถเป็นเชิงลบ +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,แถว {0}: จำนวนการชำระเงินไม่สามารถเป็นเชิงลบ DocType: Expense Claim,Total Amount Reimbursed,รวมจำนวนเงินชดเชย apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},กับผู้ผลิตใบแจ้งหนี้ {0} วัน {1} DocType: Customer,Default Price List,รายการราคาเริ่มต้น @@ -1346,8 +1347,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,ร DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","แทนที่ BOM โดยเฉพาะอย่างยิ่งใน BOMs อื่น ๆ ที่มีการใช้ แทนที่มันจะเชื่อมโยง BOM เก่าปรับปรุงค่าใช้จ่ายและงอกใหม่ ""BOM ระเบิดรายการ"" ตารางตาม BOM ใหม่" DocType: Shopping Cart Settings,Enable Shopping Cart,เปิดการใช้งานรถเข็น DocType: Employee,Permanent Address,ที่อยู่ถาวร -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,รายการ {0} จะต้องมี รายการ บริการ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",จ่ายเงินล่วงหน้ากับ {0} {1} ไม่สามารถมากขึ้น \ กว่าแกรนด์รวม {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,กรุณา เลือกรหัส สินค้า DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),ลดการหักออกโดยไม่จ่าย (LWP) @@ -1403,12 +1403,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,หลัก apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,ตัวแปร DocType: Naming Series,Set prefix for numbering series on your transactions,กำหนดคำนำหน้าสำหรับหมายเลขชุดทำธุรกรรมของคุณ +DocType: Employee Attendance Tool,Employees HTML,พนักงาน HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,เพื่อ หยุด ไม่สามารถยกเลิกได้ เปิดจุก ที่จะยกเลิก -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,BOM ค่าเริ่มต้น ({0}) จะต้องใช้งานสำหรับรายการนี้หรือแม่แบบของมัน +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,BOM ค่าเริ่มต้น ({0}) จะต้องใช้งานสำหรับรายการนี้หรือแม่แบบของมัน DocType: Employee,Leave Encashed?,ฝาก Encashed? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,โอกาสจากข้อมูลมีผลบังคับใช้ DocType: Item,Variants,สายพันธุ์ -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,ทำให้ การสั่งซื้อ +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,ทำให้ การสั่งซื้อ DocType: SMS Center,Send To,ส่งให้ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},ที่มีอยู่ไม่ สมดุล เพียงพอสำหรับ การลา ออกจาก ประเภท {0} DocType: Payment Reconciliation Payment,Allocated amount,จำนวนเงินที่จัดสรร @@ -1509,7 +1510,7 @@ DocType: Sales Person,Name and Employee ID,ชื่อและลูกจ้ apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,วันที่ครบกำหนด ไม่สามารถ ก่อน วันที่ประกาศ DocType: Website Item Group,Website Item Group,กลุ่มสินค้าเว็บไซต์ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,หน้าที่ และภาษี -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,กรุณากรอก วันที่ อ้างอิง +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,กรุณากรอก วันที่ อ้างอิง apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,บัญชี Gateway การชำระเงินไม่ได้กำหนดค่า apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} รายการชำระเงินไม่สามารถกรองโดย {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,ตารางสำหรับรายการที่จะแสดงในเว็บไซต์ @@ -1530,7 +1531,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,รายละเอียดความละเอียด DocType: Quality Inspection Reading,Acceptance Criteria,เกณฑ์การยอมรับ กําหนดเกณฑ์ การยอมรับ DocType: Item Attribute,Attribute Name,ชื่อแอตทริบิวต์ -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},รายการ {0} จะต้องมี การขายหรือการ บริการ ใน รายการ {1} DocType: Item Group,Show In Website,แสดงในเว็บไซต์ apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,กลุ่ม DocType: Task,Expected Time (in hours),เวลาที่คาดว่าจะ (ชั่วโมง) @@ -1562,7 +1562,7 @@ DocType: Shipping Rule Condition,Shipping Amount,จำนวนการจั ,Pending Amount,จำนวนเงินที่ รอดำเนินการ DocType: Purchase Invoice Item,Conversion Factor,ปัจจัยการเปลี่ยนแปลง DocType: Purchase Order,Delivered,ส่ง -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),การตั้งค่า เซิร์ฟเวอร์ขาเข้า สำหรับงาน อีเมล์ ของคุณ (เช่น jobs@example.com ) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),การตั้งค่า เซิร์ฟเวอร์ขาเข้า สำหรับงาน อีเมล์ ของคุณ (เช่น jobs@example.com ) DocType: Purchase Receipt,Vehicle Number,จำนวนยานพาหนะ DocType: Purchase Invoice,The date on which recurring invoice will be stop,วันที่ใบแจ้งหนี้ที่เกิดขึ้นจะถูกหยุด apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,ใบจัดสรรรวม {0} ไม่สามารถจะน้อยกว่าการอนุมัติแล้วใบ {1} สําหรับงวด @@ -1579,7 +1579,7 @@ DocType: HR Settings,HR Settings,การตั้งค่าทรัพย apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,ค่าใช้จ่ายที่ เรียกร้อง คือการ รอการอนุมัติ เพียง แต่ผู้อนุมัติ ค่าใช้จ่าย สามารถอัปเดต สถานะ DocType: Purchase Invoice,Additional Discount Amount,จำนวนส่วนลดเพิ่มเติม DocType: Leave Block List Allow,Leave Block List Allow,ฝากรายการบล็อกอนุญาตให้ -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,เงื่อนไขที่ไม่สามารถเป็นที่ว่างเปล่าหรือพื้นที่ +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,เงื่อนไขที่ไม่สามารถเป็นที่ว่างเปล่าหรือพื้นที่ apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,กลุ่มที่ไม่ใช่กลุ่ม apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,กีฬา apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,ทั้งหมดที่เกิดขึ้นจริง @@ -1603,7 +1603,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},ปัจจัย UOM แปลง จะต้อง อยู่ในแถว {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},วันที่ โปรโมชั่น ไม่สามารถเป็น ก่อนวันที่ เช็คอิน แถว {0} DocType: Salary Slip,Deduction,การหัก -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},รายการสินค้าเพิ่มสำหรับ {0} ในราคา {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},รายการสินค้าเพิ่มสำหรับ {0} ในราคา {1} DocType: Address Template,Address Template,แม่แบบที่อยู่ apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,กรุณากรอกพนักงาน Id นี้คนขาย DocType: Territory,Classification of Customers by region,การจำแนกประเภทของลูกค้าตามภูมิภาค @@ -1620,7 +1620,7 @@ DocType: Employee,Date of Birth,วันเกิด apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,รายการ {0} ได้รับ กลับมา แล้ว DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** ปีงบประมาณ ** หมายถึงปีทางการเงิน ทุกรายการบัญชีและการทำธุรกรรมอื่น ๆ ที่สำคัญมีการติดตามต่อปี ** ** การคลัง DocType: Opportunity,Customer / Lead Address,ลูกค้า / ที่อยู่ -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},คำเตือน: ใบรับรอง SSL ที่ไม่ถูกต้องในสิ่งที่แนบมา {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},คำเตือน: ใบรับรอง SSL ที่ไม่ถูกต้องในสิ่งที่แนบมา {0} DocType: Production Order Operation,Actual Operation Time,เวลาการดำเนินงานที่เกิดขึ้นจริง DocType: Authorization Rule,Applicable To (User),ที่ใช้บังคับกับ (User) DocType: Purchase Taxes and Charges,Deduct,หัก @@ -1637,7 +1637,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,แยกหมายเหตุจัดส่งสินค้าเข้าไปในแพคเกจ apps/erpnext/erpnext/hooks.py +69,Shipments,การจัดส่ง DocType: Purchase Order Item,To be delivered to customer,ที่จะส่งมอบให้กับลูกค้า -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,ต้องส่งสถานะของบันทึกเวลา +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,ต้องส่งสถานะของบันทึกเวลา apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,ไม่มี Serial {0} ไม่ได้อยู่ในโกดังสินค้าใด ๆ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,แถว # DocType: Purchase Invoice,In Words (Company Currency),ในคำ (สกุลเงิน บริษัท) @@ -1654,7 +1654,7 @@ DocType: Leave Application,Total Leave Days,วันที่เดินทา DocType: Email Digest,Note: Email will not be sent to disabled users,หมายเหตุ: อีเมล์ของคุณจะไม่ถูกส่งไปยังผู้ใช้คนพิการ apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,เลือก บริษัท ... DocType: Leave Control Panel,Leave blank if considered for all departments,เว้นไว้หากพิจารณาให้หน่วยงานทั้งหมด -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).",ประเภท ของการจ้างงาน ( ถาวร สัญญา ฝึกงาน ฯลฯ ) +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).",ประเภท ของการจ้างงาน ( ถาวร สัญญา ฝึกงาน ฯลฯ ) apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} จำเป็นสำหรับ รายการ {1} DocType: Currency Exchange,From Currency,จากสกุลเงิน apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row",กรุณาเลือกจำนวนเงินที่จัดสรรประเภทใบแจ้งหนี้และจำนวนใบแจ้งหนี้ในอย่างน้อยหนึ่งแถว @@ -1673,7 +1673,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,ในกระบวนการ DocType: Authorization Rule,Itemwise Discount,ส่วนลด Itemwise DocType: Purchase Order Item,Reference Document Type,เอกสารประเภท -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} กับคำสั่งขาย {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} กับคำสั่งขาย {1} DocType: Account,Fixed Asset,สินทรัพย์ คงที่ apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,เนื่องสินค้าคงคลัง DocType: Activity Type,Default Billing Rate,เริ่มต้นอัตราการเรียกเก็บเงิน @@ -1683,7 +1683,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,ใบสั่งขายถึงการชำระเงิน DocType: Expense Claim Detail,Expense Claim Detail,รายละเอียดค่าใช้จ่ายสินไหม apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,สร้างบันทึกเวลาเมื่อ: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,กรุณาเลือกบัญชีที่ถูกต้อง +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,กรุณาเลือกบัญชีที่ถูกต้อง DocType: Item,Weight UOM,UOM น้ำหนัก DocType: Employee,Blood Group,กรุ๊ปเลือด DocType: Purchase Invoice Item,Page Break,แบ่งหน้า @@ -1718,7 +1718,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM เรียกซ้ำ : {0} ไม่สามารถ เป็นผู้ปกครอง หรือเด็ก ของ {2} DocType: Production Order Operation,Completed Qty,จำนวนเสร็จ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry",มีบัญชีประเภทเดบิตเท่านั้น ที่สามารถเชื่อมโยงกับรายการประเภทเครดิต สำหรับ {0} -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,ราคา {0} ถูกปิดใช้งาน +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,ราคา {0} ถูกปิดใช้งาน DocType: Manufacturing Settings,Allow Overtime,อนุญาตให้ทำงานล่วงเวลา apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} หมายเลข Serial จำเป็นสำหรับรายการ {1} คุณได้ให้ {2} DocType: Stock Reconciliation Item,Current Valuation Rate,อัตราการประเมินมูลค่าปัจจุบัน @@ -1769,7 +1769,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},ไ apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,คดีหมายเลข ไม่สามารถ เป็น 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,หากคุณมีการขายและทีมหุ้นส่วนขาย (ตัวแทนจำหน่าย) พวกเขาสามารถติดแท็กและรักษาผลงานของพวกเขาในกิจกรรมการขาย DocType: Item,Show a slideshow at the top of the page,สไลด์โชว์ที่ด้านบนของหน้า -DocType: Item,"Allow in Sales Order of type ""Service""",อนุญาตให้ใช้คำสั่งขายประเภท "บริการ" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,ร้านค้า DocType: Time Log,Projects Manager,ผู้จัดการโครงการ DocType: Serial No,Delivery Time,เวลาจัดส่งสินค้า @@ -1784,6 +1783,7 @@ DocType: Rename Tool,Rename Tool,เปลี่ยนชื่อเครื apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,ปรับปรุง ค่าใช้จ่าย DocType: Item Reorder,Item Reorder,รายการ Reorder apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,โอน วัสดุ +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},รายการ {0} จะต้องเป็นรายการที่ยอดขายใน {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.",ระบุการดำเนินการ ค่าใช้จ่าย ในการดำเนินงาน และให้การดำเนินการ ที่ไม่ซ้ำกัน ในการ ดำเนินงานของคุณ DocType: Purchase Invoice,Price List Currency,สกุลเงินรายการราคา DocType: Naming Series,User must always select,ผู้ใช้จะต้องเลือก @@ -1804,7 +1804,7 @@ DocType: Appraisal,Employee,ลูกจ้าง apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,นำเข้าอีเมล์จาก apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,เชิญผู้ใช้ DocType: Features Setup,After Sale Installations,หลังจากการติดตั้งขาย -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} ได้ถูกเรียกเก็บเงินเต็มจำนวน +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} ได้ถูกเรียกเก็บเงินเต็มจำนวน DocType: Workstation Working Hour,End Time,เวลาสิ้นสุด apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,ข้อสัญญา มาตรฐานสำหรับ การขายหรือการ ซื้อ apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,กลุ่ม โดย คูปอง @@ -1830,7 +1830,7 @@ DocType: Upload Attendance,Attendance To Date,วันที่เข้าร apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),การตั้งค่า เซิร์ฟเวอร์ขาเข้า สำหรับอีเมล ขาย รหัส ของคุณ (เช่น sales@example.com ) DocType: Warranty Claim,Raised By,โดยยก DocType: Payment Gateway Account,Payment Account,บัญชีการชำระเงิน -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,โปรดระบุ บริษัท ที่จะดำเนินการ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,โปรดระบุ บริษัท ที่จะดำเนินการ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,เปลี่ยนสุทธิในบัญชีลูกหนี้ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,ชดเชย ปิด DocType: Quality Inspection Reading,Accepted,ได้รับการยอมรับแล้ว @@ -1842,14 +1842,14 @@ DocType: Shipping Rule,Shipping Rule Label,ป้ายกฎการจัด apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,วัตถุดิบไม่สามารถมีช่องว่าง apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","ไม่สามารถอัปเดสต็อก, ใบแจ้งหนี้ที่มีรายการการขนส่งลดลง" DocType: Newsletter,Test,ทดสอบ -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","เนื่องจากมีการทำธุรกรรมที่มีอยู่สต็อกสำหรับรายการนี้ \ คุณไม่สามารถเปลี่ยนค่าของ 'มีไม่มี Serial', 'มีรุ่นที่ไม่มี', 'เป็นรายการสต็อก "และ" วิธีการประเมิน'" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,วารสารรายการด่วน apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,คุณไม่สามารถเปลี่ยน อัตรา ถ้า BOM กล่าว agianst รายการใด ๆ DocType: Employee,Previous Work Experience,ประสบการณ์การทำงานก่อนหน้า DocType: Stock Entry,For Quantity,สำหรับจำนวน apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},กรุณากรอก จำนวน การ วางแผน รายการ {0} ที่ แถว {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} ยังไม่ได้ส่ง +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} ยังไม่ได้ส่ง apps/erpnext/erpnext/config/stock.py +18,Requests for items.,ขอรายการ DocType: Production Planning Tool,Separate production order will be created for each finished good item.,เพื่อผลิตแยกจะถูกสร้างขึ้นสำหรับรายการที่ดีในแต่ละสำเร็จรูป DocType: Purchase Invoice,Terms and Conditions1,ข้อตกลงและ Conditions1 @@ -1874,6 +1874,7 @@ DocType: Notification Control,Expense Claim Approved Message,เรียกร DocType: Email Digest,How frequently?,วิธีบ่อย? DocType: Purchase Receipt,Get Current Stock,รับสินค้าปัจจุบัน apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,ต้นไม้แห่ง Bill of Materials +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,ปัจจุบันมาร์ค apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},วันที่เริ่มต้น การบำรุงรักษา ไม่สามารถ ก่อนวัน ส่งสำหรับ อนุกรม ไม่มี {0} DocType: Production Order,Actual End Date,วันที่สิ้นสุดจริง DocType: Authorization Rule,Applicable To (Role),ที่ใช้บังคับกับ (Role) @@ -1888,7 +1889,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,วันที่สิ้นสุด สัญญา จะต้องมากกว่า วันที่ เข้าร่วม DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,จำหน่ายบุคคลที่สาม / ตัวแทนจำหน่าย / ตัวแทนคณะกรรมการ / พันธมิตร / ผู้ค้าปลีกที่ขายสินค้า บริษัท สำหรับคณะกรรมการ DocType: Customer Group,Has Child Node,มีโหนดลูก -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} กับใบสั่งซื้อ {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} กับใบสั่งซื้อ {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)",ป้อนพารามิเตอร์คงที่ URL ที่นี่ (เช่นผู้ส่ง = ERPNext ชื่อผู้ใช้ = ERPNext รหัสผ่าน = 1234 ฯลฯ ) apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} ไม่ได้อยู่ในปีงบประมาณที่ใช้งานใด ๆ สำหรับรายละเอียดเพิ่มเติมตรวจ {2} apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,เว็บไซต์ นี้เป็น ตัวอย่างที่สร้างขึ้นโดยอัตโนมัติ จาก ERPNext @@ -1936,7 +1937,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10 เพิ่มหรือหัก: ไม่ว่าคุณต้องการที่จะเพิ่มหรือหักภาษี" DocType: Purchase Receipt Item,Recd Quantity,จำนวน Recd apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},ไม่สามารถผลิต สินค้า ได้มากขึ้น {0} กว่าปริมาณ การขายสินค้า {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,หุ้นรายการ {0} ไม่ได้ส่ง +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,หุ้นรายการ {0} ไม่ได้ส่ง DocType: Payment Reconciliation,Bank / Cash Account,บัญชีเงินสด / ธนาคาร DocType: Tax Rule,Billing City,เมืองการเรียกเก็บเงิน DocType: Global Defaults,Hide Currency Symbol,ซ่อนสัญลักษณ์สกุลเงิน @@ -1962,7 +1963,7 @@ DocType: Salary Structure,Total Earning,กำไรรวม DocType: Purchase Receipt,Time at which materials were received,เวลาที่ได้รับวัสดุ apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,ที่อยู่ของฉัน DocType: Stock Ledger Entry,Outgoing Rate,อัตราการส่งออก -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,ปริญญาโท สาขา องค์กร +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,ปริญญาโท สาขา องค์กร apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,หรือ DocType: Sales Order,Billing Status,สถานะการเรียกเก็บเงิน apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,ค่าใช้จ่ายใน ยูทิลิตี้ @@ -2000,7 +2001,7 @@ DocType: Bin,Reserved Quantity,จำนวนสงวน DocType: Landed Cost Voucher,Purchase Receipt Items,ซื้อสินค้าใบเสร็จรับเงิน apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,การปรับรูปแบบ DocType: Account,Income Account,บัญชีรายได้ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,การจัดส่งสินค้า +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,การจัดส่งสินค้า DocType: Stock Reconciliation Item,Current Qty,จำนวนปัจจุบัน DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",โปรดดูที่ "ค่าของวัสดุบนพื้นฐานของ" ต้นทุนในมาตรา DocType: Appraisal Goal,Key Responsibility Area,พื้นที่ความรับผิดชอบหลัก @@ -2012,9 +2013,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,บ DocType: Notification Control,Purchase Order Message,ข้อความใบสั่งซื้อ DocType: Tax Rule,Shipping Country,การจัดส่งสินค้าประเทศ DocType: Upload Attendance,Upload HTML,อัพโหลด HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","ล่วงหน้ารวม ({0}) กับการสั่งซื้อ {1} ไม่สามารถจะสูงกว่า \ - แกรนด์รวม ({2})" DocType: Employee,Relieving Date,บรรเทาวันที่ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.",กฎการกำหนดราคาจะทำเพื่อแทนที่ราคาตามรายการ / กำหนดเปอร์เซ็นต์ส่วนลดขึ้นอยู่กับเงื่อนไขบางอย่าง DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,คลังสินค้า สามารถ เปลี่ยน ผ่านทาง หุ้น เข้า / ส่ง หมายเหตุ / รับซื้อ @@ -2024,8 +2022,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,ภ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.",ถ้ากฎการกำหนดราคาที่เลือกจะทำเพื่อ 'ราคา' มันจะเขียนทับราคา กำหนดราคากฎเป็นราคาสุดท้ายจึงไม่มีส่วนลดต่อไปควรจะนำมาใช้ ดังนั้นในการทำธุรกรรมเช่นสั่งซื้อการขาย ฯลฯ สั่งซื้อจะถูกเรียกในสาขา 'อัตรา' มากกว่าข้อมูล 'ราคาอัตรา' apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,ติดตาม ช่องทาง ตามประเภทอุตสาหกรรม DocType: Item Supplier,Item Supplier,ผู้ผลิตรายการ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,กรุณากรอก รหัสสินค้า ที่จะได้รับ ชุด ไม่ -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},กรุณาเลือก ค่าสำหรับ {0} quotation_to {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,กรุณากรอก รหัสสินค้า ที่จะได้รับ ชุด ไม่ +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},กรุณาเลือก ค่าสำหรับ {0} quotation_to {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,ที่อยู่ทั้งหมด DocType: Company,Stock Settings,การตั้งค่าหุ้น apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company",การควบรวมจะเป็นไปได้ถ้าคุณสมบัติต่อไปนี้จะเหมือนกันทั้งในบันทึก เป็นกลุ่มประเภทราก บริษัท @@ -2048,7 +2046,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,จำนวนเช็ค DocType: Payment Tool Detail,Payment Tool Detail,รายละเอียดการชำระเงินเครื่องมือ ,Sales Browser,ขาย เบราว์เซอร์ DocType: Journal Entry,Total Credit,เครดิตรวม -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},คำเตือน: อีก {0} # {1} อยู่กับรายการหุ้น {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},คำเตือน: อีก {0} # {1} อยู่กับรายการหุ้น {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,ในประเทศ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),เงินให้กู้ยืม และ เงินทดรอง ( สินทรัพย์ ) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,ลูกหนี้ @@ -2068,8 +2066,8 @@ DocType: Price List,Price List Master,ราคาโท DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,ขายทำธุรกรรมทั้งหมดสามารถติดแท็กกับหลายบุคคลที่ขาย ** ** เพื่อให้คุณสามารถตั้งค่าและตรวจสอบเป้าหมาย ,S.O. No.,เลขที่ใบสั่งขาย DocType: Production Order Operation,Make Time Log,สร้างบันทึกเวลา -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,กรุณาตั้งค่าปริมาณการสั่งซื้อ -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},กรุณาสร้าง ลูกค้า จากช่องทาง {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,กรุณาตั้งค่าปริมาณการสั่งซื้อ +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},กรุณาสร้าง ลูกค้า จากช่องทาง {0} DocType: Price List,Applicable for Countries,ใช้งานได้สำหรับประเทศ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,คอมพิวเตอร์ apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,นี่คือกลุ่ม ลูกค้าราก และ ไม่สามารถแก้ไขได้ @@ -2117,7 +2115,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),กา DocType: Payment Reconciliation Invoice,Outstanding Amount,ยอดคงค้าง DocType: Project Task,Working,ทำงาน DocType: Stock Ledger Entry,Stock Queue (FIFO),สต็อกคิว (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,กรุณาเลือกบันทึกเวลา +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,กรุณาเลือกบันทึกเวลา apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} ไม่ได้เป็นของ บริษัท {1} DocType: Account,Round Off,หมดยก ,Requested Qty,ขอ จำนวน @@ -2155,7 +2153,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,ได้รับ คอมเมนต์ ที่เกี่ยวข้อง apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,เข้าบัญชีสำหรับสต็อก DocType: Sales Invoice,Sales Team1,ขาย Team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,รายการที่ {0} ไม่อยู่ +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,รายการที่ {0} ไม่อยู่ DocType: Sales Invoice,Customer Address,ที่อยู่ของลูกค้า DocType: Payment Request,Recipient and Message,และผู้รับข้อความ DocType: Purchase Invoice,Apply Additional Discount On,สมัครสมาชิกเพิ่มเติมส่วนลด @@ -2174,7 +2172,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,ปิดเสียงอีเมล์ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","อาหาร, เครื่องดื่ม และ ยาสูบ" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL หรือ BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},สามารถชำระเงินยังไม่เรียกเก็บกับ {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},สามารถชำระเงินยังไม่เรียกเก็บกับ {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,อัตราค่านายหน้า ไม่สามารถ จะมากกว่า 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,ระดับสินค้าคงคลังต่ำสุด DocType: Stock Entry,Subcontract,สัญญารับช่วง @@ -2192,9 +2190,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,ซอฟ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,สี DocType: Maintenance Visit,Scheduled,กำหนด apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle",กรุณาเลือกรายการที่ "เป็นสต็อกสินค้า" เป็น "ไม่" และ "ขายเป็นรายการ" คือ "ใช่" และไม่มีการ Bundle สินค้าอื่น ๆ +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),ล่วงหน้ารวม ({0}) กับการสั่งซื้อ {1} ไม่สามารถจะสูงกว่าแกรนด์รวม ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,เลือกการกระจายรายเดือนที่จะไม่สม่ำเสมอกระจายเป้าหมายข้ามเดือน DocType: Purchase Invoice Item,Valuation Rate,อัตราการประเมิน -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,สกุลเงิน ราคา ไม่ได้เลือก +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,สกุลเงิน ราคา ไม่ได้เลือก apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,รายการแถว {0}: ใบเสร็จรับเงินซื้อ {1} ไม่อยู่ในด้านบนของตาราง 'ซื้อใบเสร็จรับเงิน' apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},พนักงาน {0} ได้ใช้ แล้วสำหรับ {1} ระหว่าง {2} และ {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,วันที่เริ่มต้นโครงการ @@ -2206,6 +2205,7 @@ DocType: Quality Inspection,Inspection Type,ประเภทการตรว apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},กรุณาเลือก {0} DocType: C-Form,C-Form No,C-Form ไม่มี DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,เข้าร่วมประชุมที่ไม่มีเครื่องหมาย apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,นักวิจัย apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,กรุณาบันทึก ข่าวก่อนที่จะส่ง apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,ชื่อหรืออีเมล์มีผลบังคับใช้ @@ -2231,7 +2231,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,ได DocType: Payment Gateway,Gateway,เกตเวย์ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,ผู้ผลิต> ประเภทผู้ผลิต apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,กรุณากรอก วันที่ บรรเทา -apps/erpnext/erpnext/controllers/trends.py +137,Amt,amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,เพียง ปล่อยให้ การใช้งาน ที่มีสถานะ 'อนุมัติ ' สามารถ ส่ง apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,ที่อยู่ ชื่อเรื่อง มีผลบังคับใช้ DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,ป้อนชื่อของแคมเปญหากแหล่งที่มาของการรณรงค์สอบถามรายละเอียดเพิ่มเติม @@ -2246,10 +2246,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,คลังสินค้า DocType: Bank Reconciliation Detail,Posting Date,โพสต์วันที่ DocType: Item,Valuation Method,วิธีการประเมิน apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},ไม่สามารถหาอัตราแลกเปลี่ยนสำหรับ {0} เป็น {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,มาร์คครึ่งวัน DocType: Sales Invoice,Sales Team,ทีมขาย apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,รายการ ที่ซ้ำกัน DocType: Serial No,Under Warranty,ภายใต้การรับประกัน -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[ข้อผิดพลาด] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[ข้อผิดพลาด] DocType: Sales Order,In Words will be visible once you save the Sales Order.,ในคำพูดของจะสามารถมองเห็นได้เมื่อคุณบันทึกการสั่งซื้อการขาย ,Employee Birthday,วันเกิดของพนักงาน apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,บริษัท ร่วมทุน @@ -2272,6 +2273,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,ศูนย์ต้นทุน กับการทำธุรกรรม ที่มีอยู่ ไม่สามารถ แปลงเป็น กลุ่ม DocType: Account,Depreciation,ค่าเสื่อมราคา apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),ผู้ผลิต (s) +DocType: Employee Attendance Tool,Employee Attendance Tool,เครื่องมือเข้าร่วมประชุมพนักงาน DocType: Supplier,Credit Limit,วงเงินสินเชื่อ apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,เลือกประเภทของการทำธุรกรรม DocType: GL Entry,Voucher No,บัตรกำนัลไม่มี @@ -2298,7 +2300,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,บัญชี ราก ไม่สามารถลบได้ ,Is Primary Address,เป็นที่อยู่หลัก DocType: Production Order,Work-in-Progress Warehouse,คลังสินค้าทำงานในความคืบหน้า -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},อ้างอิง # {0} วันที่ {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},อ้างอิง # {0} วันที่ {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,การจัดการที่อยู่ DocType: Pricing Rule,Item Code,รหัสสินค้า DocType: Production Planning Tool,Create Production Orders,สร้างคำสั่งซื้อการผลิต @@ -2325,7 +2327,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,กระทบยอดธน apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,ได้รับการปรับปรุง apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,ขอ วัสดุ {0} จะถูกยกเลิก หรือ หยุด apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,เพิ่มบันทึกไม่กี่ตัวอย่าง -apps/erpnext/erpnext/config/hr.py +210,Leave Management,ออกจากการบริหารจัดการ +apps/erpnext/erpnext/config/hr.py +225,Leave Management,ออกจากการบริหารจัดการ apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,โดย กลุ่ม บัญชี DocType: Sales Order,Fully Delivered,จัดส่งอย่างเต็มที่ DocType: Lead,Lower Income,รายได้ต่ำ @@ -2340,6 +2342,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','จาก วันที่ ' ต้อง เป็นหลังจากที่ ' นัด ' ,Stock Projected Qty,หุ้น ที่คาดการณ์ จำนวน apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},ลูกค้า {0} ไม่ได้อยู่ใน โครงการ {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,ผู้เข้าร่วมการทำเครื่องหมาย HTML DocType: Sales Order,Customer's Purchase Order,การสั่งซื้อของลูกค้า DocType: Warranty Claim,From Company,จาก บริษัท apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,ค่าหรือ จำนวน @@ -2404,6 +2407,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,โอนเงิน apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,เลือกบัญชีธนาคาร DocType: Newsletter,Create and Send Newsletters,สร้างและส่งจดหมายข่าว +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,ตรวจสอบทั้งหมด DocType: Sales Order,Recurring Order,การสั่งซื้อที่เกิดขึ้น DocType: Company,Default Income Account,บัญชีรายได้เริ่มต้น apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,กลุ่ม ลูกค้า / ลูกค้า @@ -2435,6 +2439,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,กลับไปก DocType: Item,Warranty Period (in days),ระยะเวลารับประกัน (วัน) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,เงินสดจากการดำเนินงานสุทธิ apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,เช่นผู้ ภาษีมูลค่าเพิ่ม +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,การเข้าร่วมประชุมมาร์คของพนักงานในกลุ่ม apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,วาระที่ 4 DocType: Journal Entry Account,Journal Entry Account,วารสารบัญชีเข้า DocType: Shopping Cart Settings,Quotation Series,ชุดใบเสนอราคา @@ -2580,14 +2585,14 @@ DocType: Task,Actual Start Date (via Time Logs),เริ่มต้นวั DocType: Stock Reconciliation Item,Before reconciliation,ก่อนที่จะกลับไปคืนดี apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},ไปที่ {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),ภาษีและค่าใช้จ่ายเพิ่ม (สกุลเงิน บริษัท ) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,รายการ แถว ภาษี {0} ต้องมีบัญชี ภาษี ประเภท หรือ รายได้ หรือ ค่าใช้จ่าย หรือ คิดค่าบริการได้ +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,รายการ แถว ภาษี {0} ต้องมีบัญชี ภาษี ประเภท หรือ รายได้ หรือ ค่าใช้จ่าย หรือ คิดค่าบริการได้ DocType: Sales Order,Partly Billed,จำนวนมากที่สุดเป็นส่วนใหญ่ DocType: Item,Default BOM,BOM เริ่มต้น apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,กรุณาชื่อ บริษัท อีกครั้งเพื่อยืนยันชนิด apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,รวมที่โดดเด่น Amt DocType: Time Log Batch,Total Hours,รวมชั่วโมง DocType: Journal Entry,Printing Settings,การตั้งค่าการพิมพ์ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},เดบิต รวม ต้องเท่ากับ เครดิต รวม +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},เดบิต รวม ต้องเท่ากับ เครดิต รวม apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,ยานยนต์ apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,จากหมายเหตุการจัดส่งสินค้า DocType: Time Log,From Time,ตั้งแต่เวลา @@ -2634,7 +2639,7 @@ DocType: Purchase Invoice Item,Image View,ดูภาพ DocType: Issue,Opening Time,เปิดเวลา apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,จากและถึง วันที่คุณต้องการ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,หลักทรัพย์และ การแลกเปลี่ยน สินค้าโภคภัณฑ์ -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',เริ่มต้นหน่วยวัดสำหรับตัวแปร '{0}' จะต้องเป็นเช่นเดียวกับในแม่แบบ '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',เริ่มต้นหน่วยวัดสำหรับตัวแปร '{0}' จะต้องเป็นเช่นเดียวกับในแม่แบบ '{1}' DocType: Shipping Rule,Calculate Based On,การคำนวณพื้นฐานตาม DocType: Delivery Note Item,From Warehouse,จากคลังสินค้า DocType: Purchase Taxes and Charges,Valuation and Total,การประเมินและรวม @@ -2656,7 +2661,7 @@ DocType: Leave Application,Follow via Email,ผ่านทางอีเมล DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,จำนวน ภาษี หลังจากที่ จำนวน ส่วนลด apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,บัญชีของเด็ก ที่มีอยู่ สำหรับบัญชีนี้ คุณไม่สามารถลบ บัญชีนี้ apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,ทั้ง จำนวน เป้าหมาย หรือจำนวน เป้าหมายที่ มีผลบังคับใช้ -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},ไม่มี BOM เริ่มต้น แล้วสำหรับ รายการ {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},ไม่มี BOM เริ่มต้น แล้วสำหรับ รายการ {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,กรุณาเลือกวันที่โพสต์แรก apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,เปิดวันที่ควรเป็นก่อนที่จะปิดวันที่ DocType: Leave Control Panel,Carry Forward,Carry Forward @@ -2734,7 +2739,7 @@ DocType: Leave Type,Is Encash,เป็นได้เป็นเงินส DocType: Purchase Invoice,Mobile No,เบอร์มือถือ DocType: Payment Tool,Make Journal Entry,ทำให้อนุทิน DocType: Leave Allocation,New Leaves Allocated,ใหม่ใบจัดสรร -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,ข้อมูล โครงการ ฉลาด ไม่สามารถใช้ได้กับ ใบเสนอราคา +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,ข้อมูล โครงการ ฉลาด ไม่สามารถใช้ได้กับ ใบเสนอราคา DocType: Project,Expected End Date,คาดว่าวันที่สิ้นสุด DocType: Appraisal Template,Appraisal Template Title,หัวข้อแม่แบบประเมิน apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,เชิงพาณิชย์ @@ -2782,6 +2787,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No., apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,โปรดระบุ DocType: Offer Letter,Awaiting Response,รอการตอบสนอง apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,ดังกล่าวข้างต้น +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,เวลาเข้าสู่ระบบได้รับการเรียกเก็บเงิน DocType: Salary Slip,Earning & Deduction,รายได้และการหัก apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,บัญชี {0} ไม่สามารถเป็น กลุ่ม apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,ไม่จำเป็น การตั้งค่านี้ จะถูก ใช้ในการกรอง ในการทำธุรกรรม ต่างๆ @@ -2852,14 +2858,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,ประสบความสำเร็จในการทำธุรกรรมที่ถูกลบทั้งหมดที่เกี่ยวข้องกับ บริษัท นี้! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,ขณะที่ในวันที่ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,การทดลอง -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,โกดัง เริ่มต้น มีผลบังคับใช้ กับ รายการ สต็อก +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,โกดัง เริ่มต้น มีผลบังคับใช้ กับ รายการ สต็อก apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},การชำระเงิน ของเงินเดือน สำหรับเดือน{0} และปี {1} DocType: Stock Settings,Auto insert Price List rate if missing,แทรกอัตโนมัติราคาอัตรารายชื่อถ้าขาดหายไป apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,รวมจำนวนเงินที่จ่าย ,Transferred Qty,โอน จำนวน apps/erpnext/erpnext/config/learn.py +11,Navigating,การนำ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,การวางแผน -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,ทำให้เวลาที่เข้าสู่ระบบชุด +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,ทำให้เวลาที่เข้าสู่ระบบชุด apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,ออก DocType: Project,Total Billing Amount (via Time Logs),จำนวนเงินที่เรียกเก็บเงินรวม (ผ่านบันทึกเวลา) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,เราขาย สินค้า นี้ @@ -2867,7 +2873,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,ปริมาณที่ควรจะเป็นมากกว่า 0 DocType: Journal Entry,Cash Entry,เงินสดเข้า DocType: Sales Partner,Contact Desc,Desc ติดต่อ -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.",ประเภทของใบเช่นลำลอง ฯลฯ ป่วย +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.",ประเภทของใบเช่นลำลอง ฯลฯ ป่วย DocType: Email Digest,Send regular summary reports via Email.,ส่งรายงานสรุปปกติผ่านทางอีเมล์ DocType: Brand,Item Manager,ผู้จัดการฝ่ายรายการ DocType: Cost Center,Add rows to set annual budgets on Accounts.,เพิ่มแถวเพื่อตั้งงบประมาณประจำปีของบัญชี @@ -2882,7 +2888,7 @@ DocType: GL Entry,Party Type,ประเภท บุคคล apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,วัตถุดิบที่ ไม่สามารถเป็น เช่นเดียวกับ รายการ หลัก DocType: Item Attribute Value,Abbreviation,ตัวย่อ apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,ไม่ authroized ตั้งแต่ {0} เกินขีด จำกัด -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,แม่ เงินเดือน หลัก +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,แม่ เงินเดือน หลัก DocType: Leave Type,Max Days Leave Allowed,วันแม็กซ์ฝากอนุญาตให้นำ apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,ตั้งกฎภาษีสำหรับรถเข็น DocType: Payment Tool,Set Matching Amounts,ระบุจำนวนเงินที่จับคู่ @@ -2895,7 +2901,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,ใบ DocType: Stock Settings,Role Allowed to edit frozen stock,บทบาทอนุญาตให้แก้ไขหุ้นแช่แข็ง ,Territory Target Variance Item Group-Wise,มณฑล เป้าหมาย แปรปรวน กลุ่มสินค้า - ฉลาด apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,ทุกกลุ่ม ลูกค้า -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} มีผลบังคับใช้ อาจจะบันทึกแลกเปลี่ยนเงินตราไม่ได้สร้างขึ้นสำหรับ {1} เป็น {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} มีผลบังคับใช้ อาจจะบันทึกแลกเปลี่ยนเงินตราไม่ได้สร้างขึ้นสำหรับ {1} เป็น {2} apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,แม่แบบภาษีมีผลบังคับใช้ apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,บัญชี {0}: บัญชีผู้ปกครอง {1} ไม่อยู่ DocType: Purchase Invoice Item,Price List Rate (Company Currency),อัตราราคาปกติ (สกุลเงิน บริษัท ) @@ -2915,8 +2921,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,รายการ ฉ ,Item-wise Price List Rate,รายการ ฉลาด อัตรา ราคาตามรายการ apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,ใบเสนอราคาของผู้ผลิต DocType: Quotation,In Words will be visible once you save the Quotation.,ในคำพูดของจะสามารถมองเห็นได้เมื่อคุณบันทึกใบเสนอราคา -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} หยุดทำงาน -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},บาร์โค้ด {0} ได้ใช้แล้วในรายการ {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} หยุดทำงาน +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},บาร์โค้ด {0} ได้ใช้แล้วในรายการ {1} DocType: Lead,Add to calendar on this date,เพิ่มไปยังปฏิทินของวันนี้ apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,กฎระเบียบ สำหรับการเพิ่ม ค่าใช้จ่ายใน การจัดส่งสินค้า apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,เหตุการณ์ที่จะเกิดขึ้น @@ -2942,8 +2948,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling, apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,อย่างน้อยหนึ่งคลังสินค้ามีผลบังคับใช้ DocType: Serial No,Out of Warranty,ออกจากการรับประกัน DocType: BOM Replace Tool,Replace,แทนที่ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} กับการขายใบแจ้งหนี้ {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,กรุณาใส่ หน่วย เริ่มต้น ของการวัด +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} กับการขายใบแจ้งหนี้ {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,กรุณาใส่ หน่วย เริ่มต้น ของการวัด DocType: Purchase Invoice Item,Project Name,ชื่อโครงการ DocType: Supplier,Mention if non-standard receivable account,ถ้าพูดถึงไม่ได้มาตรฐานบัญชีลูกหนี้ DocType: Journal Entry Account,If Income or Expense,ถ้ารายได้หรือค่าใช้จ่าย @@ -2968,7 +2974,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,ปีงบประมาณ: {0} ไม่อยู่ DocType: Currency Exchange,To Currency,กับสกุลเงิน DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,อนุญาตให้ผู้ใช้ต่อไปเพื่อขออนุมัติการใช้งานออกวันบล็อก -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,ชนิดของการเรียกร้องค่าใช้จ่าย +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,ชนิดของการเรียกร้องค่าใช้จ่าย DocType: Item,Taxes,ภาษี apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,การชำระเงินและไม่ได้ส่งมอบ DocType: Project,Default Cost Center,เริ่มต้นที่ศูนย์ต้นทุน @@ -2998,7 +3004,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},แถว # {0}: ไม่มี Serial {1} ไม่ตรงกับ {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,สบาย ๆ ออก DocType: Batch,Batch ID,ID ชุด -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},หมายเหตุ : {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},หมายเหตุ : {0} ,Delivery Note Trends,แนวโน้มหมายเหตุการจัดส่งสินค้า apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,ข้อมูลอย่างนี้สัปดาห์ apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} จะต้องเป็น รายการ ที่จัดซื้อ หรือ ย่อย สัญญา ในแถว {1} @@ -3038,6 +3044,7 @@ DocType: Project Task,Pending Review,รอตรวจทาน apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,คลิกที่นี่เพื่อจ่าย DocType: Task,Total Expense Claim (via Expense Claim),การเรียกร้องค่าใช้จ่ายรวม (ผ่านการเรียกร้องค่าใช้จ่าย) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,รหัสลูกค้า +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,มาร์คขาด apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,เวลาที่จะต้องมากกว่าจากเวลา DocType: Journal Entry Account,Exchange Rate,อัตราแลกเปลี่ยน apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,การขายสินค้า {0} ไม่ได้ ส่ง @@ -3085,7 +3092,7 @@ DocType: Item Group,Default Expense Account,บัญชีค่าใช้จ DocType: Employee,Notice (days),แจ้งให้ทราบล่วงหน้า (วัน) DocType: Tax Rule,Sales Tax Template,แม่แบบภาษีการขาย DocType: Employee,Encashment Date,วันที่การได้เป็นเงินสด -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry",กับคูปองประเภทต้องเป็นหนึ่งในใบสั่งซื้อใบแจ้งหนี้หรือซื้ออนุทิน +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry",กับคูปองประเภทต้องเป็นหนึ่งในใบสั่งซื้อใบแจ้งหนี้หรือซื้ออนุทิน DocType: Account,Stock Adjustment,การปรับ สต็อก apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},ค่าใช้จ่ายเริ่มต้นกิจกรรมที่มีอยู่สำหรับประเภทกิจกรรม - {0} DocType: Production Order,Planned Operating Cost,ต้นทุนการดำเนินงานตามแผน @@ -3139,6 +3146,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,เขียนปิดเข้า DocType: BOM,Rate Of Materials Based On,อัตราวัสดุตาม apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Analtyics สนับสนุน +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,ยกเลิกการเลือกทั้งหมด apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},บริษัท ที่ขาดหายไป ในคลังสินค้า {0} DocType: POS Profile,Terms and Conditions,ข้อตกลงและเงื่อนไข apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},วันที่ควรจะเป็นภายในปีงบประมาณ สมมติว่านัด = {0} @@ -3160,7 +3168,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'",การตั้งค่า นี้ ปีงบประมาณ เป็นค่าเริ่มต้น ให้คลิกที่ 'ตั้ง เป็นค่าเริ่มต้น ' apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),การตั้งค่า เซิร์ฟเวอร์ขาเข้า สำหรับการสนับสนุน อีเมล์ ของคุณ (เช่น support@example.com ) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,ปัญหาการขาดแคลนจำนวน -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,ตัวแปรรายการ {0} อยู่ที่มีลักษณะเดียวกัน +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,ตัวแปรรายการ {0} อยู่ที่มีลักษณะเดียวกัน DocType: Salary Slip,Salary Slip,สลิปเงินเดือน apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,"โปรดระบุ “วันที่สิ้นสุด""" DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","สร้างบรรจุภัณฑ์สำหรับแพคเกจที่จะส่งมอบ ที่ใช้ในการแจ้งหมายเลขแพคเกจ, แพคเกจเนื้อหาและน้ำหนักของมัน" @@ -3208,7 +3216,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,ดู DocType: Item Attribute Value,Attribute Value,ค่าแอตทริบิวต์ apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}",id อีเมล ต้องไม่ซ้ำกัน อยู่ แล้วสำหรับ {0} ,Itemwise Recommended Reorder Level,แนะนำ Itemwise Reorder ระดับ -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,กรุณาเลือก {0} ครั้งแรก +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,กรุณาเลือก {0} ครั้งแรก DocType: Features Setup,To get Item Group in details table,ที่จะได้รับกลุ่มสินค้าในตารางรายละเอียด apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,รุ่นที่ {0} ของรายการ {1} หมดอายุ DocType: Sales Invoice,Commission,ค่านายหน้า @@ -3263,7 +3271,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,รับบัตรกำนัลที่โดดเด่น DocType: Warranty Claim,Resolved By,แก้ไขได้โดยการ DocType: Appraisal,Start Date,วันที่เริ่มต้น -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,จัดสรร ใบ เป็นระยะเวลา +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,จัดสรร ใบ เป็นระยะเวลา apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,เช็คและเงินฝากล้างไม่ถูกต้อง apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,คลิกที่นี่เพื่อตรวจสอบ apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,บัญชี {0}: คุณไม่สามารถกำหนดตัวเองเป็นบัญชีผู้ปกครอง @@ -3283,7 +3291,7 @@ DocType: Employee,Educational Qualification,วุฒิการศึกษา DocType: Workstation,Operating Costs,ค่าใช้จ่ายในการดำเนินงาน DocType: Employee Leave Approver,Employee Leave Approver,อนุมัติพนักงานออก apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} ได้รับการเพิ่มประสบความสำเร็จในรายการจดหมายข่าวของเรา -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},แถว {0}: รายการสั่งซื้อใหม่อยู่แล้วสำหรับคลังสินค้านี้ {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},แถว {0}: รายการสั่งซื้อใหม่อยู่แล้วสำหรับคลังสินค้านี้ {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.",ไม่ สามารถประกาศ เป็น หายไป เพราะ ใบเสนอราคา ได้รับการทำ DocType: Purchase Taxes and Charges Template,Purchase Master Manager,ซื้อผู้จัดการโท apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,สั่งผลิต {0} จะต้องส่ง @@ -3307,7 +3315,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,ใบแจ้งหนี้ การขาย {0} ได้ ถูกส่งมา อยู่แล้ว apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,วันที่เสร็จสมบูรณ์ DocType: Purchase Invoice Item,Amount (Company Currency),จำนวนเงิน (สกุลเงิน บริษัท ) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,หน่วย องค์กร (เขตปกครอง) ต้นแบบ +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,หน่วย องค์กร (เขตปกครอง) ต้นแบบ apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,กรุณากรอก กัดกร่อน มือถือ ที่ถูกต้อง DocType: Budget Detail,Budget Detail,รายละเอียดงบประมาณ apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,กรุณาใส่ข้อความ ก่อนที่จะส่ง @@ -3323,13 +3331,13 @@ DocType: Purchase Receipt Item,Received and Accepted,และได้รับ ,Serial No Service Contract Expiry,อนุกรมไม่มีหมดอายุสัญญาบริการ DocType: Item,Unit of Measure Conversion,หน่วยวัดแปลง apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,พนักงานไม่สามารถเปลี่ยนแปลงได้ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,คุณไม่ สามารถเครดิต และ หักเงินจากบัญชี เดียวกันในเวลาเดียวกัน +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,คุณไม่ สามารถเครดิต และ หักเงินจากบัญชี เดียวกันในเวลาเดียวกัน DocType: Naming Series,Help HTML,วิธีใช้ HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},weightage รวม ที่ได้รับมอบหมาย ควรจะ 100% มันเป็น {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},ค่าเผื่อเกิน {0} ข้ามกับรายการ {1} DocType: Address,Name of person or organization that this address belongs to.,ชื่อบุคคลหรือองค์กรที่อยู่นี้เป็นของ apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,ซัพพลายเออร์ ของคุณ -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,ไม่สามารถตั้งค่า ที่ หายไป ในขณะที่ การขายสินค้า ที่ทำ +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,ไม่สามารถตั้งค่า ที่ หายไป ในขณะที่ การขายสินค้า ที่ทำ apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,อีกโครงสร้างเงินเดือน {0} เป็นงานสำหรับพนักงาน {1} กรุณาตรวจสถานะ 'ใช้งาน' เพื่อดำเนินการต่อไป DocType: Purchase Invoice,Contact,ติดต่อ apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,ที่ได้รับจาก @@ -3339,11 +3347,11 @@ DocType: Item,Has Serial No,มีซีเรียลไม่มี DocType: Employee,Date of Issue,วันที่ออก apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: จาก {0} สำหรับ {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},แถว # {0}: ตั้งผู้ผลิตสำหรับรายการ {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,ภาพ Website {0} แนบไปกับรายการ {1} ไม่สามารถพบได้ +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,ภาพ Website {0} แนบไปกับรายการ {1} ไม่สามารถพบได้ DocType: Issue,Content Type,ประเภทเนื้อหา apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,คอมพิวเตอร์ DocType: Item,List this Item in multiple groups on the website.,รายการนี้ในหลายกลุ่มในเว็บไซต์ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,กรุณาตรวจสอบตัวเลือกสกุลเงินที่จะอนุญาตให้มีหลายบัญชีที่มีสกุลเงินอื่น ๆ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,กรุณาตรวจสอบตัวเลือกสกุลเงินที่จะอนุญาตให้มีหลายบัญชีที่มีสกุลเงินอื่น ๆ apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,รายการ: {0} ไม่อยู่ในระบบ apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,คุณยังไม่ได้ รับอนุญาตให้ กำหนดค่า แช่แข็ง DocType: Payment Reconciliation,Get Unreconciled Entries,คอมเมนต์ได้รับ Unreconciled @@ -3353,14 +3361,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,มัน DocType: Delivery Note,To Warehouse,ไปที่โกดัง apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},บัญชี {0} ได้รับการป้อน มากกว่าหนึ่งครั้ง ในรอบปี {1} ,Average Commission Rate,อัตราเฉลี่ยของค่าคอมมิชชั่น -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'มีเลขซีเรียล' ไม่สามารถ 'ใช่' สำหรับรายการ ที่ไม่มี สต็อก +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'มีเลขซีเรียล' ไม่สามารถ 'ใช่' สำหรับรายการ ที่ไม่มี สต็อก apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,ผู้เข้าร่วมไม่สามารถทำเครื่องหมายสำหรับวันที่ในอนาคต DocType: Pricing Rule,Pricing Rule Help,กฎการกำหนดราคาช่วยเหลือ DocType: Purchase Taxes and Charges,Account Head,หัวบัญชี apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,ปรับปรุงค่าใช้จ่ายเพิ่มเติมในการคำนวณค่าใช้จ่ายในที่ดินของรายการ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,ไฟฟ้า DocType: Stock Entry,Total Value Difference (Out - In),ความแตกต่างมูลค่ารวม (Out - In) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,แถว {0}: อัตราแลกเปลี่ยนที่มีผลบังคับใช้ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,แถว {0}: อัตราแลกเปลี่ยนที่มีผลบังคับใช้ apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},รหัสผู้ใช้ ไม่ได้ ตั้งไว้สำหรับ พนักงาน {0} DocType: Stock Entry,Default Source Warehouse,คลังสินค้าที่มาเริ่มต้น DocType: Item,Customer Code,รหัสลูกค้า @@ -3379,15 +3387,15 @@ DocType: Notification Control,Sales Invoice Message,ข้อความขา apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,บัญชีปิด {0} ต้องเป็นชนิดรับผิด / ผู้ถือหุ้น DocType: Authorization Rule,Based On,ขึ้นอยู่กับ DocType: Sales Order Item,Ordered Qty,สั่งซื้อ จำนวน -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,รายการ {0} ถูกปิดใช้งาน +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,รายการ {0} ถูกปิดใช้งาน DocType: Stock Settings,Stock Frozen Upto,สต็อกไม่เกิน Frozen apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},ระยะเวลาเริ่มต้นและระยะเวลาในการบังคับใช้สำหรับวันที่เกิดขึ้น {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,กิจกรรมของโครงการ / งาน -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,สร้าง Slips เงินเดือน +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,สร้าง Slips เงินเดือน apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}",ต้องเลือก การซื้อ ถ้าเลือก ใช้ได้กับ เป็น {0} apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,ส่วนลด จะต้อง น้อยกว่า 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),เขียนปิดจำนวนเงิน (บริษัท สกุล) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,แถว # {0}: กรุณาตั้งค่าปริมาณการสั่งซื้อ +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,แถว # {0}: กรุณาตั้งค่าปริมาณการสั่งซื้อ DocType: Landed Cost Voucher,Landed Cost Voucher,ที่ดินคูปองต้นทุน apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},กรุณาตั้ง {0} DocType: Purchase Invoice,Repeat on Day of Month,ทำซ้ำในวันเดือน @@ -3440,7 +3448,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,เริ่มต้นการทำงานในความคืบหน้าโกดัง apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,ตั้งค่าเริ่มต้น สำหรับการทำธุรกรรม ทางบัญชี apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,วันที่ คาดว่าจะ ไม่สามารถเป็น วัสดุ ก่อนที่จะ ขอ วันที่ -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,รายการ {0} จะต้องเป็น รายการ ขาย +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,รายการ {0} จะต้องเป็น รายการ ขาย DocType: Naming Series,Update Series Number,จำนวน Series ปรับปรุง DocType: Account,Equity,ความเสมอภาค DocType: Sales Order,Printing Details,รายละเอียดการพิมพ์ @@ -3492,7 +3500,7 @@ DocType: Task,Review Date,ทบทวนวันที่ DocType: Purchase Invoice,Advance Payments,การชำระเงินล่วงหน้า DocType: Purchase Taxes and Charges,On Net Total,เมื่อรวมสุทธิ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,คลังสินค้า เป้าหมาย ในแถว {0} จะต้อง เป็นเช่นเดียวกับ การผลิต การสั่งซื้อ -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,ไม่อนุญาตให้ใช้เครื่องมือการชำระเงิน +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,ไม่อนุญาตให้ใช้เครื่องมือการชำระเงิน apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,'ประกาศที่อยู่อีเมล' ไม่ระบุที่เกิดขึ้นสำหรับ% s apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,สกุลเงินไม่สามารถเปลี่ยนแปลงได้หลังจากการทำรายการโดยใช้เงินสกุลอื่น DocType: Company,Round Off Account,ปิดรอบบัญชี @@ -3515,7 +3523,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,จำนวนสินค้าที่ได้หลังการผลิต / บรรจุใหม่จากจำนวนวัตถุดิบที่มี DocType: Payment Reconciliation,Receivable / Payable Account,ลูกหนี้ / เจ้าหนี้การค้า DocType: Delivery Note Item,Against Sales Order Item,กับการขายรายการสั่งซื้อ -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},โปรดระบุคุณสมบัติราคาแอตทริบิวต์ {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},โปรดระบุคุณสมบัติราคาแอตทริบิวต์ {0} DocType: Item,Default Warehouse,คลังสินค้าเริ่มต้น DocType: Task,Actual End Date (via Time Logs),วันที่สิ้นสุดที่เกิดขึ้นจริง (ผ่านบันทึกเวลา) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},งบประมาณไม่สามารถกำหนดกลุ่มกับบัญชี {0} @@ -3540,10 +3548,10 @@ DocType: Lead,Blog Subscriber,สมาชิกบล็อก apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,สร้างกฎ เพื่อ จำกัด การ ทำธุรกรรม ตามค่า DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day",ถ้าการตรวจสอบรวมกัน ของวันทําการจะรวมถึงวันหยุดและนี้จะช่วยลดค่าของเงินเดือนที่ต้องการต่อวัน DocType: Purchase Invoice,Total Advance,ล่วงหน้ารวม -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,การประมวลผลเงินเดือน +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,การประมวลผลเงินเดือน DocType: Opportunity Item,Basic Rate,อัตราขั้นพื้นฐาน DocType: GL Entry,Credit Amount,จำนวนเครดิต -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,ตั้งเป็น ที่หายไป +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,ตั้งเป็น ที่หายไป apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,ใบเสร็จรับเงินการชำระเงินหมายเหตุ DocType: Supplier,Credit Days Based On,วันขึ้นอยู่กับเครดิต DocType: Tax Rule,Tax Rule,กฎภาษี @@ -3573,7 +3581,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,จำนวนที่ยอ apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} ไม่อยู่ apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,ตั๋วเงินยกให้กับลูกค้า apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Id โครงการ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},แถวไม่มี {0}: จำนวนเงินไม่สามารถจะสูงกว่าจำนวนเงินที่ค้างอยู่กับค่าใช้จ่ายในการเรียกร้อง {1} ที่รอดำเนินการเป็นจำนวน {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},แถวไม่มี {0}: จำนวนเงินไม่สามารถจะสูงกว่าจำนวนเงินที่ค้างอยู่กับค่าใช้จ่ายในการเรียกร้อง {1} ที่รอดำเนินการเป็นจำนวน {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} สมาชิกเพิ่ม DocType: Maintenance Schedule,Schedule,กำหนดการ DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""",กำหนดงบประมาณสำหรับศูนย์ต้นทุนนี้ การดำเนินการในการตั้งงบประมาณให้ดูรายการ "บริษัท ฯ " @@ -3634,19 +3642,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,รายละเอียด POS DocType: Payment Gateway Account,Payment URL Message,URL ข้อความการชำระเงิน apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.",ฤดูกาลสำหรับงบประมาณการตั้งค่าเป้าหมาย ฯลฯ -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,แถว {0}: จำนวนเงินที่ชำระไม่สามารถจะสูงกว่าจำนวนเงินที่โดดเด่น +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,แถว {0}: จำนวนเงินที่ชำระไม่สามารถจะสูงกว่าจำนวนเงินที่โดดเด่น apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,รวมค้างชำระ -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,บันทึกเวลาออกใบเสร็จไม่ได้ -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants",รายการ {0} เป็นแม่แบบโปรดเลือกหนึ่งในตัวแปรของมัน +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,บันทึกเวลาออกใบเสร็จไม่ได้ +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants",รายการ {0} เป็นแม่แบบโปรดเลือกหนึ่งในตัวแปรของมัน apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,ผู้ซื้อ apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,จ่ายสุทธิ ไม่สามารถ ลบ -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,กรุณากรอกตัวกับบัตรกำนัลด้วยตนเอง +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,กรุณากรอกตัวกับบัตรกำนัลด้วยตนเอง DocType: SMS Settings,Static Parameters,พารามิเตอร์คง DocType: Purchase Order,Advance Paid,จ่ายล่วงหน้า DocType: Item,Item Tax,ภาษีสินค้า apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,วัสดุในการจัดจำหน่าย apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,สรรพสามิตใบแจ้งหนี้ DocType: Expense Claim,Employees Email Id,Email รหัสพนักงาน +DocType: Employee Attendance Tool,Marked Attendance,ผู้เข้าร่วมการทำเครื่องหมาย apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,หนี้สินหมุนเวียน apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,ส่ง SMS มวลการติดต่อของคุณ DocType: Purchase Taxes and Charges,Consider Tax or Charge for,พิจารณาภาษีหรือคิดค่าบริการสำหรับ @@ -3669,7 +3678,7 @@ DocType: Item Attribute,Numeric Values,ค่าที่เป็นตัว apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,แนบ โลโก้ DocType: Customer,Commission Rate,อัตราค่าคอมมิชชั่น apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,ทำให้ตัวแปร -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,ปิดกั้นการใช้งานออกโดยกรม +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,ปิดกั้นการใช้งานออกโดยกรม apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,รถเข็นที่ว่างเปล่า DocType: Production Order,Actual Operating Cost,ต้นทุนการดำเนินงานที่เกิดขึ้นจริง apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,ราก ไม่สามารถแก้ไขได้ @@ -3688,7 +3697,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,โดยอัตโนมัติสร้างวัสดุขอถ้าปริมาณต่ำกว่าระดับนี้ ,Item-wise Purchase Register,สมัครสมาชิกสั่งซื้อสินค้าที่ชาญฉลาด DocType: Batch,Expiry Date,วันหมดอายุ -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item",การตั้งค่าระดับสั่งซื้อสินค้าจะต้องเป็นรายการการซื้อหรือการผลิตรายการ +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item",การตั้งค่าระดับสั่งซื้อสินค้าจะต้องเป็นรายการการซื้อหรือการผลิตรายการ ,Supplier Addresses and Contacts,ที่อยู่ ของผู้ผลิต และผู้ติดต่อ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,กรุณาเลือก หมวดหมู่ แรก apps/erpnext/erpnext/config/projects.py +18,Project master.,ต้นแบบโครงการ diff --git a/erpnext/translations/tr.csv b/erpnext/translations/tr.csv index 252281441f..4821d96d3b 100644 --- a/erpnext/translations/tr.csv +++ b/erpnext/translations/tr.csv @@ -205,15 +205,15 @@ DocType: Journal Entry Account,Credit in Company Currency,Şirket Para Kredi DocType: Delivery Note,Installation Status,Kurulum Durumu apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Onaylanan ve reddedilen miktarların toplamı alınan ürün miktarına eşit olmak zorundadır. {0} DocType: Item,Supply Raw Materials for Purchase,Tedarik Hammadde Satın Alma için -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Ürün {0} Satın alma ürünü olmalıdır +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Ürün {0} Satın alma ürünü olmalıdır DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records",", Şablon İndir uygun verileri doldurmak ve değiştirilmiş dosya ekleyin. Seçilen dönemde tüm tarihler ve çalışan kombinasyonu mevcut katılım kayıtları ile, şablonda gelecek" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,Ürün {0} aktif değil veya kullanım ömrünün sonuna gelindi DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Satış Faturası verildikten sonra güncellenecektir. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included",Satır {0} a vergi eklemek için {1} satırlarındaki vergiler de dahil edilmelidir -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,İK Modülü Ayarları -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,İK Modülü Ayarları +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included",Satır {0} a vergi eklemek için {1} satırlarındaki vergiler de dahil edilmelidir +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,İK Modülü Ayarları +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,İK Modülü Ayarları DocType: SMS Center,SMS Center,SMS Merkezi DocType: SMS Center,SMS Center,SMS Merkezi DocType: BOM Replace Tool,New BOM,Yeni BOM @@ -249,7 +249,7 @@ DocType: Production Planning Tool,Sales Orders,Satış Siparişleri DocType: Purchase Taxes and Charges,Valuation,Değerleme DocType: Purchase Taxes and Charges,Valuation,Değerleme ,Purchase Order Trends,Satın alma Siparişi Eğilimleri -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Yıllık tahsis izni. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Yıllık tahsis izni. DocType: Earning Type,Earning Type,Kazanç Türü DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Devre Dışı Bırak Kapasite Planlama ve Zaman Takip DocType: Bank Reconciliation,Bank Account,Banka Hesabı @@ -292,7 +292,7 @@ DocType: Item Website Specification,Item Website Specification,Ürün Web Sitesi DocType: Item Website Specification,Item Website Specification,Ürün Web Sitesi Özellikleri DocType: Payment Tool,Reference No,Referans No apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,İzin engellendi -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Ürün {0} {1}de kullanım ömrünün sonuna gelmiştir. +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Ürün {0} {1}de kullanım ömrünün sonuna gelmiştir. apps/erpnext/erpnext/accounts/utils.py +341,Annual,Yıllık apps/erpnext/erpnext/accounts/utils.py +341,Annual,Yıllık DocType: Stock Reconciliation Item,Stock Reconciliation Item,Stok Uzlaşma Öğe @@ -307,7 +307,7 @@ DocType: Pricing Rule,Supplier Type,Tedarikçi Türü DocType: Pricing Rule,Supplier Type,Tedarikçi Türü DocType: Item,Publish in Hub,Hub Yayınla ,Terretory,Bölge -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Ürün {0} iptal edildi +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Ürün {0} iptal edildi apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Malzeme Talebi apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Malzeme Talebi DocType: Bank Reconciliation,Update Clearance Date,Güncelleme Alma Tarihi @@ -321,13 +321,14 @@ DocType: Purchase Receipt Item,Rejected Quantity,Reddedilen Miktar DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","İrsaliye, Teklif, Satış Faturası, Satış Siparişinde kullanılabilir alan" DocType: SMS Settings,SMS Sender Name,SMS Gönderici Adı DocType: Contact,Is Primary Contact,Birincil İrtibat +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Zaman Log Fatura için batched olmuştur DocType: Notification Control,Notification Control,Bildirim Kontrolü DocType: Notification Control,Notification Control,Bildirim Kontrolü DocType: Lead,Suggestions,Öneriler DocType: Lead,Suggestions,Öneriler DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Bu bölgede Ürün grubu bütçeleri ayarlayın. Dağıtımı ayarlayarak dönemsellik de ekleyebilirsiniz. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},Depo ana hesap grubu giriniz {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Karşı Ödeme {0} {1} Üstün Tutar daha büyük olamaz {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Karşı Ödeme {0} {1} Üstün Tutar daha büyük olamaz {2} DocType: Supplier,Address HTML,Adres HTML DocType: Lead,Mobile No.,Cep No DocType: Lead,Mobile No.,Cep No @@ -346,7 +347,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Hub ile Senkronize apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Yanlış Şifre DocType: Item,Variant Of,Of Varyant -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Ürün {0} Hizmet ürünü olmalıdır apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',Daha 'Miktar imalatı için' Tamamlandı Adet büyük olamaz DocType: Period Closing Voucher,Closing Account Head,Kapanış Hesap Başkanı DocType: Employee,External Work History,Dış Çalışma Geçmişi @@ -361,10 +361,10 @@ DocType: Stock Settings,Notify by Email on creation of automatic Material Reques DocType: Journal Entry,Multi Currency,Çoklu Para Birimi DocType: Payment Reconciliation Invoice,Invoice Type,Fatura Türü DocType: Payment Reconciliation Invoice,Invoice Type,Fatura Türü -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,İrsaliye +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,İrsaliye apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Vergiler kurma apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,Bunu çekti sonra Ödeme Giriş modifiye edilmiştir. Tekrar çekin lütfen. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} iki kere ürün vergisi girildi +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} iki kere ürün vergisi girildi apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Bu hafta ve bekleyen aktiviteler için Özet DocType: Workstation,Rent Cost,Kira Bedeli DocType: Workstation,Rent Cost,Kira Bedeli @@ -376,7 +376,7 @@ DocType: Shipping Rule,Valid for Countries,Ülkeler için geçerli DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Para birimi, kur oranı,ithalat toplamı, bütün ithalat toplamı vb. Satın Alma Fişinde, Tedarikçi Fiyat Teklifinde, Satış Faturasında, Alım Emrinde vb. mevcuttur." apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,Bu Ürün Şablon ve işlemlerde kullanılamaz. 'Hayır Kopyala' ayarlanmadığı sürece Öğe özellikleri varyantları içine üzerinden kopyalanır apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Dikkat Toplam Sipariş -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Çalışan görevi (ör. CEO, Müdür vb.)" +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Çalışan görevi (ör. CEO, Müdür vb.)" apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,Ayın 'Belli Gününde Tekrarla' alanına değer giriniz DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,Müşteri Para Biriminin Müşterinin temel birimine dönüştürülme oranı DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","BOM,İrsaliye, Satın Alma Faturası, Satın Alma Makbuzu, Satış Faturası, Satış Emri, Stok Girdisi, Zaman Çizelgesinde Mevcut" @@ -436,8 +436,8 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} DocType: Purchase Receipt,Vehicle Date,Araç Tarihi apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Tıbbi apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Tıbbi -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Kaybetme nedeni -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Kaybetme nedeni +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Kaybetme nedeni +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Kaybetme nedeni apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},İş İstasyonu Tatil List göre aşağıdaki tarihlerde kapalı: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Fırsatlar DocType: Employee,Single,Tek @@ -471,15 +471,16 @@ DocType: Lead,Channel Partner,Kanal Ortağı DocType: Lead,Channel Partner,Kanal Ortağı DocType: Account,Old Parent,Eski Ebeveyn DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,"E-postanın bir parçası olarak giden giriş metnini özelleştirin, her işlemin ayrı giriş metni vardır" +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),semboller dahil etmeyin (örn. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Satış Master Müdürü apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Tüm üretim süreçleri için genel ayarlar. DocType: Accounts Settings,Accounts Frozen Upto,Dondurulmuş hesaplar DocType: SMS Log,Sent On,Gönderim Zamanı -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Özellik {0} Nitelikler Tablo birden çok kez seçilmiş +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Özellik {0} Nitelikler Tablo birden çok kez seçilmiş DocType: HR Settings,Employee record is created using selected field. ,Çalışan kaydı seçilen alan kullanılarak yapılmıştır DocType: Sales Order,Not Applicable,Uygulanamaz DocType: Sales Order,Not Applicable,Uygulanamaz -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Ana tatil. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Ana tatil. DocType: Material Request Item,Required Date,Gerekli Tarih DocType: Material Request Item,Required Date,Gerekli Tarih DocType: Delivery Note,Billing Address,Faturalama Adresi @@ -523,7 +524,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,Malzeme Talebinin yapılacağı Depoyu girin DocType: Production Order,Additional Operating Cost,Ek İşletme Maliyeti apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Bakım ürünleri -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Birleştirmek için, aşağıdaki özellikler her iki Ürün için de aynı olmalıdır" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Birleştirmek için, aşağıdaki özellikler her iki Ürün için de aynı olmalıdır" DocType: Shipping Rule,Net Weight,Net Ağırlık DocType: Employee,Emergency Phone,Acil Telefon DocType: Employee,Emergency Phone,Acil Telefon @@ -598,11 +599,11 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Fatura ve Teslimat Durumu apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Tekrar Müşteriler DocType: Leave Control Panel,Allocate,Tahsis -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Satış İade +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Satış İade DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Üretim Emri oluşturmak istediğiniz Satış Siparişlerini seçiniz. DocType: Item,Delivered by Supplier (Drop Ship),Yüklenici tarafından teslim (Bırak Gemi) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Maaş bileşenleri. -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Maaş bileşenleri. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Maaş bileşenleri. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Maaş bileşenleri. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Potansiyel müşterilerin Veritabanı. DocType: Authorization Rule,Customer or Item,Müşteri ya da Öğe apps/erpnext/erpnext/config/crm.py +17,Customer database.,Müşteri veritabanı. @@ -612,7 +613,7 @@ DocType: Lead,Middle Income,Orta Gelir DocType: Lead,Middle Income,Orta Gelir apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Açılış (Cr) apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Açılış (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Zaten başka Ölçü Birimi bazı işlem (ler) yaptık çünkü Öğe için Ölçü Varsayılan Birim {0} doğrudan değiştirilemez. Farklı Standart Ölçü Birimi kullanmak için yeni bir öğe oluşturmanız gerekecektir. +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Zaten başka Ölçü Birimi bazı işlem (ler) yaptık çünkü Öğe için Ölçü Varsayılan Birim {0} doğrudan değiştirilemez. Farklı Standart Ölçü Birimi kullanmak için yeni bir öğe oluşturmanız gerekecektir. apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Tahsis edilen miktar negatif olamaz DocType: Purchase Order Item,Billed Amt,Faturalı Tutarı DocType: Warehouse,A logical Warehouse against which stock entries are made.,Stok girişleri mantıksal Depoya karşı yapıldı @@ -635,15 +636,15 @@ DocType: Employee,Organization Profile,Kuruluş Profili apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,Kurulum>Seri numaralandırmayı kullanarak Devam numaralandırması kurunuz DocType: Employee,Reason for Resignation,İstifa Nedeni DocType: Employee,Reason for Resignation,İstifa Nedeni -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Performans değerlendirmeleri için Şablon. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Performans değerlendirmeleri için Şablon. DocType: Payment Reconciliation,Invoice/Journal Entry Details,Fatura / günlük girdisi Detayları apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' mali yıl {2} içinde değil DocType: Buying Settings,Settings for Buying Module,Modülü satın almak için Ayarlar apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,İlk Satınalma Faturası giriniz DocType: Buying Settings,Supplier Naming By,Tedarikçi İsimlendirme DocType: Activity Type,Default Costing Rate,Standart Maliyetlendirme Oranı -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Bakım Programı -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Bakım Programı +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Bakım Programı +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Bakım Programı apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Sonra Fiyatlandırma Kurallar Müşteri dayalı filtre edilir, Müşteri Grubu, Territory, Tedarikçi, Tedarikçi Tipi, Kampanya, Satış Ortağı vb" apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Sonra Fiyatlandırma Kurallar Müşteri dayalı filtre edilir, Müşteri Grubu, Territory, Tedarikçi, Tedarikçi Tipi, Kampanya, Satış Ortağı vb" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Envanter Net Değişim @@ -694,7 +695,7 @@ DocType: Purchase Invoice,Quarterly,Üç ayda bir DocType: Selling Settings,Delivery Note Required,İrsaliye Gerekli DocType: Sales Order Item,Basic Rate (Company Currency),Temel oran (Şirket para birimi) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush Hammaddeleri Dayalı -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,Lütfen ayrıntıları girin +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,Lütfen ayrıntıları girin DocType: Purchase Receipt,Other Details,Diğer Detaylar DocType: Purchase Receipt,Other Details,Diğer Detaylar DocType: Account,Accounts,Hesaplar @@ -711,7 +712,7 @@ DocType: Employee,Provide email id registered in company,Şirkette kayıtlı e-p DocType: Hub Settings,Seller City,Satıcı Şehri DocType: Email Digest,Next email will be sent on:,Sonraki e-posta gönderilecek: DocType: Offer Letter Term,Offer Letter Term,Mektubu Dönem Teklif -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Öğe varyantları vardır. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Öğe varyantları vardır. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Ürün {0} bulunamadı DocType: Bin,Stock Value,Stok Değeri DocType: Bin,Stock Value,Stok Değeri @@ -723,7 +724,7 @@ DocType: Material Request Item,Quantity and Warehouse,Miktar ve Depo DocType: Material Request Item,Quantity and Warehouse,Miktar ve Depo DocType: Sales Invoice,Commission Rate (%),Komisyon Oranı (%) DocType: Sales Invoice,Commission Rate (%),Komisyon Oranı (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Fiş karşı Tipi Satış Sipariş biri, Satış Faturası veya günlük girdisi olmalıdır" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Fiş karşı Tipi Satış Sipariş biri, Satış Faturası veya günlük girdisi olmalıdır" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Havacılık ve Uzay; DocType: Journal Entry,Credit Card Entry,Kredi Kartı Girişi apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Görev Konusu @@ -822,11 +823,11 @@ DocType: Account,Liability,Borç DocType: Account,Liability,Borç apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Yaptırıma Tutar Satır talep miktarı daha büyük olamaz {0}. DocType: Company,Default Cost of Goods Sold Account,Ürünler Satılan Hesabı Varsayılan Maliyeti -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Fiyat Listesi seçilmemiş +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Fiyat Listesi seçilmemiş DocType: Employee,Family Background,Aile Geçmişi DocType: Process Payroll,Send Email,E-posta Gönder DocType: Process Payroll,Send Email,E-posta Gönder -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Uyarı: Geçersiz Eklenti {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Uyarı: Geçersiz Eklenti {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,İzin yok DocType: Company,Default Bank Account,Varsayılan Banka Hesabı DocType: Company,Default Bank Account,Varsayılan Banka Hesabı @@ -859,7 +860,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Müş DocType: Features Setup,"To enable ""Point of Sale"" features","Point of Sale" özellikleri etkinleştirmek için DocType: Bin,Moving Average Rate,Hareketli Ortalama Kuru DocType: Production Planning Tool,Select Items,Ürünleri Seçin -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} Bill karşı {1} tarihli {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} Bill karşı {1} tarihli {2} DocType: Maintenance Visit,Completion Status,Tamamlanma Durumu DocType: Maintenance Visit,Completion Status,Tamamlanma Durumu DocType: Sales Invoice Item,Target Warehouse,Hedef Depo @@ -932,7 +933,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Ana apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Çalışma için bir sonraki {0} günlerde Zaman Slot bulamayan {1} DocType: Production Order,Plan material for sub-assemblies,Alt-montajlar Plan malzeme apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} aktif olmalıdır -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,Önce belge türünü seçiniz +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Önce belge türünü seçiniz apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Goto Sepeti apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Bu Bakım Ziyaretini iptal etmeden önce Malzeme Ziyareti {0} iptal edin DocType: Salary Slip,Leave Encashment Amount,İzin Tahsilat Miktarı @@ -954,7 +955,7 @@ DocType: Supplier,Default Payable Accounts,Standart Borç Hesapları apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Çalışan {0} aktif değil veya yok. DocType: Features Setup,Item Barcode,Ürün Barkodu DocType: Features Setup,Item Barcode,Ürün Barkodu -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Öğe Türevleri {0} güncellendi +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Öğe Türevleri {0} güncellendi DocType: Quality Inspection Reading,Reading 6,6 Okuma DocType: Purchase Invoice Advance,Purchase Invoice Advance,Fatura peşin alım DocType: Address,Shop,Mağaza @@ -980,7 +981,7 @@ DocType: Salary Slip,Total in words,Sözlü Toplam DocType: Material Request Item,Lead Time Date,Talep Yaratma Zaman Tarihi apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,zorunludur. Döviz kur kayıdının yaratılamadığı hesap apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Satır # {0}: Ürün{1} için seri no belirtiniz -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","'Ürün Bundle' öğeler, Depo, Seri No ve Toplu No 'Ambalaj Listesi' tablodan kabul edilecektir. Depo ve Toplu Hayır herhangi bir 'Ürün Bundle' öğe için tüm ambalaj öğeler için aynı ise, bu değerler ana Öğe tabloda girilebilir, değerler tablosu 'Listesi Ambalaj' kopyalanacaktır." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","'Ürün Bundle' öğeler, Depo, Seri No ve Toplu No 'Ambalaj Listesi' tablodan kabul edilecektir. Depo ve Toplu Hayır herhangi bir 'Ürün Bundle' öğe için tüm ambalaj öğeler için aynı ise, bu değerler ana Öğe tabloda girilebilir, değerler tablosu 'Listesi Ambalaj' kopyalanacaktır." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Müşterilere yapılan sevkiyatlar. apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Müşterilere yapılan sevkiyatlar. DocType: Purchase Invoice Item,Purchase Order Item,Satınalma Siparişi Ürünleri @@ -1007,6 +1008,7 @@ apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go DocType: Workstation,Electricity Cost,Elektrik Maliyeti DocType: Workstation,Electricity Cost,Elektrik Maliyeti DocType: HR Settings,Don't send Employee Birthday Reminders,Çalışanların Doğumgünü Hatırlatmalarını gönderme +,Employee Holiday Attendance,Çalışan Tatil Seyirci DocType: Opportunity,Walk In,Rezervasyonsuz Müşteri apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Stok Girişler DocType: Item,Inspection Criteria,Muayene Kriterleri @@ -1031,7 +1033,7 @@ DocType: Journal Entry Account,Expense Claim,Gider Talebi DocType: Journal Entry Account,Expense Claim,Gider Talebi apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Için Adet {0} DocType: Leave Application,Leave Application,İzin uygulaması -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,İzin Tahsis Aracı +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,İzin Tahsis Aracı DocType: Leave Block List,Leave Block List Dates,İzin engel listesi tarihleri DocType: Company,If Monthly Budget Exceeded (for expense account),Aylık Bütçe (gider hesabı için) aşıldı ise DocType: Workstation,Net Hour Rate,Net Saat Hızı @@ -1042,7 +1044,7 @@ DocType: POS Profile,Cash/Bank Account,Kasa / Banka Hesabı DocType: POS Profile,Cash/Bank Account,Kasa / Banka Hesabı apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Miktar veya değer hiçbir değişiklik ile kaldırıldı öğeler. DocType: Delivery Note,Delivery To,Teslim -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Özellik tablosu zorunludur +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Özellik tablosu zorunludur DocType: Production Planning Tool,Get Sales Orders,Satış Şiparişlerini alın apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} negatif olamaz apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} negatif olamaz @@ -1117,7 +1119,7 @@ DocType: SMS Center,Total Characters,Toplam Karakterler apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},Ürün için BOM BOM alanında seçiniz {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-Form Fatura Ayrıntısı DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Ödeme Mutabakat Faturası -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Katkı% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Katkı% DocType: Item,website page link,web sayfa linki DocType: Company,Company registration numbers for your reference. Tax numbers etc.,Referans için şirket kayıt numaraları. Vergi numaraları vb DocType: Sales Partner,Distributor,Dağıtımcı @@ -1165,10 +1167,10 @@ DocType: Stock Settings,Default Item Group,Standart Ürün Grubu apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Tedarikçi Veritabanı. DocType: Account,Balance Sheet,Bilanço DocType: Account,Balance Sheet,Bilanço -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ','Ürün Kodu Ürün için Merkezi'ni Maliyet +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ','Ürün Kodu Ürün için Merkezi'ni Maliyet DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,Satış kişiniz bu tarihte müşteriyle irtibata geçmek için bir hatırlama alacaktır apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Ek hesaplar Gruplar altında yapılabilir, ancak girişler olmayan Gruplar karşı yapılabilir" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Vergi ve diğer Maaş kesintileri. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Vergi ve diğer Maaş kesintileri. DocType: Lead,Lead,Talep Yaratma DocType: Email Digest,Payables,Borçlar DocType: Email Digest,Payables,Borçlar @@ -1190,11 +1192,11 @@ DocType: Global Defaults,Current Fiscal Year,Cari Mali Yılı DocType: Global Defaults,Disable Rounded Total,Yuvarlak toplam devre dışı DocType: Global Defaults,Disable Rounded Total,Yuvarlak toplam devre dışı DocType: Lead,Call,Çağrı -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'Girdiler' boş olamaz +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'Girdiler' boş olamaz apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Satır {0} ı {1} ile aynı biçimde kopyala ,Trial Balance,Mizan ,Trial Balance,Mizan -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Çalışanlar kurma +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Çalışanlar kurma apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","Izgara """ apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","Izgara """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,Önce Ön ek seçiniz @@ -1206,7 +1208,7 @@ DocType: Contact,User ID,Kullanıcı Kimliği apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Değerlendirme Defteri apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,En erken apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,En erken -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Bir Ürün grubu aynı isimle bulunuyorsa, lütfen Ürün veya Ürün grubu adını değiştirin" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Bir Ürün grubu aynı isimle bulunuyorsa, lütfen Ürün veya Ürün grubu adını değiştirin" DocType: Production Order,Manufacture against Sales Order,Satış Emrine Karşı Üretim apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Dünyanın geri kalanı apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,Öğe {0} Toplu olamaz @@ -1233,7 +1235,7 @@ DocType: GL Entry,Against Voucher,Dekont Karşılığı DocType: Item,Default Buying Cost Center,Standart Alış Maliyet Merkezi DocType: Item,Default Buying Cost Center,Standart Alış Maliyet Merkezi apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","ERPNext en iyi sonucu almak için, biraz zaman ayırın ve bu yardım videoları izlemek öneririz." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Ürün {0} Satış ürünü olmalıdır +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Ürün {0} Satış ürünü olmalıdır apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,için DocType: Item,Lead Time in days,Gün Kurşun Zaman ,Accounts Payable Summary,Ödeme Hesabı Özeti @@ -1264,7 +1266,7 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Tarım apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Ürünleriniz veya hizmetleriniz DocType: Mode of Payment,Mode of Payment,Ödeme Şekli DocType: Mode of Payment,Mode of Payment,Ödeme Şekli -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Web Sitesi Resim kamu dosya veya web sitesi URL olmalıdır +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Web Sitesi Resim kamu dosya veya web sitesi URL olmalıdır apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,Bu bir kök Ürün grubudur ve düzenlenemez. DocType: Journal Entry Account,Purchase Order,Satın alma emri DocType: Warehouse,Warehouse Contact Info,Depo İletişim Bilgileri @@ -1278,7 +1280,7 @@ DocType: Purchase Invoice Item,Item Tax Rate,Ürün Vergi Oranı DocType: Purchase Invoice Item,Item Tax Rate,Ürün Vergi Oranı apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","{0}, sadece kredi hesapları başka bir ödeme girişine karşı bağlantılı olabilir için" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,İrsaliye {0} teslim edilmedi -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Ürün {0} bir taşeron ürünü olmalıdır +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Ürün {0} bir taşeron ürünü olmalıdır apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Sermaye Ekipmanları apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Sermaye Ekipmanları apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Fiyatlandırma Kuralı ilk olarak 'Uygula' alanı üzerinde seçilir, bu bir Ürün, Grup veya Marka olabilir." @@ -1291,7 +1293,7 @@ DocType: Appraisal Goal,Goal,Hedef DocType: Appraisal Goal,Goal,Hedef DocType: Sales Invoice Item,Edit Description,Edit Açıklama apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Beklenen Teslim Tarihi Planlanan Başlama Tarihi daha az olduğunu. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,Tedarikçi İçin +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,Tedarikçi İçin DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Hesap Türünü ayarlamak işlemlerde bu hesabı seçeren yardımcı olur DocType: Purchase Invoice,Grand Total (Company Currency),Genel Toplam (ޞirket para birimi) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Toplam Giden @@ -1355,7 +1357,6 @@ DocType: Address,Utilities,Programlar DocType: Purchase Invoice Item,Accounting,Muhasebe DocType: Purchase Invoice Item,Accounting,Muhasebe DocType: Features Setup,Features Setup,Özellik Kurulumu -DocType: Item,Is Service Item,Hizmet Maddesi apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Uygulama süresi dışında izin tahsisi dönemi olamaz DocType: Activity Cost,Projects,Projeler DocType: Activity Cost,Projects,Projeler @@ -1384,7 +1385,7 @@ DocType: Item,Maintain Stock,Stok koruyun apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Zaten Üretim Siparişi için oluşturulan Stok Girişler apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Sabit Varlık Net Değişim DocType: Leave Control Panel,Leave blank if considered for all designations,Tüm tanımları için kabul ise boş bırakın -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Satır {0}'daki 'Gerçek' ücret biçimi Ürün Br.Fiyatına dahil edilemez +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Satır {0}'daki 'Gerçek' ücret biçimi Ürün Br.Fiyatına dahil edilemez apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,DateTime Gönderen DocType: Email Digest,For Company,Şirket için @@ -1395,8 +1396,8 @@ DocType: Sales Invoice,Shipping Address Name,Teslimat Adresi İsmi apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Hesap Tablosu apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Hesap Tablosu DocType: Material Request,Terms and Conditions Content,Şartlar ve Koşullar İçeriği -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,100 'den daha büyük olamaz -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Ürün {0} bir stok ürünü değildir +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,100 'den daha büyük olamaz +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Ürün {0} bir stok ürünü değildir DocType: Maintenance Visit,Unscheduled,Plânlanmamış DocType: Employee,Owned,Hisseli DocType: Salary Slip Deduction,Depends on Leave Without Pay,Pay olmadan İzni bağlıdır @@ -1423,7 +1424,7 @@ Used for Taxes and Charges","Bir dize olarak madde ustadan getirilen ve bu aland apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Çalışan kendi kendine rapor olamaz. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Hesap dondurulmuş ise, girdiler kısıtlı kullanıcılara açıktır." DocType: Email Digest,Bank Balance,Banka hesap bakiyesi -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},{1} sadece para yapılabilir: {0} Muhasebe Kayıt {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},{1} sadece para yapılabilir: {0} Muhasebe Kayıt {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Çalışan {0} ve ay bulunamadı aktif Maaş Yapısı DocType: Job Opening,"Job profile, qualifications required etc.","İş Profili, gerekli nitelikler vb" DocType: Journal Entry Account,Account Balance,Hesap Bakiyesi @@ -1445,7 +1446,7 @@ DocType: Shipping Rule Condition,To Value,Değer Vermek DocType: Shipping Rule Condition,To Value,Değer Vermek DocType: Supplier,Stock Manager,Stok Müdürü apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Satır {0} Kaynak depo zorunludur -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Ambalaj Makbuzu +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Ambalaj Makbuzu apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Ofis Kiraları apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Ofis Kiraları apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Kurulum SMS ağ geçidi ayarları @@ -1501,8 +1502,8 @@ DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Ek İndi apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Hata: {0}> {1} apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Hata: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,Lütfen hesap tablosundan yeni hesap oluşturunuz -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Bakım Ziyareti -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Bakım Ziyareti +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Bakım Ziyareti +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Bakım Ziyareti apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Müşteri> Müşteri Grubu> Eyalet DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Depo Available at Toplu Adet DocType: Time Log Batch Detail,Time Log Batch Detail,Günlük Seri Detayı @@ -1511,7 +1512,7 @@ DocType: Leave Block List,Block Holidays on important days.,Önemli günlerde Bl ,Accounts Receivable Summary,Alacak Hesapları Özeti apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,Çalışan Rolü ayarlamak için Çalışan kaydındaki Kullanıcı Kimliği alanını Lütfen DocType: UOM,UOM Name,Ölçü Birimi -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Katkı Tutarı +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Katkı Tutarı DocType: Sales Invoice,Shipping Address,Teslimat Adresi DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,"Bu araç, güncellemek veya sistemde stok miktarı ve değerleme düzeltmek için yardımcı olur. Genellikle sistem değerlerini ve ne aslında depolarda var eşitlemek için kullanılır." DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,Sözlü İrsaliyeyi kaydettiğinizde görünür olacaktır @@ -1560,7 +1561,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Ürünleri barkod kullanarak aramak için. Ürünlerin barkodunu taratarak Ürünleri İrsaliye ev Satış Faturasına girebilirsiniz apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Ödeme E-posta tekrar gönder DocType: Dependent Task,Dependent Task,Bağımlı Görev -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Tedbir varsayılan Birimi için dönüşüm faktörü satırda 1 olmalıdır {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Tedbir varsayılan Birimi için dönüşüm faktörü satırda 1 olmalıdır {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Tip{0} izin {1}'den uzun olamaz DocType: Manufacturing Settings,Try planning operations for X days in advance.,Peşin X gün için operasyonlar planlama deneyin. DocType: HR Settings,Stop Birthday Reminders,Doğum günü hatırlatıcılarını durdur @@ -1572,7 +1573,7 @@ apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Görüntüle apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Nakit Net Değişim DocType: Salary Structure Deduction,Salary Structure Deduction,Maaş Yapısı Kesintisi DocType: Salary Structure Deduction,Salary Structure Deduction,Maaş Yapısı Kesintisi -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Ölçü Birimi {0} Dönüşüm katsayısı tablosunda birden fazla kez girildi. +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Ölçü Birimi {0} Dönüşüm katsayısı tablosunda birden fazla kez girildi. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Ödeme Talebi zaten var {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,İhraç Öğeler Maliyeti apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Miktar fazla olmamalıdır {0} @@ -1605,7 +1606,7 @@ DocType: BOM Item,BOM Item,BOM Ürün DocType: Appraisal,For Employee,Çalışanlara apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Satır {0}: Tedarikçi karşı Advance debit gerekir DocType: Company,Default Values,Varsayılan Değerler -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Satır {0}: Ödeme tutarı negatif olamaz +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Satır {0}: Ödeme tutarı negatif olamaz DocType: Expense Claim,Total Amount Reimbursed,Toplam Tutar Geri ödenen apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Tedarikçi karşı Fatura {0} tarihli {1} DocType: Customer,Default Price List,Standart Fiyat Listesi @@ -1638,8 +1639,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Ser DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Kullanılan tüm diğer reçetelerde belirli BOM değiştirin. Bu, eski BOM bağlantısını yerine maliyet güncelleme ve yeni BOM göre ""BOM Patlama Öğe"" tablosunu yeniden edecek" DocType: Shopping Cart Settings,Enable Shopping Cart,Alışveriş Sepeti etkinleştirin DocType: Employee,Permanent Address,Daimi Adres -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Ürün {0} Hizmet ürünü olmalıdır. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Genel Toplam den \ {0} {1} büyük olamaz karşı ödenen Peşin {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Ürün kodu seçiniz apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Ürün kodu seçiniz @@ -1708,12 +1708,13 @@ apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Ana apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Ana apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Varyant DocType: Naming Series,Set prefix for numbering series on your transactions,İşlemlerinizde seri numaralandırma için ön ek ayarlayın +DocType: Employee Attendance Tool,Employees HTML,"Çalışanlar, HTML" apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Durdurulan Sipariş iptal edilemez. İptali kaldırın -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Standart BOM ({0}) Bu öğe veya şablon için aktif olmalıdır +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Standart BOM ({0}) Bu öğe veya şablon için aktif olmalıdır DocType: Employee,Leave Encashed?,İzin Tahsil Edilmiş mi? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Kimden alanında Fırsat zorunludur DocType: Item,Variants,Varyantlar -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Satın Alma Emri verin +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Satın Alma Emri verin DocType: SMS Center,Send To,Gönder apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},İzin tipi{0} için yeterli izin bakiyesi yok DocType: Payment Reconciliation Payment,Allocated amount,Ayrılan miktarı @@ -1834,7 +1835,7 @@ apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Da DocType: Website Item Group,Website Item Group,Web Sitesi Ürün Grubu DocType: Website Item Group,Website Item Group,Web Sitesi Ürün Grubu apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Harç ve Vergiler -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,Referrans tarihi girin +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,Referrans tarihi girin apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Ödeme Gateway Hesap yapılandırılmamış apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} ödeme girişleri şu tarafından filtrelenemez {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,Web Sitesi gösterilir Öğe için Tablo @@ -1858,7 +1859,6 @@ DocType: Issue,Resolution Details,Karar Detayları DocType: Issue,Resolution Details,Karar Detayları DocType: Quality Inspection Reading,Acceptance Criteria,Onaylanma Kriterleri DocType: Item Attribute,Attribute Name,Öznitelik Adı -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Ürün {0} {1} de Satış veya Hizmet ürünü olmalıdır DocType: Item Group,Show In Website,Web sitesinde Göster apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Grup apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Grup @@ -1899,7 +1899,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Kargo Tutarı ,Pending Amount,Bekleyen Tutar DocType: Purchase Invoice Item,Conversion Factor,Katsayı DocType: Purchase Order,Delivered,Teslim Edildi -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),İş e-mail kimliği için gelen sunucu kurulumu (örneğin: jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),İş e-mail kimliği için gelen sunucu kurulumu (örneğin: jobs@example.com) DocType: Purchase Receipt,Vehicle Number,Araç Sayısı DocType: Purchase Invoice,The date on which recurring invoice will be stop,Yinelenen faturanın durdurulacağı tarih apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Toplam ayrılan yapraklar {0} az olamaz dönem için önceden onaylanmış yaprakları {1} den @@ -1918,7 +1918,7 @@ DocType: HR Settings,HR Settings,İK Ayarları apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Gider Talebi onay bekliyor. Yalnızca Gider yetkilisi durumu güncelleyebilir. DocType: Purchase Invoice,Additional Discount Amount,Ek İndirim Tutarı DocType: Leave Block List Allow,Leave Block List Allow,İzin engel listesi müsaade eder -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Kısaltma boş veya boşluktan oluşamaz +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Kısaltma boş veya boşluktan oluşamaz apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Sigara Grup Grup apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Spor apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Spor @@ -1949,7 +1949,7 @@ apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM C apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Gümrükleme tarihi {0} satırındaki kontrol tarihinden önce olamaz DocType: Salary Slip,Deduction,Kesinti DocType: Salary Slip,Deduction,Kesinti -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Ürün Fiyatı için katma {0} Fiyat Listesi {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Ürün Fiyatı için katma {0} Fiyat Listesi {1} DocType: Address Template,Address Template,Adres Şablonu apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,Bu satış kişinin Çalışan Kimliği giriniz DocType: Territory,Classification of Customers by region,Bölgelere göre Müşteriler sınıflandırılması @@ -1968,7 +1968,7 @@ DocType: Employee,Date of Birth,Doğum tarihi apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Ürün {0} zaten iade edilmiş DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** Mali Yılı ** Mali Yılı temsil eder. Tüm muhasebe kayıtları ve diğer önemli işlemler ** ** Mali Yılı karşı izlenir. DocType: Opportunity,Customer / Lead Address,Müşteri / Adres -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Uyarı: eki Geçersiz SSL sertifikası {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Uyarı: eki Geçersiz SSL sertifikası {0} DocType: Production Order Operation,Actual Operation Time,Gerçek Çalışma Süresi DocType: Authorization Rule,Applicable To (User),(Kullanıcıya) Uygulanabilir DocType: Purchase Taxes and Charges,Deduct,Düşmek @@ -1988,7 +1988,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,İrsaliyeyi ambalajlara böl. apps/erpnext/erpnext/hooks.py +69,Shipments,Gönderiler DocType: Purchase Order Item,To be delivered to customer,Müşteriye teslim edilmek üzere -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Günlük durumu Teslim Edildi olmalıdır. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Günlük durumu Teslim Edildi olmalıdır. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,Seri Hayır {0} herhangi Warehouse ait değil apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Satır # DocType: Purchase Invoice,In Words (Company Currency),Sözlü (Firma para birimi) olarak @@ -2010,7 +2010,7 @@ DocType: Leave Application,Total Leave Days,Toplam bırak Günler DocType: Email Digest,Note: Email will not be sent to disabled users,Not: E-posta engelli kullanıcılara gönderilmeyecektir apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Firma Seçin ... DocType: Leave Control Panel,Leave blank if considered for all departments,Tüm bölümler için kabul ise boş bırakın -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","İstihdam (daimi, sözleşmeli, stajyer vb) Türleri." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","İstihdam (daimi, sözleşmeli, stajyer vb) Türleri." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} Ürün {1} için zorunludur DocType: Currency Exchange,From Currency,Para biriminden apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","En az bir satırda Tahsis Tutar, Fatura Türü ve Fatura Numarası seçiniz" @@ -2033,7 +2033,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,Süreci DocType: Authorization Rule,Itemwise Discount,Ürün İndirimi DocType: Purchase Order Item,Reference Document Type,Referans Belge Türü -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} Satış Siparişine karşı {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} Satış Siparişine karşı {1} DocType: Account,Fixed Asset,Sabit Varlık apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Serileştirilmiş Envanteri DocType: Activity Type,Default Billing Rate,Varsayılan Fatura Oranı @@ -2044,7 +2044,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Ödeme Satış Sipariş DocType: Expense Claim Detail,Expense Claim Detail,Gideri Talebi Detayı apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Zaman Günlükleri oluşturuldu: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,Doğru hesabı seçin +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,Doğru hesabı seçin DocType: Item,Weight UOM,Ağırlık Ölçü Birimi DocType: Employee,Blood Group,Kan grubu DocType: Employee,Blood Group,Kan grubu @@ -2085,8 +2085,8 @@ apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} ca DocType: Production Order Operation,Completed Qty,Tamamlanan Adet DocType: Production Order Operation,Completed Qty,Tamamlanan Adet apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","{0}, sadece banka hesapları başka bir kredi girişine karşı bağlantılı olabilir için" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Fiyat Listesi {0} devre dışı -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Fiyat Listesi {0} devre dışı +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Fiyat Listesi {0} devre dışı +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Fiyat Listesi {0} devre dışı DocType: Manufacturing Settings,Allow Overtime,Mesai izin ver apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} Öğe için gerekli Seri Numaraları {1}. Sağladığınız {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Güncel Değerleme Oranı @@ -2147,7 +2147,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Bark apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Durum No 0 olamaz DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,Satış Takımınız ve Satış Ortaklarınız (Kanal Ortakları) varsa işaretlenebilirler ve satış faaliyetine katkılarını sürdürebilirler DocType: Item,Show a slideshow at the top of the page,Sayfanın üstünde bir slayt gösterisi göster -DocType: Item,"Allow in Sales Order of type ""Service""","Satış Siparişi türünde ""Hizmet""e izin ver" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Mağazalar apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Mağazalar DocType: Time Log,Projects Manager,Proje Yöneticisi @@ -2166,6 +2165,7 @@ apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Güncellem apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Güncelleme Maliyeti DocType: Item Reorder,Item Reorder,Ürün Yeniden Sipariş apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Transfer Malzemesi +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Öğe {0} bir satış Öğe olmalıdır {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","İşlemleri, işlem maliyetlerini belirtiniz ve işlemlerinize kendilerine özgü işlem numaraları veriniz." DocType: Purchase Invoice,Price List Currency,Fiyat Listesi Para Birimi DocType: Purchase Invoice,Price List Currency,Fiyat Listesi Para Birimi @@ -2192,7 +2192,7 @@ DocType: Appraisal,Employee,Çalışan apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Gönderen İthalat E- apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Kullanıcı olarak davet DocType: Features Setup,After Sale Installations,Satış Sonrası Montaj -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} tam fatura edilir +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} tam fatura edilir DocType: Workstation Working Hour,End Time,Bitiş Zamanı apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Satış veya Satın Alma için standart sözleşme şartları. apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Satış veya Satın Alma için standart sözleşme şartları. @@ -2221,8 +2221,8 @@ DocType: Upload Attendance,Attendance To Date,Tarihine kadar katılım apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),İş e-mail kimliği için gelen sunucu kurulumu (örneğin: sales@example.com) DocType: Warranty Claim,Raised By,Talep edilen DocType: Payment Gateway Account,Payment Account,Ödeme Hesabı -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,Devam etmek için Firma belirtin -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,Devam etmek için Firma belirtin +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,Devam etmek için Firma belirtin +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,Devam etmek için Firma belirtin apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Alacak Hesapları Net Değişim apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Telafi İzni DocType: Quality Inspection Reading,Accepted,Onaylanmış @@ -2235,7 +2235,7 @@ apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Stok güncelleme olamazdı, fatura damla nakliye öğe içeriyor." DocType: Newsletter,Test,Test DocType: Newsletter,Test,Test -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Mevcut stok işlemleri size değerlerini değiştiremezsiniz \ Bu öğe, orada olduğundan 'Seri No Has', 'Toplu Has Hayır', 'Stok Öğe mı' ve 'Değerleme Metodu'" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Hızlı Kayıt Girdisi apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,Herhangi bir Ürünye karşo BOM belirtildiyse oran değiştiremezsiniz. @@ -2243,7 +2243,7 @@ DocType: Employee,Previous Work Experience,Önceki İş Deneyimi DocType: Employee,Previous Work Experience,Önceki İş Deneyimi DocType: Stock Entry,For Quantity,Miktar apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},Satır {1} deki {0} Ürünler için planlanan miktarı giriniz -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} teslim edilmedi +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} teslim edilmedi apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Ürün istekleri. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Her mamül madde için ayrı üretim emri oluşturulacaktır. DocType: Purchase Invoice,Terms and Conditions1,Şartlar ve Koşullar 1 @@ -2272,6 +2272,7 @@ DocType: Notification Control,Expense Claim Approved Message,Gideri Talebi Onay DocType: Email Digest,How frequently?,Ne sıklıkla? DocType: Purchase Receipt,Get Current Stock,Cari Stok alın apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Malzeme Listesinde Ağacı +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Mark Mevcut apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Seri No {0} için bakım başlangıç tarihi teslim tarihinden önce olamaz DocType: Production Order,Actual End Date,Fiili Bitiş Tarihi DocType: Production Order,Actual End Date,Fiili Bitiş Tarihi @@ -2290,7 +2291,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Sözleşme Bitiş tarihi Katılma tarihinden büyük olmalıdır DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,Bir komisyon için şirketlerin ürünlerini satan bir üçüncü taraf dağıtıcı / bayi / komisyon ajan / ortaklık / bayi. DocType: Customer Group,Has Child Node,Çocuk Kısmı Var -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} Satınalma siparişine karşı{1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} Satınalma siparişine karşı{1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Buraya statik url parametreleri girin (Örn. gönderen = ERPNext, kullanıcı adı = ERPNext, Şifre = 1234 vb)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} değil herhangi bir aktif Mali Yılı içinde. Daha fazla bilgi kontrol ediniz {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Bu ERPNextten otomatik olarak üretilmiş bir örnek web sitedir. @@ -2338,7 +2339,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Ekle veya Düşebilme: eklemek veya vergi kesintisi etmek isteyin." DocType: Purchase Receipt Item,Recd Quantity,Alınan Miktar apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Satış Sipariş Miktarı {1} den fazla Ürün {0} üretilemez -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Stok Giriş {0} teslim edilmez +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Stok Giriş {0} teslim edilmez DocType: Payment Reconciliation,Bank / Cash Account,Banka / Kasa Hesabı DocType: Payment Reconciliation,Bank / Cash Account,Banka / Kasa Hesabı DocType: Tax Rule,Billing City,Fatura Şehir @@ -2372,7 +2373,7 @@ DocType: Salary Structure,Total Earning,Toplam Kazanç DocType: Purchase Receipt,Time at which materials were received,Malzemelerin alındığı zaman apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Benim Adresleri DocType: Stock Ledger Entry,Outgoing Rate,Giden Oranı -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Kuruluş Şube Alanı +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Kuruluş Şube Alanı apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,veya DocType: Sales Order,Billing Status,Fatura Durumu DocType: Sales Order,Billing Status,Fatura Durumu @@ -2418,7 +2419,7 @@ DocType: Landed Cost Voucher,Purchase Receipt Items,Satın alma makbuzu Ürünle apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Özelleştirme Formları DocType: Account,Income Account,Gelir Hesabı DocType: Account,Income Account,Gelir Hesabı -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Teslimat +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Teslimat DocType: Stock Reconciliation Item,Current Qty,Güncel Adet DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section","Maliyetlendirme Bölümünde ""Dayalı Ürünler Br.Fiyatına"" bakınız" DocType: Appraisal Goal,Key Responsibility Area,Kilit Sorumluluk Alanı @@ -2433,9 +2434,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,Fö DocType: Notification Control,Purchase Order Message,Satınalma Siparişi Mesajı DocType: Tax Rule,Shipping Country,Nakliye Ülke DocType: Upload Attendance,Upload HTML,HTML Yükle -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","Toplam avans ({0}) Sipariş karşı {1} \ - büyük olamaz Büyük Toplam den ({2})" DocType: Employee,Relieving Date,Ayrılma Tarihi apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.",Fiyatlandırma Kuralı Fiyat Listesini/belirtilen indirim yüzdesini belli kriterlere dayalı olarak geçersiz kılmak için yapılmıştır. DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Depo yalnızca Stok Girdisi / İrsaliye / Satın Alım Makbuzu üzerinden değiştirilebilir @@ -2448,8 +2446,8 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selec apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Sanayi Tipine Göre izleme talebi. DocType: Item Supplier,Item Supplier,Ürün Tedarikçisi DocType: Item Supplier,Item Supplier,Ürün Tedarikçisi -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,Toplu almak için Ürün Kodu girin -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},{0} - {1} teklifi için bir değer seçiniz +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,Toplu almak için Ürün Kodu girin +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},{0} - {1} teklifi için bir değer seçiniz apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Tüm adresler. apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Tüm adresler. DocType: Company,Stock Settings,Stok Ayarları @@ -2477,7 +2475,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Çek Numarası DocType: Payment Tool Detail,Payment Tool Detail,Ödeme Aracı Detayı ,Sales Browser,Satış Tarayıcı DocType: Journal Entry,Total Credit,Toplam Kredi -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Uyarı: Başka {0} # {1} stok girişi karşı var {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Uyarı: Başka {0} # {1} stok girişi karşı var {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Yerel apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Yerel apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Krediler ve avanslar (Varlıklar) @@ -2502,8 +2500,8 @@ DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sa ,S.O. No.,SO No ,S.O. No.,SO No DocType: Production Order Operation,Make Time Log,Zaman Giriş Yap -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Yeniden sipariş miktarını ayarlamak Lütfen -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},Lütfen alan {0}'dan Müşteri oluşturunuz +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Yeniden sipariş miktarını ayarlamak Lütfen +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},Lütfen alan {0}'dan Müşteri oluşturunuz DocType: Price List,Applicable for Countries,Ülkeler için geçerlidir apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Bilgisayarlar apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Bilgisayarlar @@ -2553,7 +2551,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Fatura DocType: Payment Reconciliation Invoice,Outstanding Amount,Bekleyen Tutar DocType: Project Task,Working,Çalışıyor DocType: Stock Ledger Entry,Stock Queue (FIFO),Stok Kuyruğu (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Zaman Kayıtlarını seçiniz. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Zaman Kayıtlarını seçiniz. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} Şirket {1}E ait değildir DocType: Account,Round Off,Tamamlamak ,Requested Qty,İstenen miktar @@ -2596,7 +2594,7 @@ DocType: Bank Reconciliation,Get Relevant Entries,İlgili girdileri alın apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Stokta Muhasebe Giriş DocType: Sales Invoice,Sales Team1,Satış Ekibi1 DocType: Sales Invoice,Sales Team1,Satış Ekibi1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Ürün {0} yoktur +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Ürün {0} yoktur DocType: Sales Invoice,Customer Address,Müşteri Adresi DocType: Sales Invoice,Customer Address,Müşteri Adresi DocType: Payment Request,Recipient and Message,Alıcı ve Mesaj @@ -2622,7 +2620,7 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & T apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Gıda, İçecek ve Tütün" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL veya BS apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL veya BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Sadece karşı ödeme yapabilirsiniz faturalanmamış {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Sadece karşı ödeme yapabilirsiniz faturalanmamış {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Komisyon oranı 100'den fazla olamaz apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Asgari Stok Seviyesi DocType: Stock Entry,Subcontract,Alt sözleşme @@ -2644,10 +2642,11 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Yazılım apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Renk DocType: Maintenance Visit,Scheduled,Planlandı apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Hayır" ve "Satış Öğe mı" "Stok Öğe mı" nerede "Evet" ise Birimini seçmek ve başka hiçbir Ürün Paketi var Lütfen +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Toplam avans ({0}) Sipariş karşı {1} Genel Toplam den büyük olamaz ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Dengesiz ay boyunca hedefleri dağıtmak için Aylık Dağıtım seçin. DocType: Purchase Invoice Item,Valuation Rate,Değerleme Oranı DocType: Purchase Invoice Item,Valuation Rate,Değerleme Oranı -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Fiyat Listesi para birimi seçilmemiş +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Fiyat Listesi para birimi seçilmemiş apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,Öğe Satır {0}: {1} Yukarıdaki 'satın alma makbuzlarını' tablosunda yok Satınalma Makbuzu apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Çalışan {0} hali hazırda {2} ve {3} arasında {1} için başvurmuştur apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Proje Başlangıç Tarihi @@ -2661,6 +2660,7 @@ apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},L DocType: C-Form,C-Form No,C-Form No DocType: C-Form,C-Form No,C-Form No DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,Işaretsiz Seyirci apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Araştırmacı apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Araştırmacı apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,Lütfen göndermeden önce bülteni kaydedin @@ -2693,7 +2693,7 @@ DocType: Payment Gateway,Gateway,Geçit apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Tedarikçi> Tedarikçi Türü apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Tedarikçi> Tedarikçi Türü apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Lütfen Boşaltma tarihi girin. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,Sadece durumu 'Onaylandı' olan İzin Uygulamaları verilebilir apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Adres Başlığı zorunludur. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,Sorgu kaynağı kampanya ise kampanya adı girin @@ -2711,13 +2711,14 @@ DocType: Bank Reconciliation Detail,Posting Date,Gönderme Tarihi DocType: Item,Valuation Method,Değerleme Yöntemi DocType: Item,Valuation Method,Değerleme Yöntemi apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},{0} için döviz kurunu bulamayan {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Mark Yarım Gün DocType: Sales Invoice,Sales Team,Satış Ekibi DocType: Sales Invoice,Sales Team,Satış Ekibi apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Girdiyi Kopyala DocType: Serial No,Under Warranty,Garanti Altında DocType: Serial No,Under Warranty,Garanti Altında -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Hata] -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Hata] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Hata] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Hata] DocType: Sales Order,In Words will be visible once you save the Sales Order.,Satış emrini kaydettiğinizde görünür olacaktır. ,Employee Birthday,Çalışan Doğum Günü ,Employee Birthday,Çalışan Doğum Günü @@ -2747,6 +2748,7 @@ apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center DocType: Account,Depreciation,Amortisman DocType: Account,Depreciation,Amortisman apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Tedarikçi (ler) +DocType: Employee Attendance Tool,Employee Attendance Tool,Çalışan Seyirci Aracı DocType: Supplier,Credit Limit,Kredi Limiti DocType: Supplier,Credit Limit,Kredi Limiti apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Işlemin türünü seçin @@ -2777,8 +2779,8 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Kök hesabı silinemez ,Is Primary Address,Birincil Adres mı DocType: Production Order,Work-in-Progress Warehouse,Devam eden depo işi -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Referans # {0} tarihli {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Referans # {0} tarihli {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Referans # {0} tarihli {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Referans # {0} tarihli {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Adresleri yönetin DocType: Pricing Rule,Item Code,Ürün Kodu DocType: Pricing Rule,Item Code,Ürün Kodu @@ -2810,7 +2812,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Banka Uzlaşma apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Güncellemeler Alın apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Malzeme Talebi {0} iptal edilmiş veya durdurulmuştur apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Birkaç örnek kayıtları ekle -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Yönetim bırakın +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Yönetim bırakın apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Hesap Grubu DocType: Sales Order,Fully Delivered,Tamamen Teslim Edilmiş DocType: Lead,Lower Income,Alt Gelir @@ -2828,6 +2830,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','Tarihten itibaren ' Tarihine Kadar' dan sonra olmalıdır ,Stock Projected Qty,Öngörülen Stok Miktarı apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Müşteri {0} projeye ait değil {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,İşaretli Seyirci HTML DocType: Sales Order,Customer's Purchase Order,Müşterinin Sipariş DocType: Warranty Claim,From Company,Şirketten apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Değer veya Miktar @@ -2903,6 +2906,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,E apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,Banka Hesabı seçiniz apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,Banka Hesabı seçiniz DocType: Newsletter,Create and Send Newsletters,Oluşturun ve gönderin Haber +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Tümünü kontrol DocType: Sales Order,Recurring Order,Tekrarlayan Sipariş DocType: Company,Default Income Account,Standart Gelir Hesabı apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Müşteri Grup / Müşteri @@ -2938,6 +2942,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Karşı Satınalma Fat DocType: Item,Warranty Period (in days),(Gün) Garanti Süresi apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Faaliyetlerden Kaynaklanan Net Nakit apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,Örneğin KDV +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Dökme Mark Personel Devam apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Madde 4 DocType: Journal Entry Account,Journal Entry Account,Kayıt Girdisi Hesabı DocType: Shopping Cart Settings,Quotation Series,Teklif Serisi @@ -3103,7 +3108,7 @@ DocType: Task,Actual Start Date (via Time Logs),Fiili Başlangıç Tarihi (Saat DocType: Stock Reconciliation Item,Before reconciliation,Uzlaşma önce apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Şu kişiye {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Eklenen Vergi ve Harçlar (Şirket Para Birimi) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Ürün Vergi Satırı {0} Vergi Gelir Gider veya Ödenebilir türde hesabı olmalıdır. +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Ürün Vergi Satırı {0} Vergi Gelir Gider veya Ödenebilir türde hesabı olmalıdır. DocType: Sales Order,Partly Billed,Kısmen Faturalandı DocType: Item,Default BOM,Standart BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,Re-tipi şirket ismi onaylamak için lütfen @@ -3111,7 +3116,7 @@ apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.htm DocType: Time Log Batch,Total Hours,Toplam Saat DocType: Time Log Batch,Total Hours,Toplam Saat DocType: Journal Entry,Printing Settings,Baskı Ayarları -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},"Toplam Borç Toplam Krediye eşit olmalıdırr. Aradaki fark, {0}" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},"Toplam Borç Toplam Krediye eşit olmalıdırr. Aradaki fark, {0}" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Otomotiv apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Otomotiv apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,İrsaliyeden @@ -3173,7 +3178,7 @@ DocType: Purchase Invoice Item,Image View,Resim Görüntüle DocType: Issue,Opening Time,Açılış Zamanı apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,Tarih aralığı gerekli apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Teminatlar ve Emtia Borsaları -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Variant için Ölçü Varsayılan Birim '{0}' Şablon aynı olmalıdır '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Variant için Ölçü Varsayılan Birim '{0}' Şablon aynı olmalıdır '{1}' DocType: Shipping Rule,Calculate Based On,Tabanlı hesaplayın DocType: Delivery Note Item,From Warehouse,Atölyesi'nden DocType: Purchase Taxes and Charges,Valuation and Total,Değerleme ve Toplam @@ -3199,7 +3204,7 @@ DocType: Leave Application,Follow via Email,E-posta ile takip DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,İndirim Tutarından sonraki vergi miktarı apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Bu hesap için çocuk hesabı var. Bu hesabı silemezsiniz. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Hedef miktarı veya hedef tutarı zorunludur -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},Ürün {0} için Varsayılan BOM mevcut değildir +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},Ürün {0} için Varsayılan BOM mevcut değildir apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,İlk Gönderme Tarihi seçiniz apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Tarih Açılış Tarihi Kapanış önce olmalıdır DocType: Leave Control Panel,Carry Forward,Nakletmek @@ -3293,7 +3298,7 @@ DocType: Leave Type,Is Encash,Bozdurulmuş DocType: Purchase Invoice,Mobile No,Mobil No DocType: Payment Tool,Make Journal Entry,Kayıt Girdisi Yap DocType: Leave Allocation,New Leaves Allocated,Tahsis Edilen Yeni İzinler -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Proje bilgisi verileri Teklifimiz için mevcut değildir +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Proje bilgisi verileri Teklifimiz için mevcut değildir DocType: Project,Expected End Date,Beklenen Bitiş Tarihi DocType: Project,Expected End Date,Beklenen Bitiş Tarihi DocType: Appraisal Template,Appraisal Template Title,Değerlendirme Şablonu Başlığı @@ -3352,6 +3357,7 @@ apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Lütfen belirtini apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Lütfen belirtiniz DocType: Offer Letter,Awaiting Response,Tepki bekliyor apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Yukarıdaki +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Zaman Günlüğü Faturalı olmuştur DocType: Salary Slip,Earning & Deduction,Kazanma & Kesintisi apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Hesap {0} Grup olamaz apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,İsteğe bağlı. Bu ayar çeşitli işlemlerde filtreleme yapmak için kullanılacaktır @@ -3440,7 +3446,7 @@ apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted a apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Tarihinde gibi apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Deneme Süresi apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Deneme Süresi -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Standart Depo stok Ürünleri için zorunludur. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Standart Depo stok Ürünleri için zorunludur. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Ay {0} ve yıl {1} için maaş ödemesi DocType: Stock Settings,Auto insert Price List rate if missing,Otomatik ekleme Fiyat Listesi oranı eksik ise apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Toplam Ödenen Tutar @@ -3448,7 +3454,7 @@ apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.htm apps/erpnext/erpnext/config/learn.py +11,Navigating,Gezinme apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Planlama apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Planlama -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Günlük Parti oluşturun +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Günlük Parti oluşturun apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Veriliş DocType: Project,Total Billing Amount (via Time Logs),Toplam Fatura Tutarı (Zaman Kayıtlar üzerinden) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Bu ürünü satıyoruz @@ -3456,7 +3462,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Miktar 0'dan büyük olmalıdır DocType: Journal Entry,Cash Entry,Nakit Girişi DocType: Sales Partner,Contact Desc,İrtibat Desc -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Normal, hastalık vb izin tipleri" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Normal, hastalık vb izin tipleri" DocType: Email Digest,Send regular summary reports via Email.,E-posta yoluyla düzenli özet raporlar gönder. DocType: Brand,Item Manager,Ürün Yöneticisi DocType: Cost Center,Add rows to set annual budgets on Accounts.,Hesaplarda yıllık bütçeleri ayarlamak için kolon ekle. @@ -3475,7 +3481,7 @@ DocType: GL Entry,Party Type,Taraf Türü apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Hammadde ana Malzeme ile aynı olamaz DocType: Item Attribute Value,Abbreviation,Kısaltma apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,{0} Yetkili değil {0} sınırı aşar -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Maaş Şablon Alanı. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Maaş Şablon Alanı. DocType: Leave Type,Max Days Leave Allowed,En fazla izin günü apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Alışveriş sepeti için ayarla Vergi Kural DocType: Payment Tool,Set Matching Amounts,Set Eşleştirme tutarlar @@ -3488,7 +3494,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Müşte DocType: Stock Settings,Role Allowed to edit frozen stock,dondurulmuş stok düzenlemeye İzinli rol ,Territory Target Variance Item Group-Wise,Bölge Hedef Varyans Ürün Grubu apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Bütün Müşteri Grupları -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} zorunludur. {1} ve {2} için Döviz kaydı oluşturulmayabilir. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} zorunludur. {1} ve {2} için Döviz kaydı oluşturulmayabilir. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Vergi Şablon zorunludur. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Hesap {0}: Ana hesap {1} yok DocType: Purchase Invoice Item,Price List Rate (Company Currency),Fiyat Listesi Oranı (Şirket para birimi) @@ -3511,8 +3517,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Ürün Vergi Detayları ,Item-wise Price List Rate,Ürün bilgisi Fiyat Listesi Oranı apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Tedarikçi Teklifi DocType: Quotation,In Words will be visible once you save the Quotation.,fiyat teklifini kaydettiğinizde görünür olacaktır -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} durduruldu -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Barkod {0} zaten Ürün {1} de kullanılmış +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} durduruldu +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Barkod {0} zaten Ürün {1} de kullanılmış DocType: Lead,Add to calendar on this date,Bu tarihe Takvime ekle apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Nakliye maliyetleri ekleme Kuralları. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Yaklaşan Etkinlikler @@ -3547,8 +3553,8 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one w DocType: Serial No,Out of Warranty,Garanti Dışı DocType: Serial No,Out of Warranty,Garanti Dışı DocType: BOM Replace Tool,Replace,Değiştir -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} Satış Faturasına karşı {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Lütfen Varsayılan Ölçü birimini girin +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} Satış Faturasına karşı {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Lütfen Varsayılan Ölçü birimini girin DocType: Purchase Invoice Item,Project Name,Proje Adı DocType: Purchase Invoice Item,Project Name,Proje Adı DocType: Supplier,Mention if non-standard receivable account,Mansiyon standart dışı alacak hesabı varsa @@ -3578,7 +3584,7 @@ apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists, DocType: Currency Exchange,To Currency,Para Birimi DocType: Currency Exchange,To Currency,Para Birimi DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Blok günleri için aşağıdaki kullanıcıların izin uygulamalarını onaylamasına izin ver. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Gider talebi Türleri. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Gider talebi Türleri. DocType: Item,Taxes,Vergiler DocType: Item,Taxes,Vergiler apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Ücretli ve Teslim Edilmedi @@ -3617,8 +3623,8 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Satır # {0}: Seri No {1} ile eşleşmiyor {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Mazeret İzni DocType: Batch,Batch ID,Seri Kimliği -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Not: {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Not: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Not: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Not: {0} ,Delivery Note Trends,İrsaliye Eğilimleri; apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Bu Haftanın Özeti apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} satır {1} de Alınan veya Taşerona verilen bir Ürün olmalıdır. @@ -3662,6 +3668,7 @@ DocType: Project Task,Pending Review,Bekleyen İnceleme apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Ödemek için tıklayınız DocType: Task,Total Expense Claim (via Expense Claim),(Gider İstem aracılığıyla) Toplam Gider İddiası apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Müşteri Kimliği +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Mark Yok apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Zaman Zaman itibaren daha büyük olmalıdır için DocType: Journal Entry Account,Exchange Rate,Döviz Kuru apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Satış Sipariş {0} teslim edilmedi @@ -3719,7 +3726,7 @@ DocType: Employee,Notice (days),Bildirimi (gün) DocType: Employee,Notice (days),Bildirimi (gün) DocType: Tax Rule,Sales Tax Template,Satış Vergisi Şablon DocType: Employee,Encashment Date,Nakit Çekim Tarihi -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Fiş karşı Tipi Satınalma Siparişi biri, Alış Fatura veya günlük girdisi olmalıdır" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Fiş karşı Tipi Satınalma Siparişi biri, Alış Fatura veya günlük girdisi olmalıdır" DocType: Account,Stock Adjustment,Stok Ayarı DocType: Account,Stock Adjustment,Stok Ayarı apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Standart Etkinliği Maliyet Etkinlik Türü için var - {0} @@ -3789,6 +3796,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Girişi Kapalı Yazın DocType: BOM,Rate Of Materials Based On,Dayalı Ürün Br. Fiyatı apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Destek Analizi +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Tümünü işaretleme apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Şirket depolarda eksik {0} DocType: POS Profile,Terms and Conditions,Şartlar ve Koşullar DocType: POS Profile,Terms and Conditions,Şartlar ve Koşullar @@ -3814,7 +3822,7 @@ apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set thi apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Varsayılan olarak bu Mali Yılı ayarlamak için, 'Varsayılan olarak ayarla' seçeneğini tıklayın" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Destek e-mail kimliği için gelen sunucu kurulumu (örneğin:support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Yetersizlik adeti -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Ürün çeşidi {0} aynı özelliklere sahip bulunmaktadır +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Ürün çeşidi {0} aynı özelliklere sahip bulunmaktadır DocType: Salary Slip,Salary Slip,Bordro apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,'Tarihine Kadar' gereklidir DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Paketleri teslim edilmek üzere fişleri ambalaj oluşturun. Paket numarası, paket içeriğini ve ağırlığını bildirmek için kullanılır." @@ -3870,7 +3878,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Görün DocType: Item Attribute Value,Attribute Value,Değer Özellik apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","E-posta yeni olmalıdır, {0} için zaten mevcut" ,Itemwise Recommended Reorder Level,Ürünnin Önerilen Yeniden Sipariş Düzeyi -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,Önce {0} seçiniz +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,Önce {0} seçiniz DocType: Features Setup,To get Item Group in details table,Detaylar tablosunda Ürün Grubu almak için apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Öğe Toplu {0} {1} süresi doldu. DocType: Sales Invoice,Commission,Komisyon @@ -3934,7 +3942,7 @@ DocType: Payment Tool,Get Outstanding Vouchers,Üstün Fişler alın DocType: Warranty Claim,Resolved By,Tarafından Çözülmüştür DocType: Appraisal,Start Date,Başlangıç Tarihi DocType: Appraisal,Start Date,Başlangıç Tarihi -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Bir dönemlik tahsis izni. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Bir dönemlik tahsis izni. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Çekler ve Mevduat yanlış temizlenir apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Doğrulamak için buraya tıklayın apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Hesap {0}: Kendisini bir ana hesap olarak atayamazsınız @@ -3956,7 +3964,7 @@ DocType: Employee,Educational Qualification,Eğitim Yeterliliği DocType: Workstation,Operating Costs,İşletim Maliyetleri DocType: Employee Leave Approver,Employee Leave Approver,Çalışan izin Onayı apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} başarıyla Haber listesine eklendi. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Satır {0}: Bir Yeniden Sipariş girişi zaten bu depo için var {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Satır {0}: Bir Yeniden Sipariş girişi zaten bu depo için var {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Kayıp olarak Kotasyon yapılmış çünkü, ilan edemez." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Satınalma Usta Müdürü apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Üretim Siparişi {0} verilmelidir @@ -3989,7 +3997,7 @@ apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_st apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Bitiş Tarihi DocType: Purchase Invoice Item,Amount (Company Currency),Tutar (Şirket Para Birimi) DocType: Purchase Invoice Item,Amount (Company Currency),Tutar (Şirket Para Birimi) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Kuruluş Birimi (departman) alanı +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Kuruluş Birimi (departman) alanı apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Lütfen Geçerli bir cep telefonu numarası giriniz DocType: Budget Detail,Budget Detail,Bütçe Detay apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,Lütfen Göndermeden önce mesajı giriniz @@ -4007,14 +4015,14 @@ DocType: Purchase Receipt Item,Received and Accepted,Alındı ve Kabul edildi ,Serial No Service Contract Expiry,Seri No Hizmet Sözleşmesi Vadesi DocType: Item,Unit of Measure Conversion,Ölçü Dönüşüm Birimi apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Çalışan değiştirilemez -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Aynı hesabı aynı anda kredilendirip borçlandıramazsınız +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Aynı hesabı aynı anda kredilendirip borçlandıramazsınız DocType: Naming Series,Help HTML,Yardım HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Atanan toplam ağırlık % 100 olmalıdır. Bu {0} dır apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},{1} den fazla Ürün için {0} üzerinde ödenek DocType: Address,Name of person or organization that this address belongs to.,Bu adresin ait olduğu kişi veya kurumun adı. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Tedarikçileriniz apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Tedarikçileriniz -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,Satış Emri yapıldığında Kayıp olarak ayarlanamaz. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,Satış Emri yapıldığında Kayıp olarak ayarlanamaz. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,Başka Maaş Yapısı {0} çalışan için aktif {1}. Onun durumu 'Etkin değil' devam etmek olun. DocType: Purchase Invoice,Contact,İletişim apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Dan alındı @@ -4026,13 +4034,13 @@ DocType: Employee,Date of Issue,Veriliş tarihi DocType: Employee,Date of Issue,Veriliş tarihi apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: Tarafından {0} {1} için apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Satır # {0}: öğe için Set Tedarikçi {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Öğe {1} bağlı Web Sitesi Resmi {0} bulunamıyor +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Öğe {1} bağlı Web Sitesi Resmi {0} bulunamıyor DocType: Issue,Content Type,İçerik Türü DocType: Issue,Content Type,İçerik Türü apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Bilgisayar apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Bilgisayar DocType: Item,List this Item in multiple groups on the website.,Bu Ürünü web sitesinde gruplar halinde listeleyin -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,Diğer para ile hesap izin Çoklu Para Birimi seçeneğini kontrol edin +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,Diğer para ile hesap izin Çoklu Para Birimi seçeneğini kontrol edin apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Ürün: {0} sistemde mevcut değil apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Donmuş değer ayarlama yetkiniz yok DocType: Payment Reconciliation,Get Unreconciled Entries,Mutabık olmayan girdileri alın @@ -4044,7 +4052,7 @@ DocType: Delivery Note,To Warehouse,Depoya apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Hesap {0} bir mali yıl içerisinde birden fazla girildi {1} ,Average Commission Rate,Ortalama Komisyon Oranı ,Average Commission Rate,Ortalama Komisyon Oranı -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,Stokta olmayan ürünün 'Seri Nosu Var' 'Evet' olamaz +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,Stokta olmayan ürünün 'Seri Nosu Var' 'Evet' olamaz apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,İlerideki tarihler için katılım işaretlenemez DocType: Pricing Rule,Pricing Rule Help,Fiyatlandırma Kuralı Yardım DocType: Purchase Taxes and Charges,Account Head,Hesap Başlığı @@ -4053,7 +4061,7 @@ apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate la apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Elektrik apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Elektrik DocType: Stock Entry,Total Value Difference (Out - In),Toplam Değer Farkı (Out - In) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Satır {0}: Döviz Kuru zorunludur +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Satır {0}: Döviz Kuru zorunludur apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},Çalışan {0} için kullanıcı kimliği ayarlanmamış DocType: Stock Entry,Default Source Warehouse,Varsayılan Kaynak Deposu DocType: Stock Entry,Default Source Warehouse,Varsayılan Kaynak Deposu @@ -4078,15 +4086,15 @@ DocType: Authorization Rule,Based On,Göre DocType: Authorization Rule,Based On,Göre DocType: Sales Order Item,Ordered Qty,Sipariş Miktarı DocType: Sales Order Item,Ordered Qty,Sipariş Miktarı -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Öğe {0} devre dışı +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Öğe {0} devre dışı DocType: Stock Settings,Stock Frozen Upto,Stok Dondurulmuş apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Kimden ve Dönemi yinelenen için zorunlu tarihler için Dönem {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Proje faaliyeti / görev. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Maaş Makbuzu Oluşturun +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Maaş Makbuzu Oluşturun apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Eğer Uygulanabilir {0} olarak seçilirse, alım kontrol edilmelidir." apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,İndirim 100'den az olmalıdır DocType: Purchase Invoice,Write Off Amount (Company Currency),Tutar Off yazın (Şirket Para) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Satır # {0}: yeniden sipariş miktarını ayarlamak Lütfen +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Satır # {0}: yeniden sipariş miktarını ayarlamak Lütfen DocType: Landed Cost Voucher,Landed Cost Voucher,Indi Maliyet Çeki apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},Lütfen {0} ayarlayınız DocType: Purchase Invoice,Repeat on Day of Month,Ayın gününde tekrarlayın @@ -4147,7 +4155,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,İlerleme Ambarlar'da Standart Çalışma apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Muhasebe işlemleri için Varsayılan ayarlar. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Beklenen Tarih Malzeme Talep Tarihinden önce olamaz -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Ürün {0} Satış ürünü olmalı +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Ürün {0} Satış ürünü olmalı DocType: Naming Series,Update Series Number,Seri Numarasını Güncelle DocType: Account,Equity,Özkaynak DocType: Account,Equity,Özkaynak @@ -4217,7 +4225,7 @@ DocType: Task,Review Date,İnceleme tarihi DocType: Purchase Invoice,Advance Payments,Peşin Ödeme DocType: Purchase Taxes and Charges,On Net Total,Net toplam apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Satır {0} daki hedef depo Üretim Emrindekiyle aynı olmalıdır -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Hiçbir izin Ödeme Aracı kullanmak için +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Hiçbir izin Ödeme Aracı kullanmak için apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,Yinelenen %s için 'Bildirim E-posta Adresleri' belirtilmemmiş. apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Para başka bir para birimini kullanarak girdileri yaptıktan sonra değiştirilemez DocType: Company,Round Off Account,Hesap Off Yuvarlak @@ -4243,7 +4251,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Üretimden sonra elde edilen Ürün miktarı/ ham maddelerin belli miktarlarında yeniden ambalajlama DocType: Payment Reconciliation,Receivable / Payable Account,Alacak / Borç Hesap DocType: Delivery Note Item,Against Sales Order Item,Satış Sipariş Ürün Karşı -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},Öznitelik için değeri Özellik belirtiniz {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},Öznitelik için değeri Özellik belirtiniz {0} DocType: Item,Default Warehouse,Standart Depo DocType: Item,Default Warehouse,Standart Depo DocType: Task,Actual End Date (via Time Logs),Gerçek Bitiş Tarihi (Saat Kayıtlar üzerinden) @@ -4273,12 +4281,12 @@ DocType: Lead,Blog Subscriber,Blog Abone apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Değerlere dayalı işlemleri kısıtlamak için kurallar oluşturun. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Seçili ise,toplam çalışma günleri sayısı tatilleri içerecektir ve bu da Günlük ücreti düşürecektir" DocType: Purchase Invoice,Total Advance,Toplam Advance -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,İşleme Bordro +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,İşleme Bordro DocType: Opportunity Item,Basic Rate,Temel Oran DocType: Opportunity Item,Basic Rate,Temel Oran DocType: GL Entry,Credit Amount,Kredi miktarı -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Kayıp olarak ayarla -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Kayıp olarak ayarla +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Kayıp olarak ayarla +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Kayıp olarak ayarla apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Ödeme Makbuzu Not DocType: Supplier,Credit Days Based On,Kredi Günleri Dayalı DocType: Tax Rule,Tax Rule,Vergi Kuralı @@ -4312,7 +4320,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Kabul edilen Miktar apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} mevcut değil apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Müşterilere artırılan faturalar apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Proje Kimliği -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Sıra Hayır {0}: Tutar Gider İstem {1} karşı Tutar Bekleyen daha büyük olamaz. Bekleyen Tutar {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Sıra Hayır {0}: Tutar Gider İstem {1} karşı Tutar Bekleyen daha büyük olamaz. Bekleyen Tutar {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} aboneler eklendi DocType: Maintenance Schedule,Schedule,Program DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Bu Maliyet Merkezi için Bütçe tanımlayın. Bütçe eylemi ayarlamak için, bkz: "Şirket Listesi"" @@ -4389,14 +4397,14 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS Profili DocType: Payment Gateway Account,Payment URL Message,Ödeme URL Mesajı apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Ayar bütçeler, hedefler vb Mevsimselliği" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Satır {0}: Ödeme Bakiye Tutarı daha büyük olamaz +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Satır {0}: Ödeme Bakiye Tutarı daha büyük olamaz apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Ödenmemiş Toplam -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Günlük faturalandırılamaz -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","{0} Öğe bir şablon, türevleri birini seçiniz" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Günlük faturalandırılamaz +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","{0} Öğe bir şablon, türevleri birini seçiniz" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Alıcı apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Net ödeme negatif olamaz apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Net ödeme negatif olamaz -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,El Karşı Fişler giriniz +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,El Karşı Fişler giriniz DocType: SMS Settings,Static Parameters,Statik Parametreleri DocType: Purchase Order,Advance Paid,Peşin Ödenen DocType: Item,Item Tax,Ürün Vergisi @@ -4404,6 +4412,7 @@ DocType: Item,Item Tax,Ürün Vergisi apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Tedarikçi Malzeme apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Tüketim Fatura DocType: Expense Claim,Employees Email Id,Çalışanların e-posta adresleri +DocType: Employee Attendance Tool,Marked Attendance,İşaretli Seyirci apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Kısa Vadeli Borçlar apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Kişilerinize toplu SMS Gönder DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Vergi veya Ücret @@ -4426,7 +4435,7 @@ DocType: Item Attribute,Numeric Values,Sayısal Değerler apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Logo Ekleyin DocType: Customer,Commission Rate,Komisyon Oranı apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Variant olun -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Departman tarafından blok aralığı uygulamaları. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Departman tarafından blok aralığı uygulamaları. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Sepet Boş DocType: Production Order,Actual Operating Cost,Gerçek İşletme Maliyeti apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Kök düzenlenemez. @@ -4448,7 +4457,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,"Miktar, bu seviyenin altına düşerse otomatik olarak Malzeme İsteği oluşturmak" ,Item-wise Purchase Register,Ürün bilgisi Alım Kaydı DocType: Batch,Expiry Date,Son kullanma tarihi -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Yeniden sipariş düzeyini ayarlamak için, öğenin bir Satınalma Ürün ve Üretim Öğe olmalı" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Yeniden sipariş düzeyini ayarlamak için, öğenin bir Satınalma Ürün ve Üretim Öğe olmalı" ,Supplier Addresses and Contacts,Tedarikçi Adresler ve İletişim ,Supplier Addresses and Contacts,Tedarikçi Adresler ve İletişim apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,İlk Kategori seçiniz diff --git a/erpnext/translations/uk.csv b/erpnext/translations/uk.csv index e9b42b568b..90bff38166 100644 --- a/erpnext/translations/uk.csv +++ b/erpnext/translations/uk.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,Кредит у вал DocType: Delivery Note,Installation Status,Стан установки apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},Прийнято Відхилено + Кількість має дорівнювати кількості Надійшло у пункті {0} DocType: Item,Supply Raw Materials for Purchase,Постачання сировини для покупки -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Пункт {0} повинен бути Купівля товару +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Пункт {0} повинен бути Купівля товару DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Завантажити шаблон, заповнити відповідні дані і прикласти змінений файл. Всі дати і співробітник поєднання в обраний період прийде в шаблоні, з існуючими відвідуваності" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,Пункт {0} не є активним або кінець життя був досягнутий DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Буде оновлюватися після Рахунок продажів представлений. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Щоб включити податок у рядку {0} у розмірі Item, податки в рядках {1} повинні бути також включені" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Налаштування модуля HR для +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Щоб включити податок у рядку {0} у розмірі Item, податки в рядках {1} повинні бути також включені" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Налаштування модуля HR для DocType: SMS Center,SMS Center,SMS-центр DocType: BOM Replace Tool,New BOM,Новий специфікації apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Пакетна Журнали Час для виставлення рахунків. @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,Виберіть Термін DocType: Production Planning Tool,Sales Orders,Замовлення DocType: Purchase Taxes and Charges,Valuation,Оцінка ,Purchase Order Trends,Замовити тенденції Купівля -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Виділіть листя протягом року. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Виділіть листя протягом року. DocType: Earning Type,Earning Type,Заробіток Тип DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Відключити планування ємності і відстеження часу DocType: Bank Reconciliation,Bank Account,Банківський рахунок @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Пункт Сайт Специфікація DocType: Payment Tool,Reference No,Посилання Немає apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Залишити Заблоковані -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Пункт {0} досяг кінець життя на {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Пункт {0} досяг кінець життя на {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Річний DocType: Stock Reconciliation Item,Stock Reconciliation Item,Фото Примирення товару DocType: Stock Entry,Sales Invoice No,Видаткова накладна Немає @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,Мінімальне замовлення Кіл DocType: Pricing Rule,Supplier Type,Постачальник Тип DocType: Item,Publish in Hub,Опублікувати в Hub ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Пункт {0} скасовується +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Пункт {0} скасовується apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Матеріал Запит DocType: Bank Reconciliation,Update Clearance Date,Оновлення оформлення Дата DocType: Item,Purchase Details,Купівля Деталі @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Відхилено Кількі DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Поле доступно в накладній, цитати, рахунки-фактури, з продажу Sales Order" DocType: SMS Settings,SMS Sender Name,SMS Sender Ім'я DocType: Contact,Is Primary Contact,Хіба Основний контакт +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Час входу була рулонірованние для рахунків DocType: Notification Control,Notification Control,Управління Повідомлення DocType: Lead,Suggestions,Пропозиції DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,"Set Group мудрий бюджети товару на цій території. Ви також можете включити сезонність, встановивши розподіл." apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},"Будь ласка, введіть батьківську групу рахунки для складу {0}" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},"Оплата з {0} {1} не може бути більше, ніж суми заборгованості {2}" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},"Оплата з {0} {1} не може бути більше, ніж суми заборгованості {2}" DocType: Supplier,Address HTML,Адреса HTML DocType: Lead,Mobile No.,Номер мобільного. DocType: Maintenance Schedule,Generate Schedule,Створити розклад @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Синхронізуються з Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Неправильний пароль DocType: Item,Variant Of,Варіант -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Пункт {0} повинен бути служба товару apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',"Завершений Кількість не може бути більше, ніж "Кількість для виробництва"" DocType: Period Closing Voucher,Closing Account Head,Закриття рахунку Керівник DocType: Employee,External Work History,Зовнішній роботи Історія @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,Інформаційний бюлетень DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Повідомляти електронною поштою про створення автоматичної матеріалів Запит DocType: Journal Entry,Multi Currency,Мульти валют DocType: Payment Reconciliation Invoice,Invoice Type,Рахунок Тип -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Накладна +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Накладна apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Налаштування Податки apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,"Оплата запис була змінена після витягнув його. Ласка, витягнути його знову." -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} введений двічі на п податку +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} введений двічі на п податку apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Резюме на цьому тижні і в очікуванні діяльності DocType: Workstation,Rent Cost,Вартість оренди apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,"Ласка, виберіть місяць та рік" @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,Дійсно для країнам DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Всі імпортні суміжних областях, як валюти, коефіцієнт конверсії, загальний обсяг імпорту, імпорт ВСЬОГО т.д. доступні в отриманні покупки, постачальник цитата рахунку-фактурі, і т.д. Замовлення" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,"Цей пункт є шаблоном і не можуть бути використані в операціях. Атрибути товару буде копіюватися в варіантах, якщо "Ні Копіювати" не встановлений" apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Всього Замовити вважається -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Співробітник позначення (наприклад, генеральний директор, директор і т.д.)." +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Співробітник позначення (наприклад, генеральний директор, директор і т.д.)." apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,"Будь ласка, введіть "Повторіть День Місяць" значення поля" DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,"Швидкість, з якою Клієнт валюта конвертується в базову валюту замовника" DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Доступний в специфікації, накладної, рахунку-фактурі, замовлення продукції, покупки замовлення, покупка отриманні, накладна, замовлення клієнта, Фото в'їзду, розкладі" @@ -355,7 +355,7 @@ DocType: Workstation,Consumable Cost,Вартість витратних apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) повинен мати роль "Залишити затверджує" DocType: Purchase Receipt,Vehicle Date,Дата apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Медична -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Причина втрати +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Причина втрати apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Робоча станція закрита в наступні терміни відповідно курортні Список: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Можливості DocType: Employee,Single,Одиночний @@ -383,14 +383,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Канал Партнер DocType: Account,Old Parent,Старий Батько DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,"Налаштуйте вступний текст, який йде в рамках цього електронну пошту. Кожна транзакція має окремий вступний текст." +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Чи не включати в себе символи (напр. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,Майстер Менеджер з продажу apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Глобальні налаштування для всіх виробничих процесів. DocType: Accounts Settings,Accounts Frozen Upto,Рахунки заморожені Upto DocType: SMS Log,Sent On,Відправлено На -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Атрибут {0} вибрано кілька разів в таблиці атрибутів +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Атрибут {0} вибрано кілька разів в таблиці атрибутів DocType: HR Settings,Employee record is created using selected field. ,Співробітник запис створено за допомогою обраного поля. DocType: Sales Order,Not Applicable,Не застосовується -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Майстер відпочинку. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Майстер відпочинку. DocType: Material Request Item,Required Date,Потрібно Дата DocType: Delivery Note,Billing Address,Платіжний адреса apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,"Будь ласка, введіть код предмета." @@ -426,7 +427,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,"Будь ласка, введіть Склад для яких Матеріал Запит буде піднято" DocType: Production Order,Additional Operating Cost,Додаткова Експлуатаційні витрати apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Косметика -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Щоб об'єднати, наступні властивості повинні бути однаковими для обох пунктів" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Щоб об'єднати, наступні властивості повинні бути однаковими для обох пунктів" DocType: Shipping Rule,Net Weight,Вага нетто DocType: Employee,Emergency Phone,Аварійний телефон ,Serial No Warranty Expiry,Серійний Немає Гарантія Термін @@ -481,17 +482,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Біллінг і доставка Статус apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Постійних клієнтів DocType: Leave Control Panel,Allocate,Виділяти -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Продажі Повернутися +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Продажі Повернутися DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,"Виберіть замовлень клієнта, з якого ви хочете створити виробничі замовлення." DocType: Item,Delivered by Supplier (Drop Ship),Поставляється Постачальником (Drop кораблів) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Зарплата компоненти. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Зарплата компоненти. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,База даних потенційних клієнтів. DocType: Authorization Rule,Customer or Item,Клієнт або товару apps/erpnext/erpnext/config/crm.py +17,Customer database.,Бази даних клієнтів. DocType: Quotation,Quotation To,Цитата Для DocType: Lead,Middle Income,Середній дохід apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Відкриття (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"За замовчуванням Одиниця виміру для п {0} не може бути змінений безпосередньо, тому що ви вже зробили деякі угоди (угод) з іншим UOM. Вам потрібно буде створити новий пункт для використання іншого замовчуванням одиниця виміру." +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,"За замовчуванням Одиниця виміру для п {0} не може бути змінений безпосередньо, тому що ви вже зробили деякі угоди (угод) з іншим UOM. Вам потрібно буде створити новий пункт для використання іншого замовчуванням одиниця виміру." apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Позначена сума не може бути негативним DocType: Purchase Order Item,Billed Amt,Оголошений Amt DocType: Warehouse,A logical Warehouse against which stock entries are made.,"Логічний склад, на якому акції записів зроблені." @@ -500,6 +501,7 @@ DocType: Sales Invoice,Customer's Vendor,Виробник Клієнтам apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +212,Production Order is Mandatory,Виробничий замовлення є обов'язковим apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +139,Proposal Writing,Пропозиція Написання apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +35,Another Sales Person {0} exists with the same Employee id,Інша людина Продажі {0} існує з тим же ідентифікатором Співробітника +apps/erpnext/erpnext/stock/stock_ledger.py +338,Negative Stock Error ({6}) for Item {0} in Warehouse {1} on {2} {3} in {4} {5},Негативний Помилка з ({6}) для пункту {0} на складі {1} на {2} {3} в {4} {5} DocType: Fiscal Year Company,Fiscal Year Company,Фінансовий рік компанії DocType: Packing Slip Item,DN Detail,DN Деталь DocType: Time Log,Billed,Оголошений @@ -509,14 +511,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Продажі Податки і DocType: Employee,Organization Profile,Профіль організації apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,"Будь ласка, встановіть нумерації серії для Відвідуваність допомогою установки> Нумерація серії" DocType: Employee,Reason for Resignation,Причина відставки -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Шаблон для оцінки ефективності роботи. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Шаблон для оцінки ефективності роботи. DocType: Payment Reconciliation,Invoice/Journal Entry Details,Рахунок / Журнал Деталі запис apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} {1} 'не фінансова рік {2} DocType: Buying Settings,Settings for Buying Module,Налаштування для покупки модуля apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,"Будь ласка, введіть Придбати отримання спершу" DocType: Buying Settings,Supplier Naming By,Постачальник Неймінг За DocType: Activity Type,Default Costing Rate,За замовчуванням Калькуляція Оцінити -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Графік регламентних робіт +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Графік регламентних робіт apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Тоді ціноутворення Правила фільтруються на основі Замовника, Група покупців, краю, постачальник, Тип постачальник, кампанії, і т.д. Sales Partner" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Чиста зміна в інвентаризації DocType: Employee,Passport Number,Номер паспорта @@ -555,7 +557,7 @@ DocType: Purchase Invoice,Quarterly,Щоквартальний DocType: Selling Settings,Delivery Note Required,Доставка Примітка Потрібно DocType: Sales Order Item,Basic Rate (Company Currency),Basic Rate (Компанія валют) DocType: Manufacturing Settings,Backflush Raw Materials Based On,З зворотним промиванням Сировина матеріали на основі -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,"Будь ласка, введіть дані товаром" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,"Будь ласка, введіть дані товаром" DocType: Purchase Receipt,Other Details,Інші подробиці DocType: Account,Accounts,Рахунки apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Маркетинг @@ -568,7 +570,7 @@ DocType: Employee,Provide email id registered in company,Забезпечити DocType: Hub Settings,Seller City,Продавець Місто DocType: Email Digest,Next email will be sent on:,Наступна буде відправлено листа на: DocType: Offer Letter Term,Offer Letter Term,Пропозиція Лист термін -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Пункт має варіанти. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Пункт має варіанти. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Пункт {0} знайдений DocType: Bin,Stock Value,Вартість акцій apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Дерево Тип @@ -576,7 +578,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Кількість Спожи DocType: Serial No,Warranty Expiry Date,Термін дії гарантії DocType: Material Request Item,Quantity and Warehouse,Кількість і Склад DocType: Sales Invoice,Commission Rate (%),Комісія ставка (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","На ваучері Тип повинен бути одним із замовлення клієнта, накладна або журнал запис" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","На ваучері Тип повинен бути одним із замовлення клієнта, накладна або журнал запис" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Авіаційно-космічний DocType: Journal Entry,Credit Card Entry,Вступ Кредитна карта apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Тема Завдання @@ -644,10 +646,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Відповідальність apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,"Санкціонований сума не може бути більше, ніж претензії Сума в рядку {0}." DocType: Company,Default Cost of Goods Sold Account,За замовчуванням Собівартість проданих товарів рахунок -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Ціни не обраний +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Ціни не обраний DocType: Employee,Family Background,Сімейні обставини DocType: Process Payroll,Send Email,Відправити лист -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Увага: Невірний Додаток {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Увага: Невірний Додаток {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Немає доступу DocType: Company,Default Bank Account,За замовчуванням Банківський рахунок apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Щоб відфільтрувати на основі партії, виберіть партія першого типу" @@ -675,7 +677,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Пі DocType: Features Setup,"To enable ""Point of Sale"" features",Щоб включити "Точки продажу" Особливості DocType: Bin,Moving Average Rate,Moving Average Rate DocType: Production Planning Tool,Select Items,Оберіть товари -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} проти Білла {1} від {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} проти Білла {1} від {2} DocType: Maintenance Visit,Completion Status,Статус завершення DocType: Sales Invoice Item,Target Warehouse,Цільова Склад DocType: Item,Allow over delivery or receipt upto this percent,Дозволити доставку по квитанції або Шифрування до цього відсотка @@ -735,7 +737,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Ва apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Неможливо знайти часовий інтервал в найближчі {0} днів для роботи {1} DocType: Production Order,Plan material for sub-assemblies,План матеріал для суб-вузлів apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,Специфікація {0} повинен бути активним -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,"Будь ласка, виберіть тип документа в першу чергу" +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,"Будь ласка, виберіть тип документа в першу чергу" apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Перейти Кошик apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Скасування матеріалів переглядів {0} до скасування цього обслуговування візит DocType: Salary Slip,Leave Encashment Amount,Залишити інкасації Кількість @@ -753,7 +755,7 @@ DocType: Purchase Receipt,Range,Діапазон DocType: Supplier,Default Payable Accounts,За замовчуванням заборгованість Кредиторська apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Співробітник {0} не є активним або не існує DocType: Features Setup,Item Barcode,Пункт Штрих -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Пункт Варіанти {0} оновлюються +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Пункт Варіанти {0} оновлюються DocType: Quality Inspection Reading,Reading 6,Читання 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Рахунок покупки Advance DocType: Address,Shop,Магазин @@ -776,7 +778,7 @@ DocType: Salary Slip,Total in words,Всього в словах DocType: Material Request Item,Lead Time Date,Час Дата apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,"є обов'язковим. Може бути, Обмін валюти запис не створена для" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},"Ряд # {0}: Будь ласка, сформулюйте Серійний номер, вказаний в п {1}" -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Для елементів "продукту" Bundle, склад, серійний номер і серія № буде розглядатися з "пакувальний лист 'таблиці. Якщо Склад і пакетна Немає є однаковими для всіх пакувальних компонентів для будь "продукту" Bundle пункту, ці значення можуть бути введені в основній таблиці Item значення будуть скопійовані в "список упаковки" таблицю." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Для елементів "продукту" Bundle, склад, серійний номер і серія № буде розглядатися з "пакувальний лист 'таблиці. Якщо Склад і пакетна Немає є однаковими для всіх пакувальних компонентів для будь "продукту" Bundle пункту, ці значення можуть бути введені в основній таблиці Item значення будуть скопійовані в "список упаковки" таблицю." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Поставки клієнтам. DocType: Purchase Invoice Item,Purchase Order Item,Замовлення на пункт apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Непряме прибуток @@ -797,6 +799,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Виберіть Payroll apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Перейти до відповідної групи (зазвичай використання коштів> Поточні активи> Банківські рахунки і створити новий акаунт (натиснувши на Додати Дитину) типу "банк" DocType: Workstation,Electricity Cost,Вартість електроенергії DocType: HR Settings,Don't send Employee Birthday Reminders,Не посилати Employee народження Нагадування +,Employee Holiday Attendance,Співробітник відпустку Відвідуваність DocType: Opportunity,Walk In,Заходити apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Сток Записи DocType: Item,Inspection Criteria,Інспекційні Критерії @@ -819,7 +822,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options, DocType: Journal Entry Account,Expense Claim,Витрати Заявити apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Кількість для {0} DocType: Leave Application,Leave Application,Залишити заявку -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Залишити Allocation Tool +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Залишити Allocation Tool DocType: Leave Block List,Leave Block List Dates,Залишити Чорний список дат DocType: Company,If Monthly Budget Exceeded (for expense account),Якщо Щомісячний бюджет перевищено (за рахунок витрат) DocType: Workstation,Net Hour Rate,Чистий годину Оцінити @@ -829,7 +832,7 @@ DocType: Packing Slip Item,Packing Slip Item,Упаковка товару ко DocType: POS Profile,Cash/Bank Account,Готівковий / Банківський рахунок apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Вилучені пункти без зміни в кількості або вартості. DocType: Delivery Note,Delivery To,Доставка Для -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Атрибут стіл є обов'язковим +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Атрибут стіл є обов'язковим DocType: Production Planning Tool,Get Sales Orders,Отримати замовлень клієнта apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} не може бути негативним apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Знижка @@ -893,7 +896,7 @@ DocType: SMS Center,Total Characters,Всього Персонажі apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},"Будь ласка, виберіть специфікації в специфікації поля для Пункт {0}" DocType: C-Form Invoice Detail,C-Form Invoice Detail,С-форма рахунки-фактури Подробиці DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Оплата рахунку-фактури Примирення -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Внесок% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Внесок% DocType: Item,website page link,сайт посилання на сторінку DocType: Company,Company registration numbers for your reference. Tax numbers etc.,Реєстраційні номери компанії для вашої довідки. Податкові номери і т.д. DocType: Sales Partner,Distributor,Дистриб'ютор @@ -935,10 +938,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,Коефіцієнт пере DocType: Stock Settings,Default Item Group,За замовчуванням Об'єкт Група apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Постачальник баз даних. DocType: Account,Balance Sheet,Бухгалтерський баланс -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Вартість Center For Пункт із Код товару " +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Вартість Center For Пункт із Код товару " DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,"Ваш менеджер з продажу отримаєте нагадування в цей день, щоб зв'язатися з клієнтом" apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Подальші рахунки можуть бути зроблені відповідно до груп, але Ви можете бути проти НЕ-груп" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Податкові та інші відрахування заробітної плати. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Податкові та інші відрахування заробітної плати. DocType: Lead,Lead,Вести DocType: Email Digest,Payables,Кредиторська заборгованість DocType: Account,Warehouse,Склад @@ -955,10 +958,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Неузгодже DocType: Global Defaults,Current Fiscal Year,Поточний фінансовий рік DocType: Global Defaults,Disable Rounded Total,Відключити Rounded Всього DocType: Lead,Call,Виклик -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,"Записи" не може бути порожнім +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,"Записи" не може бути порожнім apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Дублікат ряд {0} з такою ж {1} ,Trial Balance,Пробний баланс -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Налаштування Співробітники +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Налаштування Співробітники apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid """,Сітка " apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,"Будь ласка, виберіть префікс в першу чергу" apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Дослідження @@ -967,7 +970,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,ідентифікатор користувача apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Подивитися Леджер apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Найперша -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Пункт Група існує з таким же ім'ям, будь ласка, змініть ім'я пункту або перейменувати групу товарів" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Пункт Група існує з таким же ім'ям, будь ласка, змініть ім'я пункту або перейменувати групу товарів" DocType: Production Order,Manufacture against Sales Order,Виробництво проти замовлення клієнта apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Решта світу apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,Деталь {0} не може мати Batch @@ -992,7 +995,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Відхилено Склад DocType: GL Entry,Against Voucher,На ваучері DocType: Item,Default Buying Cost Center,За замовчуванням Купівля Центр Вартість apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Щоб отримати найкраще з ERPNext, ми рекомендуємо вам буде потрібно якийсь час і дивитися ці довідки відео." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Пункт {0} повинен бути Продажі товару +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Пункт {0} повинен бути Продажі товару apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,для DocType: Item,Lead Time in days,Час в днях ,Accounts Payable Summary,Кредиторська заборгованість Основна @@ -1018,7 +1021,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Сільське господарство apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Ваші продукти або послуги DocType: Mode of Payment,Mode of Payment,Спосіб платежу -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Сайт зображення повинно бути суспільне файл або адресу веб-сайту +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Сайт зображення повинно бути суспільне файл або адресу веб-сайту apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,Це кореневий елемент групи і не можуть бути змінені. DocType: Journal Entry Account,Purchase Order,Замовлення на придбання DocType: Warehouse,Warehouse Contact Info,Склад Контактна інформація @@ -1029,7 +1032,7 @@ DocType: Serial No,Serial No Details,Серійний номер деталі DocType: Purchase Invoice Item,Item Tax Rate,Пункт Податкова ставка apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","Для {0}, тільки кредитні рахунки можуть бути пов'язані з іншою дебету" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Доставка Примітка {0} не представлено -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Пункт {0} повинен бути субпідрядником товару +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Пункт {0} повинен бути субпідрядником товару apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Капітальні обладнання apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Ціни Правило спочатку вибирається на основі "Застосувати На" поле, яке може бути Пункт, Пункт Група або Марка." DocType: Hub Settings,Seller Website,Продавець Сайт @@ -1038,7 +1041,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Мета DocType: Sales Invoice Item,Edit Description,Редагувати опис apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,"Очікувана дата поставки менше, ніж Запланована дата початку." -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,Для Постачальника +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,Для Постачальника DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Установка Тип аккаунта допомагає у виборі цього рахунок в угодах. DocType: Purchase Invoice,Grand Total (Company Currency),Загальний підсумок (Компанія валют) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Всього Вихідні @@ -1090,7 +1093,6 @@ DocType: Authorization Rule,Average Discount,Середня Знижка DocType: Address,Utilities,Комунальні послуги DocType: Purchase Invoice Item,Accounting,Облік DocType: Features Setup,Features Setup,Особливості установки -DocType: Item,Is Service Item,Є служба товару apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Термін подачі заяв не може бути період розподілу межами відпустку DocType: Activity Cost,Projects,Проектів apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,"Будь ласка, виберіть фінансовий рік" @@ -1111,7 +1113,7 @@ DocType: Item,Maintain Stock,Підтримання складі apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Сток Записи вже створені для виробничого замовлення apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Чиста зміна в основних фондів DocType: Leave Control Panel,Leave blank if considered for all designations,"Залиште порожнім, якщо вважати всіх позначень" -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Нарахування типу "Актуальні 'в рядку {0} не можуть бути включені в п Оцінити +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Нарахування типу "Актуальні 'в рядку {0} не можуть бути включені в п Оцінити apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Макс: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,З DateTime DocType: Email Digest,For Company,За компанію @@ -1120,8 +1122,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Адреса доставки Ім'я apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,План рахунків DocType: Material Request,Terms and Conditions Content,Умови Вміст -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,не може бути більше ніж 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Пункт {0} не є акціонерним товару +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,не може бути більше ніж 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Пункт {0} не є акціонерним товару DocType: Maintenance Visit,Unscheduled,Позапланові DocType: Employee,Owned,Бувший DocType: Salary Slip Deduction,Depends on Leave Without Pay,Залежить у відпустці без @@ -1142,7 +1144,7 @@ Used for Taxes and Charges",Податковий деталь стіл вуха apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Співробітник не може повідомити собі. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Якщо обліковий запис заморожується, записи дозволяється заборонених користувачів." DocType: Email Digest,Bank Balance,Банківський баланс -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Облік Вхід для {0}: {1} можуть бути зроблені тільки у валюті: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Облік Вхід для {0}: {1} можуть бути зроблені тільки у валюті: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Відсутність активного Зарплата Структура знайдено співробітника {0} і місяць DocType: Job Opening,"Job profile, qualifications required etc.","Профіль роботи, потрібна кваліфікація і т.д." DocType: Journal Entry Account,Account Balance,Баланс @@ -1159,7 +1161,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Sub Асам DocType: Shipping Rule Condition,To Value,Оцінювати DocType: Supplier,Stock Manager,Фото менеджер apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Джерело склад є обов'язковим для ряду {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Пакувальний лист +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Пакувальний лист apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Оренда площі для офісу apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Настройки шлюзу Налаштування SMS apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Імпорт вдалося! @@ -1203,7 +1205,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,Специфікація Д DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Додаткова знижка Сума (валюта компанії) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Помилка: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,"Будь ласка, створіть новий обліковий запис з Планом рахунків бухгалтерського обліку." -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Обслуговування відвідування +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Обслуговування відвідування apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Замовник> Група клієнтів> Територія DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Доступні Пакетна Кількість на складі DocType: Time Log Batch Detail,Time Log Batch Detail,Час входу Пакетне Подробиці @@ -1212,7 +1214,7 @@ DocType: Leave Block List,Block Holidays on important days.,Блок Відпо ,Accounts Receivable Summary,Дебіторська заборгованість Основна apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,"Будь ласка, встановіть ID користувача поле в записі Employee, щоб встановити роль Employee" DocType: UOM,UOM Name,Ім'я Одиниця виміру -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Внесок Сума +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Внесок Сума DocType: Sales Invoice,Shipping Address,Адреса доставки DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,"Цей інструмент допоможе вам оновити або виправити кількість і оцінка запасів у системі. Це, як правило, використовується для синхронізації системних значень і що насправді існує у ваших складах." DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,"За словами будуть видні, як тільки ви збережете накладну." @@ -1253,7 +1255,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,"Щоб відстежувати предмети, використовуючи штрих-код. Ви зможете ввести деталі в накладній та рахунки-фактури з продажу сканування штрих-кодів пункту." apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Повторно оплати на e-mail DocType: Dependent Task,Dependent Task,Залежить Завдання -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Коефіцієнт для замовчуванням Одиниця виміру повинні бути 1 в рядку {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Коефіцієнт для замовчуванням Одиниця виміру повинні бути 1 в рядку {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},"Залишити типу {0} не може бути більше, ніж {1}" DocType: Manufacturing Settings,Try planning operations for X days in advance.,Спробуйте плануванні операцій для X днів. DocType: HR Settings,Stop Birthday Reminders,Стоп народження Нагадування @@ -1263,7 +1265,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,Перегляд {0} apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Чиста зміна грошових коштів DocType: Salary Structure Deduction,Salary Structure Deduction,Зарплата Структура Відрахування -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Одиниця виміру {0} був введений більш ніж один раз в таблицю перетворення фактора +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Одиниця виміру {0} був введений більш ніж один раз в таблицю перетворення фактора apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Оплата Запит вже існує {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Вартість виданих предметів apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},"Кількість не повинна бути більше, ніж {0}" @@ -1292,7 +1294,7 @@ DocType: BOM Item,BOM Item,Специфікація товару DocType: Appraisal,For Employee,Для працівника apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Ряд {0}: Попередня проти Постачальника повинні бути дебет DocType: Company,Default Values,Значення за замовчуванням -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Ряд {0}: Сума платежу не може бути негативним +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Ряд {0}: Сума платежу не може бути негативним DocType: Expense Claim,Total Amount Reimbursed,Загальна сума відшкодовуються apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},На Постачальником рахунку-фактури {0} від {1} DocType: Customer,Default Price List,За замовчуванням Ціни @@ -1320,8 +1322,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Г DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Замініть особливе специфікації у всіх інших специфікацій, де він використовується. Він замінить стару посилання специфікації, оновити і відновити вартість "специфікації Вибух Item" таблицю на новій специфікації" DocType: Shopping Cart Settings,Enable Shopping Cart,Включити Кошик DocType: Employee,Permanent Address,Постійна адреса -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Пункт {0} повинен бути служба товару. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}","Advance платний проти {0} {1} не може бути більше \, ніж загальний підсумок {2}" apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,"Будь ласка, виберіть пункт код" DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Скорочення вирахування для відпустки без збереження (LWP) @@ -1377,12 +1378,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Головна apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Варіант DocType: Naming Series,Set prefix for numbering series on your transactions,Встановіть префікс нумерації серії на ваших угод +DocType: Employee Attendance Tool,Employees HTML,співробітники HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,"Зупинився замовлення не може бути скасований. Відкорковувати, щоб скасувати." -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,За замовчуванням BOM ({0}) повинен бути активним для даного елемента або в шаблоні +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,За замовчуванням BOM ({0}) повинен бути активним для даного елемента або в шаблоні DocType: Employee,Leave Encashed?,Залишити інкасовано? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Можливість поле Від обов'язкове DocType: Item,Variants,Варіанти -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Зробити замовлення на +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Зробити замовлення на DocType: SMS Center,Send To,Відправити apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Існує не вистачає відпустку баланс Залиште Тип {0} DocType: Payment Reconciliation Payment,Allocated amount,Асигнувати сума @@ -1482,7 +1484,7 @@ DocType: Sales Person,Name and Employee ID,Ім'я та ідентифіка apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,"Завдяки Дата не може бути, перш ніж відправляти Реєстрація" DocType: Website Item Group,Website Item Group,Сайт групи товарів apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Мита і податки -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,"Будь ласка, введіть дату Reference" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,"Будь ласка, введіть дату Reference" apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Платіжний шлюз аккаунт не налаштований apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} записів оплати не можуть бути відфільтровані по {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,"Таблиця для елемента, який буде показаний в веб-сайт" @@ -1503,7 +1505,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Дозвіл Подробиці DocType: Quality Inspection Reading,Acceptance Criteria,Критерії приймання DocType: Item Attribute,Attribute Name,Ім'я атрибута -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Пункт {0} повинен бути Продажі або в пункті СЕРВІС {1} DocType: Item Group,Show In Website,Показати на веб-сайті apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Група DocType: Task,Expected Time (in hours),Очікуваний час (в годинах) @@ -1535,7 +1536,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Доставка Сума ,Pending Amount,До Сума DocType: Purchase Invoice Item,Conversion Factor,Коефіцієнт перетворення DocType: Purchase Order,Delivered,Поставляється -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),"Налаштування сервера вхідної в робочі електронний ідентифікатор. (наприклад, jobs@example.com)" +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),"Налаштування сервера вхідної в робочі електронний ідентифікатор. (наприклад, jobs@example.com)" DocType: Purchase Receipt,Vehicle Number,Кількість транспортних засобів DocType: Purchase Invoice,The date on which recurring invoice will be stop,"Дата, на яку повторюваних рахунок буде зупинити" apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,"Всього виділені листя {0} не може бути менше, ніж вже затверджених листя {1} за період" @@ -1552,7 +1553,7 @@ DocType: HR Settings,HR Settings,Налаштування HR apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Витрати Заявити очікує схвалення. Тільки за рахунок затверджує можете оновити статус. DocType: Purchase Invoice,Additional Discount Amount,Додаткова знижка Сума DocType: Leave Block List Allow,Leave Block List Allow,Залишити Чорний список Дозволити -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Абревіатура не може бути порожнім або простір +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Абревіатура не може бути порожнім або простір apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Група не-групи apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Спортивний apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Загальний фактичний @@ -1576,7 +1577,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},Коефіцієнт перетворення Одиниця виміру потрібно в рядку {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Дата просвіт не може бути до дати реєстрації в рядку {0} DocType: Salary Slip,Deduction,Відрахування -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Ціна товару додається для {0} в Прейскуранті {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Ціна товару додається для {0} в Прейскуранті {1} DocType: Address Template,Address Template,Адреса шаблону apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,"Будь ласка, введіть Employee Id цього менеджера з продажу" DocType: Territory,Classification of Customers by region,Класифікація клієнтів по регіонах @@ -1593,7 +1594,7 @@ DocType: Employee,Date of Birth,Дата народження apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Пункт {0} вже повернулися DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** Фінансовий рік ** являє собою фінансовий рік. Всі бухгалтерські та інші великі угоди відслідковуються проти ** ** фінансовий рік. DocType: Opportunity,Customer / Lead Address,Замовник / Провідний Адреса -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Увага: Невірний сертифікат SSL на прихильності {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Увага: Невірний сертифікат SSL на прихильності {0} DocType: Production Order Operation,Actual Operation Time,Фактична Час роботи DocType: Authorization Rule,Applicable To (User),Застосовується до (Користувач) DocType: Purchase Taxes and Charges,Deduct,Відняти @@ -1610,7 +1611,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Спліт накладної в пакети. apps/erpnext/erpnext/hooks.py +69,Shipments,Поставки DocType: Purchase Order Item,To be delivered to customer,Для поставлятися замовнику -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Час Статус журналу повинні бути представлені. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Час Статус журналу повинні бути представлені. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,Серійний номер {0} не належить ні до однієї Склад apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Ряд # DocType: Purchase Invoice,In Words (Company Currency),У Слів (Компанія валют) @@ -1627,7 +1628,7 @@ DocType: Leave Application,Total Leave Days,Всього днів відпуст DocType: Email Digest,Note: Email will not be sent to disabled users,Примітка: E-mail НЕ буде відправлено користувачів з обмеженими можливостями apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Виберіть компанію ... DocType: Leave Control Panel,Leave blank if considered for all departments,"Залиште порожнім, якщо розглядати для всіх відділів" -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Види зайнятості (постійна, за контрактом, стажист і т.д.)." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Види зайнятості (постійна, за контрактом, стажист і т.д.)." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} є обов'язковим для пп {1} DocType: Currency Exchange,From Currency,Від Валюта apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Будь ласка, виберіть Виділена сума, рахунок-фактура Тип і номер рахунку-фактури в принаймні один ряд" @@ -1646,7 +1647,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,В процесі DocType: Authorization Rule,Itemwise Discount,Itemwise Знижка DocType: Purchase Order Item,Reference Document Type,Посилання Тип документа -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} проти замовлення клієнта {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} проти замовлення клієнта {1} DocType: Account,Fixed Asset,Основних засобів apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Серійний Інвентар DocType: Activity Type,Default Billing Rate,За замовчуванням Платіжна Оцінити @@ -1656,7 +1657,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Продажі Наказ Оплата DocType: Expense Claim Detail,Expense Claim Detail,Витрати Заявити Подробиці apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Журнали Час створення: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,"Будь ласка, виберіть правильний рахунок" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,"Будь ласка, виберіть правильний рахунок" DocType: Item,Weight UOM,Вага Одиниця виміру DocType: Employee,Blood Group,Група крові DocType: Purchase Invoice Item,Page Break,Розрив сторінки @@ -1691,7 +1692,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},Специфікація рекурсії: {0} не може бути батько або дитина {2} DocType: Production Order Operation,Completed Qty,Завершений Кількість apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","Для {0}, тільки дебетові рахунки можуть бути пов'язані з іншою кредитною вступу" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Ціни {0} відключена +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Ціни {0} відключена DocType: Manufacturing Settings,Allow Overtime,Дозволити Овертайм apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,"{0} Серійні номери, необхідні для Пункт {1}. Ви надали {2}." DocType: Stock Reconciliation Item,Current Valuation Rate,Поточна оцінка Оцінити @@ -1742,7 +1743,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Не apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Справа № не може бути 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,"Якщо у вас є команда, і продаж з продажу Партнери (Channel Partners), вони можуть бути помічені і підтримувати їх внесок у збутової діяльності" DocType: Item,Show a slideshow at the top of the page,Показати слайд-шоу у верхній частині сторінки -DocType: Item,"Allow in Sales Order of type ""Service""",Дозволити в замовлення клієнта типу "послуг" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Магазини DocType: Time Log,Projects Manager,Менеджер проектів DocType: Serial No,Delivery Time,Час доставки @@ -1757,6 +1757,7 @@ DocType: Rename Tool,Rename Tool,Перейменувати інструмент apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Оновлення Вартість DocType: Item Reorder,Item Reorder,Пункт Змінити порядок apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Передача матеріалів +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Стан {0} повинен бути в продажу товару в {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Вкажіть операцій, операційні витрати та дають унікальну операцію не в Ваших операцій." DocType: Purchase Invoice,Price List Currency,Ціни валют DocType: Naming Series,User must always select,Користувач завжди повинен вибрати @@ -1777,7 +1778,7 @@ DocType: Appraisal,Employee,Співробітник apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Імпортувати пошту з apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Запросити у користувача DocType: Features Setup,After Sale Installations,Після продажу установок -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} повністю виставлений рахунок +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} повністю виставлений рахунок DocType: Workstation Working Hour,End Time,Час закінчення apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Стандартні умови договору для продажу або покупки. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Група по Ваучер @@ -1803,7 +1804,7 @@ DocType: Upload Attendance,Attendance To Date,Відвідуваність Дл apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),"Налаштування сервера вхідної у продажу електронний ідентифікатор. (наприклад, sales@example.com)" DocType: Warranty Claim,Raised By,Raised By DocType: Payment Gateway Account,Payment Account,Оплата рахунку -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,"Будь ласка, сформулюйте компанії, щоб продовжити" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,"Будь ласка, сформулюйте компанії, щоб продовжити" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Чисте зміна дебіторської заборгованості apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Компенсаційні Викл DocType: Quality Inspection Reading,Accepted,Прийняті @@ -1815,14 +1816,14 @@ DocType: Shipping Rule,Shipping Rule Label,Правило ярлику apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Сировина не може бути порожнім. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Не вдалося оновити запас, рахунок-фактура містить падіння пункт доставки." DocType: Newsletter,Test,Тест -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Як є існуючі біржові операції по цьому пункту, \ ви не можете змінити значення 'Має серійний номер "," Має Batch Ні »,« Чи є зі Пункт "і" Оцінка Метод "" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Швидкий журнал запис apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,"Ви не можете змінити ставку, якщо специфікації згадується agianst будь-якого елементу" DocType: Employee,Previous Work Experience,Попередній досвід роботи DocType: Stock Entry,For Quantity,Для Кількість apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},"Будь ласка, введіть плановий Кількість для Пункт {0} в рядку {1}" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} не буде поданий +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} не буде поданий apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Запити для елементів. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Окрема виробничий замовлення буде створено для кожного готового виробу пункту. DocType: Purchase Invoice,Terms and Conditions1,Умови та условія1 @@ -1847,6 +1848,7 @@ DocType: Notification Control,Expense Claim Approved Message,Витрати За DocType: Email Digest,How frequently?,Як часто? DocType: Purchase Receipt,Get Current Stock,Отримати поточний запас apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Дерево Білла матеріалів +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Відзначити даний apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Дата початку обслуговування не може бути до дати доставки для Серійний номер {0} DocType: Production Order,Actual End Date,Фактична Дата закінчення DocType: Authorization Rule,Applicable To (Role),Застосовується до (Роль) @@ -1861,7 +1863,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,"Договір Кінцева дата повинна бути більше, ніж дата вступу" DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,"Третя сторона дистриб'ютор / дилер / комісіонер / Партнери /, який продає продукти компаній на комісію." DocType: Customer Group,Has Child Node,Має дочірній вузол -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} проти Замовлення {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} проти Замовлення {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Введіть статичних параметрів URL тут (Напр., Відправник = ERPNext, ім'я користувача = ERPNext, пароль = один тисяча двісті тридцять чотири і т.д.)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,"{0} {1}, не в якій-небудь активної фінансовий рік. Для більш детальної інформації перевірити {2}." apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Це приклад сайту генерується автоматично з ERPNext @@ -1889,7 +1891,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Add or Deduct: Whether you want to add or deduct the tax.","Стандартний шаблон податок, який може бути застосований до всіх операцій купівлі. Цей шаблон може містити перелік податкових керівників, а також інших витрат керівників як "Доставка", "Insurance", "Звернення" і т.д. #### Примітка податкової ставки ви визначаєте тут буде стандартна ставка податку на прибуток для всіх ** Елементи * *. Якщо є ** ** товари, які мають різні ціни, вони повинні бути додані в ** Item податку ** стіл в ** ** Item майстра. #### Опис колонок 1. Розрахунок Тип: - Це може бути від ** ** Загальна Чистий (тобто сума основної суми). - ** На попередньому рядку Total / сума ** (за сукупністю податків або зборів). Якщо ви оберете цю опцію, податок буде застосовуватися, як у відсотках від попереднього ряду (у податковому таблиці) суми або загальної. - ** ** Фактичний (як уже згадувалося). 2. Рахунок Керівник: Рахунок книга, під яким цей податок будуть заброньовані 3. Вартість центр: Якщо податок / плата є доходом (як перевезення вантажу) або витрат це повинно бути заброньовано проти МВЗ. 4. Опис: Опис податку (які будуть надруковані в рахунках-фактурах / цитати). 5. Оцінити: Податкова ставка. 6. Сума: Сума податку. 7. Разом: Сумарне до цієї точки. 8. Введіть рядок: Якщо на базі "Попередня рядок Усього" ви можете вибрати номер рядка, який буде прийнято в якості основи для розрахунку цього (за замовчуванням це попереднє рядок). 9. Розглянемо податку або збору для: У цьому розділі ви можете поставити, якщо податок / плата тільки за оцінки (не частина всього) або тільки для загальної (не додати цінність пункту) або для обох. 10. Додати або відняти: Якщо ви хочете, щоб додати або відняти податок." DocType: Purchase Receipt Item,Recd Quantity,Кількість RECD apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},"Не можете виробляти більше Пункт {0}, ніж кількість продажів Замовити {1}" -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Фото запис {0} не представлено +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Фото запис {0} не представлено DocType: Payment Reconciliation,Bank / Cash Account,Банк / грошовий рахунок DocType: Tax Rule,Billing City,Біллінг Місто DocType: Global Defaults,Hide Currency Symbol,Приховати символ валюти @@ -1915,7 +1917,7 @@ DocType: Salary Structure,Total Earning,Всього Заробіток DocType: Purchase Receipt,Time at which materials were received,"Час, в якому були отримані матеріали" apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Мої Адреси DocType: Stock Ledger Entry,Outgoing Rate,Вихідні Оцінити -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Організація філії господар. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Організація філії господар. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,або DocType: Sales Order,Billing Status,Статус рахунків apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Комунальні витрати @@ -1953,7 +1955,7 @@ DocType: Bin,Reserved Quantity,Зарезервовано Кількість DocType: Landed Cost Voucher,Purchase Receipt Items,Купівля розписок товари apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Налаштування форми DocType: Account,Income Account,Рахунок Доходи -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Доставка +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Доставка DocType: Stock Reconciliation Item,Current Qty,Поточний Кількість DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",Див "Оцінити матеріалів на основі" в розділі калькуляції DocType: Appraisal Goal,Key Responsibility Area,Ключ Відповідальність Площа @@ -1965,8 +1967,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,В DocType: Notification Control,Purchase Order Message,Замовлення на повідомлення DocType: Tax Rule,Shipping Country,Доставка Країна DocType: Upload Attendance,Upload HTML,Завантажити HTML- -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","Всього аванс ({0}) проти ордена {1} не може бути більше \, ніж загальний підсумок ({2})" DocType: Employee,Relieving Date,Звільнення Дата apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.",Ціни правила робиться для перезапису Прайс-лист / визначити відсоток дисконтування на основі деяких критеріїв. DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Склад може бути змінений тільки через фондовій входу / накладної / Купівля Надходження @@ -1976,8 +1976,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,По apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Якщо обрано Ціни Правило зроблено для "ціна", це буде перезаписувати Прайс-лист. Ціни Правило ціна остаточна ціна, так що далі знижка не повинні застосовуватися. Отже, у таких угодах, як замовлення клієнта, замовлення і т.д., це буде вибрано в полі 'Rate', а не 'поле прайс-лист Rate'." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Трек веде по промисловості Type. DocType: Item Supplier,Item Supplier,Пункт Постачальник -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,"Будь ласка, введіть код предмета, щоб отримати партії не" -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},"Будь ласка, виберіть значення для {0} quotation_to {1}" +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,"Будь ласка, введіть код предмета, щоб отримати партії не" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},"Будь ласка, виберіть значення для {0} quotation_to {1}" apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Всі адреси. DocType: Company,Stock Settings,Сток Налаштування apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Об'єднання можливе тільки, якщо такі властивості однакові в обох звітах. Є група, кореневої тип, компанія" @@ -2000,7 +2000,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Чек Кількість DocType: Payment Tool Detail,Payment Tool Detail,"Подробиці платіжний інструмент," ,Sales Browser,Браузер з продажу DocType: Journal Entry,Total Credit,Всього Кредитна -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Увага: Ще {0} # {1} існує проти вступу фондовій {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Увага: Ще {0} # {1} існує проти вступу фондовій {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,Місцевий apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Кредити та аванси (активів) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Боржники @@ -2020,8 +2020,8 @@ DocType: Price List,Price List Master,Ціни Майстер DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,"Всі Продажі Угоди можуть бути помічені проти кількох ** ** продажів осіб, так що ви можете встановити і контролювати цілі." ,S.O. No.,КО № DocType: Production Order Operation,Make Time Log,Зробити часу Вхід -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,"Будь ласка, встановіть кількість тональний" -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},"Будь ласка, створіть клієнт зі свинцю {0}" +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,"Будь ласка, встановіть кількість тональний" +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},"Будь ласка, створіть клієнт зі свинцю {0}" DocType: Price List,Applicable for Countries,Стосується для країн apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Комп'ютери apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,Це корінь групи клієнтів і не можуть бути змінені. @@ -2057,7 +2057,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Біл DocType: Payment Reconciliation Invoice,Outstanding Amount,Непогашена сума DocType: Project Task,Working,Робоча DocType: Stock Ledger Entry,Stock Queue (FIFO),Фото Черга (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,"Будь ласка, виберіть журналів Time." +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,"Будь ласка, виберіть журналів Time." apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} не належать компанії {1} DocType: Account,Round Off,Округляти ,Requested Qty,Запитувана Кількість @@ -2095,7 +2095,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Одержати відповідні записи apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Облік Вхід для запасі DocType: Sales Invoice,Sales Team1,Команда1 продажів -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Пункт {0} не існує +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Пункт {0} не існує DocType: Sales Invoice,Customer Address,Замовник Адреса DocType: Payment Request,Recipient and Message,Одержувач і повідомлення DocType: Purchase Invoice,Apply Additional Discount On,Застосувати Додаткова знижка на @@ -2114,7 +2114,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Відключення E-mail apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Продукти харчування, напої і тютюн" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL або BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Можу тільки здійснити платіж проти нефактурірованних {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Можу тільки здійснити платіж проти нефактурірованних {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,"Швидкість Комісія не може бути більше, ніж 100" apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Мінімальний рівень запасів DocType: Stock Entry,Subcontract,Субпідряд @@ -2132,9 +2132,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Прогр apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Колір DocType: Maintenance Visit,Scheduled,Заплановане apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","Будь ласка, виберіть пункт, де "Чи зі Пункт" "Ні" і "є продаж товару" "Так", і немає ніякої іншої продукт Зв'язка" +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),"Всього аванс ({0}) проти ордена {1} не може бути більше, ніж загальна сума ({2})" DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Виберіть щомісячний розподіл до нерівномірно розподілити цілі по місяців. DocType: Purchase Invoice Item,Valuation Rate,Оцінка Оцініть -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Ціни валют не визначена +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Ціни валют не визначена apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,"Пункт ряд {0}: Покупка Отримання {1}, не існує в таблиці вище "Купити" НАДХОДЖЕННЯ" apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Співробітник {0} вже застосовується для {1} між {2} і {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Дата початку @@ -2146,6 +2147,7 @@ DocType: Quality Inspection,Inspection Type,Інспекція Тип apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},"Будь ласка, виберіть {0}" DocType: C-Form,C-Form No,С-Форма Немає DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,Unmarked Відвідуваність apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Дослідник apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,"Будь ласка, збережіть бюлетень перед відправкою" apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Або адреса електронної пошти є обов'язковим @@ -2171,7 +2173,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Під DocType: Payment Gateway,Gateway,Шлюз apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Постачальник> Постачальник Тип apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,"Будь ласка, введіть дату зняття." -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,Тільки Залиште додатків зі статусом «Схвалено" можуть бути представлені apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Адреса Назва є обов'язковим. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,"Введіть ім'я кампанії, якщо джерелом є кампанія запит" @@ -2186,10 +2188,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Прийнято Склад DocType: Bank Reconciliation Detail,Posting Date,Дата розміщення DocType: Item,Valuation Method,Метод Оцінка apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Неможливо знайти обмінний курс {0} до {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Відзначити Півдня DocType: Sales Invoice,Sales Team,Відділ продажів apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Дублікат запис DocType: Serial No,Under Warranty,Під гарантії -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Помилка] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Помилка] DocType: Sales Order,In Words will be visible once you save the Sales Order.,"За словами будуть видні, як тільки ви збережете замовлення клієнта." ,Employee Birthday,Співробітник народження apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Венчурний капітал @@ -2212,6 +2215,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,"Центр Вартість з існуючими операцій, не може бути перетворений в групі" DocType: Account,Depreciation,Амортизація apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Постачальник (и) +DocType: Employee Attendance Tool,Employee Attendance Tool,Співробітник Відвідуваність Інструмент DocType: Supplier,Credit Limit,Кредитний ліміт apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Виберіть тип угоди DocType: GL Entry,Voucher No,Ваучер Немає @@ -2238,7 +2242,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Корінь рахунок не може бути видалений ,Is Primary Address,Є первинним Адреса DocType: Production Order,Work-in-Progress Warehouse,Робота-в-Прогрес Склад -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Посилання # {0} від {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Посилання # {0} від {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Управління адрес DocType: Pricing Rule,Item Code,Код товару DocType: Production Planning Tool,Create Production Orders,Створити виробничі замовлення @@ -2265,7 +2269,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Банк примирення apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Отримати оновлення apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Матеріал Запит {0} ануляції або зупинився apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Додати кілька пробних записів -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Залишити управління +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Залишити управління apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Група по рахунок DocType: Sales Order,Fully Delivered,Повністю Поставляється DocType: Lead,Lower Income,Нижня дохід @@ -2280,6 +2284,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',"З дати" повинно бути після "Для Дата" ,Stock Projected Qty,Фото Прогнозований Кількість apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Замовник {0} не належить до проекту {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Помітне Відвідуваність HTML DocType: Sales Order,Customer's Purchase Order,Замовлення клієнта DocType: Warranty Claim,From Company,Від компанії apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Значення або Кількість @@ -2344,6 +2349,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Банківський переказ apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,"Будь ласка, виберіть банківський рахунок" DocType: Newsletter,Create and Send Newsletters,Створення і відправлення розсилки +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Перевірити все DocType: Sales Order,Recurring Order,Періодична Замовити DocType: Company,Default Income Account,За замовчуванням Рахунок Доходи apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Група клієнтів / клієнтів @@ -2375,6 +2381,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Повернутися DocType: Item,Warranty Period (in days),Гарантійний термін (в днях) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Чисті грошові кошти від операційної apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,"наприклад, ПДВ" +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Глядачі Марк Співробітник наливом apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Пункт 4 DocType: Journal Entry Account,Journal Entry Account,Запис у щоденнику аккаунт DocType: Shopping Cart Settings,Quotation Series,Цитата серії @@ -2517,14 +2524,14 @@ DocType: Task,Actual Start Date (via Time Logs),Фактична дата поч DocType: Stock Reconciliation Item,Before reconciliation,Перед примирення apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Для {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Податки і збори Додав (Компанія валют) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Пункт Податковий ряд {0} повинен мати обліковий запис типу податку або доходів або витрат або платно +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,Пункт Податковий ряд {0} повинен мати обліковий запис типу податку або доходів або витрат або платно DocType: Sales Order,Partly Billed,Невелика Оголошений DocType: Item,Default BOM,За замовчуванням BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,"Будь ласка, повторіть введення назва компанії, щоб підтвердити" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Загальна сума заборгованості з Amt DocType: Time Log Batch,Total Hours,Загальна кількість годин DocType: Journal Entry,Printing Settings,Налаштування друку -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},"Всього Дебет повинна дорівнювати загальній виробленні. Різниця в тому, {0}" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},"Всього Дебет повинна дорівнювати загальній виробленні. Різниця в тому, {0}" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Автомобільний apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,З накладної DocType: Time Log,From Time,Від часу @@ -2570,7 +2577,7 @@ DocType: Purchase Invoice Item,Image View,Перегляд зображення DocType: Issue,Opening Time,Відкриття Час apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,"Від і До дати, необхідних" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Цінні папери та бірж -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',"За замовчуванням Одиниця виміру для варіанту '{0}' має бути такою ж, як в шаблоні "{1} '" +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',"За замовчуванням Одиниця виміру для варіанту '{0}' має бути такою ж, як в шаблоні "{1} '" DocType: Shipping Rule,Calculate Based On,"Розрахувати, засновані на" DocType: Delivery Note Item,From Warehouse,Від Склад DocType: Purchase Taxes and Charges,Valuation and Total,Оцінка і Загальна @@ -2592,7 +2599,7 @@ DocType: Leave Application,Follow via Email,Дотримуйтесь по еле DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Сума податку після скидки Сума apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Дитячий рахунок існує для цього облікового запису. Ви не можете видалити цей аккаунт. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Або мета або ціль Кількість Сума є обов'язковим -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},Немає за замовчуванням специфікації не існує для п {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},Немає за замовчуванням специфікації не існує для п {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,"Будь ласка, виберіть проводки Дата першого" apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,"Відкриття Дата повинна бути, перш ніж Дата закриття" DocType: Leave Control Panel,Carry Forward,Переносити @@ -2616,6 +2623,7 @@ apps/erpnext/erpnext/controllers/trends.py +19,Total(Amt),Всього (АМТ) apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +26,Entertainment & Leisure,Розваги і дозвілля DocType: Purchase Order,The date on which recurring order will be stop,"Дата, на яку повторюване замовлення буде зупинити" DocType: Quality Inspection,Item Serial No,Пункт Серійний номер +apps/erpnext/erpnext/controllers/status_updater.py +145,{0} must be reduced by {1} or you should increase overflow tolerance,{0} повинна бути зменшена на {1} або ви повинні підвищити рівень толерантності переливу apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +57,Total Present,Разом Поточна apps/erpnext/erpnext/public/js/setup_wizard.js +293,Hour,Година apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +145,"Serialized Item {0} cannot be updated \ @@ -2668,7 +2676,7 @@ DocType: Leave Type,Is Encash,Є Обналічиваніє DocType: Purchase Invoice,Mobile No,Номер мобільного DocType: Payment Tool,Make Journal Entry,Зробити запис журналу DocType: Leave Allocation,New Leaves Allocated,Нові листя номером -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Дані проекту мудрий не доступні для цитати +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Дані проекту мудрий не доступні для цитати DocType: Project,Expected End Date,Очікувана Дата закінчення DocType: Appraisal Template,Appraisal Template Title,Оцінка шаблону Назва apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Комерційна @@ -2716,6 +2724,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,У apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Введи DocType: Offer Letter,Awaiting Response,В очікуванні відповіді apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Вище +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Час входу була Оголошений DocType: Salary Slip,Earning & Deduction,Заробіток і дедукція apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Рахунок {0} не може бути група apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Необов'язково. Ця установка буде використовуватися для фільтрації в різних угод. @@ -2786,14 +2795,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,"Успішно видалений всі угоди, пов'язані з цією компанією!" apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Станом на Дата apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Випробувальний термін -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,За замовчуванням Склад є обов'язковим для фондового Пункт. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,За замовчуванням Склад є обов'язковим для фондового Пункт. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Виплата заробітної плати за місяць {0} і рік {1} DocType: Stock Settings,Auto insert Price List rate if missing,"Авто вставка Швидкість Ціни, якщо не вистачає" apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Всього сплачена сума ,Transferred Qty,Переведений Кількість apps/erpnext/erpnext/config/learn.py +11,Navigating,Навігаційний apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Планування -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Зробіть Час Увійдіть Batch +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Зробіть Час Увійдіть Batch apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Виданий DocType: Project,Total Billing Amount (via Time Logs),Всього рахунків Сума (за допомогою журналів Time) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Ми продаємо цей пункт @@ -2801,7 +2810,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,"Кількість повинна бути більше, ніж 0" DocType: Journal Entry,Cash Entry,Грошові запис DocType: Sales Partner,Contact Desc,Зв'язатися Опис вироби -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Тип листя, як випадкові, хворих і т.д." +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Тип листя, як випадкові, хворих і т.д." DocType: Email Digest,Send regular summary reports via Email.,Відправити регулярні зведені звіти по електронній пошті. DocType: Brand,Item Manager,Стан менеджер DocType: Cost Center,Add rows to set annual budgets on Accounts.,"Додати рядки, щоб встановити щорічні бюджети на рахунках." @@ -2816,7 +2825,7 @@ DocType: GL Entry,Party Type,Тип партія apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,"Сировина не може бути таким же, як основний пункт" DocType: Item Attribute Value,Abbreviation,Скорочення apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Не так Authroized {0} перевищує межі -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Зарплата шаблоном. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Зарплата шаблоном. DocType: Leave Type,Max Days Leave Allowed,Макс днів відпустки тварин apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Встановіть Податковий Правило кошику DocType: Payment Tool,Set Matching Amounts,Відповідні суми вказано @@ -2829,7 +2838,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Кот DocType: Stock Settings,Role Allowed to edit frozen stock,Роль тварин редагувати заморожені акції ,Territory Target Variance Item Group-Wise,Територія Цільова Різниця Пункт Група Мудрий apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Всі групи покупців -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,"{0} є обов'язковим. Може бути, Обмін валюти запис не створена для {1} до {2}." +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,"{0} є обов'язковим. Може бути, Обмін валюти запис не створена для {1} до {2}." apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Податковий шаблону є обов'язковим. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Рахунок {0}: Батько не існує обліковий запис {1} DocType: Purchase Invoice Item,Price List Rate (Company Currency),Ціни Оцінити (Компанія валют) @@ -2849,7 +2858,7 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Пункт Мудрий ,Item-wise Price List Rate,Пункт мудрий Ціни Оцінити apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Постачальник цитати DocType: Quotation,In Words will be visible once you save the Quotation.,"За словами будуть видні, як тільки ви збережете цитати." -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} зупинений +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} зупинений DocType: Lead,Add to calendar on this date,Додати в календар в цей день apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Правила для додавання транспортні витрати. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,Майбутні події @@ -2875,8 +2884,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,С apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Принаймні одне склад є обов'язковим DocType: Serial No,Out of Warranty,З гарантії DocType: BOM Replace Tool,Replace,Замінювати -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} проти накладна {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,"Будь ласка, введіть замовчуванням Одиниця виміру" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} проти накладна {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,"Будь ласка, введіть замовчуванням Одиниця виміру" DocType: Purchase Invoice Item,Project Name,Назва проекту DocType: Supplier,Mention if non-standard receivable account,Згадка якщо нестандартна заборгованість рахунок DocType: Journal Entry Account,If Income or Expense,Якщо доходи або витрати @@ -2901,7 +2910,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Фінансовий рік: {0} не існує робить DocType: Currency Exchange,To Currency,Для Валюта DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Дозволити наступні користувачі затвердити Залишити додатків для блокових днів. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Типи витрати претензії. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Типи витрати претензії. DocType: Item,Taxes,Податки apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Платні і не доставляється DocType: Project,Default Cost Center,За замовчуванням Центр Вартість @@ -2931,7 +2940,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},"Ряд # {0}: Серійний номер {1}, не відповідає {2} {3}" apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Повсякденне Залишити DocType: Batch,Batch ID,Пакетна ID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Примітка: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Примітка: {0} ,Delivery Note Trends,Накладний Тенденції apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Резюме цього тижня apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} повинен бути куплені або субпідрядником товару в рядку {1} @@ -2971,6 +2980,7 @@ DocType: Project Task,Pending Review,В очікуванні відгук apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,"Натисніть тут, щоб оплатити" DocType: Task,Total Expense Claim (via Expense Claim),Всього Заявити витрат (за допомогою Expense претензії) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Ідентифікатор клієнта +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Марк Відсутня apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,"Часу повинен бути більше, ніж від часу" DocType: Journal Entry Account,Exchange Rate,Курс валюти apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Продажі Замовити {0} не представлено @@ -3018,7 +3028,7 @@ DocType: Item Group,Default Expense Account,За замовчуванням Ви DocType: Employee,Notice (days),Примітка (днів) DocType: Tax Rule,Sales Tax Template,Податок з продажу шаблону DocType: Employee,Encashment Date,Інкасація Дата -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","На ваучері Тип повинен бути одним із Замовлення, накладна або журнал запис" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","На ваучері Тип повинен бути одним із Замовлення, накладна або журнал запис" DocType: Account,Stock Adjustment,Фото Регулювання apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},За замовчуванням активність Вартість існує для виду діяльності - {0} DocType: Production Order,Planned Operating Cost,Планована операційна Вартість @@ -3072,6 +3082,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Списання запис DocType: BOM,Rate Of Materials Based On,Оцінити матеріалів на основі apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Підтримка Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Скасувати всі apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Компанія на складах не вистачає {0} DocType: POS Profile,Terms and Conditions,Правила та умови apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},Для Дата повинна бути в межах фінансового року. Припускаючи Дата = {0} @@ -3093,7 +3104,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Щоб встановити цей фінансовий рік, за замовчуванням, натисніть на кнопку "Встановити за замовчуванням"" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),"Налаштування сервера вхідної в підтримку електронний ідентифікатор. (наприклад, support@example.com)" apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Брак Кількість -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Стан варіант {0} існує з тими ж атрибутами +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Стан варіант {0} існує з тими ж атрибутами DocType: Salary Slip,Salary Slip,Зарплата ковзання apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,"Для Дата" потрібно DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Створення пакувальні листи для упаковки повинні бути доставлені. Використовується для повідомлення номер пакету, вміст пакету і його вага." @@ -3141,7 +3152,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Под DocType: Item Attribute Value,Attribute Value,Значення атрибута apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","Посвідчення особи електронної пошти повинен бути унікальним, вже існує для {0}" ,Itemwise Recommended Reorder Level,Itemwise Рекомендуємо Змінити порядок Рівень -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,"Будь ласка, виберіть {0} в першу чергу" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,"Будь ласка, виберіть {0} в першу чергу" DocType: Features Setup,To get Item Group in details table,Щоб отримати елемент групи в таблиці дані apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,Пакетна {0} пункту {1} закінчився. DocType: Sales Invoice,Commission,Комісія @@ -3185,7 +3196,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Отримати Видатні Ваучери DocType: Warranty Claim,Resolved By,Вирішили За DocType: Appraisal,Start Date,Дата початку -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Виділяють листя протягом. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Виділяють листя протягом. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Чеки і депозити неправильно очищена apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,"Натисніть тут, щоб перевірити," apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Рахунок {0}: Ви не можете призначити себе як батька рахунок @@ -3205,7 +3216,7 @@ DocType: Employee,Educational Qualification,Освітня кваліфікац DocType: Workstation,Operating Costs,Експлуатаційні витрати DocType: Employee Leave Approver,Employee Leave Approver,Співробітник Залишити затверджує apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} був успішно доданий в нашу розсилку. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Ряд {0}: Змінити порядок вступу вже існує для цього складу {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Ряд {0}: Змінити порядок вступу вже існує для цього складу {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Не можете оголосити як втрачений, бо цитати був зроблений." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Купівля Майстер-менеджер apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Виробничий замовлення {0} повинен бути представлений @@ -3229,7 +3240,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Видаткова накладна {0} вже були представлені apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Дата Виконання DocType: Purchase Invoice Item,Amount (Company Currency),Сума (Компанія валют) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Організація блок (департамент) господар. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Організація блок (департамент) господар. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,"Будь ласка, введіть дійсні мобільних NOS" DocType: Budget Detail,Budget Detail,Бюджет Подробиці apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,"Будь ласка, введіть повідомлення перед відправкою" @@ -3245,13 +3256,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Отримав і прий ,Serial No Service Contract Expiry,Серійний номер Сервіс контракт Термін DocType: Item,Unit of Measure Conversion,Одиниця виміру конверсії apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Співробітник не може бути змінений -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Ви не можете кредитні та дебетові ж обліковий запис в той же час +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Ви не можете кредитні та дебетові ж обліковий запис в той же час DocType: Naming Series,Help HTML,Допомога HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Всього weightage призначений повинна бути 100%. Це {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Посібник для пере- {0} схрещеними Пункт {1} DocType: Address,Name of person or organization that this address belongs to.,"Назва особі або організації, що ця адреса належить." apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Ваші Постачальники -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,"Неможливо встановити, як втратив у продажу замовлення провадиться." +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,"Неможливо встановити, як втратив у продажу замовлення провадиться." apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,"Інший Зарплата Структура {0} активним співробітником {1}. Будь ласка, його статус «Неактивний», щоб продовжити." DocType: Purchase Invoice,Contact,Контакт apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Отримано від @@ -3261,11 +3272,11 @@ DocType: Item,Has Serial No,Має серійний номер DocType: Employee,Date of Issue,Дата випуску apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: З {0} для {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Ряд # {0}: Встановити Постачальник по пункту {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Сайт зображення {0} прикріплений до пункту {1} не може бути знайдений +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Сайт зображення {0} прикріплений до пункту {1} не може бути знайдений DocType: Issue,Content Type,Тип вмісту apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Комп'ютер DocType: Item,List this Item in multiple groups on the website.,Список цей пункт в декількох групах на сайті. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,"Будь ласка, перевірте мультивалютний варіант, що дозволяє рахунки іншій валюті" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,"Будь ласка, перевірте мультивалютний варіант, що дозволяє рахунки іншій валюті" apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Пункт: {0} не існує в системі apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,"Ви не авторизовані, щоб встановити значення Frozen" DocType: Payment Reconciliation,Get Unreconciled Entries,Отримати Неузгоджені Записи @@ -3275,14 +3286,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Що це р DocType: Delivery Note,To Warehouse,На склад apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Рахунок {0} був введений більш ніж один раз для фінансового року {1} ,Average Commission Rate,Середня ставка комісії -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,"Має серійний номер 'не може бути' Так 'для не-фондовій пункту +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,"Має серійний номер 'не може бути' Так 'для не-фондовій пункту apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Відвідуваність не можуть бути відзначені для майбутніх дат DocType: Pricing Rule,Pricing Rule Help,Ціни Правило Допомога DocType: Purchase Taxes and Charges,Account Head,Рахунок Керівник apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Оновлення додаткових витрат для розрахунку приземлився вартість товарів apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Електричний DocType: Stock Entry,Total Value Difference (Out - In),Загальна вартість Різниця (з - In) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Ряд {0}: Курс є обов'язковим +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Ряд {0}: Курс є обов'язковим apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},Ідентифікатор користувача не встановлений Employee {0} DocType: Stock Entry,Default Source Warehouse,Джерело за замовчуванням Склад DocType: Item,Customer Code,Код клієнта @@ -3292,6 +3303,7 @@ apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +307,Debit DocType: Buying Settings,Naming Series,Іменування серії DocType: Leave Block List,Leave Block List Name,Залиште Ім'я Чорний список apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +32,Stock Assets,Активи фонду +apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.js +29,Do you really want to Submit all Salary Slip for month {0} and year {1},"Ви дійсно хочете, щоб представити всю зарплату ковзають місяць {0} і рік {1}" apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +8,Import Subscribers,Імпорт передплатників DocType: Target Detail,Target Qty,Цільова Кількість DocType: Attendance,Present,Теперішній час @@ -3300,15 +3312,15 @@ DocType: Notification Control,Sales Invoice Message,Рахунок по прод apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Закриття рахунку {0} повинен бути типу відповідальністю / власний капітал DocType: Authorization Rule,Based On,Грунтуючись на DocType: Sales Order Item,Ordered Qty,Замовив Кількість -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Пункт {0} відключена +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Пункт {0} відключена DocType: Stock Settings,Stock Frozen Upto,Фото Заморожені Upto apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Період з Період і датам обов'язкових для повторюваних {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Проектна діяльність / завдання. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Створення Зарплата ковзає +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Створення Зарплата ковзає apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Покупка повинна бути перевірена, якщо вибраний Стосується для в {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,"Знижка повинна бути менше, ніж 100" DocType: Purchase Invoice,Write Off Amount (Company Currency),Списання Сума (Компанія валют) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,"Ряд # {0}: Будь ласка, встановіть кількість тональний" +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,"Ряд # {0}: Будь ласка, встановіть кількість тональний" DocType: Landed Cost Voucher,Landed Cost Voucher,Приземлився Вартість ваучера apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},"Будь ласка, встановіть {0}" DocType: Purchase Invoice,Repeat on Day of Month,Повторіть день місяця @@ -3360,7 +3372,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,За замовчуванням роботи на складі Прогрес apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Налаштування за замовчуванням для обліку операцій. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Очікувана дата не може бути перед матеріалу Запит Дата -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Пункт {0} повинен бути Продажі товару +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Пункт {0} повинен бути Продажі товару DocType: Naming Series,Update Series Number,Оновлення Кількість Серія DocType: Account,Equity,Капітал DocType: Sales Order,Printing Details,Друк Подробиці @@ -3412,7 +3424,7 @@ DocType: Task,Review Date,Огляд Дата DocType: Purchase Invoice,Advance Payments,Авансові платежі DocType: Purchase Taxes and Charges,On Net Total,На Net Total apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,"Цільова склад у рядку {0} повинен бути такий же, як виробничого замовлення" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Немає дозволу на використання платіжного інструмента +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Немає дозволу на використання платіжного інструмента apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,""Повідомлення Адреси електронної пошти", не зазначені для повторюваних% S" apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,"Валюта не може бути змінена після внесення запису, використовуючи інший валюти" DocType: Company,Round Off Account,Округлення аккаунт @@ -3435,7 +3447,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Кількість пункту отримані після виготовлення / перепакування із заданих кількостях сировини DocType: Payment Reconciliation,Receivable / Payable Account,/ Дебіторська заборгованість аккаунт DocType: Delivery Note Item,Against Sales Order Item,На Sales Order Пункт -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},"Будь ласка, сформулюйте Значення атрибуту для атрибуту {0}" +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},"Будь ласка, сформулюйте Значення атрибуту для атрибуту {0}" DocType: Item,Default Warehouse,За замовчуванням Склад DocType: Task,Actual End Date (via Time Logs),Фактична Дата закінчення (через журнали Time) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Бюджет не може бути призначений на обліковий запис групи {0} @@ -3460,10 +3472,10 @@ DocType: Lead,Blog Subscriber,Блог Абонент apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Створення правил по обмеженню угод на основі значень. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Якщо відзначене, Загальна немає. робочих днів буде включати в себе свята, і це призведе до зниження вартості Зарплата за день" DocType: Purchase Invoice,Total Advance,Всього Попередня -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Розрахунку заробітної плати +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Розрахунку заробітної плати DocType: Opportunity Item,Basic Rate,Basic Rate DocType: GL Entry,Credit Amount,Сума кредиту -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Встановити як Втрачений +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Встановити як Втрачений apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Оплата Отримання Примітка DocType: Supplier,Credit Days Based On,Кредитні днів заснованих на DocType: Tax Rule,Tax Rule,Податкове положення @@ -3493,7 +3505,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Прийнято Кількіс apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} існує не apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,"Законопроекти, підняті клієнтам." apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Проект Id -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},"Ряд Немає {0}: Сума не може бути більше, ніж очікуванні Сума проти Витрата претензії {1}. В очікуванні сума {2}" +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},"Ряд Немає {0}: Сума не може бути більше, ніж очікуванні Сума проти Витрата претензії {1}. В очікуванні сума {2}" apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} додав абоненти DocType: Maintenance Schedule,Schedule,Графік DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""",Визначити бюджет для цього МВЗ. Щоб встановити бюджету дію см "Список компанії" @@ -3554,19 +3566,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS-профілю DocType: Payment Gateway Account,Payment URL Message,Оплата URL повідомлення apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Сезонність для установки бюджети, цільові тощо" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,"Ряд {0}: Сума платежу не може бути більше, ніж суми заборгованості" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,"Ряд {0}: Сума платежу не може бути більше, ніж суми заборгованості" apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Всього Неоплачений -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Час входу не оплачується -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Пункт {0} шаблон, виберіть один з його варіантів" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Час входу не оплачується +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Пункт {0} шаблон, виберіть один з його варіантів" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Покупець apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Чистий зарплата не може бути негативною -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,"Будь ласка, введіть проти Ваучери вручну" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,"Будь ласка, введіть проти Ваучери вручну" DocType: SMS Settings,Static Parameters,Статичні параметри DocType: Purchase Order,Advance Paid,Попередня Платні DocType: Item,Item Tax,Стан податкової apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Матеріал Постачальнику apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Акцизний Рахунок DocType: Expense Claim,Employees Email Id,Співробітники Email ID +DocType: Employee Attendance Tool,Marked Attendance,Помітне Відвідуваність apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Поточні зобов'язання apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Відправити SMS масового вашим контактам DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Розглянемо податку або збору для @@ -3589,7 +3602,7 @@ DocType: Item Attribute,Numeric Values,Числові значення apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Прикріпіть логотип DocType: Customer,Commission Rate,Ставка комісії apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Зробити Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Блок відпустки додатки по кафедрі. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Блок відпустки додатки по кафедрі. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Кошик Пусто DocType: Production Order,Actual Operating Cost,Фактична Операційна Вартість apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Корінь не може бути змінений. @@ -3608,7 +3621,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,"Автоматичне створення матеріалів запит, якщо кількість падає нижче цього рівня," ,Item-wise Purchase Register,Пункт мудрий Купівля Реєстрація DocType: Batch,Expiry Date,Термін придатності -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Щоб встановити рівень повторного замовлення, деталь повинна бути Купівля товару або товару Виробництво" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Щоб встановити рівень повторного замовлення, деталь повинна бути Купівля товару або товару Виробництво" ,Supplier Addresses and Contacts,Постачальник Адреси та контакти apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,"Ласка, виберіть категорію в першу чергу" apps/erpnext/erpnext/config/projects.py +18,Project master.,Майстер проекту. diff --git a/erpnext/translations/ur.csv b/erpnext/translations/ur.csv index c0bbd02018..bfc5cb8d3c 100644 --- a/erpnext/translations/ur.csv +++ b/erpnext/translations/ur.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,کمپنی کرنسی DocType: Delivery Note,Installation Status,تنصیب کی حیثیت apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},مقدار مسترد منظور + شے کے لئے موصول مقدار کے برابر ہونا چاہیے {0} DocType: Item,Supply Raw Materials for Purchase,خام مال کی سپلائی کی خریداری کے لئے -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,آئٹم {0} ایک خرید آئٹم ہونا ضروری ہے +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,آئٹم {0} ایک خرید آئٹم ہونا ضروری ہے DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records",، سانچہ ڈاؤن لوڈ مناسب اعداد و شمار کو بھرنے کے اور نظر ثانی شدہ فائل منسلک. منتخب مدت میں تمام تاریخوں اور ملازم مجموعہ موجودہ حاضری کے ریکارڈز کے ساتھ، سانچے میں آ جائے گا apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,{0} آئٹم فعال نہیں ہے یا زندگی کے اختتام تک پہنچ گیا ہے DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,فروخت انوائس پیش کیا جاتا ہے کے بعد اپ ڈیٹ کیا جائے گا. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included",شے کی درجہ بندی میں صف {0} میں ٹیکس شامل کرنے کے لئے، قطار میں ٹیکس {1} بھی شامل کیا جانا چاہئے -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,HR ماڈیول کے لئے ترتیبات +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included",شے کی درجہ بندی میں صف {0} میں ٹیکس شامل کرنے کے لئے، قطار میں ٹیکس {1} بھی شامل کیا جانا چاہئے +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,HR ماڈیول کے لئے ترتیبات DocType: SMS Center,SMS Center,ایس ایم ایس مرکز DocType: BOM Replace Tool,New BOM,نیا BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,بیچ بلنگ کے لئے وقت کیلیے نوشتہ جات دیکھیے. @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,منتخب کریں شرائط DocType: Production Planning Tool,Sales Orders,فروخت کے احکامات DocType: Purchase Taxes and Charges,Valuation,تشخیص ,Purchase Order Trends,آرڈر رجحانات خریدیں -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,سال کے لئے پتے مختص. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,سال کے لئے پتے مختص. DocType: Earning Type,Earning Type,کمانے قسم DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,غیر فعال صلاحیت کی منصوبہ بندی اور وقت سے باخبر رہنا DocType: Bank Reconciliation,Bank Account,بینک اکاؤنٹ @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,شے کی ویب سائٹ کی تفصیلات DocType: Payment Tool,Reference No,حوالہ نہیں apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,چھوڑ کریں -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},آئٹم {0} پر زندگی کے اس کے آخر تک پہنچ گیا ہے {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},آئٹم {0} پر زندگی کے اس کے آخر تک پہنچ گیا ہے {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,سالانہ DocType: Stock Reconciliation Item,Stock Reconciliation Item,اسٹاک مصالحتی آئٹم DocType: Stock Entry,Sales Invoice No,فروخت انوائس کوئی @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,کم از کم آرڈر کی مقدار DocType: Pricing Rule,Supplier Type,پردایک قسم DocType: Item,Publish in Hub,حب میں شائع ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,{0} آئٹم منسوخ کر دیا ہے +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,{0} آئٹم منسوخ کر دیا ہے apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,مواد کی درخواست DocType: Bank Reconciliation,Update Clearance Date,اپ ڈیٹ کی کلیئرنس تاریخ DocType: Item,Purchase Details,خریداری کی تفصیلات @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,مسترد مقدار DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order",ترسیل کے نوٹ، کوٹیشن، فروخت انوائس، سیلز آرڈر میں دستیاب فیلڈ DocType: SMS Settings,SMS Sender Name,SMS مرسل کا نام DocType: Contact,Is Primary Contact,پرائمری سے رابطہ کریں +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,وقت دلے بلنگ کے لئے Batched کیا گیا ہے DocType: Notification Control,Notification Control,نوٹیفکیشن کنٹرول DocType: Lead,Suggestions,تجاویز DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,اس علاقے پر مقرر آئٹم گروپ وار بجٹ. آپ کو بھی تقسیم کی ترتیب کی طرف seasonality کے شامل کر سکتے ہیں. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},گودام کے لئے والدین کے اکاؤنٹ گروپ درج کریں {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},کے خلاف ادائیگی {0} {1} بقایا رقم سے زیادہ نہیں ہو سکتا {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},کے خلاف ادائیگی {0} {1} بقایا رقم سے زیادہ نہیں ہو سکتا {2} DocType: Supplier,Address HTML,ایڈریس HTML DocType: Lead,Mobile No.,موبائل نمبر DocType: Maintenance Schedule,Generate Schedule,شیڈول بنائیں @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,حب کے ساتھ موافقت پذیر apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,غلط شناختی لفظ DocType: Item,Variant Of,کے مختلف -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,آئٹم {0} سروس شے ہونا ضروری ہے apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',کے مقابلے میں 'مقدار تعمیر کرنے' مکمل مقدار زیادہ نہیں ہو سکتا DocType: Period Closing Voucher,Closing Account Head,اکاؤنٹ ہیڈ بند DocType: Employee,External Work History,بیرونی کام کی تاریخ @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,نیوز لیٹر DocType: Stock Settings,Notify by Email on creation of automatic Material Request,خود کار طریقے سے مواد کی درخواست کی تخلیق پر ای میل کے ذریعے مطلع کریں DocType: Journal Entry,Multi Currency,ملٹی کرنسی DocType: Payment Reconciliation Invoice,Invoice Type,انوائس کی قسم -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,ترسیل کے نوٹ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,ترسیل کے نوٹ apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,ٹیکس قائم apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,آپ اسے نکالا بعد ادائیگی انٹری پر نظر ثانی کر دیا گیا ہے. اسے دوبارہ ھیںچو براہ مہربانی. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} آئٹم ٹیکس میں دو بار میں داخل +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} آئٹم ٹیکس میں دو بار میں داخل apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,اس ہفتے اور زیر التواء سرگرمیوں کا خلاصہ DocType: Workstation,Rent Cost,کرایہ لاگت apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,مہینے اور سال براہ مہربانی منتخب کریں @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,ممالک کے لئے درست DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.",کرنسی، تبادلوں کی شرح، درآمد کل، درآمد عظیم الشان کل وغیرہ تمام درآمد متعلقہ شعبوں خریداری کی رسید، سپلائر کوٹیشن، خریداری کی رسید، خریداری کے آرڈر وغیرہ میں دستیاب ہیں apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,یہ آئٹم ایک ٹیمپلیٹ ہے اور لین دین میں استعمال نہیں کیا جا سکتا. 'کوئی کاپی' مقرر کیا گیا ہے جب تک آئٹم صفات مختلف حالتوں میں سے زیادہ کاپی کیا جائے گا apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,سمجھا کل آرڈر -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).",ملازم عہدہ (مثلا سی ای او، ڈائریکٹر وغیرہ). +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).",ملازم عہدہ (مثلا سی ای او، ڈائریکٹر وغیرہ). apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,درج میدان قیمت 'دن ماہ پر دہرائیں براہ مہربانی DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,کسٹمر کرنسی کسٹمر کی بنیاد کرنسی تبدیل کیا جاتا ہے جس میں شرح DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet",BOM، ترسیل کے نوٹ، انوائس خریداری، پروڈکشن آرڈر، خریداری کے آرڈر، خریداری کی رسید، فروخت انوائس، سیلز آرڈر، اسٹاک انٹری، timesheet میں دستیاب @@ -355,7 +355,7 @@ DocType: Workstation,Consumable Cost,فراہمی لاگت apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) کے کردار ہونا ضروری ہے 'رخصت کی منظوری دینے والا' DocType: Purchase Receipt,Vehicle Date,گاڑی تاریخ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,میڈیکل -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,کھونے کے لئے کی وجہ سے +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,کھونے کے لئے کی وجہ سے apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},کارگاہ چھٹیوں فہرست کے مطابق مندرجہ ذیل تاریخوں پر بند کر دیا ہے: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,مواقع DocType: Employee,Single,سنگل @@ -383,14 +383,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,چینل پارٹنر DocType: Account,Old Parent,پرانا والدین DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,اس ای میل کا ایک حصہ کے طور پر چلا جاتا ہے کہ تعارفی متن کی تخصیص کریں. ہر ٹرانزیکشن ایک علیحدہ تعارفی متن ہے. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),علامات شامل نہ کریں (سابق. $) DocType: Sales Taxes and Charges Template,Sales Master Manager,سیلز ماسٹر مینیجر apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,تمام مینوفیکچرنگ کے عمل کے لئے عالمی ترتیبات. DocType: Accounts Settings,Accounts Frozen Upto,منجمد تک اکاؤنٹس DocType: SMS Log,Sent On,پر بھیجا -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,خاصیت {0} صفات ٹیبل میں ایک سے زیادہ مرتبہ منتخب +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,خاصیت {0} صفات ٹیبل میں ایک سے زیادہ مرتبہ منتخب DocType: HR Settings,Employee record is created using selected field. ,ملازم ریکارڈ منتخب کردہ میدان کا استعمال کرتے ہوئے تخلیق کیا جاتا ہے. DocType: Sales Order,Not Applicable,قابل اطلاق نہیں -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,چھٹیوں ماسٹر. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,چھٹیوں ماسٹر. DocType: Material Request Item,Required Date,مطلوبہ تاریخ DocType: Delivery Note,Billing Address,بل کا پتہ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,آئٹم کوڈ داخل کریں. @@ -426,7 +427,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,مواد درخواست اٹھایا جائے گا جس کے لئے گودام میں داخل کریں DocType: Production Order,Additional Operating Cost,اضافی آپریٹنگ لاگت apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,کاسمیٹک -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items",ضم کرنے کے لئے، مندرجہ ذیل خصوصیات دونوں اشیاء کے لئے ایک ہی ہونا چاہیے +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items",ضم کرنے کے لئے، مندرجہ ذیل خصوصیات دونوں اشیاء کے لئے ایک ہی ہونا چاہیے DocType: Shipping Rule,Net Weight,سارا وزن DocType: Employee,Emergency Phone,ایمرجنسی فون ,Serial No Warranty Expiry,سیریل کوئی وارنٹی ختم ہونے کی @@ -481,17 +482,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,بلنگ اور ترسیل کی حیثیت apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,دوبارہ گاہکوں DocType: Leave Control Panel,Allocate,مختص -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,سیلز واپس +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,سیلز واپس DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,آپ کی پیداوار کے احکامات بنانا چاہتے ہیں جس سے سیلز احکامات کو منتخب کریں. DocType: Item,Delivered by Supplier (Drop Ship),سپلائر کی طرف سے نجات بخشی (ڈراپ جہاز) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,تنخواہ کے اجزاء. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,تنخواہ کے اجزاء. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,ممکنہ گاہکوں کے ڈیٹا بیس. DocType: Authorization Rule,Customer or Item,کسٹمر یا شے apps/erpnext/erpnext/config/crm.py +17,Customer database.,کسٹمر ڈیٹا بیس. DocType: Quotation,Quotation To,کے لئے کوٹیشن DocType: Lead,Middle Income,درمیانی آمدنی apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),افتتاحی (CR) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,آپ نے پہلے ہی ایک UOM ساتھ کچھ لین دین (ے) بنا دیا ہے کی وجہ سے اشیاء کے لئے پیمائش کی پہلے سے طے شدہ یونٹ {0} براہ راست تبدیل نہیں کیا جا سکتا. آپ کو ایک مختلف پہلے سے طے شدہ UOM استعمال کرنے کے لئے ایک نیا آئٹم تخلیق کرنے کے لئے کی ضرورت ہو گی. +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,آپ نے پہلے ہی ایک UOM ساتھ کچھ لین دین (ے) بنا دیا ہے کی وجہ سے اشیاء کے لئے پیمائش کی پہلے سے طے شدہ یونٹ {0} براہ راست تبدیل نہیں کیا جا سکتا. آپ کو ایک مختلف پہلے سے طے شدہ UOM استعمال کرنے کے لئے ایک نیا آئٹم تخلیق کرنے کے لئے کی ضرورت ہو گی. apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,مختص رقم منفی نہیں ہو سکتا DocType: Purchase Order Item,Billed Amt,بل AMT DocType: Warehouse,A logical Warehouse against which stock entries are made.,اسٹاک اندراجات بنا رہے ہیں جس کے خلاف ایک منطقی گودام. @@ -510,14 +511,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,سیلز ٹیکس اور الزا DocType: Employee,Organization Profile,تنظیم پروفائل apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,سیٹ اپ نمبر سیریز> سیٹ اپ کے ذریعے حاضری کے لئے سیریز تعداد براہ مہربانی DocType: Employee,Reason for Resignation,استعفی کی وجہ -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,کارکردگی تشخیص کے لئے سانچہ. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,کارکردگی تشخیص کے لئے سانچہ. DocType: Payment Reconciliation,Invoice/Journal Entry Details,انوائس / جرنل اندراج کی تفصیلات apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} {1} نہ مالی سال میں {2} DocType: Buying Settings,Settings for Buying Module,ماڈیول کی خریداری کے لئے ترتیبات apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,پہلی خریداری کی رسید درج کریں DocType: Buying Settings,Supplier Naming By,سے پردایک نام دینے DocType: Activity Type,Default Costing Rate,پہلے سے طے شدہ لاگت کی شرح -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,بحالی کے شیڈول +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,بحالی کے شیڈول apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.",پھر قیمتوں کا تعین قواعد وغیرہ کسٹمر، کسٹمر گروپ، علاقہ، سپلائر، سپلائر کی قسم، مہم، سیلز پارٹنر کی بنیاد پر فلٹر کر رہے ہیں apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,انوینٹری میں خالص تبدیلی DocType: Employee,Passport Number,پاسپورٹ نمبر @@ -556,7 +557,7 @@ DocType: Purchase Invoice,Quarterly,سہ ماہی DocType: Selling Settings,Delivery Note Required,ترسیل کے نوٹ کی ضرورت ہے DocType: Sales Order Item,Basic Rate (Company Currency),بنیادی شرح (کمپنی کرنسی) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Backflush خام مال کی بنیاد پر -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,شے کی تفصیلات درج کریں +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,شے کی تفصیلات درج کریں DocType: Purchase Receipt,Other Details,دیگر تفصیلات DocType: Account,Accounts,اکاؤنٹس apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,مارکیٹنگ @@ -569,7 +570,7 @@ DocType: Employee,Provide email id registered in company,کمپنی میں رج DocType: Hub Settings,Seller City,فروش شہر DocType: Email Digest,Next email will be sent on:,پیچھے اگلا، دوسرا ای میل پر بھیجا جائے گا: DocType: Offer Letter Term,Offer Letter Term,خط مدتی پیشکش -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,آئٹم مختلف حالتوں ہے. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,آئٹم مختلف حالتوں ہے. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,آئٹم {0} نہیں ملا DocType: Bin,Stock Value,اسٹاک کی قیمت apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,درخت کی قسم @@ -577,7 +578,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,مقدار فی یونٹ بس DocType: Serial No,Warranty Expiry Date,وارنٹی ختم ہونے کی تاریخ DocType: Material Request Item,Quantity and Warehouse,مقدار اور گودام DocType: Sales Invoice,Commission Rate (%),کمیشن کی شرح (٪) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry",واؤچر کے خلاف قسم سیلز آرڈر میں سے ایک، فروخت انوائس یا جرنل اندراج ہونا چاہیے +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry",واؤچر کے خلاف قسم سیلز آرڈر میں سے ایک، فروخت انوائس یا جرنل اندراج ہونا چاہیے apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,ایرواسپیس DocType: Journal Entry,Credit Card Entry,کریڈٹ کارڈ انٹری apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,ٹاسک مشروط @@ -645,14 +646,14 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,ذمہ داری apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,منظور رقم صف میں دعوے کی رقم سے زیادہ نہیں ہو سکتا {0}. DocType: Company,Default Cost of Goods Sold Account,سامان فروخت اکاؤنٹ کے پہلے سے طے شدہ لاگت -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,قیمت کی فہرست منتخب نہیں +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,قیمت کی فہرست منتخب نہیں DocType: Employee,Family Background,خاندانی پس منظر DocType: Process Payroll,Send Email,ای میل بھیجیں -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},انتباہ: غلط لف دستاویز {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},انتباہ: غلط لف دستاویز {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,کوئی اجازت DocType: Company,Default Bank Account,پہلے سے طے شدہ بینک اکاؤنٹ apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first",پارٹی کی بنیاد پر فلٹر کرنے کے لئے، منتخب پارٹی پہلی قسم -apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},اشیاء کے ذریعے فراہم نہیں کر رہے ہیں 'اپ ڈیٹ اسٹاک' کی جانچ پڑتال نہیں کیا جا سکتا {0} +apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +48,'Update Stock' can not be checked because items are not delivered via {0},اشیاء کے ذریعے فراہم نہیں کر رہے ہیں 'اپ ڈیٹ اسٹاک' کی چیک نہیں کیا جا سکتا{0} apps/erpnext/erpnext/public/js/setup_wizard.js +292,Nos,نمبر DocType: Item,Items with higher weightage will be shown higher,اعلی اہمیت کے ساتھ اشیاء زیادہ دکھایا جائے گا DocType: Bank Reconciliation Detail,Bank Reconciliation Detail,بینک مصالحتی تفصیل @@ -676,7 +677,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,گا DocType: Features Setup,"To enable ""Point of Sale"" features","فروخت کے نقطہ" کی خصوصیات کو چالو کرنے کے لئے DocType: Bin,Moving Average Rate,اوسط شرح منتقل DocType: Production Planning Tool,Select Items,منتخب شدہ اشیاء -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} بل کے خلاف {1} ء {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} بل کے خلاف {1} ء {2} DocType: Maintenance Visit,Completion Status,تکمیل کی حیثیت DocType: Sales Invoice Item,Target Warehouse,ہدف گودام DocType: Item,Allow over delivery or receipt upto this percent,اس فی صد تک کی ترسیل یا رسید سے زیادہ کرنے کی اجازت دیں @@ -736,7 +737,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,کر apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},آپریشن کے لئے اگلے {0} دنوں میں وقت سلاٹ تلاش کرنے سے قاصر {1} DocType: Production Order,Plan material for sub-assemblies,ذیلی اسمبلیوں کے لئے منصوبہ مواد apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} فعال ہونا ضروری ہے -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,پہلی دستاویز کی قسم منتخب کریں +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,پہلی دستاویز کی قسم منتخب کریں apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,روانگی بر ٹوکری apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,اس کی بحالی کا منسوخ کرنے سے پہلے منسوخ مواد دورہ {0} DocType: Salary Slip,Leave Encashment Amount,معاوضہ کی رقم چھوڑ دو @@ -754,7 +755,7 @@ DocType: Purchase Receipt,Range,رینج DocType: Supplier,Default Payable Accounts,پہلے سے طے شدہ قابل ادائیگی اکاؤنٹس apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,{0} ملازم فعال نہیں ہے یا موجود نہیں ہے DocType: Features Setup,Item Barcode,آئٹم بارکوڈ -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,آئٹم متغیرات {0} اپ ڈیٹ +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,آئٹم متغیرات {0} اپ ڈیٹ DocType: Quality Inspection Reading,Reading 6,6 پڑھنا DocType: Purchase Invoice Advance,Purchase Invoice Advance,انوائس پیشگی خریداری DocType: Address,Shop,دکان @@ -775,9 +776,9 @@ DocType: Lead,Request for Information,معلومات کے لئے درخواست DocType: Payment Request,Paid,ادائیگی DocType: Salary Slip,Total in words,الفاظ میں کل DocType: Material Request Item,Lead Time Date,لیڈ وقت تاریخ -apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,لازمی ہے. ہو سکتا ہے کہ کرنسی ایکسچینج ریکارڈ کے لئے پیدا نہیں کر رہا +apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,لازمی ہے. ہو سکتا ہے کہ کرنسی ایکسچینج ریکارڈ موجودنھئں apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},صف # {0}: شے کے لئے کوئی سیریل کی وضاحت کریں {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.",'پروڈکٹ بنڈل' اشیاء، گودام، سیریل نمبر اور بیچ کے لئے نہیں 'پیکنگ کی فہرست کی میز سے غور کیا جائے گا. گودام اور بیچ کسی بھی 'پروڈکٹ بنڈل' شے کے لئے تمام پیکنگ اشیاء کے لئے ایک ہی ہیں، ان اقدار بنیادی شے کے ٹیبل میں داخل کیا جا سکتا، اقدار ٹیبل 'پیکنگ کی فہرست' کے لئے کاپی کیا جائے گا. +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.",'پروڈکٹ بنڈل' اشیاء، گودام، سیریل نمبر اور بیچ کے لئے نہیں 'پیکنگ کی فہرست کی میز سے غور کیا جائے گا. گودام اور بیچ کسی بھی 'پروڈکٹ بنڈل' شے کے لئے تمام پیکنگ اشیاء کے لئے ایک ہی ہیں، ان اقدار بنیادی شے کے ٹیبل میں داخل کیا جا سکتا، اقدار ٹیبل 'پیکنگ کی فہرست' کے لئے کاپی کیا جائے گا. apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,صارفین کو ترسیل. DocType: Purchase Invoice Item,Purchase Order Item,آرڈر شے کی خریداری apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,بالواسطہ آمدنی @@ -798,6 +799,7 @@ DocType: Process Payroll,Select Payroll Year and Month,پے رول سال اور apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",مناسب گروپ (عام طور پر فنڈز کی درخواست> موجودہ اثاثے> بینک اکاؤنٹس کے پاس جاؤ اور قسم کی) چائلڈ کریں پر کلک کر کے (ایک نیا اکاؤنٹ بنائیں "بینک" DocType: Workstation,Electricity Cost,بجلی کی لاگت DocType: HR Settings,Don't send Employee Birthday Reminders,ملازم سالگرہ کی یاددہانیاں نہ بھیجیں +,Employee Holiday Attendance,ملازم چھٹیوں حاضری DocType: Opportunity,Walk In,میں چلنے apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,اسٹاک میں لکھے DocType: Item,Inspection Criteria,معائنہ کا کلیہ @@ -820,7 +822,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options, DocType: Journal Entry Account,Expense Claim,اخراجات کا دعوی apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},کے لئے مقدار {0} DocType: Leave Application,Leave Application,چھٹی کی درخواست -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,ایلوکیشن چھوڑ دیں آلہ +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,ایلوکیشن چھوڑ دیں آلہ DocType: Leave Block List,Leave Block List Dates,بلاک فہرست تاریخوں چھوڑ DocType: Company,If Monthly Budget Exceeded (for expense account),ماہانہ بجٹ (اخراجات کے اکاؤنٹ کے لئے) سے تجاوز تو DocType: Workstation,Net Hour Rate,نیٹ گھنٹے کی شرح @@ -830,7 +832,7 @@ DocType: Packing Slip Item,Packing Slip Item,پیکنگ پرچی آئٹم DocType: POS Profile,Cash/Bank Account,کیش / بینک اکاؤنٹ apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,مقدار یا قدر میں کوئی تبدیلی نہیں کے ساتھ ختم اشیاء. DocType: Delivery Note,Delivery To,کی ترسیل کے -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,وصف میز لازمی ہے +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,وصف میز لازمی ہے DocType: Production Planning Tool,Get Sales Orders,سیلز احکامات حاصل apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} منفی نہیں ہو سکتا apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,ڈسکاؤنٹ @@ -888,13 +890,13 @@ DocType: Journal Entry,Make Difference Entry,فرق اندراج DocType: Upload Attendance,Attendance From Date,تاریخ سے حاضری DocType: Appraisal Template Goal,Key Performance Area,کلیدی کارکردگی کے علاقے apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +54,Transportation,نقل و حمل -apps/erpnext/erpnext/hr/report/monthly_salary_register/monthly_salary_register.py +67, and year: ,اور سال: +apps/erpnext/erpnext/hr/report/monthly_salary_register/monthly_salary_register.py +67, and year: ,سال DocType: Email Digest,Annual Expense,سالانہ اخراجات DocType: SMS Center,Total Characters,کل کردار apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},آئٹم کے لئے BOM میدان میں BOM منتخب کریں {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,سی فارم انوائس تفصیل DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,ادائیگی مصالحتی انوائس -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,شراکت٪ +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,شراکت٪ DocType: Item,website page link,ویب سائٹ کے صفحے لنک DocType: Company,Company registration numbers for your reference. Tax numbers etc.,آپ کا حوالہ کے لئے کمپنی کی رجسٹریشن نمبر. ٹیکس نمبر وغیرہ DocType: Sales Partner,Distributor,ڈسٹریبیوٹر @@ -936,10 +938,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM تبادلوں فیکٹر DocType: Stock Settings,Default Item Group,پہلے سے طے شدہ آئٹم گروپ apps/erpnext/erpnext/config/buying.py +13,Supplier database.,پردایک ڈیٹا بیس. DocType: Account,Balance Sheet,بیلنس شیٹ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ','آئٹم کوڈ شے کے لئے مرکز لاگت +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ','آئٹم کوڈ شے کے لئے مرکز لاگت DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,آپ کی فروخت کے شخص گاہک سے رابطہ کرنے اس تاریخ پر ایک یاد دہانی حاصل کریں گے apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups",مزید اکاؤنٹس گروپوں کے تحت بنایا جا سکتا ہے، لیکن اندراجات غیر گروپوں کے خلاف بنایا جا سکتا ہے -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,ٹیکس اور دیگر کٹوتیوں تنخواہ. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,ٹیکس اور دیگر کٹوتیوں تنخواہ. DocType: Lead,Lead,لیڈ DocType: Email Digest,Payables,Payables DocType: Account,Warehouse,گودام @@ -956,10 +958,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Unreconciled ادا DocType: Global Defaults,Current Fiscal Year,رواں مالی سال DocType: Global Defaults,Disable Rounded Total,مدور کل غیر فعال DocType: Lead,Call,کال -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'میں لکھے' خالی نہیں ہو سکتا +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'میں لکھے' خالی نہیں ہو سکتا apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},کے ساتھ ڈپلیکیٹ قطار {0} اسی {1} ,Trial Balance,مقدمے کی سماعت توازن -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,ملازمین کو مقرر +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,ملازمین کو مقرر apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid """,گرڈ " apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,پہلے سابقہ براہ مہربانی منتخب کریں apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,ریسرچ @@ -968,7 +970,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,صارف کی شناخت apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,لنک لیجر apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,قدیم ترین -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group",ایک آئٹم گروپ ایک ہی نام کے ساتھ موجود ہے، شے کے نام کو تبدیل کرنے یا شے کے گروپ کو دوسرا نام کریں +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group",ایک آئٹم گروپ ایک ہی نام کے ساتھ موجود ہے، شے کے نام کو تبدیل کرنے یا شے کے گروپ کو دوسرا نام کریں DocType: Production Order,Manufacture against Sales Order,سیلز آرڈر کے خلاف تیاری apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,باقی دنیا کے apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,آئٹم {0} بیچ نہیں کر سکتے ہیں @@ -993,7 +995,7 @@ DocType: Purchase Receipt,Rejected Warehouse,مسترد گودام DocType: GL Entry,Against Voucher,واؤچر کے خلاف DocType: Item,Default Buying Cost Center,پہلے سے طے شدہ خرید لاگت مرکز apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.",ERPNext باہر سب سے بہترین حاصل کرنے کے لئے، ہم نے آپ کو کچھ وقت لینے کے لئے اور ان کی مدد کی ویڈیوز دیکھنے کے لئے مشورہ ہے کہ. -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,آئٹم {0} سیلز آئٹم ہونا ضروری ہے +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,آئٹم {0} سیلز آئٹم ہونا ضروری ہے apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,کرنے کے لئے DocType: Item,Lead Time in days,دنوں میں وقت کی قیادت ,Accounts Payable Summary,قابل ادائیگی اکاؤنٹس کے خلاصے @@ -1019,7 +1021,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,زراعت apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,اپنی مصنوعات یا خدمات DocType: Mode of Payment,Mode of Payment,ادائیگی کا طریقہ -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,ویب سائٹ تصویری ایک عوامی فائل یا ویب سائٹ یو آر ایل ہونا چاہئے +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,ویب سائٹ تصویری ایک عوامی فائل یا ویب سائٹ یو آر ایل ہونا چاہئے apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,یہ ایک جڑ شے گروپ ہے اور میں ترمیم نہیں کیا جا سکتا. DocType: Journal Entry Account,Purchase Order,خریداری کے آرڈر DocType: Warehouse,Warehouse Contact Info,گودام معلومات رابطہ کریں @@ -1030,7 +1032,7 @@ DocType: Serial No,Serial No Details,سیریل کوئی تفصیلات DocType: Purchase Invoice Item,Item Tax Rate,آئٹم ٹیکس کی شرح apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry",{0}، صرف کریڈٹ اکاؤنٹس ایک ڈیبٹ داخلے کے خلاف منسلک کیا جا سکتا ہے apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,ترسیل کے نوٹ {0} پیش نہیں ہے -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,آئٹم {0} ایک ذیلی کنٹریکٹڈ آئٹم ہونا ضروری ہے +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,آئٹم {0} ایک ذیلی کنٹریکٹڈ آئٹم ہونا ضروری ہے apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,کیپٹل سازوسامان apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.",قیمتوں کا تعین اصول سب سے پہلے کی بنیاد پر منتخب کیا جاتا ہے آئٹم آئٹم گروپ یا برانڈ ہو سکتا ہے، میدان 'پر لگائیں'. DocType: Hub Settings,Seller Website,فروش ویب سائٹ @@ -1039,7 +1041,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,گول DocType: Sales Invoice Item,Edit Description,ترمیم تفصیل apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,متوقع تاریخ کی ترسیل منصوبہ بندی شروع کرنے کی تاریخ کے مقابلے میں کم ہے. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,سپلائر کے لئے +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,سپلائر کے لئے DocType: Account,Setting Account Type helps in selecting this Account in transactions.,اکاؤنٹ کی قسم مقرر لین دین میں اس اکاؤنٹ کو منتخب کرنے میں مدد ملتی ہے. DocType: Purchase Invoice,Grand Total (Company Currency),گرینڈ کل (کمپنی کرنسی) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,کل سبکدوش ہونے والے @@ -1091,7 +1093,6 @@ DocType: Authorization Rule,Average Discount,اوسط ڈسکاؤنٹ DocType: Address,Utilities,افادیت DocType: Purchase Invoice Item,Accounting,اکاؤنٹنگ DocType: Features Setup,Features Setup,خصوصیات سیٹ اپ -DocType: Item,Is Service Item,سروس شے ہے apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,درخواست کی مدت کے باہر چھٹی مختص مدت نہیں ہو سکتا DocType: Activity Cost,Projects,منصوبوں apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,مالی سال براہ مہربانی منتخب کریں @@ -1112,7 +1113,7 @@ DocType: Item,Maintain Stock,اسٹاک کو برقرار رکھنے کے apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,پہلے سے پروڈکشن آرڈر کے لئے پیدا اسٹاک میں لکھے apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,فکسڈ اثاثہ میں خالص تبدیلی DocType: Leave Control Panel,Leave blank if considered for all designations,تمام مراتب کے لئے غور کیا تو خالی چھوڑ دیں -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,قسم 'اصل' قطار میں کے انچارج {0} شے کی درجہ بندی میں شامل نہیں کیا جا سکتا +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,قسم 'اصل' قطار میں کے انچارج {0} شے کی درجہ بندی میں شامل نہیں کیا جا سکتا apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},زیادہ سے زیادہ: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,تریخ ویلہ سے DocType: Email Digest,For Company,کمپنی کے لئے @@ -1121,8 +1122,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,شپنگ ایڈریس کا نام apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,اکاؤنٹس کا چارٹ DocType: Material Request,Terms and Conditions Content,شرائط و ضوابط مواد -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,زیادہ سے زیادہ 100 سے زائد نہیں ہو سکتا -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,{0} آئٹم اسٹاک شے نہیں ہے +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,زیادہ سے زیادہ 100 سے زائد نہیں ہو سکتا +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,{0} آئٹم اسٹاک شے نہیں ہے DocType: Maintenance Visit,Unscheduled,شیڈول کا اعلان DocType: Employee,Owned,ملکیت DocType: Salary Slip Deduction,Depends on Leave Without Pay,بغیر تنخواہ چھٹی پر منحصر ہے @@ -1143,7 +1144,7 @@ Used for Taxes and Charges",ایک تار کے طور پر اشیاء کے ما apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,ملازم خود کو رپورٹ نہیں دے سکتے. DocType: Account,"If the account is frozen, entries are allowed to restricted users.",اکاؤنٹ منجمد ہے، اندراجات محدود صارفین کو اجازت دی جاتی ہے. DocType: Email Digest,Bank Balance,بینک کی بیلنس -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},{1} صرف کرنسی میں بنایا جا سکتا ہے: {0} کے لئے اکاؤنٹنگ انٹری {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},{1} صرف کرنسی میں بنایا جا سکتا ہے: {0} کے لئے اکاؤنٹنگ انٹری {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,ملازم {0} اور مہینے کے لئے نہیں ملا فعال تنخواہ ساخت DocType: Job Opening,"Job profile, qualifications required etc.",ایوب پروفائل، قابلیت کی ضرورت وغیرہ DocType: Journal Entry Account,Account Balance,اکاؤنٹ بیلنس @@ -1160,7 +1161,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,ذیلی اس DocType: Shipping Rule Condition,To Value,قدر میں DocType: Supplier,Stock Manager,اسٹاک مینیجر apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},ماخذ گودام صف کے لئے لازمی ہے {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,پیکنگ پرچی +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,پیکنگ پرچی apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,دفتر کرایہ پر دستیاب apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,سیٹ اپ SMS گیٹ وے کی ترتیبات apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,درآمد میں ناکام! @@ -1204,7 +1205,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM تفصیل کوئی DocType: Purchase Invoice,Additional Discount Amount (Company Currency),اضافی ڈسکاؤنٹ رقم (کمپنی کرنسی) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},خرابی: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,اکاؤنٹس کی چارٹ سے نیا اکاؤنٹ بنانے کے لئے براہ مہربانی. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,بحالی کا +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,بحالی کا apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,کسٹمر> کسٹمر گروپ> علاقہ DocType: Sales Invoice Item,Available Batch Qty at Warehouse,گودام پر دستیاب بیچ مقدار DocType: Time Log Batch Detail,Time Log Batch Detail,وقت لاگ ان بیچ تفصیل @@ -1213,7 +1214,7 @@ DocType: Leave Block List,Block Holidays on important days.,اہم دن پر ب ,Accounts Receivable Summary,اکاؤنٹس وصولی کا خلاصہ apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,ملازم کردار کو قائم کرنے کا ملازم ریکارڈ میں صارف کی شناخت میدان مقرر کریں DocType: UOM,UOM Name,UOM نام -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,شراکت رقم +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,شراکت رقم DocType: Sales Invoice,Shipping Address,شپنگ ایڈریس DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,یہ آلہ آپ کو اپ ڈیٹ یا نظام میں اسٹاک کی مقدار اور تشخیص کو حل کرنے میں مدد ملتی ہے. یہ عام طور پر نظام اقدار اور جو اصل میں آپ کے گوداموں میں موجود مطابقت کرنے کے لئے استعمال کیا جاتا ہے. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,آپ ڈلیوری نوٹ بچانے بار الفاظ میں نظر آئے گا. @@ -1254,7 +1255,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,بارکوڈ استعمال کرتے ہوئے اشیاء کو ٹریک کرنے کے لئے. آپ شے کی بارکوڈ سکیننگ کی طرف سے ترسیل کے نوٹ اور سیلز انوائس میں اشیاء داخل کرنے کے قابل ہو جائے گا. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,ادائیگی ای میل بھیج DocType: Dependent Task,Dependent Task,منحصر ٹاسک -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},پیمائش کی یونٹ کے لئے پہلے سے طے شدہ تبادلوں عنصر قطار میں ہونا چاہیے 1 {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},پیمائش کی یونٹ کے لئے پہلے سے طے شدہ تبادلوں عنصر قطار میں ہونا چاہیے 1 {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},قسم کے حکم {0} سے زیادہ نہیں ہو سکتا {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,پیشگی ایکس دنوں کے لئے کی منصوبہ بندی کرنے کی کوشش کریں. DocType: HR Settings,Stop Birthday Reminders,سٹاپ سالگرہ تخسمارک @@ -1264,7 +1265,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} دیکھیں apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,کیش میں خالص تبدیلی DocType: Salary Structure Deduction,Salary Structure Deduction,تنخواہ کٹوتی کی ساخت -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,پیمائش {0} کے یونٹ تبادلوں فیکٹر ٹیبل میں ایک سے زائد بار میں داخل کر دیا گیا ہے +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,پیمائش {0} کے یونٹ تبادلوں فیکٹر ٹیبل میں ایک سے زائد بار میں داخل کر دیا گیا ہے apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},ادائیگی کی درخواست پہلے سے موجود ہے {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,تاریخ اجراء اشیا کی لاگت apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},مقدار سے زیادہ نہیں ہونا چاہئے {0} @@ -1293,7 +1294,7 @@ DocType: BOM Item,BOM Item,BOM آئٹم DocType: Appraisal,For Employee,ملازم کے لئے apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,صف {0}: سپلائر کے خلاف ایڈوانس ڈیبٹ ہونا ضروری ہے DocType: Company,Default Values,طے شدہ اقدار -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,صف {0}: ادائیگی کی رقم منفی نہیں ہو سکتا +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,صف {0}: ادائیگی کی رقم منفی نہیں ہو سکتا DocType: Expense Claim,Total Amount Reimbursed,کل رقم آفسیٹ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},پردایک خلاف انوائس {0} ء {1} DocType: Customer,Default Price List,پہلے سے طے شدہ قیمت کی فہرست @@ -1321,8 +1322,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,س DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM",استعمال کیا جاتا ہے جہاں تمام دوسری BOMs میں ایک خاص BOM بدل. اسے، پرانا BOM لنک کی جگہ کی قیمت کو اپ ڈیٹ اور نئے BOM کے مطابق "BOM دھماکہ آئٹم" میز پنرجیویت گا DocType: Shopping Cart Settings,Enable Shopping Cart,خریداری کی ٹوکری فعال DocType: Employee,Permanent Address,مستقل پتہ -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,آئٹم {0} ایک سروس شے ہونا ضروری ہے. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",گرینڈ کل کے مقابلے میں \ {0} {1} زیادہ نہیں ہو سکتا کے خلاف ادا پیشگی {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,شے کے کوڈ کا انتخاب کریں DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),بغیر تنخواہ چھٹی کے لئے کٹوتی کم (LWP) @@ -1378,12 +1378,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,مین apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,ویرینٹ DocType: Naming Series,Set prefix for numbering series on your transactions,آپ کے لین دین پر سیریز تعداد کے لئے مقرر اپسرگ +DocType: Employee Attendance Tool,Employees HTML,ملازمین ایچ ٹی ایم ایل apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,روک آرڈر منسوخ نہیں کیا جا سکتا. منسوخ کرنے کے لئے Unstop. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,پہلے سے طے شدہ BOM ({0}) یہ آئٹم یا اس سانچے کے لئے فعال ہونا ضروری ہے +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,پہلے سے طے شدہ BOM ({0}) یہ آئٹم یا اس سانچے کے لئے فعال ہونا ضروری ہے DocType: Employee,Leave Encashed?,Encashed چھوڑ دیں؟ apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,میدان سے مواقع لازمی ہے DocType: Item,Variants,متغیرات -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,خریداری کے آرڈر بنائیں +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,خریداری کے آرڈر بنائیں DocType: SMS Center,Send To,کے لئے بھیج apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},رخصت قسم کافی چھوڑ توازن نہیں ہے {0} DocType: Payment Reconciliation Payment,Allocated amount,مختص رقم @@ -1483,7 +1484,7 @@ DocType: Sales Person,Name and Employee ID,نام اور ملازم ID apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,کی وجہ سے تاریخ تاریخ پوسٹنگ سے پہلے نہیں ہو سکتا DocType: Website Item Group,Website Item Group,ویب سائٹ آئٹم گروپ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,ڈیوٹی اور ٹیکس -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,حوالہ کوڈ داخل کریں. +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,حوالہ کوڈ داخل کریں. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,ادائیگی کے گیٹ وے اکاؤنٹ تشکیل نہیں ہے apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} ادائیگی اندراجات کی طرف سے فلٹر نہیں کیا جا سکتا {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,ویب سائٹ میں دکھایا جائے گا کہ شے کے لئے ٹیبل @@ -1504,7 +1505,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,قرارداد کی تفصیلات DocType: Quality Inspection Reading,Acceptance Criteria,قبولیت کا کلیہ DocType: Item Attribute,Attribute Name,نام وصف -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},آئٹم {0} میں سیلز یا سروس شے ہونا ضروری ہے {1} DocType: Item Group,Show In Website,ویب سائٹ میں دکھائیں apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,گروپ DocType: Task,Expected Time (in hours),(گھنٹوں میں) متوقع وقت @@ -1536,7 +1536,7 @@ DocType: Shipping Rule Condition,Shipping Amount,شپنگ رقم ,Pending Amount,زیر التواء رقم DocType: Purchase Invoice Item,Conversion Factor,تبادلوں فیکٹر DocType: Purchase Order,Delivered,ہونے والا -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),ملازمتوں ای میل کی شناخت کے لئے سیٹ اپ آنے والے سرور. (مثال کے طور jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),ملازمتوں ای میل کی شناخت کے لئے سیٹ اپ آنے والے سرور. (مثال کے طور jobs@example.com) DocType: Purchase Receipt,Vehicle Number,گاڑی نمبر DocType: Purchase Invoice,The date on which recurring invoice will be stop,بار بار چلنے والی انوائس بند کیا جائے گا جس کی تاریخ apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,کل مختص پتے {0} کم نہیں ہو سکتا مدت کے لئے پہلے سے ہی منظور پتے {1} سے @@ -1553,7 +1553,7 @@ DocType: HR Settings,HR Settings,HR ترتیبات apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,اخراجات دعوی منظوری زیر التواء ہے. صرف اخراجات کی منظوری دینے والا حیثیت کو اپ ڈیٹ کر سکتے ہیں. DocType: Purchase Invoice,Additional Discount Amount,اضافی ڈسکاؤنٹ رقم DocType: Leave Block List Allow,Leave Block List Allow,بلاک فہرست اجازت دیں چھوڑ دو -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abbr خالی یا جگہ نہیں ہو سکتا +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abbr خالی یا جگہ نہیں ہو سکتا apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,غیر گروپ سے گروپ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,کھیل apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,اصل کل @@ -1577,7 +1577,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},UOM تبادلوں عنصر قطار میں کی ضرورت ہے {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},کلیئرنس تاریخ قطار میں چیک کی تاریخ سے پہلے نہیں ہو سکتا {0} DocType: Salary Slip,Deduction,کٹوتی -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},شے کی قیمت کے لئے شامل {0} قیمت کی فہرست میں {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},شے کی قیمت کے لئے شامل {0} قیمت کی فہرست میں {1} DocType: Address Template,Address Template,ایڈریس سانچہ apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,اس کی فروخت کے شخص کے ملازم کی شناخت درج کریں DocType: Territory,Classification of Customers by region,خطے کی طرف سے صارفین کی درجہ بندی @@ -1592,9 +1592,9 @@ DocType: Quotation,Maintenance User,بحالی صارف apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +137,Cost Updated,لاگت اپ ڈیٹ DocType: Employee,Date of Birth,پیدائش کی تاریخ apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,آئٹم {0} پہلے ہی واپس کر دیا گیا ہے -DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** مالی سال ** ایک مالی سال کی نمائندگی کرتا ہے. تمام اکاؤنٹنگ اندراجات اور دیگر اہم لین دین *** مالی سال کے خلاف ٹریک کر رہے ہیں. +DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** مالی سال ** ایک مالی سال کی نمائندگی کرتا ہے. تمام اکاؤنٹنگ اندراجات اور دیگر اہم لین دین *** مالی سال کے ساقھ ٹریک کر رہے ہیں. DocType: Opportunity,Customer / Lead Address,کسٹمر / لیڈ ایڈریس -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},انتباہ: منسلکہ پر غلط SSL سرٹیفکیٹ {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},انتباہ: منسلکہ پر غلط SSL سرٹیفکیٹ {0} DocType: Production Order Operation,Actual Operation Time,اصل آپریشن کے وقت DocType: Authorization Rule,Applicable To (User),لاگو (صارف) DocType: Purchase Taxes and Charges,Deduct,منہا @@ -1611,7 +1611,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,پیکجوں کے میں تقسیم ترسیل کے نوٹ. apps/erpnext/erpnext/hooks.py +69,Shipments,ترسیل DocType: Purchase Order Item,To be delivered to customer,گاہک کے حوالے کیا جائے گا -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,وقت لاگ ان رتبہ پیش کرنا ضروری ہے. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,وقت لاگ ان رتبہ پیش کرنا ضروری ہے. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,سیریل نمبر {0} کسی گودام سے تعلق نہیں ہے apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,صف # DocType: Purchase Invoice,In Words (Company Currency),الفاظ میں (کمپنی کرنسی) @@ -1622,13 +1622,13 @@ DocType: Global Defaults,Default Company,پہلے سے طے شدہ کمپنی apps/erpnext/erpnext/controllers/stock_controller.py +166,Expense or Difference account is mandatory for Item {0} as it impacts overall stock value,اخراجات یا فرق اکاؤنٹ آئٹم {0} کے طور پر اس کے اثرات مجموعی اسٹاک قیمت کے لئے لازمی ہے apps/erpnext/erpnext/controllers/accounts_controller.py +370,"Cannot overbill for Item {0} in row {1} more than {2}. To allow overbilling, please set in Stock Settings",قطار میں آئٹم {0} کے لئے overbill نہیں کر سکتے ہیں {1} سے زیادہ {2}. overbilling، اسٹاک کی ترتیبات میں مقرر کریں اجازت دینے کے لئے DocType: Employee,Bank Name,بینک کا نام -apps/erpnext/erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py +27,-Above,-Above +apps/erpnext/erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py +27,-Above,اوپر apps/erpnext/erpnext/hr/doctype/employee/employee.py +135,User {0} is disabled,صارف {0} غیر فعال ہے DocType: Leave Application,Total Leave Days,کل رخصت دنوں DocType: Email Digest,Note: Email will not be sent to disabled users,نوٹ: ای میل معذور صارفین کو نہیں بھیجی جائے گی apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,کمپنی کو منتخب کریں ... DocType: Leave Control Panel,Leave blank if considered for all departments,تمام محکموں کے لئے تصور کیا جاتا ہے تو خالی چھوڑ دیں -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).",ملازمت کی اقسام (مستقل، کنٹریکٹ، انٹرن وغیرہ). +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).",ملازمت کی اقسام (مستقل، کنٹریکٹ، انٹرن وغیرہ). apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} شے کے لئے لازمی ہے {1} DocType: Currency Exchange,From Currency,کرنسی سے apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row",کم سے کم ایک قطار میں مختص رقم، انوائس کی قسم اور انوائس تعداد کو منتخب کریں @@ -1647,7 +1647,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,اس عمل میں DocType: Authorization Rule,Itemwise Discount,Itemwise ڈسکاؤنٹ DocType: Purchase Order Item,Reference Document Type,حوالہ دستاویز کی قسم -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} سیلز آرڈر کے خلاف {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} سیلز آرڈر کے خلاف {1} DocType: Account,Fixed Asset,مستقل اثاثے apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,serialized کی انوینٹری DocType: Activity Type,Default Billing Rate,پہلے سے طے شدہ بلنگ کی شرح @@ -1657,7 +1657,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,ادائیگی سیلز آرڈر DocType: Expense Claim Detail,Expense Claim Detail,اخراجات دعوی تفصیل apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,وقت کیلیے نوشتہ جات دیکھیے پیدا -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,درست اکاؤنٹ منتخب کریں +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,درست اکاؤنٹ منتخب کریں DocType: Item,Weight UOM,وزن UOM DocType: Employee,Blood Group,خون کا گروپ DocType: Purchase Invoice Item,Page Break,صفحہ توڑ @@ -1692,7 +1692,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM تکرار: {0} کے والدین یا بچے نہیں ہو سکتا {2} DocType: Production Order Operation,Completed Qty,مکمل مقدار apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry",{0}، صرف ڈیبٹ اکاؤنٹس دوسرے کریڈٹ داخلے کے خلاف منسلک کیا جا سکتا ہے -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,قیمت کی فہرست {0} غیر فعال ہے +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,قیمت کی فہرست {0} غیر فعال ہے DocType: Manufacturing Settings,Allow Overtime,اوور ٹائم کی اجازت دیں apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} شے کے لئے کی ضرورت ہے سیریل نمبر {1}. آپ کی فراہم کردہ {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,موجودہ تشخیص کی شرح @@ -1743,7 +1743,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},با apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,کیس نمبر 0 نہیں ہو سکتا DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,آپ (چینل کے شراکت دار) فروخت کی ٹیم اور فروخت شراکت دار ہیں، تو وہ ٹیگ اور فروخت کی سرگرمیوں میں ان کی شراکت کو برقرار رکھنے جا سکتا ہے DocType: Item,Show a slideshow at the top of the page,صفحے کے سب سے اوپر ایک سلائڈ شو دکھانے کے -DocType: Item,"Allow in Sales Order of type ""Service""",قسم "سروس" کی فروخت آرڈر میں اجازت دیں apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,سٹورز DocType: Time Log,Projects Manager,منصوبوں کے مینیجر DocType: Serial No,Delivery Time,ڈیلیوری کا وقت @@ -1778,7 +1777,7 @@ DocType: Appraisal,Employee,ملازم apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,سے درآمد ای میل apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,صارف کے طور پر مدعو کریں DocType: Features Setup,After Sale Installations,فروخت تنصیبات کے بعد -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} کو مکمل طور پر بل کیا جاتا ہے +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} کو مکمل طور پر بل کیا جاتا ہے DocType: Workstation Working Hour,End Time,آخر وقت apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,سیلز یا خریداری کے لئے معیاری معاہدہ شرائط. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,واؤچر کی طرف سے گروپ @@ -1804,7 +1803,7 @@ DocType: Upload Attendance,Attendance To Date,تاریخ کرنے کے لئے ح apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),فروخت ای میل کی شناخت کے لئے سیٹ اپ آنے والے سرور. (مثال کے طور sales@example.com) DocType: Warranty Claim,Raised By,طرف سے اٹھائے گئے DocType: Payment Gateway Account,Payment Account,ادائیگی اکاؤنٹ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,آگے بڑھنے کے لئے کمپنی کی وضاحت کریں +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,آگے بڑھنے کے لئے کمپنی کی وضاحت کریں apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,اکاؤنٹس وصولی میں خالص تبدیلی apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,مائکر آف DocType: Quality Inspection Reading,Accepted,قبول کر لیا @@ -1816,14 +1815,14 @@ DocType: Shipping Rule,Shipping Rule Label,شپنگ حکمرانی لیبل apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,خام مال خالی نہیں ہو سکتا. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.",اسٹاک کو اپ ڈیٹ نہیں کیا جا سکا، انوائس ڈراپ شپنگ آئٹم پر مشتمل ہے. DocType: Newsletter,Test,ٹیسٹ -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'",موجودہ اسٹاک لین دین آپ کی اقدار کو تبدیل نہیں کر سکتے ہیں \ اس شے کے، کے لئے موجود ہیں کے طور پر 'سیریل نہیں ہے'، 'بیچ ہے نہیں'، 'اسٹاک آئٹم' اور 'تشخیص کا طریقہ' apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,فوری جرنل اندراج apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,BOM کسی بھی شے agianst ذکر اگر آپ کی شرح کو تبدیل نہیں کر سکتے ہیں DocType: Employee,Previous Work Experience,گزشتہ کام کا تجربہ DocType: Stock Entry,For Quantity,مقدار کے لئے apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},صف میں آئٹم {0} کے لئے منصوبہ بندی کی مقدار درج کریں {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} پیش نہیں ہے +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} پیش نہیں ہے apps/erpnext/erpnext/config/stock.py +18,Requests for items.,اشیاء کے لئے درخواست. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,علیحدہ پروڈکشن آرڈر ہر ایک کو ختم اچھی شے کے لئے پیدا کیا جائے گا. DocType: Purchase Invoice,Terms and Conditions1,شرائط و Conditions1 @@ -1848,6 +1847,7 @@ DocType: Notification Control,Expense Claim Approved Message,اخراجات کل DocType: Email Digest,How frequently?,کتنی بار؟ DocType: Purchase Receipt,Get Current Stock,موجودہ اسٹاک حاصل کریں apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,مواد کے بل کے پیڑ +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,مارک موجودہ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},بحالی کے آغاز کی تاریخ سیریل نمبر کے لئے ترسیل کی تاریخ سے پہلے نہیں ہو سکتا {0} DocType: Production Order,Actual End Date,اصل تاریخ اختتام DocType: Authorization Rule,Applicable To (Role),لاگو (کردار) @@ -1862,7 +1862,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,معاہدہ اختتام تاریخ شمولیت کی تاریخ سے زیادہ ہونا چاہیے DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,ایک کمیشن کے کمپنیوں کی مصنوعات فروخت کرتا ہے جو ایک تیسری پارٹی ڈسٹریبیوٹر / ڈیلر / کمیشن ایجنٹ / الحاق / ری سیلر. DocType: Customer Group,Has Child Node,چائلڈ گھنڈی ہے -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} خریداری کے آرڈر کے خلاف {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} خریداری کے آرڈر کے خلاف {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)",یہاں جامد یو آر ایل پیرامیٹرز درج کریں (مثال کے طور پر. مرسل = ERPNext، اسم = ERPNext، پاس ورڈ = 1234 وغیرہ) apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} کسی بھی فعال مالی سال میں. مزید تفصیلات کی جانچ پڑتال کے لئے {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,یہ ایک مثال ویب سائٹ ERPNext سے آٹو پیدا کیا جاتا ہے @@ -1890,7 +1890,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Add or Deduct: Whether you want to add or deduct the tax.",تمام خریداری لین دین پر لاگو کیا جا سکتا ہے کہ معیاری ٹیکس سانچے. اس سانچے وغیرہ #### آپ سب ** اشیا کے لئے معیاری ٹیکس کی شرح ہو جائے گا یہاں وضاحت ٹیکس کی شرح یاد رکھیں "ہینڈلنگ"، ٹیکس سر اور "شپنگ"، "انشورنس" کی طرح بھی دیگر اخراجات کے سروں کی فہرست پر مشتمل کر سکتے ہیں * *. مختلف شرح ہے *** *** کہ اشیاء موجود ہیں تو، وہ ** آئٹم ٹیکس میں شامل ہونا ضروری ہے *** *** آئٹم ماسٹر میں میز. #### کالم کی وضاحت 1. حساب قسم: - یہ (کہ بنیادی رقم کی رقم ہے) *** نیٹ کل *** پر ہو سکتا ہے. - ** پچھلے صف کل / رقم ** پر (مجموعی ٹیکس یا الزامات کے لئے). اگر آپ اس اختیار کا انتخاب کرتے ہیں، ٹیکس کی رقم یا کل (ٹیکس ٹیبل میں) پچھلے صف کے ایک فی صد کے طور پر لاگو کیا جائے گا. - *** اصل (بیان). 2. اکاؤنٹ سربراہ: اس ٹیکس 3. لاگت مرکز بک کیا جائے گا جس کے تحت اکاؤنٹ لیجر: ٹیکس / انچارج (شپنگ کی طرح) ایک آمدنی ہے یا خرچ تو یہ ایک لاگت مرکز کے خلاف مقدمہ درج کیا جا کرنے کی ضرورت ہے. 4. تفصیل: ٹیکس کی تفصیل (کہ انوائس / واوین میں پرنٹ کیا جائے گا). 5. شرح: ٹیکس کی شرح. 6. رقم: ٹیکس کی رقم. 7. کل: اس نقطہ پر مجموعی کل. 8. صف درج کریں: کی بنیاد پر تو "پچھلا صف کل" آپ کو اس کے حساب کے لئے ایک بنیاد کے (پہلے سے مقررشدہ پچھلے صف ہے) کے طور پر لیا جائے گا جس میں صفیں منتخب کر سکتے ہیں. 9. کے لئے ٹیکس یا انچارج پر غور کریں: ٹیکس / انچارج تشخیص کے لئے ہے (کل کی ایک حصہ) یا صرف (شے کی قیمت شامل نہیں ہے) کل کے لئے یا دونوں کے لئے ہے اس سیکشن میں آپ وضاحت کر سکتے ہیں. 10. کریں یا منہا: آپ کو شامل یا ٹیکس کی کٹوتی کے لئے چاہتے ہیں. DocType: Purchase Receipt Item,Recd Quantity,Recd مقدار apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},سیلز آرڈر کی مقدار سے زیادہ آئٹم {0} پیدا نہیں کر سکتے ہیں {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,اسٹاک انٹری {0} پیش نہیں ہے +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,اسٹاک انٹری {0} پیش نہیں ہے DocType: Payment Reconciliation,Bank / Cash Account,بینک / کیش اکاؤنٹ DocType: Tax Rule,Billing City,بلنگ شہر DocType: Global Defaults,Hide Currency Symbol,کرنسی کی علامت چھپائیں @@ -1916,11 +1916,11 @@ DocType: Salary Structure,Total Earning,کل کمائی DocType: Purchase Receipt,Time at which materials were received,مواد موصول ہوئیں جس میں وقت apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,میرے پتے DocType: Stock Ledger Entry,Outgoing Rate,سبکدوش ہونے والے کی شرح -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,تنظیم شاخ ماسٹر. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,تنظیم شاخ ماسٹر. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,یا DocType: Sales Order,Billing Status,بلنگ کی حیثیت apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,یوٹیلٹی اخراجات -apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +65,90-Above,90 سے بڑھ کر +apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +65,90-Above,۹۰ سے بڑھ کر DocType: Buying Settings,Default Buying Price List,پہلے سے طے شدہ خرید قیمت کی فہرست apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +83,No employee for the above selected criteria OR salary slip already created,اوپر منتخب شدہ معیار یا تنخواہ پرچی کے لئے کوئی ملازم پہلے ہی پیدا DocType: Notification Control,Sales Order Message,سیلز آرڈر پیغام @@ -1954,7 +1954,7 @@ DocType: Bin,Reserved Quantity,محفوظ مقدار DocType: Landed Cost Voucher,Purchase Receipt Items,خریداری کی رسید اشیا apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,تخصیص فارم DocType: Account,Income Account,انکم اکاؤنٹ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,ڈلیوری +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,ڈلیوری DocType: Stock Reconciliation Item,Current Qty,موجودہ مقدار DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",ملاحظہ کریں لاگت سیکشن میں "مواد کی بنیاد پر کی شرح" DocType: Appraisal Goal,Key Responsibility Area,کلیدی ذمہ داری کے علاقے @@ -1966,8 +1966,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,و DocType: Notification Control,Purchase Order Message,آرڈر پیغام خریدیں DocType: Tax Rule,Shipping Country,شپنگ ملک DocType: Upload Attendance,Upload HTML,اپ لوڈ کریں ایچ ٹی ایم ایل -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})",کل ایڈوانس ({0}) کے خلاف {1} \ زیادہ نہیں ہو سکتا گرینڈ کل کے مقابلے میں ({2}) DocType: Employee,Relieving Date,حاجت تاریخ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.",قیمتوں کا تعین اصول کچھ معیار کی بنیاد پر، / قیمت کی فہرست ادلیکھت ڈسکاؤنٹ فی صد کی وضاحت کرنے کے لئے بنایا ہے. DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,گودام صرف اسٹاک انٹری کے ذریعے تبدیل کیا جا سکتا / ڈلیوری نوٹ / خریداری کی رسید @@ -1977,8 +1975,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,ان apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.",منتخب قیمتوں کا تعین اصول 'قیمت' کے لئے بنایا جاتا ہے تو، اس کی قیمت کی فہرست ادلیکھت ہو جائے گا. قیمتوں کا تعین اصول قیمت حتمی قیمت ہے، تو کوئی مزید رعایت کا اطلاق ہونا چاہئے. لہذا، وغیرہ سیلز آرڈر، خریداری کے آرڈر کی طرح کے لین دین میں، اس کی بجائے 'قیمت کی فہرست شرح' فیلڈ کے مقابلے میں، 'شرح' میدان میں دلوایا جائے گا. apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,ٹریک صنعت کی قسم کی طرف جاتا ہے. DocType: Item Supplier,Item Supplier,آئٹم پردایک -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,بیچ کوئی حاصل کرنے کے لئے آئٹم کوڈ درج کریں -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},{0} quotation_to کے لئے ایک قیمت منتخب کریں {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,بیچ کوئی حاصل کرنے کے لئے آئٹم کوڈ درج کریں +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},{0} quotation_to کے لئے ایک قیمت منتخب کریں {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,تمام پتے. DocType: Company,Stock Settings,اسٹاک ترتیبات apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company",مندرجہ ذیل خصوصیات دونوں کے ریکارڈ میں ایک ہی ہیں تو ولی ہی ممکن ہے. گروپ، جڑ کی قسم، کمپنی ہے @@ -2001,7 +1999,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,چیک نمبر DocType: Payment Tool Detail,Payment Tool Detail,ادائیگی کے آلے تفصیل ,Sales Browser,سیلز براؤزر DocType: Journal Entry,Total Credit,کل کریڈٹ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},انتباہ: ایک {0} # {1} اسٹاک داخلے کے خلاف موجود {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},انتباہ: ایک {0} # {1} اسٹاک داخلے کے خلاف موجود {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,مقامی apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),قرضوں اور ایڈوانسز (اثاثے) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,دیندار @@ -2021,8 +2019,8 @@ DocType: Price List,Price List Master,قیمت کی فہرست ماسٹر DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,آپ کی مقرر کردہ اور اہداف کی نگرانی کر سکتے ہیں تاکہ تمام سیلز معاملات سے زیادہ ** سیلز افراد ** خلاف ٹیگ کیا جا سکتا. ,S.O. No.,تو نمبر DocType: Production Order Operation,Make Time Log,وقت لاگ ان کریں بنائیں -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,ترتیب مقدار مقرر کریں -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},لیڈ سے گاہک بنانے کے براہ مہربانی {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,ترتیب مقدار مقرر کریں +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},لیڈ سے گاہک بنانے کے براہ مہربانی {0} DocType: Price List,Applicable for Countries,ممالک کے لئے قابل اطلاق apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,کمپیوٹر apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,یہ ایک جڑ کسٹمر گروپ ہے اور میں ترمیم نہیں کیا جا سکتا. @@ -2058,7 +2056,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),بلن DocType: Payment Reconciliation Invoice,Outstanding Amount,بقایا رقم DocType: Project Task,Working,کام کر رہے ہیں DocType: Stock Ledger Entry,Stock Queue (FIFO),اسٹاک قطار (فیفو) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,وقت کیلیے نوشتہ جات دیکھیے کا انتخاب کریں. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,وقت کیلیے نوشتہ جات دیکھیے کا انتخاب کریں. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} کمپنی سے تعلق نہیں ہے {1} DocType: Account,Round Off,منہاج القرآن ,Requested Qty,درخواست مقدار @@ -2096,7 +2094,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,متعلقہ اندراجات حاصل apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,اسٹاک کے لئے اکاؤنٹنگ انٹری DocType: Sales Invoice,Sales Team1,سیلز Team1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,آئٹم {0} موجود نہیں ہے +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,آئٹم {0} موجود نہیں ہے DocType: Sales Invoice,Customer Address,گاہک پتہ DocType: Payment Request,Recipient and Message,وصول کنندہ اور پیغام DocType: Purchase Invoice,Apply Additional Discount On,اضافی رعایت پر لاگو ہوتے ہیں @@ -2115,7 +2113,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,گونگا ای میل apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco",کھانا، مشروب اور تمباکو apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL یا گریڈ -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},صرف خلاف ادائیگی کر سکتے ہیں unbilled {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},صرف خلاف ادائیگی کر سکتے ہیں unbilled {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,کمیشن کی شرح زیادہ سے زیادہ 100 نہیں ہو سکتا apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,کم از کم انوینٹری کی سطح DocType: Stock Entry,Subcontract,اپپٹا @@ -2133,9 +2131,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,سافٹ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,رنگین DocType: Maintenance Visit,Scheduled,تخسوچت apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle","نہیں" اور "فروخت آئٹم" "اسٹاک شے" ہے جہاں "ہاں" ہے شے کو منتخب کریں اور کوئی دوسری مصنوعات بنڈل ہے براہ مہربانی +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),کل ایڈوانس ({0}) کے خلاف {1} گرینڈ کل سے زیادہ نہیں ہو سکتا ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,اسمان ماہ میں اہداف تقسیم کرنے ماہانہ تقسیم کریں. DocType: Purchase Invoice Item,Valuation Rate,تشخیص کی شرح -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,قیمت کی فہرست کرنسی منتخب نہیں +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,قیمت کی فہرست کرنسی منتخب نہیں apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,آئٹم صف {0}: {1} اوپر 'خریداری رسیدیں' کے ٹیبل میں موجود نہیں ہے خریداری کی رسید apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},ملازم {0} پہلے ہی درخواست کی ہے {1} کے درمیان {2} اور {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,اس منصوبے کے آغاز کی تاریخ @@ -2147,6 +2146,7 @@ DocType: Quality Inspection,Inspection Type,معائنہ کی قسم apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},براہ مہربانی منتخب کریں {0} DocType: C-Form,C-Form No,سی فارم نہیں DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,بے نشان حاضری apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,محقق apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,بھیجنے سے پہلے نیوز لیٹر بچا لو apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,نام یا ای میل لازمی ہے @@ -2172,7 +2172,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,اس ب DocType: Payment Gateway,Gateway,گیٹ وے apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,پردایک> پردایک قسم apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,تاریخ حاجت کوڈ داخل کریں. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,AMT +apps/erpnext/erpnext/controllers/trends.py +138,Amt,AMT apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,صرف حیثیت 'منظور' پیش کیا جا سکتا کے ساتھ درخواستیں چھوڑ دو apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,ایڈریس عنوان لازمی ہے. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,انکوائری کے ذریعہ مہم ہے تو مہم کا نام درج کریں @@ -2187,10 +2187,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,منظور گودام DocType: Bank Reconciliation Detail,Posting Date,پوسٹنگ کی تاریخ DocType: Item,Valuation Method,تشخیص کا طریقہ apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},{0} کے لئے زر مبادلہ کی شرح تلاش کرنے سے قاصر {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,مارک آدھے دن DocType: Sales Invoice,Sales Team,سیلز ٹیم apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,ڈوپلیکیٹ اندراج DocType: Serial No,Under Warranty,وارنٹی کے تحت -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[خرابی] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[خرابی] DocType: Sales Order,In Words will be visible once you save the Sales Order.,آپ کی فروخت کے آرڈر کو بچانے کے ایک بار الفاظ میں نظر آئے گا. ,Employee Birthday,ملازم سالگرہ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,وینچر کیپیٹل کی @@ -2213,6 +2214,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,موجودہ لین دین کے ساتھ لاگت مرکز گروپ کو تبدیل نہیں کیا جا سکتا DocType: Account,Depreciation,فرسودگی apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),پردایک (ے) +DocType: Employee Attendance Tool,Employee Attendance Tool,ملازم حاضری کا آلہ DocType: Supplier,Credit Limit,ادھار کی حد apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,لین دین کی قسم منتخب کریں DocType: GL Entry,Voucher No,واؤچر کوئی @@ -2239,7 +2241,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,روٹ اکاؤنٹ خارج کر دیا نہیں کیا جا سکتا ,Is Primary Address,پرائمری ایڈریس ہے DocType: Production Order,Work-in-Progress Warehouse,کام میں پیش رفت گودام -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},حوالہ # {0} ء {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},حوالہ # {0} ء {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,پتے کا انتظام DocType: Pricing Rule,Item Code,آئٹم کوڈ DocType: Production Planning Tool,Create Production Orders,پیداوار کے احکامات بنائیں @@ -2266,7 +2268,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,بینک مصالحتی apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,تازہ ترین معلومات حاصل کریں apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,مواد درخواست {0} منسوخ یا بند کر دیا ہے apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,چند ایک نمونہ کے ریکارڈ میں شامل -apps/erpnext/erpnext/config/hr.py +210,Leave Management,مینجمنٹ چھوڑ دو +apps/erpnext/erpnext/config/hr.py +225,Leave Management,مینجمنٹ چھوڑ دو apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,اکاؤنٹ کی طرف سے گروپ DocType: Sales Order,Fully Delivered,مکمل طور پر ہونے والا DocType: Lead,Lower Income,کم آمدنی @@ -2281,6 +2283,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','تاریخ سے' کے بعد 'تاریخ کے لئے' ہونا ضروری ہے ,Stock Projected Qty,اسٹاک مقدار متوقع apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},تعلق نہیں ہے {0} کسٹمر منصوبے کی {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,نشان حاضری ایچ ٹی ایم ایل DocType: Sales Order,Customer's Purchase Order,گاہک کی خریداری کے آرڈر DocType: Warranty Claim,From Company,کمپنی کی طرف سے apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,قیمت یا مقدار @@ -2295,7 +2298,7 @@ apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +128,A apps/erpnext/erpnext/stock/doctype/item/item.py +46,Item Code is mandatory because Item is not automatically numbered,آئٹم خود کار طریقے سے شمار نہیں ہے کیونکہ آئٹم کوڈ لازمی ہے apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +94,Quotation {0} not of type {1},کوٹیشن {0} نہیں قسم کی {1} DocType: Maintenance Schedule Item,Maintenance Schedule Item,بحالی کے شیڈول آئٹم -DocType: Sales Order,% Delivered,٪ والا +DocType: Sales Order,% Delivered,پھچ چوکا ٪ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +177,Bank Overdraft Account,بینک وورڈرافٹ اکاؤنٹ apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +18,Browse BOM,براؤز BOM apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +175,Secured Loans,محفوظ قرضوں @@ -2345,6 +2348,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,وائر ٹرانسفر apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,بینک اکاؤنٹ براہ مہربانی منتخب کریں DocType: Newsletter,Create and Send Newsletters,تشکیل دیں اور بھیجیں خبرنامے +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,تمام چیک کریں DocType: Sales Order,Recurring Order,مکرر آرڈر DocType: Company,Default Income Account,پہلے سے طے شدہ آمدنی اکاؤنٹ apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,گاہک گروپ / کسٹمر @@ -2376,6 +2380,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,کے خلاف خرید DocType: Item,Warranty Period (in days),(دن میں) وارنٹی مدت apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,آپریشنز سے نیٹ کیش apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,مثال کے طور پر ٹی (VAT) +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,بلک میں مارک ملازم حاضری apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,آئٹم 4 DocType: Journal Entry Account,Journal Entry Account,جرنل اندراج اکاؤنٹ DocType: Shopping Cart Settings,Quotation Series,کوٹیشن سیریز @@ -2520,14 +2525,14 @@ DocType: Task,Actual Start Date (via Time Logs),اصل شروع کرنے کی ت DocType: Stock Reconciliation Item,Before reconciliation,مفاہمت پہلے apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},کرنے کے لئے {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),ٹیکس اور الزامات شامل کر دیا گیا (کمپنی کرنسی) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,آئٹم ٹیکس صف {0} قسم ٹیکس یا آمدنی یا اخراجات یا ادائیگی کے اکاؤنٹ ہونا لازمی ہے +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,آئٹم ٹیکس صف {0} قسم ٹیکس یا آمدنی یا اخراجات یا ادائیگی کے اکاؤنٹ ہونا لازمی ہے DocType: Sales Order,Partly Billed,جزوی طور پر بل DocType: Item,Default BOM,پہلے سے طے شدہ BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,دوبارہ ٹائپ کمپنی کا نام کی توثیق کے لئے براہ کرم apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,کل بقایا AMT DocType: Time Log Batch,Total Hours,کل گھنٹے DocType: Journal Entry,Printing Settings,پرنٹنگ ترتیبات -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},کل ڈیبٹ کل کریڈٹ کے برابر ہونا چاہیے. فرق ہے {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},کل ڈیبٹ کل کریڈٹ کے برابر ہونا چاہیے. فرق ہے {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,آٹوموٹو apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,ترسیل کے نوٹ سے DocType: Time Log,From Time,وقت سے @@ -2573,7 +2578,7 @@ DocType: Purchase Invoice Item,Image View,تصویر دیکھیں DocType: Issue,Opening Time,افتتاحی وقت apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,سے اور مطلوبہ تاریخوں کے لئے apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,سیکورٹیز اینڈ ایکسچینج کماڈٹی -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',مختلف کے لئے پیمائش کی پہلے سے طے شدہ یونٹ '{0}' سانچے میں کے طور پر ایک ہی ہونا چاہیے '{1} +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',مختلف کے لئے پیمائش کی پہلے سے طے شدہ یونٹ '{0}' سانچے میں کے طور پر ایک ہی ہونا چاہیے '{1} DocType: Shipping Rule,Calculate Based On,کی بنیاد پر حساب DocType: Delivery Note Item,From Warehouse,گودام سے DocType: Purchase Taxes and Charges,Valuation and Total,تشخیص اور کل @@ -2595,7 +2600,7 @@ DocType: Leave Application,Follow via Email,ای میل کے ذریعے عمل DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,ڈسکاؤنٹ رقم کے بعد ٹیکس کی رقم apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,چائلڈ اکاؤنٹ اس اکاؤنٹ کے لئے موجود ہے. آپ اس اکاؤنٹ کو حذف نہیں کر سکتے ہیں. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,بہر ہدف مقدار یا ہدف رقم لازمی ہے -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},کوئی پہلے سے طے شدہ BOM شے کے لئے موجود {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},کوئی پہلے سے طے شدہ BOM شے کے لئے موجود {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,پہلے پوسٹنگ کی تاریخ منتخب کریں apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,تاریخ افتتاحی تاریخ بند کرنے سے پہلے ہونا چاہئے DocType: Leave Control Panel,Carry Forward,آگے لے جانے @@ -2672,7 +2677,7 @@ DocType: Leave Type,Is Encash,بنانا ہے DocType: Purchase Invoice,Mobile No,موبائل نہیں DocType: Payment Tool,Make Journal Entry,جرنل اندراج DocType: Leave Allocation,New Leaves Allocated,نئے پتے مختص -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,پروجیکٹ وار اعداد و شمار کوٹیشن کے لئے دستیاب نہیں ہے +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,پروجیکٹ وار اعداد و شمار کوٹیشن کے لئے دستیاب نہیں ہے DocType: Project,Expected End Date,متوقع تاریخ اختتام DocType: Appraisal Template,Appraisal Template Title,تشخیص سانچہ عنوان apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,کمرشل @@ -2720,6 +2725,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,ا apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,ایک کی وضاحت کریں DocType: Offer Letter,Awaiting Response,جواب کا منتظر apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,اوپر +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,وقت لاگ ان بل دیا گیا ہے DocType: Salary Slip,Earning & Deduction,کمائی اور کٹوتی apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,اکاؤنٹ {0} ایک گروپ نہیں ہو سکتا apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,اختیاری. یہ ترتیب مختلف لین دین میں فلٹر کیا جائے گا. @@ -2790,14 +2796,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,کامیابی کے ساتھ اس کمپنی سے متعلق تمام لین دین کو خارج کر دیا! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,تاریخ کے طور پر apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,پروبیشن -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,پہلے سے طے شدہ گودام اسٹاک شے کے لئے لازمی ہے. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,پہلے سے طے شدہ گودام اسٹاک شے کے لئے لازمی ہے. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},ماہ کے لئے تنخواہ کی ادائیگی {0} اور سال {1} DocType: Stock Settings,Auto insert Price List rate if missing,آٹو ڈالیں قیمت کی فہرست شرح لاپتہ ہے apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,کل ادا کی گئی رقم ,Transferred Qty,منتقل مقدار apps/erpnext/erpnext/config/learn.py +11,Navigating,گشت apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,منصوبہ بندی -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,وقت لاگ ان بیچ بنائیں +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,وقت لاگ ان بیچ بنائیں apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,جاری کردیا گیا DocType: Project,Total Billing Amount (via Time Logs),کل بلنگ رقم (وقت کیلیے نوشتہ جات دیکھیے کے ذریعے) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,ہم اس شے کے فروخت @@ -2805,7 +2811,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,مقدار 0 سے زیادہ ہونا چاہئے DocType: Journal Entry,Cash Entry,کیش انٹری DocType: Sales Partner,Contact Desc,رابطہ DESC -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.",آرام دہ اور پرسکون طرح پتیوں کی قسم، بیمار وغیرہ +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.",آرام دہ اور پرسکون طرح پتیوں کی قسم، بیمار وغیرہ DocType: Email Digest,Send regular summary reports via Email.,ای میل کے ذریعے باقاعدہ سمری رپورٹ بھیجنے. DocType: Brand,Item Manager,آئٹم مینیجر DocType: Cost Center,Add rows to set annual budgets on Accounts.,اکاؤنٹس پر سالانہ بجٹ مقرر کرنے کی قطار شامل کریں. @@ -2820,7 +2826,7 @@ DocType: GL Entry,Party Type,پارٹی قسم apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,خام مال بنیادی شے کے طور پر ایک ہی نہیں ہو سکتا DocType: Item Attribute Value,Abbreviation,مخفف apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,{0} حدود سے تجاوز کے بعد authroized نہیں -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,تنخواہ سانچے ماسٹر. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,تنخواہ سانچے ماسٹر. DocType: Leave Type,Max Days Leave Allowed,زیادہ سے زیادہ دنوں کی رخصت کی اجازت apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,خریداری کی ٹوکری کے لئے مقرر ٹیکس اصول DocType: Payment Tool,Set Matching Amounts,سیٹ ملاپ مقدار @@ -2833,7 +2839,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,لیڈ DocType: Stock Settings,Role Allowed to edit frozen stock,کردار منجمد اسٹاک ترمیم کرنے کی اجازت ,Territory Target Variance Item Group-Wise,علاقہ ھدف تغیر آئٹم گروپ حکیم apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,تمام کسٹمر گروپوں -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} لازمی ہے. ہو سکتا ہے کہ کرنسی ایکسچینج ریکارڈ {1} {2} کرنے کے لئے پیدا نہیں کر رہا ہے. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} لازمی ہے. ہو سکتا ہے کہ کرنسی ایکسچینج ریکارڈ {1} {2} کرنے کے لئے پیدا نہیں کر رہا ہے. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,ٹیکس سانچہ لازمی ہے. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,اکاؤنٹ {0}: والدین اکاؤنٹ {1} موجود نہیں ہے DocType: Purchase Invoice Item,Price List Rate (Company Currency),قیمت کی فہرست شرح (کمپنی کرنسی) @@ -2853,8 +2859,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,آئٹم حکمت ٹی ,Item-wise Price List Rate,آئٹم وار قیمت کی فہرست شرح apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,پردایک کوٹیشن DocType: Quotation,In Words will be visible once you save the Quotation.,آپ کوٹیشن بچانے بار الفاظ میں نظر آئے گا. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} بند کردیا گیا ہے -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},بارکوڈ {0} پہلے ہی آئٹم میں استعمال {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} بند کردیا گیا ہے +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},بارکوڈ {0} پہلے ہی آئٹم میں استعمال {1} DocType: Lead,Add to calendar on this date,اس تاریخ پر کیلنڈر میں شامل کریں apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,شپنگ کے اخراجات شامل کرنے کے لئے رولز. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,انے والی تقریبات @@ -2880,8 +2886,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,س apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,کم سے کم ایک گودام لازمی ہے DocType: Serial No,Out of Warranty,وارنٹی سے باہر DocType: BOM Replace Tool,Replace,بدل دیں -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} فروخت انوائس کے خلاف {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,پیمائش کی پہلے سے طے شدہ یونٹ داخل کریں +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} فروخت انوائس کے خلاف {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,پیمائش کی پہلے سے طے شدہ یونٹ داخل کریں DocType: Purchase Invoice Item,Project Name,پراجیکٹ کا نام DocType: Supplier,Mention if non-standard receivable account,ذکر غیر معیاری وصولی اکاؤنٹ تو DocType: Journal Entry Account,If Income or Expense,آمدنی یا اخراجات تو @@ -2906,7 +2912,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,مالی سال: {0} نہیں موجود DocType: Currency Exchange,To Currency,سینٹ کٹس اور نیوس DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,مندرجہ ذیل صارفین بلاک دنوں کے لئے چھوڑ درخواستیں منظور کرنے کی اجازت دیں. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,خرچ دعوی کی اقسام. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,خرچ دعوی کی اقسام. DocType: Item,Taxes,ٹیکسز apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,ادا کی اور نجات نہیں DocType: Project,Default Cost Center,پہلے سے طے شدہ لاگت مرکز @@ -2936,7 +2942,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},صف # {0}: سیریل نمبر {1} کے ساتھ مطابقت نہیں ہے {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,آرام دہ اور پرسکون کی رخصت DocType: Batch,Batch ID,بیچ کی شناخت -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},نوٹ: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},نوٹ: {0} ,Delivery Note Trends,ترسیل کے نوٹ رجحانات apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,اس ہفتے کے خلاصے apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} صف میں خریدی یا ذیلی کنٹریکٹڈ آئٹم ہونا ضروری ہے {1} @@ -2946,7 +2952,7 @@ DocType: Sales Order,Delivery Date,ادئیگی کی تاریخ DocType: Opportunity,Opportunity Date,موقع تاریخ DocType: Purchase Receipt,Return Against Purchase Receipt,خریداری کی رسید کے خلاف واپسی DocType: Purchase Order,To Bill,بل میں -DocType: Material Request,% Ordered,٪ حکم +DocType: Material Request,% Ordered,٪سامان آرڈرھوگیا apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +61,Piecework,Piecework apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +68,Avg. Buying Rate,اوسط. خرید کی شرح DocType: Task,Actual Time (in Hours),(گھنٹوں میں) اصل وقت @@ -2973,9 +2979,10 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js DocType: Production Order Operation,Production Order Operation,پروڈکشن آرڈر آپریشن DocType: Pricing Rule,Disable,غیر فعال کریں DocType: Project Task,Pending Review,زیر جائزہ -apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,ادا کرنے کے لئے یہاں کلک کریں +apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,ادا کرنے کے لئے یہاں دبایں DocType: Task,Total Expense Claim (via Expense Claim),(خرچ دعوی ذریعے) کل اخراجات کا دعوی apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,کسٹمر کی شناخت +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,مارک غائب apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,وقت وقت کے مقابلے میں زیادہ ہونا ضروری ہے DocType: Journal Entry Account,Exchange Rate,زر مبادلہ کی شرح apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,سیلز آرڈر {0} پیش نہیں ہے @@ -3023,7 +3030,7 @@ DocType: Item Group,Default Expense Account,پہلے سے طے شدہ ایکسپ DocType: Employee,Notice (days),نوٹس (دن) DocType: Tax Rule,Sales Tax Template,سیلز ٹیکس سانچہ DocType: Employee,Encashment Date,معاوضہ تاریخ -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry",واؤچر کے خلاف قسم کی خریداری کے حکم کی ایک، خریداری کی رسید یا جرنل اندراج ہونا چاہیے +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry",واؤچر کے خلاف قسم کی خریداری کے حکم کی ایک، خریداری کی رسید یا جرنل اندراج ہونا چاہیے DocType: Account,Stock Adjustment,اسٹاک ایڈجسٹمنٹ apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},پہلے سے طے شدہ سرگرمی لاگت سرگرمی کی قسم کے لئے موجود ہے - {0} DocType: Production Order,Planned Operating Cost,منصوبہ بندی کی آپریٹنگ لاگت @@ -3077,6 +3084,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,انٹری لکھنے DocType: BOM,Rate Of Materials Based On,شرح معدنیات کی بنیاد پر apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,سپورٹ Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,تمام کو غیر منتخب apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},کمپنی گوداموں میں لاپتہ ہے {0} DocType: POS Profile,Terms and Conditions,شرائط و ضوابط apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},تاریخ مالی سال کے اندر اندر ہونا چاہئے. = تاریخ کے فرض {0} @@ -3098,9 +3106,9 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'",، پہلے سے طے شدہ طور پر اس مالی سال مقرر کرنے کیلئے 'پہلے سے طے شدہ طور پر مقرر کریں' پر کلک کریں apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),سپورٹ ای میل کی شناخت کے لئے سیٹ اپ آنے والے سرور. (مثال کے طور support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,کمی کی مقدار -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,آئٹم ویرینٹ {0} اسی صفات کے ساتھ موجود +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,آئٹم ویرینٹ {0} اسی صفات کے ساتھ موجود DocType: Salary Slip,Salary Slip,تنخواہ پرچی -apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,'تاریخ کے لئے' کی ضرورت ہے +apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,"تاریخ"" کئ ضرورت ہے To""" DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.",پیکجوں پیش کی جائے کرنے کے لئے تخم پیکنگ پیدا. پیکیج کی تعداد، پیکج مندرجات اور اس کا وزن مطلع کرنے کے لئے استعمال. DocType: Sales Invoice Item,Sales Order Item,سیلز آرڈر آئٹم DocType: Salary Slip,Payment Days,ادائیگی دنوں @@ -3146,7 +3154,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,لنک DocType: Item Attribute Value,Attribute Value,ویلیو وصف apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}",ای میل کی شناخت پہلے ہی موجود ہے، منفرد ہونا چاہئے {0} ,Itemwise Recommended Reorder Level,Itemwise ترتیب لیول سفارش -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,پہلے {0} براہ مہربانی منتخب کریں +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,پہلے {0} براہ مہربانی منتخب کریں DocType: Features Setup,To get Item Group in details table,تفصیلات ٹیبل میں آئٹم گروپ حاصل کرنے کے لئے apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,آئٹم کے بیچ {0} {1} ختم ہو گیا ہے. DocType: Sales Invoice,Commission,کمیشن @@ -3190,7 +3198,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,بقایا واؤچر حاصل DocType: Warranty Claim,Resolved By,کی طرف سے حل DocType: Appraisal,Start Date,شروع کرنے کی تاریخ -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,ایک مدت کے لئے پتے مختص. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,ایک مدت کے لئے پتے مختص. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,چیک اور ڈپازٹس غلط کی منظوری دے دی apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,توثیق کرنے کے لئے یہاں کلک کریں apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,اکاؤنٹ {0}: آپ والدین کے اکاؤنٹ کے طور پر خود کی وضاحت نہیں کر سکتے ہیں @@ -3210,7 +3218,7 @@ DocType: Employee,Educational Qualification,تعلیمی اہلیت DocType: Workstation,Operating Costs,آپریٹنگ اخراجات DocType: Employee Leave Approver,Employee Leave Approver,ملازم کی رخصت کی منظوری دینے والا apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} کامیابی ہماری نیوز لیٹر کی فہرست میں شامل کیا گیا ہے. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},صف {0}: ایک ترتیب اندراج پہلے ہی اس گودام کے لئے موجود ہے {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},صف {0}: ایک ترتیب اندراج پہلے ہی اس گودام کے لئے موجود ہے {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.",کوٹیشن بنا دیا گیا ہے کیونکہ، کے طور پر کھو نہیں بتا سکتے. DocType: Purchase Taxes and Charges Template,Purchase Master Manager,خریداری ماسٹر مینیجر apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,آرڈر {0} پیش کرنا ضروری ہے پیداوار @@ -3234,7 +3242,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,انوائس {0} پہلے ہی پیش کیا گیا ہے فروخت apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,تکمیل کی تاریخ DocType: Purchase Invoice Item,Amount (Company Currency),رقم (کمپنی کرنسی) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,تنظیمی اکائی (محکمہ) ماسٹر. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,تنظیمی اکائی (محکمہ) ماسٹر. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,درست موبائل نمبر درج کریں DocType: Budget Detail,Budget Detail,بجٹ تفصیل apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,بھیجنے سے پہلے پیغام درج کریں @@ -3250,13 +3258,13 @@ DocType: Purchase Receipt Item,Received and Accepted,موصول ہوئی ہے ا ,Serial No Service Contract Expiry,سیریل کوئی خدمات کا معاہدہ ختم ہونے کی DocType: Item,Unit of Measure Conversion,پیمائش کے تبادلوں کی یونٹ apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,ملازم کو تبدیل نہیں کیا جا سکتا -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,آپ کے کریڈٹ اور ایک ہی وقت میں ایک ہی اکاؤنٹ سے ڈیبٹ نہیں کر سکتے ہیں +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,آپ کے کریڈٹ اور ایک ہی وقت میں ایک ہی اکاؤنٹ سے ڈیبٹ نہیں کر سکتے ہیں DocType: Naming Series,Help HTML,مدد ایچ ٹی ایم ایل apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},100٪ ہونا چاہئے تفویض کل اہمیت. یہ {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},{0} شے کے لئے پار over- کے لیے الاؤنس {1} DocType: Address,Name of person or organization that this address belongs to.,اس ایڈریس سے تعلق رکھتا ہے اس شخص یا تنظیم کا نام. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,اپنے سپلائرز -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,سیلز آرڈر بنایا گیا ہے کے طور پر کھو کے طور پر مقرر کر سکتے ہیں. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,سیلز آرڈر بنایا گیا ہے کے طور پر کھو کے طور پر مقرر کر سکتے ہیں. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,ایک تنخواہ ساخت {0} ملازم کے لئے فعال ہے {1}. اس کی حیثیت 'غیر فعال' آگے بڑھنے کے لئے براہ کرم یقینی بنائیں. DocType: Purchase Invoice,Contact,رابطہ کریں apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,کی طرف سے موصول @@ -3269,7 +3277,7 @@ apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: S DocType: Issue,Content Type,مواد کی قسم apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,کمپیوٹر DocType: Item,List this Item in multiple groups on the website.,ویب سائٹ پر ایک سے زیادہ گروہوں میں اس شے کی فہرست. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,دوسری کرنسی کے ساتھ اکاؤنٹس کی اجازت دینے ملٹی کرنسی آپشن کو چیک کریں براہ مہربانی +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,دوسری کرنسی کے ساتھ اکاؤنٹس کی اجازت دینے ملٹی کرنسی آپشن کو چیک کریں براہ مہربانی apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,آئٹم: {0} نظام میں موجود نہیں ہے apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,آپ منجمد قیمت مقرر کرنے کی اجازت نہیں ہے DocType: Payment Reconciliation,Get Unreconciled Entries,Unreconciled لکھے حاصل @@ -3279,14 +3287,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,یہ کیا DocType: Delivery Note,To Warehouse,گودام میں apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},اکاؤنٹ {0} مالی سال کے لیے ایک سے زائد مرتبہ داخل کیا گیا ہے {1} ,Average Commission Rate,اوسط کمیشن کی شرح -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'ہاں' ہونا غیر اسٹاک شے کے لئے نہیں کر سکتے ہیں 'سیریل نہیں ہے' +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'ہاں' ہونا غیر اسٹاک شے کے لئے نہیں کر سکتے ہیں 'سیریل نہیں ہے' apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,حاضری مستقبل کی تاریخوں کے لئے نشان لگا دیا گیا نہیں کیا جا سکتا DocType: Pricing Rule,Pricing Rule Help,قیمتوں کا تعین حکمرانی کی مدد DocType: Purchase Taxes and Charges,Account Head,اکاؤنٹ ہیڈ apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,اشیاء کی قیمت کا حساب کرنے اترا اضافی اخراجات کو اپ ڈیٹ کریں apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,الیکٹریکل DocType: Stock Entry,Total Value Difference (Out - In),کل قیمت فرق (باہر - میں) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,صف {0}: زر مبادلہ کی شرح لازمی ہے +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,صف {0}: زر مبادلہ کی شرح لازمی ہے apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},صارف ID ملازم کے لئے مقرر نہیں {0} DocType: Stock Entry,Default Source Warehouse,پہلے سے طے شدہ ماخذ گودام DocType: Item,Customer Code,کسٹمر کوڈ @@ -3305,15 +3313,15 @@ DocType: Notification Control,Sales Invoice Message,فروخت انوائس پی apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,اکاؤنٹ {0} بند قسم ذمہ داری / اکوئٹی کا ہونا ضروری ہے DocType: Authorization Rule,Based On,پر مبنی DocType: Sales Order Item,Ordered Qty,کا حکم دیا مقدار -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,آئٹم {0} غیر فعال ہے +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,آئٹم {0} غیر فعال ہے DocType: Stock Settings,Stock Frozen Upto,اسٹاک منجمد تک apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},سے اور مدت بار بار چلنے والی کے لئے لازمی تاریخوں کی مدت {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,پروجیکٹ سرگرمی / کام. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,تنخواہ تخم پیدا +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,تنخواہ تخم پیدا apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}",قابل اطلاق کے لئے کے طور پر منتخب کیا جاتا ہے تو خریدنے، جانچ پڑتال ہونا ضروری {0} apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,ڈسکاؤنٹ کم 100 ہونا ضروری ہے DocType: Purchase Invoice,Write Off Amount (Company Currency),رقم لکھیں (کمپنی کرنسی) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,صف # {0}: ترتیب مقدار مقرر کریں +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,صف # {0}: ترتیب مقدار مقرر کریں DocType: Landed Cost Voucher,Landed Cost Voucher,لینڈڈ لاگت واؤچر apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},مقرر کریں {0} DocType: Purchase Invoice,Repeat on Day of Month,مہینے کا دن پر دہرائیں @@ -3365,7 +3373,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,پیش رفت گودام میں پہلے سے طے شدہ کام apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,اکاؤنٹنگ لین دین کے لئے پہلے سے طے شدہ ترتیبات. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,متوقع تاریخ مواد کی درخواست کی تاریخ سے پہلے نہیں ہو سکتا -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,آئٹم {0} سیلز آئٹم ہونا ضروری ہے +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,آئٹم {0} سیلز آئٹم ہونا ضروری ہے DocType: Naming Series,Update Series Number,اپ ڈیٹ سلسلہ نمبر DocType: Account,Equity,اکوئٹی DocType: Sales Order,Printing Details,پرنٹنگ تفصیلات @@ -3417,7 +3425,7 @@ DocType: Task,Review Date,جائزہ تاریخ DocType: Purchase Invoice,Advance Payments,ایڈوانس ادائیگی DocType: Purchase Taxes and Charges,On Net Total,نیٹ کل پر apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,{0} قطار میں ہدف گودام پروڈکشن آرڈر کے طور پر ایک ہی ہونا چاہیے -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,کوئی اجازت ادائیگی کے آلے کا استعمال کرنے کے لئے +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,کوئی اجازت ادائیگی کے آلے کا استعمال کرنے کے لئے apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,٪ s کو بار بار چلنے والی کے لئے مخصوص نہیں 'اطلاعی ای میل پتوں' apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,کرنسی کسی دوسرے کرنسی استعمال اندراجات کرنے کے بعد تبدیل کر دیا گیا نہیں کیا جا سکتا DocType: Company,Round Off Account,اکاؤنٹ گول @@ -3440,7 +3448,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,شے کی مقدار خام مال کی دی گئی مقدار سے repacking / مینوفیکچرنگ کے بعد حاصل DocType: Payment Reconciliation,Receivable / Payable Account,وصولی / قابل ادائیگی اکاؤنٹ DocType: Delivery Note Item,Against Sales Order Item,سیلز آرڈر آئٹم خلاف -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},وصف کے لئے قدر وصف کی وضاحت کریں {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},وصف کے لئے قدر وصف کی وضاحت کریں {0} DocType: Item,Default Warehouse,پہلے سے طے شدہ گودام DocType: Task,Actual End Date (via Time Logs),اصل تاریخ اختتام (وقت کیلیے نوشتہ جات دیکھیے کے ذریعے) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},بجٹ گروپ کے اکاؤنٹ کے خلاف مقرر نہیں کیا جا سکتا {0} @@ -3465,10 +3473,10 @@ DocType: Lead,Blog Subscriber,بلاگ سبسکرائبر apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,اقدار پر مبنی لین دین کو محدود کرنے کے قوانین تشکیل دیں. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day",جانچ پڑتال تو، کل کوئی. کام کے دنوں کے چھٹیوں کے شامل ہوں گے، اور اس تنخواہ فی دن کی قیمت کم ہو جائے گا DocType: Purchase Invoice,Total Advance,کل ایڈوانس -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,پروسیسنگ پے رول +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,پروسیسنگ پے رول DocType: Opportunity Item,Basic Rate,بنیادی شرح DocType: GL Entry,Credit Amount,کریڈٹ کی رقم -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,رکن کی نمائندہ تصویر کے طور پر مقرر +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,رکن کی نمائندہ تصویر کے طور پر مقرر apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,ادائیگی کی رسید نوٹ DocType: Supplier,Credit Days Based On,کریڈٹ دنوں کی بنیاد DocType: Tax Rule,Tax Rule,ٹیکس اصول @@ -3498,7 +3506,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,منظور مقدار apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} نہیں موجود apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,گاہکوں کو اٹھایا بل. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,پروجیکٹ کی شناخت -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},صف کوئی {0}: رقم خرچ دعوی {1} کے خلاف زیر التواء رقم سے زیادہ نہیں ہو سکتا. زیر التواء رقم ہے {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},صف کوئی {0}: رقم خرچ دعوی {1} کے خلاف زیر التواء رقم سے زیادہ نہیں ہو سکتا. زیر التواء رقم ہے {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} صارفین شامل DocType: Maintenance Schedule,Schedule,شیڈول DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""",اس کی قیمت سینٹر کے لئے بجٹ کی وضاحت کریں. بجٹ کارروائی مقرر کرنے، دیکھیں "کمپنی کی فہرست" @@ -3559,19 +3567,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,پی او ایس پروفائل DocType: Payment Gateway Account,Payment URL Message,ادائیگی URL پیغام apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.",ترتیب بجٹ، اہداف وغیرہ کے لئے seasonality کے -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,صف {0}: ادائیگی کی رقم بقایا رقم سے زیادہ نہیں ہو سکتا +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,صف {0}: ادائیگی کی رقم بقایا رقم سے زیادہ نہیں ہو سکتا apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,بلا معاوضہ کل -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,وقت لاگ ان بل قابل نہیں ہے -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants",{0} آئٹم ایک ٹیمپلیٹ ہے، اس کی مختلف حالتوں میں سے ایک کو منتخب کریں +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,وقت لاگ ان بل قابل نہیں ہے +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants",{0} آئٹم ایک ٹیمپلیٹ ہے، اس کی مختلف حالتوں میں سے ایک کو منتخب کریں apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,خریدار apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,نیٹ تنخواہ منفی نہیں ہو سکتا -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,دستی طور پر خلاف واؤچر کوڈ داخل کریں +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,دستی طور پر خلاف واؤچر کوڈ داخل کریں DocType: SMS Settings,Static Parameters,جامد پیرامیٹر DocType: Purchase Order,Advance Paid,ایڈوانس ادا DocType: Item,Item Tax,آئٹم ٹیکس apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,سپلائر مواد apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,ایکسائز انوائس DocType: Expense Claim,Employees Email Id,ملازمین ای میل کی شناخت +DocType: Employee Attendance Tool,Marked Attendance,نشان حاضری apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,موجودہ قرضوں apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,بڑے پیمانے پر ایس ایم ایس اپنے رابطوں کو بھیجیں DocType: Purchase Taxes and Charges,Consider Tax or Charge for,کے لئے ٹیکس یا انچارج غور @@ -3594,7 +3603,7 @@ DocType: Item Attribute,Numeric Values,عددی اقدار apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,علامت (لوگو) منسلک کریں DocType: Customer,Commission Rate,کمیشن کی شرح apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,مختلف بنائیں -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,محکمہ کی طرف سے بلاک چھٹی ایپلی کیشنز. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,محکمہ کی طرف سے بلاک چھٹی ایپلی کیشنز. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,ٹوکری خالی ہے DocType: Production Order,Actual Operating Cost,اصل آپریٹنگ لاگت apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,روٹ ترمیم نہیں کیا جا سکتا. @@ -3613,12 +3622,12 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,مقدار اس کی سطح سے نیچے آتا ہے تو خود کار طریقے سے مواد کی درخواست کی تخلیق ,Item-wise Purchase Register,آئٹم وار خریداری رجسٹر DocType: Batch,Expiry Date,خاتمے کی تاریخ -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item",ترتیب سطح قائم کرنے، شے ایک خریداری شے یا مینوفیکچرنگ آئٹم ہونا ضروری ہے +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item",ترتیب سطح قائم کرنے، شے ایک خریداری شے یا مینوفیکچرنگ آئٹم ہونا ضروری ہے ,Supplier Addresses and Contacts,پردایک پتے اور رابطے apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,پہلے زمرہ منتخب کریں apps/erpnext/erpnext/config/projects.py +18,Project master.,پروجیکٹ ماسٹر. DocType: Global Defaults,Do not show any symbol like $ etc next to currencies.,کرنسیاں وغیرہ $ طرح کسی بھی علامت اگلے ظاہر نہیں کیا. -apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +380, (Half Day),(ادھا دن) +apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +380, (Half Day),آدھا دن DocType: Supplier,Credit Days,کریڈٹ دنوں DocType: Leave Type,Is Carry Forward,فارورڈ لے apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +566,Get Items from BOM,BOM سے اشیاء حاصل diff --git a/erpnext/translations/vi.csv b/erpnext/translations/vi.csv index 3916ed28ff..1054b21ece 100644 --- a/erpnext/translations/vi.csv +++ b/erpnext/translations/vi.csv @@ -164,14 +164,14 @@ DocType: Journal Entry Account,Credit in Company Currency,Tín dụng tại Côn DocType: Delivery Note,Installation Status,Tình trạng cài đặt apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},+ Bị từ chối chấp nhận lượng phải bằng số lượng nhận cho hàng {0} DocType: Item,Supply Raw Materials for Purchase,Cung cấp nguyên liệu thô cho Purchase -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,Mục {0} phải là mua hàng +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,Mục {0} phải là mua hàng DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","Tải Template, điền dữ liệu thích hợp và đính kèm các tập tin sửa đổi. Tất cả các ngày và nhân viên kết hợp trong giai đoạn được chọn sẽ đến trong bản mẫu, hồ sơ tham dự với hiện tại" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,Mục {0} không hoạt động hoặc kết thúc của cuộc sống đã đạt tới DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,Sẽ được cập nhật sau khi bán hàng hóa đơn được Gửi. -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Bao gồm thuế hàng {0} trong tỷ lệ khoản, thuế hàng {1} cũng phải được bao gồm" -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,Cài đặt cho nhân sự Mô-đun +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included","Bao gồm thuế hàng {0} trong tỷ lệ khoản, thuế hàng {1} cũng phải được bao gồm" +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,Cài đặt cho nhân sự Mô-đun DocType: SMS Center,SMS Center,Trung tâm nhắn tin DocType: BOM Replace Tool,New BOM,Mới BOM apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,Hàng loạt Time Logs cho Thanh toán. @@ -199,7 +199,7 @@ DocType: Offer Letter,Select Terms and Conditions,Chọn Điều khoản và Đi DocType: Production Planning Tool,Sales Orders,Đơn đặt hàng bán hàng DocType: Purchase Taxes and Charges,Valuation,Định giá ,Purchase Order Trends,Xu hướng mua hàng -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,Phân bổ lá trong năm. +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,Phân bổ lá trong năm. DocType: Earning Type,Earning Type,Loại thu nhập DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,Năng suất Disable và Thời gian theo dõi DocType: Bank Reconciliation,Bank Account,Tài khoản ngân hàng @@ -237,7 +237,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,Mục Trang Thông số kỹ thuật DocType: Payment Tool,Reference No,Reference No apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,Lại bị chặn -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},Mục {0} đã đạt đến kết thúc của sự sống trên {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},Mục {0} đã đạt đến kết thúc của sự sống trên {1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,Hàng năm DocType: Stock Reconciliation Item,Stock Reconciliation Item,Cổ hòa giải hàng DocType: Stock Entry,Sales Invoice No,Hóa đơn bán hàng không @@ -249,7 +249,7 @@ DocType: Item,Minimum Order Qty,Đặt hàng tối thiểu Số lượng DocType: Pricing Rule,Supplier Type,Loại nhà cung cấp DocType: Item,Publish in Hub,Xuất bản trong Hub ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,Mục {0} bị hủy bỏ +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,Mục {0} bị hủy bỏ apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,Yêu cầu tài liệu DocType: Bank Reconciliation,Update Clearance Date,Cập nhật thông quan ngày DocType: Item,Purchase Details,Thông tin chi tiết mua @@ -261,11 +261,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,Số lượng từ chối DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order","Trường có sẵn trong giao Lưu ý, báo giá, bán hàng hóa đơn, bán hàng đặt hàng" DocType: SMS Settings,SMS Sender Name,SMS Sender Name DocType: Contact,Is Primary Contact,Là Tiểu học Liên hệ +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,Giờ đã được trộn cho Thanh toán DocType: Notification Control,Notification Control,Kiểm soát thông báo DocType: Lead,Suggestions,Đề xuất DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,Thiết lập mục Nhóm-khôn ngoan ngân sách trên lãnh thổ này. Bạn cũng có thể bao gồm thời vụ bằng cách thiết lập phân phối. apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},Vui lòng nhập nhóm tài khoản phụ huynh cho kho {0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Thanh toán khỏi {0} {1} không thể lớn hơn xuất sắc Số tiền {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},Thanh toán khỏi {0} {1} không thể lớn hơn xuất sắc Số tiền {2} DocType: Supplier,Address HTML,Địa chỉ HTML DocType: Lead,Mobile No.,Điện thoại di động số DocType: Maintenance Schedule,Generate Schedule,Tạo Lịch @@ -282,7 +283,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,Đồng bộ hóa Với Hub apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,Sai Mật Khẩu DocType: Item,Variant Of,Trong Variant -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,Mục {0} phải là dịch vụ hàng apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',Đã hoàn thành Số lượng không có thể lớn hơn 'SL đặt Sản xuất' DocType: Period Closing Voucher,Closing Account Head,Đóng Trưởng Tài khoản DocType: Employee,External Work History,Bên ngoài Quá trình công tác @@ -294,10 +294,10 @@ DocType: Newsletter,Newsletter,Đăng ký nhận tin DocType: Stock Settings,Notify by Email on creation of automatic Material Request,Thông báo qua email trên tạo ra các yêu cầu vật liệu tự động DocType: Journal Entry,Multi Currency,Đa ngoại tệ DocType: Payment Reconciliation Invoice,Invoice Type,Loại hóa đơn -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,Giao hàng Ghi +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,Giao hàng Ghi apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,Thiết lập Thuế apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,Nhập thanh toán đã được sửa đổi sau khi bạn kéo nó. Hãy kéo nó một lần nữa. -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0} Nhập hai lần vào Mục Thuế +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0} Nhập hai lần vào Mục Thuế apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,Tóm tắt cho tuần này và các hoạt động cấp phát DocType: Workstation,Rent Cost,Chi phí thuê apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,Vui lòng chọn tháng và năm @@ -308,7 +308,7 @@ DocType: Shipping Rule,Valid for Countries,Hợp lệ cho các nước DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.","Tất cả các lĩnh vực liên quan nhập khẩu như tiền tệ, tỷ lệ chuyển đổi, tổng nhập khẩu, nhập khẩu lớn tổng số vv có sẵn trong mua hóa đơn, Nhà cung cấp báo giá, mua hóa đơn, Mua hàng, vv" apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,Mục này là một Template và không thể được sử dụng trong các giao dịch. Thuộc tính item sẽ được sao chép vào các biến thể trừ 'Không Copy' được thiết lập apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,Tổng số thứ tự coi -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).","Chỉ định nhân viên (ví dụ: Giám đốc điều hành, Giám đốc vv.)" +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).","Chỉ định nhân viên (ví dụ: Giám đốc điều hành, Giám đốc vv.)" apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,"Vui lòng nhập 'Lặp lại vào ngày của tháng ""giá trị trường" DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,Tốc độ mà khách hàng tệ được chuyển đổi sang tiền tệ cơ bản của khách hàng DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet","Có sẵn trong HĐQT, Giao hàng tận nơi Lưu ý, mua hóa đơn, sản xuất hàng, Mua hàng, mua hóa đơn, hóa đơn bán hàng, bán hàng đặt hàng, chứng khoán nhập cảnh, timesheet" @@ -357,7 +357,7 @@ DocType: Workstation,Consumable Cost,Chi phí tiêu hao apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} ({1}) phải có vai trò 'Leave Người phê duyệt' DocType: Purchase Receipt,Vehicle Date,Xe ngày apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,Y khoa -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,Lý do mất +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,Lý do mất apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},Workstation được đóng cửa vào các ngày sau đây theo Danh sách khách sạn Holiday: {0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,Cơ hội DocType: Employee,Single,Một lần @@ -385,14 +385,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,Đối tác DocType: Account,Old Parent,Cũ Chánh DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,Tùy chỉnh văn bản giới thiệu mà đi như một phần của email đó. Mỗi giao dịch có văn bản giới thiệu riêng biệt. +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),Không bao gồm các biểu tượng (ví dụ $.) DocType: Sales Taxes and Charges Template,Sales Master Manager,Thạc sĩ Quản lý bán hàng apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,Cài đặt chung cho tất cả các quá trình sản xuất. DocType: Accounts Settings,Accounts Frozen Upto,"Chiếm đông lạnh HCM," DocType: SMS Log,Sent On,Gửi On -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,Thuộc tính {0} được chọn nhiều lần trong Thuộc tính Bảng +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,Thuộc tính {0} được chọn nhiều lần trong Thuộc tính Bảng DocType: HR Settings,Employee record is created using selected field. , DocType: Sales Order,Not Applicable,Không áp dụng -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,Chủ lễ. +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,Chủ lễ. DocType: Material Request Item,Required Date,Ngày yêu cầu DocType: Delivery Note,Billing Address,Địa chỉ thanh toán apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,Vui lòng nhập Item Code. @@ -428,7 +429,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,Vui lòng nhập kho mà Chất liệu Yêu cầu sẽ được nâng lên DocType: Production Order,Additional Operating Cost,Chi phí điều hành khác apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,Mỹ phẩm -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items","Sáp nhập, tài sản sau đây là giống nhau cho cả hai mục" +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items","Sáp nhập, tài sản sau đây là giống nhau cho cả hai mục" DocType: Shipping Rule,Net Weight,Trọng lượng DocType: Employee,Emergency Phone,Điện thoại khẩn cấp ,Serial No Warranty Expiry,Nối tiếp Không có bảo hành hết hạn @@ -486,17 +487,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,Thanh toán và giao hàng Status apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,Khách hàng lặp lại DocType: Leave Control Panel,Allocate,Phân bổ -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,Bán hàng trở lại +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,Bán hàng trở lại DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,Chọn bán hàng đơn đặt hàng mà từ đó bạn muốn tạo ra đơn đặt hàng sản xuất. DocType: Item,Delivered by Supplier (Drop Ship),Cung cấp bởi Nhà cung cấp (Drop Ship) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,Thành phần lương. +apps/erpnext/erpnext/config/hr.py +128,Salary components.,Thành phần lương. apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,Cơ sở dữ liệu khách hàng tiềm năng. DocType: Authorization Rule,Customer or Item,Khách hàng hoặc Khoản apps/erpnext/erpnext/config/crm.py +17,Customer database.,Cơ sở dữ liệu khách hàng. DocType: Quotation,Quotation To,Để báo giá DocType: Lead,Middle Income,Thu nhập trung bình apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),Mở (Cr) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Mặc định Đơn vị đo lường cho mục {0} không thể thay đổi trực tiếp bởi vì bạn đã thực hiện một số giao dịch (s) với Ươm khác. Bạn sẽ cần phải tạo ra một khoản mới để sử dụng một định Ươm khác nhau. +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,Mặc định Đơn vị đo lường cho mục {0} không thể thay đổi trực tiếp bởi vì bạn đã thực hiện một số giao dịch (s) với Ươm khác. Bạn sẽ cần phải tạo ra một khoản mới để sử dụng một định Ươm khác nhau. apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,Số lượng phân bổ không thể phủ định DocType: Purchase Order Item,Billed Amt,Billed Amt DocType: Warehouse,A logical Warehouse against which stock entries are made.,Một kho hợp lý chống lại các entry chứng khoán được thực hiện. @@ -515,14 +516,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,Thuế bán hàng và lệ phí DocType: Employee,Organization Profile,Tổ chức hồ sơ apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,Xin vui lòng thiết lập số loạt cho khán giả thông qua Setup> Đánh số dòng DocType: Employee,Reason for Resignation,Lý do từ chức -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,Mẫu cho đánh giá kết quả. +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,Mẫu cho đánh giá kết quả. DocType: Payment Reconciliation,Invoice/Journal Entry Details,Hóa đơn / Journal nhập chi tiết apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0} '{1}' không trong năm tài chính {2} DocType: Buying Settings,Settings for Buying Module,Cài đặt cho việc mua Mô-đun apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,Vui lòng nhập Purchase Receipt đầu tiên DocType: Buying Settings,Supplier Naming By,Nhà cung cấp đặt tên By DocType: Activity Type,Default Costing Rate,Mặc định Costing Rate -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,Lịch trình bảo trì +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,Lịch trình bảo trì apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.","Sau đó biết giá quy được lọc ra dựa trên khách hàng, Nhóm khách hàng, lãnh thổ, Nhà cung cấp, Loại Nhà cung cấp, vận động, đối tác kinh doanh, vv" apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,Thay đổi ròng trong kho DocType: Employee,Passport Number,Số hộ chiếu @@ -561,7 +562,7 @@ DocType: Purchase Invoice,Quarterly,Quý DocType: Selling Settings,Delivery Note Required,Giao hàng Ghi bắt buộc DocType: Sales Order Item,Basic Rate (Company Currency),Tỷ giá cơ bản (Công ty tiền tệ) DocType: Manufacturing Settings,Backflush Raw Materials Based On,Ngược dòng Nguyên liệu thô Based On -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,Xin vui lòng nhập các chi tiết sản phẩm +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,Xin vui lòng nhập các chi tiết sản phẩm DocType: Purchase Receipt,Other Details,Các chi tiết khác DocType: Account,Accounts,Tài khoản apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,Marketing @@ -574,7 +575,7 @@ DocType: Employee,Provide email id registered in company,Cung cấp email id đ DocType: Hub Settings,Seller City,Người bán Thành phố DocType: Email Digest,Next email will be sent on:,Email tiếp theo sẽ được gửi về: DocType: Offer Letter Term,Offer Letter Term,Cung cấp văn Term -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,Mục có các biến thể. +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,Mục có các biến thể. apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,Mục {0} không tìm thấy DocType: Bin,Stock Value,Giá trị cổ phiếu apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,Loại cây @@ -582,7 +583,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,Số lượng tiêu thụ trun DocType: Serial No,Warranty Expiry Date,Bảo hành hết hạn ngày DocType: Material Request Item,Quantity and Warehouse,Số lượng và kho DocType: Sales Invoice,Commission Rate (%),Hoa hồng Tỷ lệ (%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Chống Voucher Loại phải là một trong bán hàng đặt hàng, bán hàng hoặc hóa đơn Journal nhập" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry","Chống Voucher Loại phải là một trong bán hàng đặt hàng, bán hàng hoặc hóa đơn Journal nhập" apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,Hàng không vũ trụ DocType: Journal Entry,Credit Card Entry,Thẻ tín dụng nhập apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,Nhiệm vụ đề @@ -669,10 +670,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,Trách nhiệm apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,Số tiền bị xử phạt không thể lớn hơn so với yêu cầu bồi thường Số tiền trong Row {0}. DocType: Company,Default Cost of Goods Sold Account,Mặc định Chi phí tài khoản hàng bán -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,Danh sách giá không được chọn +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,Danh sách giá không được chọn DocType: Employee,Family Background,Gia đình nền DocType: Process Payroll,Send Email,Gởi thư -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},Cảnh báo: Tập tin đính kèm không hợp lệ {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},Cảnh báo: Tập tin đính kèm không hợp lệ {0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,Không phép DocType: Company,Default Bank Account,Tài khoản Ngân hàng mặc định apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first","Để lọc dựa vào Đảng, Đảng chọn Gõ đầu tiên" @@ -700,7 +701,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,Hỗ DocType: Features Setup,"To enable ""Point of Sale"" features",Để kích hoạt tính năng "Point of Sale" tính năng DocType: Bin,Moving Average Rate,Tỷ lệ trung bình di chuyển DocType: Production Planning Tool,Select Items,Chọn mục -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0} với Bill {1} {2} ngày +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0} với Bill {1} {2} ngày DocType: Maintenance Visit,Completion Status,Tình trạng hoàn thành DocType: Sales Invoice Item,Target Warehouse,Mục tiêu kho DocType: Item,Allow over delivery or receipt upto this percent,Cho phép trên giao nhận tối đa tỷ lệ này @@ -760,7 +761,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,Tổ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},Không thể tìm Time Khe cắm trong {0} ngày tới cho Chiến {1} DocType: Production Order,Plan material for sub-assemblies,Tài liệu kế hoạch cho các cụm chi tiết apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0} phải được hoạt động -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,Hãy chọn các loại tài liệu đầu tiên +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,Hãy chọn các loại tài liệu đầu tiên apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,Goto Giỏ hàng apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,Hủy bỏ {0} thăm Vật liệu trước khi hủy bỏ bảo trì đăng nhập này DocType: Salary Slip,Leave Encashment Amount,Để lại séc Số tiền @@ -778,7 +779,7 @@ DocType: Purchase Receipt,Range,Dải DocType: Supplier,Default Payable Accounts,Mặc định Accounts Payable apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,Nhân viên {0} không hoạt động hoặc không tồn tại DocType: Features Setup,Item Barcode,Mục mã vạch -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,Các biến thể mục {0} cập nhật +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,Các biến thể mục {0} cập nhật DocType: Quality Inspection Reading,Reading 6,Đọc 6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,Mua hóa đơn trước DocType: Address,Shop,Cửa hàng @@ -801,7 +802,7 @@ DocType: Salary Slip,Total in words,Tổng số nói cách DocType: Material Request Item,Lead Time Date,Chì Thời gian ngày apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,là bắt buộc. Có bản ghi Tỷ Giá không được tạo ra cho apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},Hàng # {0}: Hãy xác định Serial No cho mục {1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Đối với những mặt 'gói sản phẩm', Warehouse, Serial No và hàng loạt No sẽ được xem xét từ 'Packing List' bảng. Nếu kho và hàng loạt Không là giống nhau cho tất cả các mặt hàng đóng gói cho các mặt hàng bất kỳ 'gói sản phẩm', những giá trị có thể được nhập vào mục bảng chính, giá trị này sẽ được sao chép vào 'Packing List' bảng." +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.","Đối với những mặt 'gói sản phẩm', Warehouse, Serial No và hàng loạt No sẽ được xem xét từ 'Packing List' bảng. Nếu kho và hàng loạt Không là giống nhau cho tất cả các mặt hàng đóng gói cho các mặt hàng bất kỳ 'gói sản phẩm', những giá trị có thể được nhập vào mục bảng chính, giá trị này sẽ được sao chép vào 'Packing List' bảng." apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,Lô hàng cho khách hàng. DocType: Purchase Invoice Item,Purchase Order Item,Mua hàng mục apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,Thu nhập gián tiếp @@ -822,6 +823,7 @@ DocType: Process Payroll,Select Payroll Year and Month,Chọn Payroll Năm và T apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",Tới các nhóm thích hợp (thường là ứng dụng của Quỹ> Tài sản ngắn hạn> Tài khoản ngân hàng và tạo một tài khoản mới (bằng cách nhấn vào Add Child) của loại "Ngân hàng" DocType: Workstation,Electricity Cost,Chi phí điện DocType: HR Settings,Don't send Employee Birthday Reminders,Không gửi nhân viên sinh Nhắc nhở +,Employee Holiday Attendance,Nhân viên khách sạn Holiday Attendance DocType: Opportunity,Walk In,Trong đi bộ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Cổ Entries DocType: Item,Inspection Criteria,Tiêu chuẩn kiểm tra @@ -844,7 +846,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options,T DocType: Journal Entry Account,Expense Claim,Chi phí bồi thường apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},Số lượng cho {0} DocType: Leave Application,Leave Application,Để lại ứng dụng -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,Công cụ để phân bổ +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,Công cụ để phân bổ DocType: Leave Block List,Leave Block List Dates,Để lại Danh sách Chặn Ngày DocType: Company,If Monthly Budget Exceeded (for expense account),Nếu ngân sách hàng tháng Vượt quá (đối với tài khoản chi phí) DocType: Workstation,Net Hour Rate,Tỷ Hour Net @@ -854,7 +856,7 @@ DocType: Packing Slip Item,Packing Slip Item,Đóng gói trượt mục DocType: POS Profile,Cash/Bank Account,Tài khoản tiền mặt / Ngân hàng apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,Các mục gỡ bỏ không có thay đổi về số lượng hoặc giá trị. DocType: Delivery Note,Delivery To,Để giao hàng -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,Bảng thuộc tính là bắt buộc +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,Bảng thuộc tính là bắt buộc DocType: Production Planning Tool,Get Sales Orders,Nhận hàng đơn đặt hàng apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0} không thể bị âm apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,Giảm giá @@ -918,7 +920,7 @@ DocType: SMS Center,Total Characters,Tổng số nhân vật apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},Vui lòng chọn BOM BOM trong lĩnh vực cho hàng {0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-Mẫu hóa đơn chi tiết DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,Hòa giải thanh toán hóa đơn -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,Đóng góp% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,Đóng góp% DocType: Item,website page link,liên kết trang web DocType: Company,Company registration numbers for your reference. Tax numbers etc.,Số đăng ký công ty để bạn tham khảo. Số thuế vv DocType: Sales Partner,Distributor,Nhà phân phối @@ -960,10 +962,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,UOM chuyển đổi yếu t DocType: Stock Settings,Default Item Group,Mặc định mục Nhóm apps/erpnext/erpnext/config/buying.py +13,Supplier database.,Cơ sở dữ liệu nhà cung cấp. DocType: Account,Balance Sheet,Cân đối kế toán -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',Trung tâm chi phí Đối với mục Item Code ' +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',Trung tâm chi phí Đối với mục Item Code ' DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,Người bán hàng của bạn sẽ nhận được một lời nhắc nhở trong ngày này để liên lạc với khách hàng apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups","Tài khoản có thể tiếp tục được thực hiện theo nhóm, nhưng mục có thể được thực hiện đối với phi Groups" -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,Thuế và các khoản khấu trừ lương khác. +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,Thuế và các khoản khấu trừ lương khác. DocType: Lead,Lead,Lead DocType: Email Digest,Payables,Phải trả DocType: Account,Warehouse,Web App Ghi chú @@ -980,10 +982,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,Chi tiết Thanh to DocType: Global Defaults,Current Fiscal Year,Năm tài chính hiện tại DocType: Global Defaults,Disable Rounded Total,Vô hiệu hóa Tròn Tổng số DocType: Lead,Call,Cuộc gọi -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,'Entries' không thể để trống +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,'Entries' không thể để trống apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},Hàng trùng lặp {0} với cùng {1} ,Trial Balance,Xét xử dư -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,Thiết lập Nhân viên +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,Thiết lập Nhân viên apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid ""","Lưới """ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,Vui lòng chọn tiền tố đầu tiên apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,Nghiên cứu @@ -992,7 +994,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,ID người dùng apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,Xem Ledger apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,Sớm nhất -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group","Một mục Nhóm tồn tại với cùng một tên, hãy thay đổi tên mục hoặc đổi tên nhóm mặt hàng" +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group","Một mục Nhóm tồn tại với cùng một tên, hãy thay đổi tên mục hoặc đổi tên nhóm mặt hàng" DocType: Production Order,Manufacture against Sales Order,Sản xuất với bán hàng đặt hàng apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,Phần còn lại của Thế giới apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,Item {0} không thể có hàng loạt @@ -1017,7 +1019,7 @@ DocType: Purchase Receipt,Rejected Warehouse,Kho từ chối DocType: GL Entry,Against Voucher,Chống lại Voucher DocType: Item,Default Buying Cost Center,Mặc định Trung tâm Chi phí mua apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.","Để tận dụng tốt nhất của ERPNext, chúng tôi khuyên bạn mất một thời gian và xem những đoạn phim được giúp đỡ." -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,Mục {0} phải bán hàng +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,Mục {0} phải bán hàng apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,đến DocType: Item,Lead Time in days,Thời gian đầu trong ngày ,Accounts Payable Summary,Tóm tắt các tài khoản phải trả @@ -1043,7 +1045,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,Nông nghiệp apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,Sản phẩm hoặc dịch vụ của bạn DocType: Mode of Payment,Mode of Payment,Hình thức thanh toán -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,Hình ảnh trang web phải là một tập tin nào hoặc URL của trang web +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,Hình ảnh trang web phải là một tập tin nào hoặc URL của trang web apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,Đây là một nhóm mục gốc và không thể được chỉnh sửa. DocType: Journal Entry Account,Purchase Order,Mua hàng DocType: Warehouse,Warehouse Contact Info,Kho Thông tin liên lạc @@ -1054,7 +1056,7 @@ DocType: Serial No,Serial No Details,Không có chi tiết nối tiếp DocType: Purchase Invoice Item,Item Tax Rate,Mục Thuế suất apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry","Đối với {0}, tài khoản tín dụng chỉ có thể được liên kết chống lại mục nợ khác" apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,Giao hàng Ghi {0} không nộp -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,Mục {0} phải là một mục phụ ký hợp đồng +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,Mục {0} phải là một mục phụ ký hợp đồng apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,Thiết bị vốn apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.","Giá Rule là lần đầu tiên được lựa chọn dựa trên 'Áp dụng trên' lĩnh vực, có thể được Item, mục Nhóm hoặc thương hiệu." DocType: Hub Settings,Seller Website,Người bán website @@ -1063,7 +1065,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,Mục tiêu DocType: Sales Invoice Item,Edit Description,Chỉnh sửa Mô tả apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,Dự kiến giao hàng ngày là ít hơn so với Planned Ngày bắt đầu. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,Cho Nhà cung cấp +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,Cho Nhà cung cấp DocType: Account,Setting Account Type helps in selecting this Account in transactions.,Loại Cài đặt Tài khoản giúp trong việc lựa chọn tài khoản này trong các giao dịch. DocType: Purchase Invoice,Grand Total (Company Currency),Tổng cộng (Công ty tiền tệ) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,Tổng số Outgoing @@ -1115,7 +1117,6 @@ DocType: Authorization Rule,Average Discount,Giảm giá trung bình DocType: Address,Utilities,Tiện ích DocType: Purchase Invoice Item,Accounting,Kế toán DocType: Features Setup,Features Setup,Tính năng cài đặt -DocType: Item,Is Service Item,Là dịch vụ hàng apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,Kỳ ứng dụng không thể có thời gian phân bổ nghỉ bên ngoài DocType: Activity Cost,Projects,Dự án apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,Vui lòng chọn năm tài chính @@ -1136,7 +1137,7 @@ DocType: Item,Maintain Stock,Duy trì Cổ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,Cổ Entries đã tạo ra cho sản xuất theo thứ tự apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,Thay đổi ròng trong Tài sản cố định DocType: Leave Control Panel,Leave blank if considered for all designations,Để trống nếu xem xét tất cả các chỉ định -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Phí của loại 'thực tế' {0} hàng không có thể được bao gồm trong mục Rate +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,Phí của loại 'thực tế' {0} hàng không có thể được bao gồm trong mục Rate apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},Max: {0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,Từ Datetime DocType: Email Digest,For Company,Đối với công ty @@ -1145,8 +1146,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,Địa chỉ Shipping Name apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,Danh mục tài khoản DocType: Material Request,Terms and Conditions Content,Điều khoản và Điều kiện nội dung -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,không có thể lớn hơn 100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,Mục {0} không phải là một cổ phiếu hàng +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,không có thể lớn hơn 100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,Mục {0} không phải là một cổ phiếu hàng DocType: Maintenance Visit,Unscheduled,Đột xuất DocType: Employee,Owned,Sở hữu DocType: Salary Slip Deduction,Depends on Leave Without Pay,Phụ thuộc vào Leave Nếu không phải trả tiền @@ -1168,7 +1169,7 @@ Used for Taxes and Charges","Thuế bảng chi tiết lấy từ chủ hàng là apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,Nhân viên không thể báo cáo với chính mình. DocType: Account,"If the account is frozen, entries are allowed to restricted users.","Nếu tài khoản bị đóng băng, các mục được phép sử dụng hạn chế." DocType: Email Digest,Bank Balance,Ngân hàng Balance -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},Nhập kế toán cho {0}: {1} chỉ có thể được thực hiện bằng tiền tệ: {2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},Nhập kế toán cho {0}: {1} chỉ có thể được thực hiện bằng tiền tệ: {2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,Không có cấu lương cho người lao động tìm thấy {0} và tháng DocType: Job Opening,"Job profile, qualifications required etc.","Hồ sơ công việc, trình độ chuyên môn cần thiết vv" DocType: Journal Entry Account,Account Balance,Số dư tài khoản @@ -1185,7 +1186,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,Phụ hội DocType: Shipping Rule Condition,To Value,Để giá trị gia tăng DocType: Supplier,Stock Manager,Cổ Quản lý apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},Kho nguồn là bắt buộc đối với hàng {0} -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,Đóng gói trượt +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,Đóng gói trượt apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,Thuê văn phòng apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,Cài đặt thiết lập cổng SMS apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,Nhập khẩu thất bại! @@ -1229,7 +1230,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM chi tiết Không DocType: Purchase Invoice,Additional Discount Amount (Company Currency),Thêm GIẢM Số tiền (Công ty tiền tệ) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},Lỗi: {0}> {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,Xin vui lòng tạo tài khoản mới từ mục tài khoản. -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,Bảo trì đăng nhập +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,Bảo trì đăng nhập apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,Khách hàng> Nhóm khách hàng> Lãnh thổ DocType: Sales Invoice Item,Available Batch Qty at Warehouse,Hàng loạt sẵn Qty tại Kho DocType: Time Log Batch Detail,Time Log Batch Detail,Giờ hàng loạt chi tiết @@ -1238,7 +1239,7 @@ DocType: Leave Block List,Block Holidays on important days.,Khối Holidays vào ,Accounts Receivable Summary,Tóm tắt các tài khoản phải thu apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,Hãy thiết lập trường ID người dùng trong một hồ sơ nhân viên để thiết lập nhân viên Role DocType: UOM,UOM Name,Tên UOM -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,Số tiền đóng góp +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,Số tiền đóng góp DocType: Sales Invoice,Shipping Address,Vận chuyển Địa chỉ DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,Công cụ này sẽ giúp bạn cập nhật hoặc ấn định số lượng và giá trị của cổ phiếu trong hệ thống. Nó thường được sử dụng để đồng bộ hóa các giá trị hệ thống và những gì thực sự tồn tại trong kho của bạn. DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,Trong từ sẽ được hiển thị khi bạn lưu Giao hàng tận nơi Lưu ý. @@ -1279,7 +1280,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,Để theo dõi các mục sử dụng mã vạch. Bạn sẽ có thể nhập vào các mục trong giao hàng và hóa đơn bán hàng Lưu ý bằng cách quét mã vạch của sản phẩm. apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,Gửi lại Email Thanh toán DocType: Dependent Task,Dependent Task,Nhiệm vụ phụ thuộc -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},Yếu tố chuyển đổi cho Đơn vị đo mặc định phải là 1 trong hàng {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},Yếu tố chuyển đổi cho Đơn vị đo mặc định phải là 1 trong hàng {0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},Nghỉ phép loại {0} không thể dài hơn {1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,Hãy thử lên kế hoạch hoạt động cho ngày X trước. DocType: HR Settings,Stop Birthday Reminders,Ngừng sinh Nhắc nhở @@ -1289,7 +1290,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0} Xem apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,Thay đổi ròng trong Cash DocType: Salary Structure Deduction,Salary Structure Deduction,Cơ cấu tiền lương trích -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Đơn vị đo {0} đã được nhập vào nhiều hơn một lần trong chuyển đổi yếu tố Bảng +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,Đơn vị đo {0} đã được nhập vào nhiều hơn một lần trong chuyển đổi yếu tố Bảng apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},Yêu cầu thanh toán đã tồn tại {0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,Chi phí của Items Ban hành apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},Số lượng không phải lớn hơn {0} @@ -1318,7 +1319,7 @@ DocType: BOM Item,BOM Item,BOM mục DocType: Appraisal,For Employee,Cho nhân viên apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,Row {0}: Advance chống Nhà cung cấp phải được ghi nợ DocType: Company,Default Values,Giá trị mặc định -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,Row {0}: Số tiền thanh toán không thể phủ định +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,Row {0}: Số tiền thanh toán không thể phủ định DocType: Expense Claim,Total Amount Reimbursed,Tổng số tiền bồi hoàn apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},Chống lại Nhà cung cấp hóa đơn {0} ngày {1} DocType: Customer,Default Price List,Mặc định Giá liệt kê @@ -1346,8 +1347,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,Yê DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM","Thay thế một BOM đặc biệt trong tất cả các BOMs khác, nơi nó được sử dụng. Nó sẽ thay thế các link BOM cũ, cập nhật chi phí và tái sinh ""BOM nổ Item"" bảng theo mới BOM" DocType: Shopping Cart Settings,Enable Shopping Cart,Kích hoạt Giỏ hàng DocType: Employee,Permanent Address,Địa chỉ thường trú -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,Mục {0} phải là một dịch vụ Item. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",Advance thanh toán đối với {0} {1} không thể lớn \ hơn Tổng cộng {2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,Vui lòng chọn mã hàng DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),Giảm Trích Để lại Nếu không phải trả tiền (LWP) @@ -1403,12 +1403,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,Chính apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,Biến thể DocType: Naming Series,Set prefix for numbering series on your transactions,Thiết lập tiền tố cho đánh số hàng loạt các giao dịch của bạn +DocType: Employee Attendance Tool,Employees HTML,Nhân viên HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,Để dừng lại không thể bị hủy bỏ. Tháo nút để hủy bỏ. -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,Mặc định BOM ({0}) phải được hoạt động cho mục này hoặc mẫu của mình +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,Mặc định BOM ({0}) phải được hoạt động cho mục này hoặc mẫu của mình DocType: Employee,Leave Encashed?,Để lại Encashed? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,Cơ hội Từ trường là bắt buộc DocType: Item,Variants,Biến thể -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,Từ mua hóa đơn +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,Từ mua hóa đơn DocType: SMS Center,Send To,Để gửi apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},Không có đủ số dư để lại cho Rời Loại {0} DocType: Payment Reconciliation Payment,Allocated amount,Số lượng phân bổ @@ -1509,7 +1510,7 @@ DocType: Sales Person,Name and Employee ID,Tên và nhân viên ID apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,Do ngày không thể trước khi viết bài ngày DocType: Website Item Group,Website Item Group,Trang web mục Nhóm apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,Nhiệm vụ và thuế -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,Vui lòng nhập ngày tham khảo +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,Vui lòng nhập ngày tham khảo apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,Thanh toán Tài khoản Gateway không được cấu hình apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0} mục thanh toán không thể được lọc bởi {1} DocType: Item Website Specification,Table for Item that will be shown in Web Site,Bảng cho khoản đó sẽ được hiển thị trong trang Web @@ -1530,7 +1531,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,Độ phân giải chi tiết DocType: Quality Inspection Reading,Acceptance Criteria,Các tiêu chí chấp nhận DocType: Item Attribute,Attribute Name,Tên thuộc tính -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},Mục {0} phải bán hàng hoặc dịch vụ trong mục {1} DocType: Item Group,Show In Website,Hiện Trong Website apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,Nhóm DocType: Task,Expected Time (in hours),Thời gian dự kiến (trong giờ) @@ -1562,7 +1562,7 @@ DocType: Shipping Rule Condition,Shipping Amount,Số tiền vận chuyển ,Pending Amount,Số tiền cấp phát DocType: Purchase Invoice Item,Conversion Factor,Yếu tố chuyển đổi DocType: Purchase Order,Delivered,"Nếu được chỉ định, gửi các bản tin sử dụng địa chỉ email này" -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),Thiết lập máy chủ đến cho công việc email id. (Ví dụ như jobs@example.com) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),Thiết lập máy chủ đến cho công việc email id. (Ví dụ như jobs@example.com) DocType: Purchase Receipt,Vehicle Number,Số xe DocType: Purchase Invoice,The date on which recurring invoice will be stop,Ngày mà hóa đơn định kỳ sẽ được dừng lại apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,Tổng số lá được phân bổ {0} không thể ít hơn so với lá đã được phê duyệt {1} cho giai đoạn @@ -1579,7 +1579,7 @@ DocType: HR Settings,HR Settings,Thiết lập nhân sự apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,Chi phí bồi thường đang chờ phê duyệt. Chỉ phê duyệt chi phí có thể cập nhật trạng thái. DocType: Purchase Invoice,Additional Discount Amount,Thêm GIẢM Số tiền DocType: Leave Block List Allow,Leave Block List Allow,Để lại Block List phép -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,Abbr không thể để trống hoặc không gian +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,Abbr không thể để trống hoặc không gian apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,Nhóm Non-Group apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,Thể thao apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,Tổng số thực tế @@ -1603,7 +1603,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},Yếu tố UOM chuyển đổi là cần thiết trong hàng {0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},Ngày giải phóng mặt bằng không có thể trước ngày kiểm tra trong hàng {0} DocType: Salary Slip,Deduction,Khấu trừ -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},Item Giá tăng cho {0} trong Giá liệt {1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},Item Giá tăng cho {0} trong Giá liệt {1} DocType: Address Template,Address Template,Địa chỉ Template apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,Vui lòng nhập Id nhân viên của người bán hàng này DocType: Territory,Classification of Customers by region,Phân loại khách hàng theo vùng @@ -1620,7 +1620,7 @@ DocType: Employee,Date of Birth,Ngày sinh apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,Mục {0} đã được trả lại DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,** ** Năm tài chính đại diện cho một năm tài chính. Tất cả các bút toán và giao dịch lớn khác đang theo dõi chống lại năm tài chính ** **. DocType: Opportunity,Customer / Lead Address,Khách hàng / Chì Địa chỉ -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},Cảnh báo: Giấy chứng nhận SSL không hợp lệ vào luyến {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},Cảnh báo: Giấy chứng nhận SSL không hợp lệ vào luyến {0} DocType: Production Order Operation,Actual Operation Time,Thời gian hoạt động thực tế DocType: Authorization Rule,Applicable To (User),Để áp dụng (Thành viên) DocType: Purchase Taxes and Charges,Deduct,Trích @@ -1637,7 +1637,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,Giao hàng tận nơi chia Lưu ý thành các gói. apps/erpnext/erpnext/hooks.py +69,Shipments,Lô hàng DocType: Purchase Order Item,To be delivered to customer,Sẽ được chuyển giao cho khách hàng -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,Giờ trạng phải Đăng. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,Giờ trạng phải Đăng. apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,{0} nối tiếp Không không thuộc về bất kỳ kho apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,Row # DocType: Purchase Invoice,In Words (Company Currency),Trong từ (Công ty tiền tệ) @@ -1654,7 +1654,7 @@ DocType: Leave Application,Total Leave Days,Để lại tổng số ngày DocType: Email Digest,Note: Email will not be sent to disabled users,Lưu ý: Email sẽ không được gửi đến người khuyết tật apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,Chọn Công ty ... DocType: Leave Control Panel,Leave blank if considered for all departments,Để trống nếu xem xét tất cả các phòng ban -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).","Loại lao động (thường xuyên, hợp đồng, vv tập)." +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).","Loại lao động (thường xuyên, hợp đồng, vv tập)." apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0} là bắt buộc đối với mục {1} DocType: Currency Exchange,From Currency,Từ tệ apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row","Vui lòng chọn Số tiền phân bổ, Loại hóa đơn và hóa đơn số trong ít nhất một hàng" @@ -1673,7 +1673,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,Trong quá trình DocType: Authorization Rule,Itemwise Discount,Itemwise Giảm giá DocType: Purchase Order Item,Reference Document Type,Tài liệu tham chiếu Type -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0} với Sales Order {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0} với Sales Order {1} DocType: Account,Fixed Asset,Tài sản cố định apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,Hàng tồn kho được tuần tự DocType: Activity Type,Default Billing Rate,Mặc định Thanh toán Rate @@ -1683,7 +1683,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,Đặt hàng bán hàng để thanh toán DocType: Expense Claim Detail,Expense Claim Detail,Chi phí bồi thường chi tiết apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,Thời gian Logs tạo: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,Vui lòng chọn đúng tài khoản +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,Vui lòng chọn đúng tài khoản DocType: Item,Weight UOM,Trọng lượng UOM DocType: Employee,Blood Group,Nhóm máu DocType: Purchase Invoice Item,Page Break,Page Break @@ -1718,7 +1718,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},"BOM đệ quy: {0} không thể là cha mẹ, con của {2}" DocType: Production Order Operation,Completed Qty,Số lượng hoàn thành apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry","Đối với {0}, chỉ tài khoản ghi nợ có thể được liên kết chống lại mục tín dụng khác" -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,Danh sách giá {0} bị vô hiệu hóa +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,Danh sách giá {0} bị vô hiệu hóa DocType: Manufacturing Settings,Allow Overtime,Cho phép làm việc ngoài giờ apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0} số Serial yêu cầu cho khoản {1}. Bạn đã cung cấp {2}. DocType: Stock Reconciliation Item,Current Valuation Rate,Hiện tại Rate Định giá @@ -1769,7 +1769,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},Khô apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,Trường hợp số không thể là 0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,Nếu bạn có đội ngũ bán hàng và bán Đối tác (Channel Partners) họ có thể được gắn và duy trì đóng góp của họ trong các hoạt động bán hàng DocType: Item,Show a slideshow at the top of the page,Hiển thị một slideshow ở trên cùng của trang -DocType: Item,"Allow in Sales Order of type ""Service""",Cho phép trong bán hàng đặt hàng của loại "Dịch vụ" apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,Cửa hàng DocType: Time Log,Projects Manager,Quản lý dự án DocType: Serial No,Delivery Time,Thời gian giao hàng @@ -1784,6 +1783,7 @@ DocType: Rename Tool,Rename Tool,Công cụ đổi tên apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,Cập nhật giá DocType: Item Reorder,Item Reorder,Mục Sắp xếp lại apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,Vật liệu chuyển +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},Mục {0} phải là một mục bán hàng tại {1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.","Xác định các hoạt động, chi phí vận hành và cung cấp cho một hoạt động độc đáo không để các hoạt động của bạn." DocType: Purchase Invoice,Price List Currency,Danh sách giá ngoại tệ DocType: Naming Series,User must always select,Người sử dụng phải luôn luôn chọn @@ -1804,7 +1804,7 @@ DocType: Appraisal,Employee,Nhân viên apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,Nhập Email Từ apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,Mời như tài DocType: Features Setup,After Sale Installations,Sau khi gia lắp đặt -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1} được quảng cáo đầy đủ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1} được quảng cáo đầy đủ DocType: Workstation Working Hour,End Time,End Time apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,Điều khoản hợp đồng tiêu chuẩn cho bán hàng hoặc mua hàng. apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,Nhóm theo Phiếu @@ -1830,7 +1830,7 @@ DocType: Upload Attendance,Attendance To Date,Tham gia Đến ngày apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),Thiết lập máy chủ đến cho email bán hàng id. (Ví dụ như sales@example.com) DocType: Warranty Claim,Raised By,Nâng By DocType: Payment Gateway Account,Payment Account,Tài khoản thanh toán -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,Vui lòng ghi rõ Công ty để tiến hành +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,Vui lòng ghi rõ Công ty để tiến hành apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,Thay đổi ròng trong tài khoản phải thu apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,Đền bù Tắt DocType: Quality Inspection Reading,Accepted,Chấp nhận @@ -1842,14 +1842,14 @@ DocType: Shipping Rule,Shipping Rule Label,Quy tắc vận chuyển Label apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,Nguyên liệu thô không thể để trống. apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.","Không thể cập nhật cổ phiếu, hóa đơn chứa chi tiết vận chuyển thả." DocType: Newsletter,Test,K.tra -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'","Như có những giao dịch chứng khoán hiện có cho mặt hàng này, \ bạn không thể thay đổi các giá trị của 'Có tiếp Serial No', 'Có hàng loạt No', 'Liệu Cổ Mã' và 'Phương pháp định giá'" apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,Tạp chí nhanh chóng nhập apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,Bạn không thể thay đổi tỷ lệ nếu HĐQT đã đề cập agianst bất kỳ mục nào DocType: Employee,Previous Work Experience,Kinh nghiệm làm việc trước đây DocType: Stock Entry,For Quantity,Đối với lượng apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},Vui lòng nhập theo kế hoạch Số lượng cho hàng {0} tại hàng {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1} không nộp +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1} không nộp apps/erpnext/erpnext/config/stock.py +18,Requests for items.,Yêu cầu cho các hạng mục. DocType: Production Planning Tool,Separate production order will be created for each finished good item.,Để sản xuất riêng biệt sẽ được tạo ra cho mỗi mục tốt đã hoàn thành. DocType: Purchase Invoice,Terms and Conditions1,Điều khoản và Conditions1 @@ -1874,6 +1874,7 @@ DocType: Notification Control,Expense Claim Approved Message,Thông báo yêu c DocType: Email Digest,How frequently?,Làm thế nào thường xuyên? DocType: Purchase Receipt,Get Current Stock,Nhận chứng khoán hiện tại apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,Cây Bill Vật liệu +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,Đánh dấu hiện tại apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},Bảo trì ngày bắt đầu không thể trước ngày giao hàng cho Serial No {0} DocType: Production Order,Actual End Date,Ngày kết thúc thực tế DocType: Authorization Rule,Applicable To (Role),Để áp dụng (Role) @@ -1888,7 +1889,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,Ngày kết thúc hợp đồng phải lớn hơn ngày của Tham gia DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,Một nhà phân phối của bên thứ ba / đại lý / hoa hồng đại lý / chi nhánh / đại lý bán lẻ chuyên bán các sản phẩm công ty cho một hoa hồng. DocType: Customer Group,Has Child Node,Có Node trẻ em -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0} chống Mua hàng {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0} chống Mua hàng {1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Nhập các thông số url tĩnh ở đây (Ví dụ người gửi = ERPNext, tên người dùng = ERPNext, mật khẩu = 1234, vv)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1} không có trong bất kỳ năm tài chính đang hoạt động. Để biết thêm chi tiết kiểm tra {2}. apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,Đây là một trang web ví dụ tự động tạo ra từ ERPNext @@ -1936,7 +1937,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. Thêm hoặc trích lại: Cho dù bạn muốn thêm hoặc khấu trừ thuế." DocType: Purchase Receipt Item,Recd Quantity,Recd Số lượng apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},Không thể sản xuất nhiều hàng {0} là số lượng bán hàng đặt hàng {1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,Cổ nhập {0} không được đệ trình +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,Cổ nhập {0} không được đệ trình DocType: Payment Reconciliation,Bank / Cash Account,Tài khoản ngân hàng Tiền mặt / DocType: Tax Rule,Billing City,Thanh toán Thành phố DocType: Global Defaults,Hide Currency Symbol,Ẩn tệ Ký hiệu @@ -1962,7 +1963,7 @@ DocType: Salary Structure,Total Earning,Tổng số Lợi nhuận DocType: Purchase Receipt,Time at which materials were received,Thời gian mà các tài liệu đã nhận được apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,Địa chỉ của tôi DocType: Stock Ledger Entry,Outgoing Rate,Tỷ Outgoing -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,Chủ chi nhánh tổ chức. +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,Chủ chi nhánh tổ chức. apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,hoặc DocType: Sales Order,Billing Status,Tình trạng thanh toán apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,Chi phí tiện ích @@ -2000,7 +2001,7 @@ DocType: Bin,Reserved Quantity,Ltd Số lượng DocType: Landed Cost Voucher,Purchase Receipt Items,Mua hóa đơn mục apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,Các hình thức tùy biến DocType: Account,Income Account,Tài khoản thu nhập -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,Giao hàng +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,Giao hàng DocType: Stock Reconciliation Item,Current Qty,Số lượng hiện tại DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section","Xem ""Tỷ lệ Of Vật liệu Dựa trên"" trong mục Chi phí" DocType: Appraisal Goal,Key Responsibility Area,Diện tích Trách nhiệm chính @@ -2012,9 +2013,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,Ch DocType: Notification Control,Purchase Order Message,Thông báo Mua hàng DocType: Tax Rule,Shipping Country,Vận Chuyển Country DocType: Upload Attendance,Upload HTML,Tải lên HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","Tổng số trước ({0}) chống lại thứ tự {1} có thể không được lớn hơn \ - Grand Total ({2})" DocType: Employee,Relieving Date,Giảm ngày apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.","Quy tắc định giá được thực hiện để ghi đè lên Giá liệt kê / xác định tỷ lệ phần trăm giảm giá, dựa trên một số tiêu chí." DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,Kho chỉ có thể được thay đổi thông qua chứng khoán Entry / Giao hàng tận nơi Lưu ý / mua hóa đơn @@ -2024,8 +2022,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,Thu apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.","Nếu chọn giá Rule được làm cho 'giá', nó sẽ ghi đè lên giá List. Giá giá Rule là giá cuối cùng, do đó, không giảm giá hơn nữa nên được áp dụng. Do đó, trong các giao dịch như bán hàng đặt hàng, đặt hàng mua vv, nó sẽ được lấy trong trường 'Giá', chứ không phải là lĩnh vực 'Giá Giá'." apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,Theo dõi Dẫn theo ngành Type. DocType: Item Supplier,Item Supplier,Mục Nhà cung cấp -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,Vui lòng nhập Item Code để có được hàng loạt không -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},Vui lòng chọn một giá trị cho {0} quotation_to {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,Vui lòng nhập Item Code để có được hàng loạt không +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},Vui lòng chọn một giá trị cho {0} quotation_to {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,Tất cả các địa chỉ. DocType: Company,Stock Settings,Thiết lập chứng khoán apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company","Sáp nhập là chỉ có thể nếu tính sau là như nhau trong cả hai hồ sơ. Là Group, Loại Root, Công ty" @@ -2048,7 +2046,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,Số séc DocType: Payment Tool Detail,Payment Tool Detail,Công cụ thanh toán chi tiết ,Sales Browser,Doanh số bán hàng của trình duyệt DocType: Journal Entry,Total Credit,Tổng số tín dụng -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},Cảnh báo: {0} # Một {1} tồn tại với mục cổ phiếu {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},Cảnh báo: {0} # Một {1} tồn tại với mục cổ phiếu {2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,địa phương apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),Cho vay trước (tài sản) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,Con nợ @@ -2068,8 +2066,8 @@ DocType: Price List,Price List Master,Giá Danh sách Thầy DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,Tất cả mọi giao dịch bán hàng có thể được gắn với nhiều ** ** Người bán hàng để bạn có thể thiết lập và giám sát các mục tiêu. ,S.O. No.,SO số DocType: Production Order Operation,Make Time Log,Hãy Giờ -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,Hãy thiết lập số lượng đặt hàng -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},Hãy tạo khách hàng từ chì {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,Hãy thiết lập số lượng đặt hàng +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},Hãy tạo khách hàng từ chì {0} DocType: Price List,Applicable for Countries,Áp dụng đối với các nước apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,Máy tính apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,Đây là một nhóm khách hàng gốc và không thể được chỉnh sửa. @@ -2117,7 +2115,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),Thanh DocType: Payment Reconciliation Invoice,Outstanding Amount,Số tiền nợ DocType: Project Task,Working,Làm việc DocType: Stock Ledger Entry,Stock Queue (FIFO),Cổ phiếu xếp hàng (FIFO) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,Vui lòng chọn Thời gian Logs. +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,Vui lòng chọn Thời gian Logs. apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0} không thuộc về Công ty {1} DocType: Account,Round Off,Làm Tròn Số ,Requested Qty,Số lượng yêu cầu @@ -2155,7 +2153,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,Được viết liên quan apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,Nhập kế toán cho Stock DocType: Sales Invoice,Sales Team1,Team1 bán hàng -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,Mục {0} không tồn tại +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,Mục {0} không tồn tại DocType: Sales Invoice,Customer Address,Địa chỉ khách hàng DocType: Payment Request,Recipient and Message,Người nhận và tin nhắn DocType: Purchase Invoice,Apply Additional Discount On,Áp dụng khác Giảm Ngày @@ -2174,7 +2172,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,Mute Email apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco","Thực phẩm, đồ uống và thuốc lá" apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL hoặc BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},Chỉ có thể thực hiện thanh toán đối với unbilled {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},Chỉ có thể thực hiện thanh toán đối với unbilled {0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,Tỷ lệ hoa hồng không có thể lớn hơn 100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,Tối thiểu hàng tồn kho Cấp DocType: Stock Entry,Subcontract,Cho thầu lại @@ -2192,9 +2190,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,Phần m apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,Màu DocType: Maintenance Visit,Scheduled,Dự kiến apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle",Vui lòng chọn mục nơi "Là Cổ Item" là "Không" và "Có Sales Item" là "Có" và không có Bundle sản phẩm khác +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),Tổng số trước ({0}) chống lại thứ tự {1} không thể lớn hơn Grand Total ({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,Chọn phân phối không đồng đều hàng tháng để phân phối các mục tiêu ở tháng. DocType: Purchase Invoice Item,Valuation Rate,Tỷ lệ định giá -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,Danh sách giá ngoại tệ không được chọn +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,Danh sách giá ngoại tệ không được chọn apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,Mục Row {0}: Mua Receipt {1} không tồn tại trên bảng 'Mua Biên lai' apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},Nhân viên {0} đã áp dụng cho {1} {2} giữa và {3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,Dự án Ngày bắt đầu @@ -2206,6 +2205,7 @@ DocType: Quality Inspection,Inspection Type,Loại kiểm tra apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},Vui lòng chọn {0} DocType: C-Form,C-Form No,C-Mẫu Không DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,Attendance đánh dấu apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,Nhà nghiên cứu apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,Xin vui lòng lưu bản tin trước khi gửi apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,Tên hoặc Email là bắt buộc @@ -2231,7 +2231,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,Xác nh DocType: Payment Gateway,Gateway,Cổng vào apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,Nhà cung cấp> Nhà cung cấp Loại apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,Vui lòng nhập ngày giảm. -apps/erpnext/erpnext/controllers/trends.py +137,Amt,Amt +apps/erpnext/erpnext/controllers/trends.py +138,Amt,Amt apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,Để lại chỉ ứng dụng với tình trạng 'chấp nhận' có thể được gửi apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,Địa chỉ Tiêu đề là bắt buộc. DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,Nhập tên của chiến dịch nếu nguồn gốc của cuộc điều tra là chiến dịch @@ -2246,10 +2246,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,Chấp nhận kho DocType: Bank Reconciliation Detail,Posting Date,Báo cáo công đoàn DocType: Item,Valuation Method,Phương pháp định giá apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},Không tìm thấy tỷ giá hối đoái cho {0} đến {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,Đánh dấu Nửa ngày DocType: Sales Invoice,Sales Team,Đội ngũ bán hàng apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,Trùng lặp mục DocType: Serial No,Under Warranty,Theo Bảo hành -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[Lỗi] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[Lỗi] DocType: Sales Order,In Words will be visible once you save the Sales Order.,Trong từ sẽ được hiển thị khi bạn lưu các thứ tự bán hàng. ,Employee Birthday,Nhân viên sinh nhật apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,Vốn đầu tư mạo hiểm @@ -2272,6 +2273,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,Trung tâm chi phí với các giao dịch hiện có không thể chuyển đổi sang nhóm DocType: Account,Depreciation,Khấu hao apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),Nhà cung cấp (s) +DocType: Employee Attendance Tool,Employee Attendance Tool,Nhân viên Công cụ Attendance DocType: Supplier,Credit Limit,Hạn chế tín dụng apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,Chọn loại giao dịch DocType: GL Entry,Voucher No,Không chứng từ @@ -2298,7 +2300,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,Tài khoản gốc không thể bị xóa ,Is Primary Address,Là Tiểu học Địa chỉ DocType: Production Order,Work-in-Progress Warehouse,Làm việc-trong-Tiến kho -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},Tài liệu tham khảo # {0} ngày {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},Tài liệu tham khảo # {0} ngày {1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,Quản lý địa chỉ DocType: Pricing Rule,Item Code,Mã hàng DocType: Production Planning Tool,Create Production Orders,Tạo đơn đặt hàng sản xuất @@ -2325,7 +2327,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,Ngân hàng hòa giải apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,Nhận thông tin cập nhật apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,Yêu cầu tài liệu {0} được huỷ bỏ hoặc dừng lại apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,Thêm một vài biên bản lấy mẫu -apps/erpnext/erpnext/config/hr.py +210,Leave Management,Để quản lý +apps/erpnext/erpnext/config/hr.py +225,Leave Management,Để quản lý apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,Nhóm bởi tài khoản DocType: Sales Order,Fully Delivered,Giao đầy đủ DocType: Lead,Lower Income,Thu nhập thấp @@ -2340,6 +2342,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date','Từ ngày' phải trước 'Đến ngày' ,Stock Projected Qty,Dự kiến cổ phiếu Số lượng apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},Khách hàng {0} không thuộc về dự án {1} +DocType: Employee Attendance Tool,Marked Attendance HTML,Attendance đánh dấu HTML DocType: Sales Order,Customer's Purchase Order,Mua hàng của khách hàng DocType: Warranty Claim,From Company,Từ Công ty apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,Giá trị hoặc lượng @@ -2404,6 +2407,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,Chuyển khoản apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,Vui lòng chọn tài khoản ngân hàng DocType: Newsletter,Create and Send Newsletters,Tạo và Gửi Tin +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,Kiểm tra tất cả DocType: Sales Order,Recurring Order,Đặt hàng theo định kỳ DocType: Company,Default Income Account,Tài khoản thu nhập mặc định apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,Nhóm khách hàng / khách hàng @@ -2435,6 +2439,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,Return Against Mua hó DocType: Item,Warranty Period (in days),Thời gian bảo hành (trong ngày) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,Tiền thuần từ hoạt động apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,ví dụ như thuế GTGT +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,Attendance Mark Employee trong Bulk apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,Khoản 4 DocType: Journal Entry Account,Journal Entry Account,Tài khoản nhập Journal DocType: Shopping Cart Settings,Quotation Series,Báo giá dòng @@ -2580,14 +2585,14 @@ DocType: Task,Actual Start Date (via Time Logs),Ngày bắt đầu thực tế ( DocType: Stock Reconciliation Item,Before reconciliation,Trước khi hòa giải apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},Để {0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),Thuế và lệ phí nhập (Công ty tiền tệ) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,"Mục thuế Row {0} phải có tài khoản của các loại thuế, thu nhập hoặc chi phí hoặc có thu phí" +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,"Mục thuế Row {0} phải có tài khoản của các loại thuế, thu nhập hoặc chi phí hoặc có thu phí" DocType: Sales Order,Partly Billed,Được quảng cáo một phần DocType: Item,Default BOM,Mặc định HĐQT apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,Hãy gõ lại tên công ty để xác nhận apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,Tổng số nợ Amt DocType: Time Log Batch,Total Hours,Tổng số giờ DocType: Journal Entry,Printing Settings,In ấn Cài đặt -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},Tổng Nợ phải bằng Tổng số tín dụng. Sự khác biệt là {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},Tổng Nợ phải bằng Tổng số tín dụng. Sự khác biệt là {0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,Ô tô apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,Giao hàng tận nơi từ Lưu ý DocType: Time Log,From Time,Thời gian từ @@ -2634,7 +2639,7 @@ DocType: Purchase Invoice Item,Image View,Xem hình ảnh DocType: Issue,Opening Time,Thời gian mở apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,From và To ngày cần apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,Chứng khoán và Sở Giao dịch hàng hóa -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Mặc định Đơn vị đo lường cho Variant '{0}' phải giống như trong Template '{1}' +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',Mặc định Đơn vị đo lường cho Variant '{0}' phải giống như trong Template '{1}' DocType: Shipping Rule,Calculate Based On,Dựa trên tính toán DocType: Delivery Note Item,From Warehouse,Từ kho DocType: Purchase Taxes and Charges,Valuation and Total,Định giá và Tổng @@ -2656,7 +2661,7 @@ DocType: Leave Application,Follow via Email,Theo qua email DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,Số tiền thuế Sau khi giảm giá tiền apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,Tài khoản con tồn tại cho tài khoản này. Bạn không thể xóa tài khoản này. apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,Hoặc mục tiêu SL hoặc số lượng mục tiêu là bắt buộc -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},Không có Hội đồng quản trị mặc định tồn tại cho mục {0} +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},Không có Hội đồng quản trị mặc định tồn tại cho mục {0} apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,Vui lòng chọn ngày đầu tiên viết bài apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,Khai mạc ngày nên trước ngày kết thúc DocType: Leave Control Panel,Carry Forward,Carry Forward @@ -2734,7 +2739,7 @@ DocType: Leave Type,Is Encash,Là thâu tiền bạc DocType: Purchase Invoice,Mobile No,Điện thoại di động Không DocType: Payment Tool,Make Journal Entry,Hãy Journal nhập DocType: Leave Allocation,New Leaves Allocated,Lá mới phân bổ -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,Dữ liệu dự án khôn ngoan là không có sẵn cho báo giá +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,Dữ liệu dự án khôn ngoan là không có sẵn cho báo giá DocType: Project,Expected End Date,Dự kiến kết thúc ngày DocType: Appraisal Template,Appraisal Template Title,Thẩm định Mẫu Tiêu đề apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,Thương mại @@ -2782,6 +2787,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No.,B apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,Vui lòng xác định DocType: Offer Letter,Awaiting Response,Đang chờ Response apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,Ở trên +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,Giờ đã được Billed DocType: Salary Slip,Earning & Deduction,Thu nhập và khoản giảm trừ apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,Tài khoản {0} không thể là một Tập đoàn apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,Tùy chọn. Thiết lập này sẽ được sử dụng để lọc các giao dịch khác nhau. @@ -2852,14 +2858,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,Xóa thành công tất cả các giao dịch liên quan đến công ty này! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,Như trên ngày apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,Quản chế -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,Kho mặc định là bắt buộc đối với cổ phiếu Item. +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,Kho mặc định là bắt buộc đối với cổ phiếu Item. apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},Thanh toán tiền lương trong tháng {0} và năm {1} DocType: Stock Settings,Auto insert Price List rate if missing,Auto chèn tỷ Bảng giá nếu mất tích apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,Tổng số tiền trả ,Transferred Qty,Số lượng chuyển giao apps/erpnext/erpnext/config/learn.py +11,Navigating,Duyệt apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,Hoạch định -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,Giờ làm hàng loạt +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,Giờ làm hàng loạt apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,Ban hành DocType: Project,Total Billing Amount (via Time Logs),Tổng số tiền Thanh toán (thông qua Time Logs) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,Chúng tôi bán sản phẩm này @@ -2867,7 +2873,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,Số lượng phải lớn hơn 0 DocType: Journal Entry,Cash Entry,Cash nhập DocType: Sales Partner,Contact Desc,Liên hệ với quyết định -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.","Loại lá như bình thường, bệnh vv" +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.","Loại lá như bình thường, bệnh vv" DocType: Email Digest,Send regular summary reports via Email.,Gửi báo cáo tóm tắt thường xuyên qua Email. DocType: Brand,Item Manager,Mã Manager DocType: Cost Center,Add rows to set annual budgets on Accounts.,Thêm hàng để thiết lập ngân sách hàng năm trên tài khoản. @@ -2882,7 +2888,7 @@ DocType: GL Entry,Party Type,Loại bên apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,Nguyên liệu không thể giống nhau như mục chính DocType: Item Attribute Value,Abbreviation,Tên viết tắt apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,Không authroized từ {0} vượt quá giới hạn -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,Lương mẫu chủ. +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,Lương mẫu chủ. DocType: Leave Type,Max Days Leave Allowed,Để lại tối đa ngày phép apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,Đặt Rule thuế cho giỏ hàng DocType: Payment Tool,Set Matching Amounts,Đặt khoản Matching @@ -2895,7 +2901,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,Giá đ DocType: Stock Settings,Role Allowed to edit frozen stock,Vai trò được phép chỉnh sửa cổ đông lạnh ,Territory Target Variance Item Group-Wise,Lãnh thổ mục tiêu phương sai mục Nhóm-Wise apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,Tất cả các nhóm khách hàng -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} là bắt buộc. Có thể đổi tiền kỷ lục không được tạo ra cho {1} đến {2}. +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0} là bắt buộc. Có thể đổi tiền kỷ lục không được tạo ra cho {1} đến {2}. apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,Template thuế là bắt buộc. apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,Tài khoản {0}: Cha mẹ tài khoản {1} không tồn tại DocType: Purchase Invoice Item,Price List Rate (Company Currency),Danh sách giá Tỷ lệ (Công ty tiền tệ) @@ -2915,8 +2921,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,Mục khôn ngoan chi t ,Item-wise Price List Rate,Item-khôn ngoan Giá liệt kê Tỷ giá apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,Nhà cung cấp báo giá DocType: Quotation,In Words will be visible once you save the Quotation.,Trong từ sẽ được hiển thị khi bạn lưu các báo giá. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1} là dừng lại -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},Mã vạch {0} đã được sử dụng trong mục {1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1} là dừng lại +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},Mã vạch {0} đã được sử dụng trong mục {1} DocType: Lead,Add to calendar on this date,Thêm vào lịch trong ngày này apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,Quy tắc để thêm chi phí vận chuyển. apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,sự kiện sắp tới @@ -2943,8 +2949,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling,Ti apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,Ít nhất một kho là bắt buộc DocType: Serial No,Out of Warranty,Ra khỏi bảo hành DocType: BOM Replace Tool,Replace,Thay thế -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0} với Sales Invoice {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,Vui lòng nhập mặc định Đơn vị đo +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0} với Sales Invoice {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,Vui lòng nhập mặc định Đơn vị đo DocType: Purchase Invoice Item,Project Name,Tên dự án DocType: Supplier,Mention if non-standard receivable account,Đề cập đến nếu tài khoản phải thu phi tiêu chuẩn DocType: Journal Entry Account,If Income or Expense,Nếu thu nhập hoặc chi phí @@ -2969,7 +2975,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,Năm tài chính: {0} không tồn tại DocType: Currency Exchange,To Currency,Để tệ DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,Cho phép người sử dụng sau phê duyệt ứng dụng Để lại cho khối ngày. -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,Các loại chi phí yêu cầu bồi thường. +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,Các loại chi phí yêu cầu bồi thường. DocType: Item,Taxes,Thuế apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,Paid và Không Delivered DocType: Project,Default Cost Center,Trung tâm chi phí mặc định @@ -2999,7 +3005,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},Row # {0}: Serial No {1} không phù hợp với {2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,Để lại bình thường DocType: Batch,Batch ID,ID hàng loạt -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},Lưu ý: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},Lưu ý: {0} ,Delivery Note Trends,Giao hàng Ghi Xu hướng apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,Tóm tắt tuần này apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0} phải là một mục Mua hoặc Chi ký hợp đồng trong hàng {1} @@ -3039,6 +3045,7 @@ DocType: Project Task,Pending Review,Đang chờ xem xét apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,Nhấn vào đây để thanh toán DocType: Task,Total Expense Claim (via Expense Claim),Tổng số yêu cầu bồi thường chi phí (thông qua Chi Claim) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,Id của khách hàng +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,Đánh dấu Absent apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,Giờ phải lớn hơn From Time DocType: Journal Entry Account,Exchange Rate,Tỷ giá apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,Bán hàng đặt hàng {0} không nộp @@ -3086,7 +3093,7 @@ DocType: Item Group,Default Expense Account,Tài khoản mặc định chi phí DocType: Employee,Notice (days),Thông báo (ngày) DocType: Tax Rule,Sales Tax Template,Template Thuế bán hàng DocType: Employee,Encashment Date,Séc ngày -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Chống Voucher Loại phải là một trong lý Mua hàng, mua hóa đơn hoặc Journal nhập" +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry","Chống Voucher Loại phải là một trong lý Mua hàng, mua hóa đơn hoặc Journal nhập" DocType: Account,Stock Adjustment,Điều chỉnh chứng khoán apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},Mặc định Hoạt động Chi phí tồn tại cho Type Hoạt động - {0} DocType: Production Order,Planned Operating Cost,Chi phí điều hành kế hoạch @@ -3140,6 +3147,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,Viết Tắt nhập DocType: BOM,Rate Of Materials Based On,Tỷ lệ Of Vật liệu Dựa trên apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,Hỗ trợ Analtyics +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,Bỏ chọn tất cả apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},Công ty là mất tích trong kho {0} DocType: POS Profile,Terms and Conditions,Điều khoản/Điều kiện thi hành apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},Đến ngày phải được trong năm tài chính. Giả sử Đến ngày = {0} @@ -3161,7 +3169,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'","Thiết lập năm tài chính này như mặc định, nhấp vào 'Set as Default'" apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),Thiết lập máy chủ cho đến hỗ trợ email id. (Ví dụ như support@example.com) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,Thiếu Qty -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,Mục biến {0} tồn tại với cùng một thuộc tính +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,Mục biến {0} tồn tại với cùng một thuộc tính DocType: Salary Slip,Salary Slip,Lương trượt apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,Phải điền mục 'Đến ngày' DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.","Tạo phiếu đóng gói các gói sẽ được chuyển giao. Được sử dụng để thông báo cho số gói phần mềm, nội dung gói và trọng lượng của nó." @@ -3209,7 +3217,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,Xem ch DocType: Item Attribute Value,Attribute Value,Attribute Value apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}","Id email phải là duy nhất, đã tồn tại cho {0}" ,Itemwise Recommended Reorder Level,Itemwise Đê Sắp xếp lại Cấp -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,Vui lòng chọn {0} đầu tiên +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,Vui lòng chọn {0} đầu tiên DocType: Features Setup,To get Item Group in details table,Để có được mục Nhóm trong bảng chi tiết apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,{0} lô hàng {1} đã hết hạn. DocType: Sales Invoice,Commission,Huê hồng @@ -3264,7 +3272,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,Nhận chứng từ xuất sắc DocType: Warranty Claim,Resolved By,Giải quyết bởi DocType: Appraisal,Start Date,Ngày bắt đầu -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,Phân bổ lá trong một thời gian. +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,Phân bổ lá trong một thời gian. apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,Chi phiếu và tiền gửi không đúng xóa apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,Nhấn vào đây để xác minh apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,Tài khoản {0}: Bạn không thể chỉ định chính nó như là tài khoản phụ huynh @@ -3284,7 +3292,7 @@ DocType: Employee,Educational Qualification,Trình độ chuyên môn giáo dụ DocType: Workstation,Operating Costs,Chi phí điều hành DocType: Employee Leave Approver,Employee Leave Approver,Nhân viên Để lại phê duyệt apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0} đã được thêm thành công vào danh sách tin của chúng tôi. -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},Row {0}: Một mục Sắp xếp lại đã tồn tại cho nhà kho này {1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},Row {0}: Một mục Sắp xếp lại đã tồn tại cho nhà kho này {1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.","Không thể khai báo như bị mất, bởi vì báo giá đã được thực hiện." DocType: Purchase Taxes and Charges Template,Purchase Master Manager,Thạc sĩ Quản lý mua hàng apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,Đặt hàng sản xuất {0} phải được gửi @@ -3308,7 +3316,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,Hóa đơn bán hàng {0} đã được gửi apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,Ngày kết thúc DocType: Purchase Invoice Item,Amount (Company Currency),Số tiền (Công ty tiền tệ) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,Đơn vị tổ chức (bộ phận) làm chủ. +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,Đơn vị tổ chức (bộ phận) làm chủ. apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,Vui lòng nhập nos điện thoại di động hợp lệ DocType: Budget Detail,Budget Detail,Ngân sách chi tiết apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,Vui lòng nhập tin nhắn trước khi gửi @@ -3324,13 +3332,13 @@ DocType: Purchase Receipt Item,Received and Accepted,Nhận được và chấp ,Serial No Service Contract Expiry,Không nối tiếp Hợp đồng dịch vụ hết hạn DocType: Item,Unit of Measure Conversion,Đơn vị chuyển đổi đo lường apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,Nhân viên không thể thay đổi -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,Bạn không thể tín dụng và ghi nợ cùng một tài khoản cùng một lúc +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,Bạn không thể tín dụng và ghi nợ cùng một tài khoản cùng một lúc DocType: Naming Series,Help HTML,Giúp đỡ HTML apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},Tổng số weightage giao nên được 100%. Nó là {0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},Trợ cấp cho quá {0} vượt qua cho mục {1} DocType: Address,Name of person or organization that this address belongs to.,Tên của người hoặc tổ chức địa chỉ này thuộc về. apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,Các nhà cung cấp của bạn -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,Không thể thiết lập như Lost như bán hàng đặt hàng được thực hiện. +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,Không thể thiết lập như Lost như bán hàng đặt hàng được thực hiện. apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,Một cấu trúc lương {0} là hoạt động cho nhân viên {1}. Hãy làm cho tình trạng của nó 'hoạt động' để tiến hành. DocType: Purchase Invoice,Contact,Liên hệ apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,Nhận được từ @@ -3340,11 +3348,11 @@ DocType: Item,Has Serial No,Có Serial No DocType: Employee,Date of Issue,Ngày phát hành apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}: Từ {0} cho {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},Row # {0}: Thiết lập Nhà cung cấp cho mặt hàng {1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,Hình ảnh trang web {0} đính kèm vào khoản {1} không thể được tìm thấy +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,Hình ảnh trang web {0} đính kèm vào khoản {1} không thể được tìm thấy DocType: Issue,Content Type,Loại nội dung apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,Máy tính DocType: Item,List this Item in multiple groups on the website.,Danh sách sản phẩm này trong nhiều nhóm trên trang web. -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,Vui lòng kiểm tra chọn ngoại tệ nhiều để cho phép các tài khoản với loại tiền tệ khác +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,Vui lòng kiểm tra chọn ngoại tệ nhiều để cho phép các tài khoản với loại tiền tệ khác apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,Item: {0} không tồn tại trong hệ thống apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,Bạn không được phép để thiết lập giá trị đông lạnh DocType: Payment Reconciliation,Get Unreconciled Entries,Nhận Unreconciled Entries @@ -3354,14 +3362,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,Nó làm gì DocType: Delivery Note,To Warehouse,Để kho apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},Tài khoản {0} đã được nhập vào nhiều hơn một lần cho năm tài chính {1} ,Average Commission Rate,Ủy ban trung bình Tỷ giá -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,'Có số serial' không thể 'Có' cho hàng hóa không nhập kho +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,'Có số serial' không thể 'Có' cho hàng hóa không nhập kho apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,Tham dự không thể được đánh dấu cho những ngày tương lai DocType: Pricing Rule,Pricing Rule Help,Quy tắc định giá giúp DocType: Purchase Taxes and Charges,Account Head,Trưởng tài khoản apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,Cập nhật chi phí bổ sung để tính toán chi phí hạ cánh của các mặt hàng apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,Hệ thống điện DocType: Stock Entry,Total Value Difference (Out - In),Tổng giá trị khác biệt (Out - In) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,Row {0}: Exchange Rate là bắt buộc +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,Row {0}: Exchange Rate là bắt buộc apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},ID người dùng không thiết lập cho nhân viên {0} DocType: Stock Entry,Default Source Warehouse,Mặc định Nguồn Kho DocType: Item,Customer Code,Mã số khách hàng @@ -3380,15 +3388,15 @@ DocType: Notification Control,Sales Invoice Message,Hóa đơn bán hàng nhắn apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,Đóng tài khoản {0} phải được loại trách nhiệm pháp lý / Vốn chủ sở hữu DocType: Authorization Rule,Based On,Dựa trên DocType: Sales Order Item,Ordered Qty,Số lượng đặt hàng -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,Mục {0} bị vô hiệu hóa +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,Mục {0} bị vô hiệu hóa DocType: Stock Settings,Stock Frozen Upto,"Cổ đông lạnh HCM," apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},Từ giai đoạn và thời gian Để ngày bắt buộc cho kỳ {0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,Hoạt động dự án / nhiệm vụ. -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,Tạo ra lương Trượt +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,Tạo ra lương Trượt apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}","Mua phải được kiểm tra, nếu áp dụng Đối với được chọn là {0}" apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,Giảm giá phải được ít hơn 100 DocType: Purchase Invoice,Write Off Amount (Company Currency),Viết Tắt Số tiền (Công ty tiền tệ) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,Row # {0}: Hãy thiết lập số lượng đặt hàng +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,Row # {0}: Hãy thiết lập số lượng đặt hàng DocType: Landed Cost Voucher,Landed Cost Voucher,Voucher Chi phí hạ cánh apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},Hãy đặt {0} DocType: Purchase Invoice,Repeat on Day of Month,Lặp lại vào ngày của tháng @@ -3441,7 +3449,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,Mặc định Work In Progress Kho apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,Thiết lập mặc định cho các giao dịch kế toán. apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,Dự kiến ngày không thể trước khi vật liệu Yêu cầu ngày -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,Mục {0} phải là một mục bán hàng +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,Mục {0} phải là một mục bán hàng DocType: Naming Series,Update Series Number,Cập nhật Dòng Số DocType: Account,Equity,Vốn chủ sở hữu DocType: Sales Order,Printing Details,Các chi tiết in ấn @@ -3493,7 +3501,7 @@ DocType: Task,Review Date,Ngày đánh giá DocType: Purchase Invoice,Advance Payments,Thanh toán trước DocType: Purchase Taxes and Charges,On Net Total,Trên Net Tổng số apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,Kho hàng mục tiêu trong {0} phải được giống như sản xuất theo thứ tự -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,Không được phép sử dụng công cụ thanh toán +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,Không được phép sử dụng công cụ thanh toán apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,'Địa chỉ Email thông báo' không chỉ rõ cho kỳ hạn %s apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,Tiền tệ không thể thay đổi sau khi thực hiện các mục sử dụng một số loại tiền tệ khác DocType: Company,Round Off Account,Vòng Tắt tài khoản @@ -3516,7 +3524,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,Số lượng mặt hàng thu được sau khi sản xuất / đóng gói lại từ số lượng nhất định của nguyên liệu DocType: Payment Reconciliation,Receivable / Payable Account,Thu / Account Payable DocType: Delivery Note Item,Against Sales Order Item,Chống bán hàng đặt hàng -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},Hãy xác định thuộc tính Giá trị thuộc tính {0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},Hãy xác định thuộc tính Giá trị thuộc tính {0} DocType: Item,Default Warehouse,Kho mặc định DocType: Task,Actual End Date (via Time Logs),Thực tế End Date (qua Thời gian Logs) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},Ngân sách không thể được chỉ định đối với tài khoản Nhóm {0} @@ -3541,10 +3549,10 @@ DocType: Lead,Blog Subscriber,Blog thuê bao apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,Tạo các quy tắc để hạn chế các giao dịch dựa trên giá trị. DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day","Nếu được chọn, Tổng số không. của ngày làm việc sẽ bao gồm ngày lễ, và điều này sẽ làm giảm giá trị của Lương trung bình mỗi ngày" DocType: Purchase Invoice,Total Advance,Tổng số trước -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,Chế biến lương +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,Chế biến lương DocType: Opportunity Item,Basic Rate,Tỷ lệ cơ bản DocType: GL Entry,Credit Amount,Số tiền tín dụng -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,Thiết lập như Lost +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,Thiết lập như Lost apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,Thanh toán Phiếu tiếp nhận DocType: Supplier,Credit Days Based On,Days Credit Dựa Trên DocType: Tax Rule,Tax Rule,Rule thuế @@ -3574,7 +3582,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,Số lượng chấp nhận apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}: {1} không tồn tại apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,Hóa đơn tăng cho khách hàng. apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,Id dự án -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Row Không {0}: Số tiền có thể không được lớn hơn khi chờ Số tiền yêu cầu bồi thường đối với Chi {1}. Trong khi chờ Số tiền là {2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},Row Không {0}: Số tiền có thể không được lớn hơn khi chờ Số tiền yêu cầu bồi thường đối với Chi {1}. Trong khi chờ Số tiền là {2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0} thuê bao thêm DocType: Maintenance Schedule,Schedule,Lập lịch quét DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""","Xác định ngân sách cho Trung tâm chi phí này. Để thiết lập hành động ngân sách, xem "Công ty List"" @@ -3635,19 +3643,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS hồ sơ DocType: Payment Gateway Account,Payment URL Message,Thanh toán URL nhắn apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.","Tính mùa vụ để thiết lập ngân sách, mục tiêu, vv" -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Row {0}: Số tiền thanh toán không thể lớn hơn số tiền nợ +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,Row {0}: Số tiền thanh toán không thể lớn hơn số tiền nợ apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,Tổng số chưa được thanh toán -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,Giờ không phải là lập hoá đơn -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants","Mục {0} là một mẫu, xin vui lòng chọn một trong các biến thể của nó" +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,Giờ không phải là lập hoá đơn +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants","Mục {0} là một mẫu, xin vui lòng chọn một trong các biến thể của nó" apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,Người mua apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,Trả tiền net không thể phủ định -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,Vui lòng nhập các Against Vouchers tay +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,Vui lòng nhập các Against Vouchers tay DocType: SMS Settings,Static Parameters,Các thông số tĩnh DocType: Purchase Order,Advance Paid,Trước Paid DocType: Item,Item Tax,Mục thuế apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,Chất liệu để Nhà cung cấp apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,Tiêu thụ đặc biệt Invoice DocType: Expense Claim,Employees Email Id,Nhân viên Email Id +DocType: Employee Attendance Tool,Marked Attendance,Attendance đánh dấu apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,Nợ ngắn hạn apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,Gửi tin nhắn SMS hàng loạt địa chỉ liên lạc của bạn DocType: Purchase Taxes and Charges,Consider Tax or Charge for,Xem xét thuế hoặc phí cho @@ -3670,7 +3679,7 @@ DocType: Item Attribute,Numeric Values,Giá trị Số apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,Logo đính kèm DocType: Customer,Commission Rate,Tỷ lệ hoa hồng apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,Hãy Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,Ngăn chặn các ứng dụng của bộ phận nghỉ. +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,Ngăn chặn các ứng dụng của bộ phận nghỉ. apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,Giỏ hàng rỗng DocType: Production Order,Actual Operating Cost,Thực tế Chi phí điều hành apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,Gốc không thể được chỉnh sửa. @@ -3689,7 +3698,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,Tự động tạo Material Request nếu số lượng giảm xuống dưới mức này ,Item-wise Purchase Register,Item-khôn ngoan mua Đăng ký DocType: Batch,Expiry Date,Ngày hết hiệu lực -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Để thiết lập mức độ sắp xếp lại, mục phải là một khoản mua hoặc sản xuất hàng" +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item","Để thiết lập mức độ sắp xếp lại, mục phải là một khoản mua hoặc sản xuất hàng" ,Supplier Addresses and Contacts,Địa chỉ nhà cung cấp và hệ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,Vui lòng chọn mục đầu tiên apps/erpnext/erpnext/config/projects.py +18,Project master.,Chủ dự án. diff --git a/erpnext/translations/zh-cn.csv b/erpnext/translations/zh-cn.csv index bc50407f69..9d69263569 100644 --- a/erpnext/translations/zh-cn.csv +++ b/erpnext/translations/zh-cn.csv @@ -164,13 +164,13 @@ DocType: Journal Entry Account,Credit in Company Currency,信用在公司货币 DocType: Delivery Note,Installation Status,安装状态 apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},已接受+已拒绝的数量必须等于条目{0}的已接收数量 DocType: Item,Supply Raw Materials for Purchase,供应原料采购 -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,品目{0}必须是采购品目 +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,品目{0}必须是采购品目 DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records",下载此模板,填写相应的数据后上传。所有的日期和员工出勤记录将显示在模板里。 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,品目{0}处于非活动或寿命终止状态 DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,销售发票提交后将会更新。 -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included",要包括税款,行{0}项率,税收行{1}也必须包括在内 -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,人力资源模块的设置 +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included",要包括税款,行{0}项率,税收行{1}也必须包括在内 +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,人力资源模块的设置 DocType: SMS Center,SMS Center,短信中心 DocType: BOM Replace Tool,New BOM,新建物料清单 apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,批处理的时间记录进行计费。 @@ -198,7 +198,7 @@ DocType: Offer Letter,Select Terms and Conditions,选择条款和条件 DocType: Production Planning Tool,Sales Orders,销售订单 DocType: Purchase Taxes and Charges,Valuation,估值 ,Purchase Order Trends,采购订单趋势 -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,调配一年的假期。 +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,调配一年的假期。 DocType: Earning Type,Earning Type,盈余类型 DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,禁用容量规划和时间跟踪 DocType: Bank Reconciliation,Bank Account,银行帐户 @@ -236,7 +236,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,品目网站规格 DocType: Payment Tool,Reference No,参考编号 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,已禁止请假 -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},品目{0}已经到达寿命终止日期{1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},品目{0}已经到达寿命终止日期{1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,全年 DocType: Stock Reconciliation Item,Stock Reconciliation Item,库存盘点品目 DocType: Stock Entry,Sales Invoice No,销售发票编号 @@ -248,7 +248,7 @@ DocType: Item,Minimum Order Qty,最小起订量 DocType: Pricing Rule,Supplier Type,供应商类型 DocType: Item,Publish in Hub,在发布中心 ,Terretory,区域 -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,品目{0}已取消 +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,品目{0}已取消 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,物料申请 DocType: Bank Reconciliation,Update Clearance Date,更新清拆日期 DocType: Item,Purchase Details,购买详情 @@ -260,11 +260,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,拒绝数量 DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order",字段在送货单,报价单,销售发票,销售订单可用 DocType: SMS Settings,SMS Sender Name,短信发送者名称 DocType: Contact,Is Primary Contact,是否主要联络人 +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,时间日志已被成批的计费 DocType: Notification Control,Notification Control,通知控制 DocType: Lead,Suggestions,建议 DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,为此区域设置品目群组特定的预算。你还可以设置“分布”,为预算启动季节性。 apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},请输入父帐户组仓库{0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},对支付{0} {1}不能大于未偿还{2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},对支付{0} {1}不能大于未偿还{2} DocType: Supplier,Address HTML,地址HTML DocType: Lead,Mobile No.,手机号码 DocType: Maintenance Schedule,Generate Schedule,生成时间表 @@ -281,7 +282,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,与Hub同步 apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,密码错误 DocType: Item,Variant Of,变体自 -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,品目{0}必须是服务品目 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',完成数量不能大于“生产数量” DocType: Period Closing Voucher,Closing Account Head,结算帐户头 DocType: Employee,External Work History,外部就职经历 @@ -293,10 +293,10 @@ DocType: Newsletter,Newsletter,通讯 DocType: Stock Settings,Notify by Email on creation of automatic Material Request,自动创建物料申请时通过邮件通知 DocType: Journal Entry,Multi Currency,多币种 DocType: Payment Reconciliation Invoice,Invoice Type,发票类型 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,送货单 +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,送货单 apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,建立税 apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,付款项被修改,你把它之后。请重新拉。 -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0}输入两次税项 +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0}输入两次税项 apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,本周和待活动总结 DocType: Workstation,Rent Cost,租金成本 apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,请选择年份和月份 @@ -307,7 +307,7 @@ DocType: Shipping Rule,Valid for Countries,有效的国家 DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.",所有和进口相关的字段,例如货币,汇率,进口总额,进口总计等,都可以在采购收据,供应商报价,采购发票,采购订单等系统里面找到。 apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,这个项目是一个模板,并且可以在交易不能使用。项目的属性将被复制到变型,除非“不复制”设置 apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,总订货考虑 -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).",雇员指派(例如总裁,总监等) 。 +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).",雇员指派(例如总裁,总监等) 。 apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,请输入“重复上月的一天'字段值 DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,客户货币转换为客户的基础货币后的单价 DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet",可在物料清单,送货单,采购发票,生产订单,采购订单,采购收据,销售发票,销售订单,仓储记录,时间表里面找到 @@ -355,7 +355,7 @@ DocType: Workstation,Consumable Cost,耗材成本 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',{0} {1}必须有“假期审批人”的角色 DocType: Purchase Receipt,Vehicle Date,车日期 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,医药 -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,原因丢失 +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,原因丢失 apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},工作站在以下假期关闭:{0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,机会 DocType: Employee,Single,单身 @@ -383,14 +383,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,渠道合作伙伴 DocType: Account,Old Parent,旧上级 DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,自定义作为邮件一部分的简介文本,每个邮件的简介文本是独立的。 +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),不包括符号(例如$) DocType: Sales Taxes and Charges Template,Sales Master Manager,销售经理大师 apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,所有生产流程的全局设置。 DocType: Accounts Settings,Accounts Frozen Upto,账户被冻结到...为止 DocType: SMS Log,Sent On,发送日期 -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,属性{0}多次选择在属性表 +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,属性{0}多次选择在属性表 DocType: HR Settings,Employee record is created using selected field. ,使用所选字段创建员工记录。 DocType: Sales Order,Not Applicable,不适用 -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,假期大师 +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,假期大师 DocType: Material Request Item,Required Date,所需时间 DocType: Delivery Note,Billing Address,帐单地址 apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,请输入产品编号。 @@ -426,7 +427,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,请重新拉。 DocType: Production Order,Additional Operating Cost,额外的运营成本 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,化妆品 -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items",若要合并,以下属性必须为这两个项目是相同的 +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items",若要合并,以下属性必须为这两个项目是相同的 DocType: Shipping Rule,Net Weight,净重 DocType: Employee,Emergency Phone,紧急电话 ,Serial No Warranty Expiry,序列号/保修到期 @@ -481,17 +482,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,结算和交货状态 apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,回头客 DocType: Leave Control Panel,Allocate,调配 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,销售退货 +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,销售退货 DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,选择该生产订单的源销售订单。 DocType: Item,Delivered by Supplier (Drop Ship),由供应商交货(直接发运) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,工资构成部分。 +apps/erpnext/erpnext/config/hr.py +128,Salary components.,工资构成部分。 apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,潜在客户数据库。 DocType: Authorization Rule,Customer or Item,客户或项目 apps/erpnext/erpnext/config/crm.py +17,Customer database.,客户数据库。 DocType: Quotation,Quotation To,报价对象 DocType: Lead,Middle Income,中等收入 apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),开幕(CR ) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,测度项目的默认单位{0}不能直接改变,因为你已经做了一些交易(S)与其他计量单位。您将需要创建一个新的项目,以使用不同的默认计量单位。 +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,测度项目的默认单位{0}不能直接改变,因为你已经做了一些交易(S)与其他计量单位。您将需要创建一个新的项目,以使用不同的默认计量单位。 apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,调配数量不能为负 DocType: Purchase Order Item,Billed Amt,已开票金额 DocType: Warehouse,A logical Warehouse against which stock entries are made.,创建库存记录所依赖的逻辑仓库。 @@ -510,14 +511,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,销售税费 DocType: Employee,Organization Profile,组织简介 apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,通过设置>编号系列请设置编号系列考勤 DocType: Employee,Reason for Resignation,原因辞职 -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,绩效考核模板。 +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,绩效考核模板。 DocType: Payment Reconciliation,Invoice/Journal Entry Details,发票/日记帐分录详细信息 apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0}“ {1}”不属于{2}财年 DocType: Buying Settings,Settings for Buying Module,采购模块的设置 apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,请第一次进入购买收据 DocType: Buying Settings,Supplier Naming By,供应商命名方式 DocType: Activity Type,Default Costing Rate,默认成本核算率 -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,维护计划 +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,维护计划 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.",然后定价规则将基于客户,客户组,地区,供应商,供应商类型,活动,销售合作伙伴等条件过滤。 apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,在库存净变动 DocType: Employee,Passport Number,护照号码 @@ -556,7 +557,7 @@ DocType: Purchase Invoice,Quarterly,季度 DocType: Selling Settings,Delivery Note Required,送货单是必须项 DocType: Sales Order Item,Basic Rate (Company Currency),基础利率(公司货币) DocType: Manufacturing Settings,Backflush Raw Materials Based On,反吹为原材料的开 -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,请输入项目细节 +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,请输入项目细节 DocType: Purchase Receipt,Other Details,其他详细信息 DocType: Account,Accounts,会计 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,市场营销 @@ -569,7 +570,7 @@ DocType: Employee,Provide email id registered in company,提供的电子邮件ID DocType: Hub Settings,Seller City,卖家城市 DocType: Email Digest,Next email will be sent on:,下次邮件发送时间: DocType: Offer Letter Term,Offer Letter Term,报价函期限 -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,项目已变种。 +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,项目已变种。 apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,品目{0}未找到 DocType: Bin,Stock Value,库存值 apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,树类型 @@ -577,7 +578,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,每单位消耗数量 DocType: Serial No,Warranty Expiry Date,保修到期日 DocType: Material Request Item,Quantity and Warehouse,数量和仓库 DocType: Sales Invoice,Commission Rate (%),佣金率(%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry",凭证类型必须是销售订单,销售发票或日记帐分录之一 +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry",凭证类型必须是销售订单,销售发票或日记帐分录之一 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,航天 DocType: Journal Entry,Credit Card Entry,信用卡分录 apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,任务主题 @@ -656,10 +657,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,负债 apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,制裁金额不能大于索赔额行{0}。 DocType: Company,Default Cost of Goods Sold Account,销货账户的默认成本 -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,价格列表没有选择 +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,价格列表没有选择 DocType: Employee,Family Background,家庭背景 DocType: Process Payroll,Send Email,发送电子邮件 -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},警告:无效的附件{0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},警告:无效的附件{0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,无此权限 DocType: Company,Default Bank Account,默认银行账户 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first",要根据党的筛选,选择党第一类型 @@ -687,7 +688,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,来 DocType: Features Setup,"To enable ""Point of Sale"" features",为了使“销售点”的特点 DocType: Bin,Moving Average Rate,移动平均价格 DocType: Production Planning Tool,Select Items,选择品目 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0}对日期为{2}的账单{1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0}对日期为{2}的账单{1} DocType: Maintenance Visit,Completion Status,完成状态 DocType: Sales Invoice Item,Target Warehouse,目标仓库 DocType: Item,Allow over delivery or receipt upto this percent,允许在交付或接收高达百分之这 @@ -720,7 +721,7 @@ DocType: Pricing Rule,Price or Discount,价格或折扣 DocType: Sales Team,Incentives,奖励 DocType: SMS Log,Requested Numbers,请求号码 apps/erpnext/erpnext/config/hr.py +38,Performance appraisal.,绩效考核。 -DocType: Sales Invoice Item,Stock Details,股票详细信息 +DocType: Sales Invoice Item,Stock Details,库存详细信息 apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +29,Project Value,项目价值 apps/erpnext/erpnext/config/selling.py +304,Point-of-Sale,销售点 apps/erpnext/erpnext/accounts/doctype/account/account.py +115,"Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'",账户余额已设置为'贷方',不能设置为'借方' @@ -747,7 +748,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,货 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},找不到时隙在未来{0}天操作{1} DocType: Production Order,Plan material for sub-assemblies,计划材料为子组件 apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM{0}处于非活动状态 -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,请选择文档类型第一 +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,请选择文档类型第一 apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,转到车 apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,取消此上门保养之前请先取消物料访问{0} DocType: Salary Slip,Leave Encashment Amount,假期已使用量 @@ -765,7 +766,7 @@ DocType: Purchase Receipt,Range,范围 DocType: Supplier,Default Payable Accounts,默认应付账户(多个) apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,雇员{0}非活动或不存在 DocType: Features Setup,Item Barcode,品目条码 -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,品目变种{0}已更新 +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,品目变种{0}已更新 DocType: Quality Inspection Reading,Reading 6,阅读6 DocType: Purchase Invoice Advance,Purchase Invoice Advance,购买发票提前 DocType: Address,Shop,商店 @@ -788,7 +789,7 @@ DocType: Salary Slip,Total in words,总字 DocType: Material Request Item,Lead Time Date,交货时间日期 apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,是强制性的。也许外币兑换记录没有创建 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},行#{0}:请注明序号为项目{1} -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.",对于“产品包”的物品,仓库,序列号和批号将被从“装箱单”表考虑。如果仓库和批次号是相同的任何“产品包”项目的所有包装物品,这些值可以在主项表中输入,值将被复制到“装箱单”表。 +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.",对于“产品包”的物品,仓库,序列号和批号将被从“装箱单”表考虑。如果仓库和批次号是相同的任何“产品包”项目的所有包装物品,这些值可以在主项表中输入,值将被复制到“装箱单”表。 apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,向客户发货。 DocType: Purchase Invoice Item,Purchase Order Item,采购订单项目 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,间接收益 @@ -809,8 +810,9 @@ DocType: Process Payroll,Select Payroll Year and Month,选择薪资年和月 apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",转到相应的组(通常资金运用>流动资产>银行帐户,并创建一个新帐户(通过点击添加类型的儿童),“银行” DocType: Workstation,Electricity Cost,电力成本 DocType: HR Settings,Don't send Employee Birthday Reminders,不要发送员工生日提醒 +,Employee Holiday Attendance,员工假日出勤 DocType: Opportunity,Walk In,主动上门 -apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Stock条目 +apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,库存条目 DocType: Item,Inspection Criteria,检验标准 apps/erpnext/erpnext/config/accounts.py +111,Tree of finanial Cost Centers.,树finanial成本中心。 apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +12,Transfered,转移 @@ -831,7 +833,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options, DocType: Journal Entry Account,Expense Claim,报销 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},{0}数量 DocType: Leave Application,Leave Application,假期申请 -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,假期调配工具 +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,假期调配工具 DocType: Leave Block List,Leave Block List Dates,禁离日列表日期 DocType: Company,If Monthly Budget Exceeded (for expense account),如果每月超出预算(用于报销) DocType: Workstation,Net Hour Rate,净小时价格 @@ -841,7 +843,7 @@ DocType: Packing Slip Item,Packing Slip Item,装箱单项目 DocType: POS Profile,Cash/Bank Account,现金/银行账户 apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,删除的项目在数量或价值没有变化。 DocType: Delivery Note,Delivery To,交货对象 -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,属性表是强制性的 +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,属性表是强制性的 DocType: Production Planning Tool,Get Sales Orders,获取销售订单 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0}不能为负 apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,折扣 @@ -864,7 +866,7 @@ apps/erpnext/erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py +28,Acc apps/erpnext/erpnext/config/stock.py +131,"Attributes for Item Variants. e.g Size, Color etc.",品目变体的属性。如大小,颜色等。 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_calendar.js +39,WIP Warehouse,在制品仓库 apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +194,Serial No {0} is under maintenance contract upto {1},序列号{0}截至至{1}之前在年度保养合同内。 -DocType: BOM Operation,Operation,手术 +DocType: BOM Operation,Operation,操作 DocType: Lead,Organization Name,组织名称 DocType: Tax Rule,Shipping State,运输状态 apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +61,Item must be added using 'Get Items from Purchase Receipts' button,品目必须要由“从采购收据获取品目”添加 @@ -905,7 +907,7 @@ DocType: SMS Center,Total Characters,总字符 apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},请BOM字段中选择BOM的项目{0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-形式发票详细信息 DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,付款发票对账 -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,贡献% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,贡献% DocType: Item,website page link,网站页面链接 DocType: Company,Company registration numbers for your reference. Tax numbers etc.,公司注册号码,供大家参考。税务号码等 DocType: Sales Partner,Distributor,经销商 @@ -947,10 +949,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,计量单位换算系数 DocType: Stock Settings,Default Item Group,默认品目群组 apps/erpnext/erpnext/config/buying.py +13,Supplier database.,供应商数据库。 DocType: Account,Balance Sheet,资产负债表 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',成本中心:品目代码‘ +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',成本中心:品目代码‘ DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,您的销售人员将在此日期收到联系客户的提醒 apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups",进一步帐户可以根据组进行,但条目可针对非组进行 -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,税项及其他扣款。 +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,税项及其他扣款。 DocType: Lead,Lead,线索 DocType: Email Digest,Payables,应付账款 DocType: Account,Warehouse,仓库 @@ -967,10 +969,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,未核销付款详 DocType: Global Defaults,Current Fiscal Year,当前财年 DocType: Global Defaults,Disable Rounded Total,禁用总计化整 DocType: Lead,Call,通话 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,“分录”不能为空 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,“分录”不能为空 apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},重复的行{0}同{1} ,Trial Balance,试算表 -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,建立职工 +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,建立职工 apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid """,网格“ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,请选择前缀第一 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,研究 @@ -979,7 +981,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,用户ID apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,查看总帐 apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,最早 -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group",同名品目群组已存在,请修改品目名或群组名 +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group",同名品目群组已存在,请修改品目名或群组名 DocType: Production Order,Manufacture against Sales Order,按销售订单生产 apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,世界其他地区 apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,物件{0}不能有批次 @@ -1004,7 +1006,7 @@ DocType: Purchase Receipt,Rejected Warehouse,拒绝仓库 DocType: GL Entry,Against Voucher,对凭证 DocType: Item,Default Buying Cost Center,默认采购成本中心 apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.",为了获得最好ERPNext,我们建议您花一些时间和观看这些帮助视频。 -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,品目{0}必须是销售品目 +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,品目{0}必须是销售品目 apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,至 DocType: Item,Lead Time in days,在天交货期 ,Accounts Payable Summary,应付帐款摘要 @@ -1030,7 +1032,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,农业 apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,您的产品或服务 DocType: Mode of Payment,Mode of Payment,付款方式 -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,网站形象应该是一个公共文件或网站网址 +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,网站形象应该是一个公共文件或网站网址 apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,请先输入项目 DocType: Journal Entry Account,Purchase Order,采购订单 DocType: Warehouse,Warehouse Contact Info,仓库联系方式 @@ -1041,7 +1043,7 @@ DocType: Serial No,Serial No Details,序列号详情 DocType: Purchase Invoice Item,Item Tax Rate,品目税率 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry",对于{0},贷方分录只能选择贷方账户 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,送货单{0}未提交 -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,品目{0}必须是外包品目 +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,品目{0}必须是外包品目 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,资本设备 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.",定价规则是第一选择是基于“应用在”字段,可以是项目,项目组或品牌。 DocType: Hub Settings,Seller Website,卖家网站 @@ -1050,7 +1052,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,目标 DocType: Sales Invoice Item,Edit Description,编辑说明 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,预计交付日期比计划开始日期较小。 -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,对供应商 +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,对供应商 DocType: Account,Setting Account Type helps in selecting this Account in transactions.,设置帐户类型有助于在交易中选择该帐户。 DocType: Purchase Invoice,Grand Total (Company Currency),总计(公司货币) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,即将离任的总 @@ -1102,7 +1104,6 @@ DocType: Authorization Rule,Average Discount,平均折扣 DocType: Address,Utilities,公用事业 DocType: Purchase Invoice Item,Accounting,会计 DocType: Features Setup,Features Setup,功能设置 -DocType: Item,Is Service Item,是否服务品目 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,申请期间不能请假外分配周期 DocType: Activity Cost,Projects,项目 apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,请选择会计年度 @@ -1119,11 +1120,11 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +35,'Expected Start Date' can DocType: Holiday List,Holidays,假期 DocType: Sales Order Item,Planned Quantity,计划数量 DocType: Purchase Invoice Item,Item Tax Amount,品目税额 -DocType: Item,Maintain Stock,维持股票 -apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,生产订单已创建Stock条目 +DocType: Item,Maintain Stock,库存维护 +apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,生产订单已创建库存条目 apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,在固定资产净变动 DocType: Leave Control Panel,Leave blank if considered for all designations,如果针对所有 职位请留空 -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,行{0}中的收取类型“实际”不能有“品目税率” +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,行{0}中的收取类型“实际”不能有“品目税率” apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},最大值:{0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,起始时间日期 DocType: Email Digest,For Company,对公司 @@ -1132,8 +1133,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,送货地址姓名 apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,科目表 DocType: Material Request,Terms and Conditions Content,条款和条件内容 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,不能大于100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,品目{0}不是库存品目 +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,不能大于100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,品目{0}不是库存品目 DocType: Maintenance Visit,Unscheduled,计划外 DocType: Employee,Owned,资 DocType: Salary Slip Deduction,Depends on Leave Without Pay,依赖于无薪休假 @@ -1154,7 +1155,7 @@ Used for Taxes and Charges",从物件大师取得税项详细信息表,嵌入 apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,雇员不能向自己报告。 DocType: Account,"If the account is frozen, entries are allowed to restricted users.",如果科目被冻结,则只有特定用户才能创建分录。 DocType: Email Digest,Bank Balance,银行存款余额 -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},会计分录为{0}:{1}只能在货币做:{2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},会计分录为{0}:{1}只能在货币做:{2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,发现员工{0},而该月没有活动的薪酬结构 DocType: Job Opening,"Job profile, qualifications required etc.",工作概况,要求的学历等。 DocType: Journal Entry Account,Account Balance,账户余额 @@ -1171,7 +1172,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,半成品 DocType: Shipping Rule Condition,To Value,To值 DocType: Supplier,Stock Manager,库存管理 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},行{0}中源仓库为必须项 -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,装箱单 +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,装箱单 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,办公室租金 apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,短信网关的设置 apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,导入失败! @@ -1215,7 +1216,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM详情编号 DocType: Purchase Invoice,Additional Discount Amount (Company Currency),额外的优惠金额(公司货币) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},错误: {0} > {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,请从科目表创建新帐户。 -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,维护访问 +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,维护访问 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,客户>客户群组>地区 DocType: Sales Invoice Item,Available Batch Qty at Warehouse,可用的批次数量在仓库 DocType: Time Log Batch Detail,Time Log Batch Detail,时间日志批量详情 @@ -1224,7 +1225,7 @@ DocType: Leave Block List,Block Holidays on important days.,禁止重要日子 ,Accounts Receivable Summary,应收账款汇总 apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,请在员工记录设置员工角色设置用户ID字段 DocType: UOM,UOM Name,计量单位名称 -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,贡献金额 +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,贡献金额 DocType: Sales Invoice,Shipping Address,送货地址 DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,此工具可帮助您更新或修复系统中的库存数量和价值。它通常被用于同步系统值和实际存在于您的仓库。 DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,大写金额将在送货单保存后显示。 @@ -1265,7 +1266,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,要使用条形码跟踪项目。您将能够通过扫描物品条码,进入交货单和销售发票的项目。 apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,重新发送付款电子邮件 DocType: Dependent Task,Dependent Task,相关任务 -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},行{0}中默认计量单位的转换系数必须是1 +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},行{0}中默认计量单位的转换系数必须是1 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},类型为{0}的假期不能长于{1}天 DocType: Manufacturing Settings,Try planning operations for X days in advance.,尝试规划X天行动提前。 DocType: HR Settings,Stop Birthday Reminders,停止生日提醒 @@ -1275,7 +1276,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0}查看 apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,现金净变动 DocType: Salary Structure Deduction,Salary Structure Deduction,薪酬结构扣款 -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,计量单位{0}已经在换算系数表内 +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,计量单位{0}已经在换算系数表内 apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},付款申请已经存在{0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,已发料品目成本 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},数量不能超过{0} @@ -1304,7 +1305,7 @@ DocType: BOM Item,BOM Item,BOM品目 DocType: Appraisal,For Employee,对员工 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,行{0}:提前对供应商必须扣除 DocType: Company,Default Values,默认值 -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,行{0}:付款金额不能为负 +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,行{0}:付款金额不能为负 DocType: Expense Claim,Total Amount Reimbursed,报销金额合计 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},对日期为{1}的供应商发票{0} DocType: Customer,Default Price List,默认价格表 @@ -1332,8 +1333,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,针 DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM",在它使用的所有其他材料明细表替换特定的BOM。它将取代旧的BOM链接,更新成本和再生“BOM爆炸物品”表按照新的BOM DocType: Shopping Cart Settings,Enable Shopping Cart,启用购物车 DocType: Employee,Permanent Address,永久地址 -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,品目{0}必须是服务品目 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",推动打击{0} {1}不能大于付出\超过总计{2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,请选择商品代码 DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),减少停薪留职扣款(LWP) @@ -1389,12 +1389,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,主 apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,变体 DocType: Naming Series,Set prefix for numbering series on your transactions,为交易设置编号系列的前缀 +DocType: Employee Attendance Tool,Employees HTML,HTML员工 apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,已停止的订单无法取消,请先点击“重新开始” -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,默认BOM({0})必须是活动的这个项目或者其模板 +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,默认BOM({0})必须是活动的这个项目或者其模板 DocType: Employee,Leave Encashed?,假期已使用? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,从机会是必选项 DocType: Item,Variants,变种 -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,创建采购订单 +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,创建采购订单 DocType: SMS Center,Send To,发送到 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},假期类型{0}的余额不足了 DocType: Payment Reconciliation Payment,Allocated amount,分配量 @@ -1495,7 +1496,7 @@ DocType: Sales Person,Name and Employee ID,姓名和雇员ID apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,到期日不能前于过账日期 DocType: Website Item Group,Website Item Group,网站物件组 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,关税与税项 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,参考日期请输入 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,参考日期请输入 apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,支付网关帐户未配置 apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0}付款项不能由{1}过滤 DocType: Item Website Specification,Table for Item that will be shown in Web Site,将在网站显示的物件表 @@ -1516,7 +1517,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,详细解析 DocType: Quality Inspection Reading,Acceptance Criteria,验收标准 DocType: Item Attribute,Attribute Name,属性名称 -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},{1}中的品目{0}必须是销售或服务品目 DocType: Item Group,Show In Website,在网站上显示 apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,组 DocType: Task,Expected Time (in hours),预期时间(以小时计) @@ -1548,7 +1548,7 @@ DocType: Shipping Rule Condition,Shipping Amount,发货数量 ,Pending Amount,待审核金额 DocType: Purchase Invoice Item,Conversion Factor,转换系数 DocType: Purchase Order,Delivered,已交付 -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),设置接收简历的电子邮件地址 。 (例如jobs@example.com ) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),设置接收简历的电子邮件地址 。 (例如jobs@example.com ) DocType: Purchase Receipt,Vehicle Number,车号 DocType: Purchase Invoice,The date on which recurring invoice will be stop,经常性发票终止日期 apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,共分配叶{0}不能小于已经批准叶{1}期间 @@ -1565,7 +1565,7 @@ DocType: HR Settings,HR Settings,人力资源设置 apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,报销正在等待批准。只有开支审批人才能更改其状态。 DocType: Purchase Invoice,Additional Discount Amount,额外的折扣金额 DocType: Leave Block List Allow,Leave Block List Allow,例外用户 -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,缩写不能为空或空格 +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,缩写不能为空或空格 apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,集团以非组 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,体育 apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,实际总 @@ -1589,7 +1589,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},行{0}计量单位换算系数是必须项 apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},行{0}中清拆日期不能在支票日期前 DocType: Salary Slip,Deduction,扣款 -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},加入项目价格为{0}价格表{1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},加入项目价格为{0}价格表{1} DocType: Address Template,Address Template,地址模板 apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,请输入这个销售人员的员工标识 DocType: Territory,Classification of Customers by region,客户按区域分类 @@ -1606,7 +1606,7 @@ DocType: Employee,Date of Birth,出生日期 apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,品目{0}已被退回 DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,**财年**表示财政年度。所有的会计分录和其他重大交易将根据**财年**跟踪。 DocType: Opportunity,Customer / Lead Address,客户/潜在客户地址 -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},警告:附件无效的SSL证书{0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},警告:附件无效的SSL证书{0} DocType: Production Order Operation,Actual Operation Time,实际操作时间 DocType: Authorization Rule,Applicable To (User),适用于(用户) DocType: Purchase Taxes and Charges,Deduct,扣款 @@ -1623,7 +1623,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,分裂送货单成包。 apps/erpnext/erpnext/hooks.py +69,Shipments,发货 DocType: Purchase Order Item,To be delivered to customer,要传送给客户 -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,时间日志状态必须被提交。 +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,时间日志状态必须被提交。 apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,序列号{0}不属于任何仓库 apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,行# DocType: Purchase Invoice,In Words (Company Currency),大写金额(公司货币) @@ -1640,7 +1640,7 @@ DocType: Leave Application,Total Leave Days,总休假天数 DocType: Email Digest,Note: Email will not be sent to disabled users,注意:邮件不会发送给已禁用用户 apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,选择公司... DocType: Leave Control Panel,Leave blank if considered for all departments,如果针对所有部门请留空 -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).",就业(永久,合同,实习生等)的类型。 +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).",就业(永久,合同,实习生等)的类型。 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},品目{1}必须有{0} DocType: Currency Exchange,From Currency,源货币 apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row",请ATLEAST一行选择分配金额,发票类型和发票号码 @@ -1659,7 +1659,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,进行中 DocType: Authorization Rule,Itemwise Discount,品目特定的折扣 DocType: Purchase Order Item,Reference Document Type,参考文档类型 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0}不允许销售订单{1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0}不允许销售订单{1} DocType: Account,Fixed Asset,固定资产 apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,序列化库存 DocType: Activity Type,Default Billing Rate,默认计费率 @@ -1669,7 +1669,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,销售订单到付款 DocType: Expense Claim Detail,Expense Claim Detail,报销详情 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,时间日志创建: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,请选择正确的帐户 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,请选择正确的帐户 DocType: Item,Weight UOM,重量计量单位 DocType: Employee,Blood Group,血型 DocType: Purchase Invoice Item,Page Break,分页符 @@ -1679,7 +1679,7 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Purchase Invoice Item,Qty,数量 DocType: Fiscal Year,Companies,企业 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +24,Electronics,电子 -DocType: Stock Settings,Raise Material Request when stock reaches re-order level,提高材料时,申请股票达到再订购水平 +DocType: Stock Settings,Raise Material Request when stock reaches re-order level,当库存达到再订购点时提出物料请求 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +56,Full-time,全职 DocType: Purchase Invoice,Contact Details,联系人详情 DocType: C-Form,Received Date,收到日期 @@ -1704,7 +1704,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM {0}不能是{2}的上级或下级 DocType: Production Order Operation,Completed Qty,已完成数量 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry",对于{0},借方分录只能选择借方账户 -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,价格表{0}被禁用 +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,价格表{0}被禁用 DocType: Manufacturing Settings,Allow Overtime,允许加班 apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,品目{1}需要{0}的序列号。您已提供{2}。 DocType: Stock Reconciliation Item,Current Valuation Rate,目前的估值价格 @@ -1755,7 +1755,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},没 apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,箱号不能为0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,如果你有销售团队和销售合作伙伴(渠道合作伙伴),你可以对其进行标记,同时管理他们的贡献。 DocType: Item,Show a slideshow at the top of the page,在页面顶部显示幻灯片 -DocType: Item,"Allow in Sales Order of type ""Service""",允许在销售订单式“服务” apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,仓库 DocType: Time Log,Projects Manager,项目经理 DocType: Serial No,Delivery Time,交货时间 @@ -1770,6 +1769,7 @@ DocType: Rename Tool,Rename Tool,重命名工具 apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,更新成本 DocType: Item Reorder,Item Reorder,品目重新排序 apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,转印材料 +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},项{0}必须在销售物料{1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.",设定流程,操作成本及向流程指定唯一的流程编号 DocType: Purchase Invoice,Price List Currency,价格表货币 DocType: Naming Series,User must always select,用户必须始终选择 @@ -1790,7 +1790,7 @@ DocType: Appraisal,Employee,雇员 apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,导入电子邮件发件人 apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,邀请成为用户 DocType: Features Setup,After Sale Installations,售后安装 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1}已完全开票 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1}已完全开票 DocType: Workstation Working Hour,End Time,结束时间 apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,销售或采购的标准合同条款。 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,基于凭证分组 @@ -1816,7 +1816,7 @@ DocType: Upload Attendance,Attendance To Date,考勤结束日期 apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),设置接收销售信息的电子邮件地址 。 (例如sales@example.com ) DocType: Warranty Claim,Raised By,提出 DocType: Payment Gateway Account,Payment Account,付款帐号 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,请注明公司进行 +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,请注明公司进行 apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,应收账款净额变化 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,补假 DocType: Quality Inspection Reading,Accepted,已接受 @@ -1828,14 +1828,14 @@ DocType: Shipping Rule,Shipping Rule Label,配送规则标签 apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,原材料不能为空。 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.",无法更新库存,发票包含下降航运项目。 DocType: Newsletter,Test,测试 -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ - you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'",由于有存量交易为这个项目,\你不能改变的值'有序列号','有批号','是股票项目“和”评估方法“ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ + you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'",由于有存量交易为这个项目,\你不能改变的值'有序列号','有批号','是库存项目“和”评估方法“ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,快速日记帐分录 apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,如果任何条目中引用了BOM,你不能更改其税率 DocType: Employee,Previous Work Experience,以前的工作经验 DocType: Stock Entry,For Quantity,对于数量 apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},请输入计划数量的项目{0}在行{1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1}未提交 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1}未提交 apps/erpnext/erpnext/config/stock.py +18,Requests for items.,请求的项目。 DocType: Production Planning Tool,Separate production order will be created for each finished good item.,独立的生产订单将每个成品项目被创建。 DocType: Purchase Invoice,Terms and Conditions1,条款和条件1 @@ -1860,6 +1860,7 @@ DocType: Notification Control,Expense Claim Approved Message,报销批准消息 DocType: Email Digest,How frequently?,多经常? DocType: Purchase Receipt,Get Current Stock,获取当前库存 apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,物料清单树 +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,马克现在 apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},序列号为{0}的开始日期不能早于交付日期 DocType: Production Order,Actual End Date,实际结束日期 DocType: Authorization Rule,Applicable To (Role),适用于(角色) @@ -1874,7 +1875,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,合同结束日期必须大于加入的日期 DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,授权销售公司产品的第三方分销商/经销商/授权代理商/分支机构/转销商 DocType: Customer Group,Has Child Node,有子节点 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0}不允许采购订单{1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0}不允许采购订单{1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","请输入静态的URL参数(例如 sender=ERPNext, username=ERPNext, password=1234 etc.)" apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1}不存在于任何活动的会计年度中。详情查看{2}。 apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,这是一个示例网站从ERPNext自动生成 @@ -1914,7 +1915,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10. 添加或扣除: 添加还是扣除此税费。" DocType: Purchase Receipt Item,Recd Quantity,记录数量 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},不能生产超过销售订单数量{1}的品目{0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,股票输入{0}不提交 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,库存记录{0}不提交 DocType: Payment Reconciliation,Bank / Cash Account,银行/现金账户 DocType: Tax Rule,Billing City,结算城市 DocType: Global Defaults,Hide Currency Symbol,隐藏货币符号 @@ -1940,7 +1941,7 @@ DocType: Salary Structure,Total Earning,总盈利 DocType: Purchase Receipt,Time at which materials were received,收到材料在哪个时间 apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,我的地址 DocType: Stock Ledger Entry,Outgoing Rate,传出率 -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,组织分支主。 +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,组织分支主。 apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,或 DocType: Sales Order,Billing Status,账单状态 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,基础设施费用 @@ -1978,7 +1979,7 @@ DocType: Bin,Reserved Quantity,保留数量 DocType: Landed Cost Voucher,Purchase Receipt Items,采购入库项目 apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,自定义表单 DocType: Account,Income Account,收益账户 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,交货 +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,交货 DocType: Stock Reconciliation Item,Current Qty,目前数量 DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",参见成本部分的“材料价格基于” DocType: Appraisal Goal,Key Responsibility Area,关键责任区 @@ -1990,9 +1991,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,凭 DocType: Notification Control,Purchase Order Message,采购订单的消息 DocType: Tax Rule,Shipping Country,航运国家 DocType: Upload Attendance,Upload HTML,上传HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","预付款总额({0})反对令{1}不能大于\ -比总计({2})" DocType: Employee,Relieving Date,解除日期 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.",定价规则是由覆盖价格表/定义折扣百分比,基于某些条件。 DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,仓库只能通过仓储记录/送货单/采购收据来修改 @@ -2002,8 +2000,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,所 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.",如果选择的定价规则是由为'价格',它将覆盖价目表。定价规则价格是最终价格,所以没有进一步的折扣应适用。因此,在像销售订单,采购订单等交易,这将是“速度”字段进账,而不是“价格单率”字段。 apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,轨道信息通过行业类型。 DocType: Item Supplier,Item Supplier,品目供应商 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,请输入产品编号,以获得批号 -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},请选择一个值{0} quotation_to {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,请输入产品编号,以获得批号 +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},请选择一个值{0} quotation_to {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,所有地址。 DocType: Company,Stock Settings,库存设置 apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company",合并是唯一可能的,如果以下属性中均有记载相同。是集团,根型,公司 @@ -2026,7 +2024,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,支票号码 DocType: Payment Tool Detail,Payment Tool Detail,支付工具的详细信息 ,Sales Browser,销售列表 DocType: Journal Entry,Total Credit,总积分 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},警告:另一个{0}#{1}存在对股票入门{2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},警告:针对库存记录{2}存在另一个{0}#{1} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,当地 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),贷款及垫款(资产) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,债务人 @@ -2046,8 +2044,8 @@ DocType: Price List,Price List Master,价格表大师 DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,所有的销售交易都可以标记多个**销售人员**,方便你设置和监控目标。 ,S.O. No.,销售订单号 DocType: Production Order Operation,Make Time Log,创建时间日志 -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,请设置再订购数量 -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},请牵头建立客户{0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,请设置再订购数量 +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},请牵头建立客户{0} DocType: Price List,Applicable for Countries,适用于国家 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,电脑 apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,ERPNext是一个开源的基于Web的ERP系统通过网络注技术私人有限公司向提供集成的工具,在一个小的组织管理大多数进程。有关Web注释,或购买托管楝更多信息,请访问 @@ -2083,7 +2081,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),账单 DocType: Payment Reconciliation Invoice,Outstanding Amount,未偿还的金额 DocType: Project Task,Working,工作 DocType: Stock Ledger Entry,Stock Queue (FIFO),库存队列(先进先出) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,请选择时间记录。 +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,请选择时间记录。 apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0}不属于公司{1} DocType: Account,Round Off,四舍五入 ,Requested Qty,请求数量 @@ -2121,7 +2119,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,获取相关条目 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,库存的会计分录 DocType: Sales Invoice,Sales Team1,销售团队1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,品目{0}不存在 +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,品目{0}不存在 DocType: Sales Invoice,Customer Address,客户地址 DocType: Payment Request,Recipient and Message,收件人和消息 DocType: Purchase Invoice,Apply Additional Discount On,收取额外折扣 @@ -2140,7 +2138,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,静音电子邮件 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco",食品,饮料与烟草 apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL或BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},只能使支付对未付款的{0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},只能使支付对未付款的{0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,佣金率不能大于100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,最低库存水平 DocType: Stock Entry,Subcontract,外包 @@ -2158,9 +2156,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,软件 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,颜色 DocType: Maintenance Visit,Scheduled,已计划 apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle",请选择项,其中“正股项”是“否”和“是销售物品”是“是”,没有其他产品捆绑 +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),总的超前({0})对二阶{1}不能大于总计({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,如果要不规则的按月分配,请选择“月度分布”。 DocType: Purchase Invoice Item,Valuation Rate,估值率 -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,价格表货币没有选择 +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,价格表货币没有选择 apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,品目行{0}:采购收据{1}不存在于采购收据表中 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},雇员{0}申请了{1},时间是{2}至{3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,项目开始日期 @@ -2172,6 +2171,7 @@ DocType: Quality Inspection,Inspection Type,检验类型 apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},请选择{0} DocType: C-Form,C-Form No,C-表编号 DocType: BOM,Exploded_items,展开品目 +DocType: Employee Attendance Tool,Unmarked Attendance,无标记考勤 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,研究员 apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,请在发送之前保存通讯 apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,姓名或电子邮件是强制性 @@ -2197,7 +2197,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,确认 DocType: Payment Gateway,Gateway,网关 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,供应商 > 供应商类型 apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,请输入解除日期。 -apps/erpnext/erpnext/controllers/trends.py +137,Amt,金额 +apps/erpnext/erpnext/controllers/trends.py +138,Amt,金额 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,只留下带有状态的应用“已批准” ,可以提交 apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,地址标题是必须项。 DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,如果询价的来源是活动的话请输入活动名称。 @@ -2212,10 +2212,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,已接收的仓库 DocType: Bank Reconciliation Detail,Posting Date,发布日期 DocType: Item,Valuation Method,估值方法 apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},找不到汇率{0} {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,马克半天 DocType: Sales Invoice,Sales Team,销售团队 apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,重复的条目 DocType: Serial No,Under Warranty,在保修期内 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[错误] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[错误] DocType: Sales Order,In Words will be visible once you save the Sales Order.,大写金额将在销售订单保存后显示。 ,Employee Birthday,雇员生日 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,创业投资 @@ -2238,6 +2239,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,有交易的成本中心不能转化为组 DocType: Account,Depreciation,折旧 apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),供应商 +DocType: Employee Attendance Tool,Employee Attendance Tool,员工考勤工具 DocType: Supplier,Credit Limit,信用额度 apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,选择交易类型 DocType: GL Entry,Voucher No,凭证编号 @@ -2264,7 +2266,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,root帐号不能被删除 ,Is Primary Address,是主地址 DocType: Production Order,Work-in-Progress Warehouse,在制品仓库 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},参考# {0}记载日期为{1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},参考# {0}记载日期为{1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,管理地址 DocType: Pricing Rule,Item Code,品目编号 DocType: Production Planning Tool,Create Production Orders,创建生产订单 @@ -2291,7 +2293,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,银行对帐 apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,获取更新 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,物料申请{0}已取消或已停止 apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,添加了一些样本记录 -apps/erpnext/erpnext/config/hr.py +210,Leave Management,离开管理 +apps/erpnext/erpnext/config/hr.py +225,Leave Management,离开管理 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,基于账户分组 DocType: Sales Order,Fully Delivered,完全交付 DocType: Lead,Lower Income,较低收益 @@ -2301,11 +2303,12 @@ apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +23,Quic apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +169,Source and target warehouse cannot be same for row {0},行{0}中的源和目标仓库不能相同 DocType: Features Setup,Sales Extras,销售额外选项 apps/erpnext/erpnext/accounts/utils.py +346,{0} budget for Account {1} against Cost Center {2} will exceed by {3},{0} 成本中心{2}账户{1}的预算将超过{3} -apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +243,"Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry",差异帐户必须是资产/负债类型的帐户,因为此股票和解是一个进入开幕 +apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +243,"Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry",差异帐户必须是资产/负债类型的帐户,因为此库存盘点在期初进行 apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Purchase Order number required for Item {0},所需物品的采购订单号{0} apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',“起始日期”必须早于'终止日期' ,Stock Projected Qty,预计库存量 apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},客户{0}不属于项目{1} +DocType: Employee Attendance Tool,Marked Attendance HTML,显着的考勤HTML DocType: Sales Order,Customer's Purchase Order,客户采购订单 DocType: Warranty Claim,From Company,源公司 apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,价值或数量 @@ -2370,6 +2373,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,电汇 apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,请选择银行帐户 DocType: Newsletter,Create and Send Newsletters,创建和发送新闻邮件 +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,全面检查 DocType: Sales Order,Recurring Order,周期性订单 DocType: Company,Default Income Account,默认收益账户 apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,客户群组/客户 @@ -2401,6 +2405,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,回到对采购发票 DocType: Item,Warranty Period (in days),保修期限(天数) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,从运营的净现金 apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,例如增值税 +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,马克员工考勤散装 apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,项目4 DocType: Journal Entry Account,Journal Entry Account,日记帐分录帐号 DocType: Shopping Cart Settings,Quotation Series,报价系列 @@ -2546,14 +2551,14 @@ DocType: Task,Actual Start Date (via Time Logs),实际开始日期(通过时 DocType: Stock Reconciliation Item,Before reconciliation,在对账前 apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},{0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),已添加的税费(公司货币) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,品目税项的行{0}中必须指定类型为税项/收益/支出/应课的账户。 +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,品目税项的行{0}中必须指定类型为税项/收益/支出/应课的账户。 DocType: Sales Order,Partly Billed,天色帐单 DocType: Item,Default BOM,默认的BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,请确认重新输入公司名称 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,总街货量金额 DocType: Time Log Batch,Total Hours,总时数 DocType: Journal Entry,Printing Settings,打印设置 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},总借记必须等于总积分。 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},总借记必须等于总积分。 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,汽车 apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,来自送货单 DocType: Time Log,From Time,起始时间 @@ -2599,7 +2604,7 @@ DocType: Purchase Invoice Item,Image View,图像查看 DocType: Issue,Opening Time,开放时间 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,必须指定起始和结束日期 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,证券及商品交易 -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',测度变异的默认单位“{0}”必须是相同模板“{1}” +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',测度变异的默认单位“{0}”必须是相同模板“{1}” DocType: Shipping Rule,Calculate Based On,计算基于 DocType: Delivery Note Item,From Warehouse,从仓库 DocType: Purchase Taxes and Charges,Valuation and Total,估值与总计 @@ -2621,7 +2626,7 @@ DocType: Leave Application,Follow via Email,通过电子邮件关注 DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,税额折后金额 apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,此科目有子科目,无法删除。 apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,需要指定目标数量和金额 -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},品目{0}没有默认的BOM +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},品目{0}没有默认的BOM apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,请选择发布日期第一 apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,开业日期应该是截止日期之前, DocType: Leave Control Panel,Carry Forward,顺延 @@ -2698,7 +2703,7 @@ DocType: Leave Type,Is Encash,是否兑现 DocType: Purchase Invoice,Mobile No,手机号码 DocType: Payment Tool,Make Journal Entry,创建日记帐分录 DocType: Leave Allocation,New Leaves Allocated,新调配的假期 -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,项目明智的数据不适用于报价 +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,项目明智的数据不适用于报价 DocType: Project,Expected End Date,预计结束日期 DocType: Appraisal Template,Appraisal Template Title,评估模板标题 apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,广告 @@ -2746,6 +2751,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No., apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,请指定一个 DocType: Offer Letter,Awaiting Response,正在等待回应 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,以上 +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,时间日志已帐单 DocType: Salary Slip,Earning & Deduction,盈余及扣除 apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,科目{0}不能为组 apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,可选。此设置将被应用于各种交易进行过滤。 @@ -2816,14 +2822,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,成功删除与该公司相关的所有交易! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,随着对日 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,缓刑 -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,库存品目必须指定默认仓库。 +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,库存品目必须指定默认仓库。 apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},支付工资的月{0}和年{1} DocType: Stock Settings,Auto insert Price List rate if missing,自动插入价目表率,如果丢失 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,总支付金额 ,Transferred Qty,转让数量 apps/erpnext/erpnext/config/learn.py +11,Navigating,导航 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,规划 -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,创建时间记录批次 +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,创建时间记录批次 apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,发行 DocType: Project,Total Billing Amount (via Time Logs),总结算金额(通过时间日志) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,我们卖这些物件 @@ -2831,7 +2837,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,量应大于0 DocType: Journal Entry,Cash Entry,现金分录 DocType: Sales Partner,Contact Desc,联系人倒序 -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.",叶似漫不经心,生病等类型 +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.",叶似漫不经心,生病等类型 DocType: Email Digest,Send regular summary reports via Email.,通过电子邮件发送定期汇总报告。 DocType: Brand,Item Manager,项目经理 DocType: Cost Center,Add rows to set annual budgets on Accounts.,添加新行为科目设定年度预算。 @@ -2846,7 +2852,7 @@ DocType: GL Entry,Party Type,党的类型 apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,原料不能和主项相同 DocType: Item Attribute Value,Abbreviation,缩写 apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,不允许,因为{0}超出范围 -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,薪资模板大师。 +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,薪资模板大师。 DocType: Leave Type,Max Days Leave Allowed,允许的最长假期天数 apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,购物车设置税收规则 DocType: Payment Tool,Set Matching Amounts,设置相同的金额 @@ -2856,10 +2862,10 @@ apps/erpnext/erpnext/setup/doctype/company/company.py +35,Abbreviation is mandat apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +136,Thank you for your interest in subscribing to our updates,感谢您的关注中订阅我们的更新 ,Qty to Transfer,转移数量 apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,向潜在客户或客户发出的报价。 -DocType: Stock Settings,Role Allowed to edit frozen stock,角色可以编辑冻结股票 +DocType: Stock Settings,Role Allowed to edit frozen stock,角色可以编辑冻结库存 ,Territory Target Variance Item Group-Wise,按物件组的区域目标波动 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,所有客户群组 -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0}是必填项。可能是没有由{1}到{2}的货币转换记录。 +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0}是必填项。可能是没有由{1}到{2}的货币转换记录。 apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,税务模板是强制性的。 apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,科目{0}的上级科目{1}不存在 DocType: Purchase Invoice Item,Price List Rate (Company Currency),价格列表费率(公司货币) @@ -2879,8 +2885,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,品目特定的税项 ,Item-wise Price List Rate,品目特定的价目表率 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,供应商报价 DocType: Quotation,In Words will be visible once you save the Quotation.,大写金额将在报价单保存后显示。 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1}已停止 -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},条码{0}已被品目{1}使用 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1}已停止 +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},条码{0}已被品目{1}使用 DocType: Lead,Add to calendar on this date,将此日期添加至日历 apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,规则增加运输成本。 apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,即将举行的活动 @@ -2906,8 +2912,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling, apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,必须选择至少一个仓库 DocType: Serial No,Out of Warranty,超出保修期 DocType: BOM Replace Tool,Replace,更换 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0}不允许销售发票{1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,请输入缺省的计量单位 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0}不允许销售发票{1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,请输入缺省的计量单位 DocType: Purchase Invoice Item,Project Name,项目名称 DocType: Supplier,Mention if non-standard receivable account,提到如果不规范应收账款 DocType: Journal Entry Account,If Income or Expense,收入或支出 @@ -2932,7 +2938,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,会计年度:{0}不存在 DocType: Currency Exchange,To Currency,以货币 DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,允许以下用户批准在禁离日请假的申请。 -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,报销的类型。 +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,报销的类型。 DocType: Item,Taxes,税 apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,支付和未送达 DocType: Project,Default Cost Center,默认成本中心 @@ -2962,7 +2968,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},行#{0}:序列号{1}不相匹配{2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,事假 DocType: Batch,Batch ID,批次ID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},注: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},注: {0} ,Delivery Note Trends,送货单趋势 apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,本周的总结 apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},行{1}中的{0}必须是“采购”或“转包”类型的品目 @@ -3002,6 +3008,7 @@ DocType: Project Task,Pending Review,待审核 apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,点击这里要 DocType: Task,Total Expense Claim (via Expense Claim),总费用报销(通过费用报销) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,客户ID +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,马克缺席 apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,到时间必须大于从时间 DocType: Journal Entry Account,Exchange Rate,汇率 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,销售订单{0}未提交 @@ -3049,7 +3056,7 @@ DocType: Item Group,Default Expense Account,默认支出账户 DocType: Employee,Notice (days),通告(天) DocType: Tax Rule,Sales Tax Template,销售税模板 DocType: Employee,Encashment Date,兑现日期 -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry",凭证类型必须是采购订单,采购发票或日记帐分录之一 +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry",凭证类型必须是采购订单,采购发票或日记帐分录之一 DocType: Account,Stock Adjustment,库存调整 apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},默认情况下存在作业成本的活动类型 - {0} DocType: Production Order,Planned Operating Cost,计划运营成本 @@ -3064,7 +3071,7 @@ The package **Item** will have ""Is Stock Item"" as ""No"" and ""Is Sales Item"" For Example: If you are selling Laptops and Backpacks separately and have a special price if the customer buys both, then the Laptop + Backpack will be a new Product Bundle Item. -Note: BOM = Bill of Materials",聚合组** **项目到另一个项目** **的。如果你是捆绑了一定**项目你保持股票的包装**项目的**,而不是聚集**项这是一个有用的**到一个包和**。包** **项目将有“是股票项目”为“否”和“是销售项目”为“是”。例如:如果你是销售笔记本电脑和背包分开,并有一个特殊的价格,如果客户购买两个,那么笔记本电脑+背包将是一个新的产品包项目。注:物料BOM =比尔 +Note: BOM = Bill of Materials",将一组物料集合到另外一种物料。如果将物料组合打包/包装,然后维护这个组合后的物料的库存而不是集合物料。包装物料将有一种属性:“库存条目”(取值“否”),或“销售条目”(取值“是”)。例如:你分别销售笔记本电脑和背包,并且如果有顾客购买两种而使用单独的价格,那么笔记本电脑+背包将是一个新的产品包项目。注:物料BOM =Bill of Materials apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.py +44,Serial No is mandatory for Item {0},序列号是品目{0}的必须项 DocType: Item Variant Attribute,Attribute,属性 apps/erpnext/erpnext/stock/doctype/item_attribute/item_attribute.py +21,Please specify from/to range,请从指定/至范围 @@ -3103,6 +3110,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,核销分录 DocType: BOM,Rate Of Materials Based On,基于以下的物料单价 apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,客户支持分析 +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,取消所有 apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},仓库{0}缺少公司 DocType: POS Profile,Terms and Conditions,条款和条件 apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},日期应该是在财政年度内。假设终止日期= {0} @@ -3124,7 +3132,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'",要设置这个财政年度为默认值,点击“设为默认” apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),设置接收支持的电子邮件地址。 (例如support@example.com ) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,短缺数量 -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,项目变种{0}存在具有相同属性 +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,项目变种{0}存在具有相同属性 DocType: Salary Slip,Salary Slip,工资单 apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,“结束日期”必需设置 DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.",生成要发货品目的装箱单,包括包号,内容和重量。 @@ -3172,7 +3180,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,查看 DocType: Item Attribute Value,Attribute Value,属性值 apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}",邮件地址{0}已存在 ,Itemwise Recommended Reorder Level,品目特定的推荐重订购级别 -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,请选择{0}第一 +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,请选择{0}第一 DocType: Features Setup,To get Item Group in details table,为了让项目组在详细信息表 apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,一批项目的{0} {1}已过期。 DocType: Sales Invoice,Commission,佣金 @@ -3227,7 +3235,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,获取未清凭证 DocType: Warranty Claim,Resolved By,议决 DocType: Appraisal,Start Date,开始日期 -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,调配一段时间假期。 +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,调配一段时间假期。 apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,支票及存款不正确清除 apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,点击这里核实 apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,科目{0}不能是自己的上级科目 @@ -3247,7 +3255,7 @@ DocType: Employee,Educational Qualification,学历 DocType: Workstation,Operating Costs,运营成本 DocType: Employee Leave Approver,Employee Leave Approver,雇员假期审批者 apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0}已成功添加到我们的新闻列表。 -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},行{0}:一个重新排序条目已存在这个仓库{1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},行{0}:一个重新排序条目已存在这个仓库{1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.",不能更改状态为丧失,因为已有报价。 DocType: Purchase Taxes and Charges Template,Purchase Master Manager,采购经理大师 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,生产订单{0}必须提交 @@ -3271,7 +3279,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,销售发票{0}已提交过 apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,完成日期 DocType: Purchase Invoice Item,Amount (Company Currency),金额(公司货币) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,组织单位(部门)的主人。 +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,组织单位(部门)的主人。 apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,请输入有效的手机号 DocType: Budget Detail,Budget Detail,预算详情 apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,在发送前,请填写留言 @@ -3287,13 +3295,13 @@ DocType: Purchase Receipt Item,Received and Accepted,收到并接受 ,Serial No Service Contract Expiry,序列号/年度保养合同过期 DocType: Item,Unit of Measure Conversion,转换度量单位 apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,雇员不能更改 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,你不能同时将一个账户设为借方和贷方。 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,你不能同时将一个账户设为借方和贷方。 DocType: Naming Series,Help HTML,HTML帮助 apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},分配的总权重应为100 % 。这是{0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},品目{1}已经超过允许的超额{0} DocType: Address,Name of person or organization that this address belongs to.,此地址所属的人或组织的名称 apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,您的供应商 -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,不能更改状态为丧失,因为已有销售订单。 +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,不能更改状态为丧失,因为已有销售订单。 apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,雇员{1}已经有另一套薪金结构{0},请将原来的薪金结构改为‘已停用’状态. DocType: Purchase Invoice,Contact,联系人 apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,从......收到 @@ -3303,11 +3311,11 @@ DocType: Item,Has Serial No,有序列号 DocType: Employee,Date of Issue,签发日期 apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}:申请者{0} 金额{1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},行#{0}:设置供应商项目{1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,网站图像{0}附加到物品{1}无法找到 +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,网站图像{0}附加到物品{1}无法找到 DocType: Issue,Content Type,内容类型 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,电脑 DocType: Item,List this Item in multiple groups on the website.,在网站上的多个组中显示此品目 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,请检查多币种选项,允许帐户与其他货币 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,请检查多币种选项,允许帐户与其他货币 apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,品目{0}不存在 apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,您没有权限设定冻结值 DocType: Payment Reconciliation,Get Unreconciled Entries,获取未调节分录 @@ -3317,14 +3325,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,贵公司的 DocType: Delivery Note,To Warehouse,到仓库 apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},财年{1}中已多次输入科目{0} ,Average Commission Rate,平均佣金率 -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,非库存项目不能勾选'是否有序列号' +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,非库存项目不能勾选'是否有序列号' apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,考勤不能标记为未来的日期 DocType: Pricing Rule,Pricing Rule Help,定价规则说明 DocType: Purchase Taxes and Charges,Account Head,账户头 apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,更新额外费用以计算到岸成本 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,电气 DocType: Stock Entry,Total Value Difference (Out - In),总价值差(输出 - ) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,行{0}:汇率是必须的 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,行{0}:汇率是必须的 apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},员工设置{0}为设置用户ID DocType: Stock Entry,Default Source Warehouse,默认源仓库 DocType: Item,Customer Code,客户代码 @@ -3343,15 +3351,15 @@ DocType: Notification Control,Sales Invoice Message,销售发票信息 apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,关闭帐户{0}的类型必须是负债/权益 DocType: Authorization Rule,Based On,基于 DocType: Sales Order Item,Ordered Qty,订购数量 -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,项目{0}无效 +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,项目{0}无效 DocType: Stock Settings,Stock Frozen Upto,库存冻结止 apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},期间从和周期要日期强制性的经常性{0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,项目活动/任务。 -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,生成工资条 +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,生成工资条 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}",“适用于”为{0}时必须勾选“采购” apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,折扣必须小于100 DocType: Purchase Invoice,Write Off Amount (Company Currency),核销金额(公司货币) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,行#{0}:请设置再订购数量 +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,行#{0}:请设置再订购数量 DocType: Landed Cost Voucher,Landed Cost Voucher,到岸成本凭证 apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},请设置{0} DocType: Purchase Invoice,Repeat on Day of Month,重复上月的日 @@ -3404,7 +3412,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,默认工作正在进行仓库 apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,业务会计的默认设置。 apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,预计日期不能早于物料申请时间 -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,品目{0}必须是销售品目 +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,品目{0}必须是销售品目 DocType: Naming Series,Update Series Number,更新序列号 DocType: Account,Equity,权益 DocType: Sales Order,Printing Details,印刷详情 @@ -3456,7 +3464,7 @@ DocType: Task,Review Date,评论日期 DocType: Purchase Invoice,Advance Payments,预付款 DocType: Purchase Taxes and Charges,On Net Total,基于净总计 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,行{0}的目标仓库必须与生产订单的仓库相同 -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,没有使用付款工具的权限 +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,没有使用付款工具的权限 apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,循环%s中未指定“通知电子邮件地址” apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,货币不能使用其他货币进行输入后更改 DocType: Company,Round Off Account,四舍五入账户 @@ -3479,7 +3487,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,原材料被生产/重新打包后得到的品目数量 DocType: Payment Reconciliation,Receivable / Payable Account,应收/应付账款 DocType: Delivery Note Item,Against Sales Order Item,对销售订单项目 -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},请指定属性值的属性{0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},请指定属性值的属性{0} DocType: Item,Default Warehouse,默认仓库 DocType: Task,Actual End Date (via Time Logs),实际结束日期(通过时间日志) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},财政预算案不能对集团客户分配{0} @@ -3504,10 +3512,10 @@ DocType: Lead,Blog Subscriber,博客订阅者 apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,创建规则,根据属性值来限制交易。 DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day",如果勾选,工作日总数将包含假期,这将会降低“日工资”的值。 DocType: Purchase Invoice,Total Advance,总垫款 -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,处理工资单 +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,处理工资单 DocType: Opportunity Item,Basic Rate,基础税率 DocType: GL Entry,Credit Amount,信贷金额 -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,设置为丧失 +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,设置为丧失 apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,付款收货注意事项 DocType: Supplier,Credit Days Based On,信贷天基于 DocType: Tax Rule,Tax Rule,税务规则 @@ -3537,7 +3545,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,已接收数量 apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}:{1}不存在 apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,对客户开出的账单。 apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,项目编号 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},行无{0}:金额不能大于金额之前对报销{1}。待审核金额为{2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},行无{0}:金额不能大于金额之前对报销{1}。待审核金额为{2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0}新增用户 DocType: Maintenance Schedule,Schedule,计划任务 DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""",定义预算这个成本中心。要设置预算的行动,请参阅“企业名录” @@ -3598,19 +3606,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS简介 DocType: Payment Gateway Account,Payment URL Message,付款URL信息 apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.",设置季节性的预算,目标等。 -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,行{0}:付款金额不能大于杰出金额 +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,行{0}:付款金额不能大于杰出金额 apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,总未付 -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,时间日志是不计费 -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants",项目{0}是一个模板,请选择它的一个变体 +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,时间日志是不计费 +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants",项目{0}是一个模板,请选择它的一个变体 apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,购买者 apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,净支付金额不能为负数 -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,请手动输入对优惠券 +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,请手动输入对优惠券 DocType: SMS Settings,Static Parameters,静态参数 DocType: Purchase Order,Advance Paid,已支付的预付款 DocType: Item,Item Tax,品目税项 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,材料到供应商 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,消费税发票 DocType: Expense Claim,Employees Email Id,雇员的邮件地址 +DocType: Employee Attendance Tool,Marked Attendance,显着的出席 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,流动负债 apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,向你的联系人群发短信。 DocType: Purchase Taxes and Charges,Consider Tax or Charge for,考虑税收或收费 @@ -3633,7 +3642,7 @@ DocType: Item Attribute,Numeric Values,数字值 apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,附加标志 DocType: Customer,Commission Rate,佣金率 apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,在Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,按部门禁止假期申请。 +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,按部门禁止假期申请。 apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,车是空的 DocType: Production Order,Actual Operating Cost,实际运行成本 apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,根不能被编辑。 @@ -3652,7 +3661,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,自动创建材料,如果申请数量低于这个水平 ,Item-wise Purchase Register,品目特定的采购记录 DocType: Batch,Expiry Date,到期时间 -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item",要设置订货点水平,项目必须购买项目或生产项目 +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item",要设置订货点水平,项目必须购买项目或生产项目 ,Supplier Addresses and Contacts,供应商的地址和联系方式 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,属性是相同的两个记录。 apps/erpnext/erpnext/config/projects.py +18,Project master.,项目主。 diff --git a/erpnext/translations/zh-tw.csv b/erpnext/translations/zh-tw.csv index 53dc233b20..f91f9b7fba 100644 --- a/erpnext/translations/zh-tw.csv +++ b/erpnext/translations/zh-tw.csv @@ -164,14 +164,14 @@ DocType: Journal Entry Account,Credit in Company Currency,信用在公司貨幣 DocType: Delivery Note,Installation Status,安裝狀態 apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +108,Accepted + Rejected Qty must be equal to Received quantity for Item {0},品項{0}的允收+批退的數量必須等於收到量 DocType: Item,Supply Raw Materials for Purchase,供應原料採購 -apps/erpnext/erpnext/stock/get_item_details.py +127,Item {0} must be a Purchase Item,項{0}必須是一個採購項目 +apps/erpnext/erpnext/stock/get_item_details.py +123,Item {0} must be a Purchase Item,項{0}必須是一個採購項目 DocType: Upload Attendance,"Download the Template, fill appropriate data and attach the modified file. All dates and employee combination in the selected period will come in the template, with existing attendance records","下載模板,填寫相應的數據,並附加了修改過的文件。 在選定時間段內所有時間和員工的組合會在模板中,與現有的考勤記錄" apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +448,Item {0} is not active or end of life has been reached,項目{0}不活躍或生命的盡頭已經達到 DocType: Time Log Batch,Will be updated after Sales Invoice is Submitted.,之後銷售發票已提交將被更新。 -apps/erpnext/erpnext/controllers/accounts_controller.py +510,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included",要包括稅款,行{0}項率,稅收行{1}也必須包括在內 -apps/erpnext/erpnext/config/hr.py +90,Settings for HR Module,設定人力資源模塊 +apps/erpnext/erpnext/controllers/accounts_controller.py +527,"To include tax in row {0} in Item rate, taxes in rows {1} must also be included",要包括稅款,行{0}項率,稅收行{1}也必須包括在內 +apps/erpnext/erpnext/config/hr.py +98,Settings for HR Module,設定人力資源模塊 DocType: SMS Center,SMS Center,短信中心 DocType: BOM Replace Tool,New BOM,新的物料清單 apps/erpnext/erpnext/config/projects.py +28,Batch Time Logs for billing.,批處理的時間記錄進行計費。 @@ -199,7 +199,7 @@ DocType: Offer Letter,Select Terms and Conditions,選擇條款和條件 DocType: Production Planning Tool,Sales Orders,銷售訂單 DocType: Purchase Taxes and Charges,Valuation,計價 ,Purchase Order Trends,採購訂單趨勢 -apps/erpnext/erpnext/config/hr.py +78,Allocate leaves for the year.,離開一年。 +apps/erpnext/erpnext/config/hr.py +86,Allocate leaves for the year.,離開一年。 DocType: Earning Type,Earning Type,收入類型 DocType: Manufacturing Settings,Disable Capacity Planning and Time Tracking,禁用容量規劃和時間跟踪 DocType: Bank Reconciliation,Bank Account,銀行帳戶 @@ -237,7 +237,7 @@ apps/erpnext/erpnext/stock/utils.py +178,Warehouse {0} does not belong to compan DocType: Item Website Specification,Item Website Specification,項目網站規格 DocType: Payment Tool,Reference No,參考編號 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +398,Leave Blocked,禁假的 -apps/erpnext/erpnext/stock/doctype/item/item.py +585,Item {0} has reached its end of life on {1},項{0}已達到其壽命結束於{1} +apps/erpnext/erpnext/stock/doctype/item/item.py +586,Item {0} has reached its end of life on {1},項{0}已達到其壽命結束於{1} apps/erpnext/erpnext/accounts/utils.py +341,Annual,全年 DocType: Stock Reconciliation Item,Stock Reconciliation Item,庫存調整項目 DocType: Stock Entry,Sales Invoice No,銷售發票號碼 @@ -249,7 +249,7 @@ DocType: Item,Minimum Order Qty,最低起訂量 DocType: Pricing Rule,Supplier Type,供應商類型 DocType: Item,Publish in Hub,在發布中心 ,Terretory,Terretory -apps/erpnext/erpnext/stock/doctype/item/item.py +605,Item {0} is cancelled,項{0}將被取消 +apps/erpnext/erpnext/stock/doctype/item/item.py +606,Item {0} is cancelled,項{0}將被取消 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +676,Material Request,物料需求 DocType: Bank Reconciliation,Update Clearance Date,更新日期間隙 DocType: Item,Purchase Details,採購詳情 @@ -261,11 +261,12 @@ DocType: Purchase Receipt Item,Rejected Quantity,拒絕數量 DocType: Features Setup,"Field available in Delivery Note, Quotation, Sales Invoice, Sales Order",在送貨單,報價單,銷售發票,銷售訂單可用欄位 DocType: SMS Settings,SMS Sender Name,短信發送者名稱 DocType: Contact,Is Primary Contact,是主要聯絡人 +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +36,Time Log has been Batched for Billing,時間日誌已被成批的計費 DocType: Notification Control,Notification Control,通知控制 DocType: Lead,Suggestions,建議 DocType: Territory,Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution.,在此地域設定跨群組項目間的預算。您還可以通過設定分配來包含季節性。 apps/erpnext/erpnext/stock/doctype/warehouse/warehouse.py +72,Please enter parent account group for warehouse {0},請輸入父帳戶組倉庫{0} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +248,Payment against {0} {1} cannot be greater than Outstanding Amount {2},對支付{0} {1}不能大於未償還{2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +250,Payment against {0} {1} cannot be greater than Outstanding Amount {2},對支付{0} {1}不能大於未償還{2} DocType: Supplier,Address HTML,地址HTML DocType: Lead,Mobile No.,手機號碼 DocType: Maintenance Schedule,Generate Schedule,生成時間表 @@ -282,7 +283,6 @@ apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconcil DocType: Item,Synced With Hub,同步轂 apps/erpnext/erpnext/setup/doctype/company/company.js +41,Wrong Password,密碼錯誤 DocType: Item,Variant Of,變種 -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +34,Item {0} must be Service Item,項{0}必須是服務項目 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +303,Completed Qty can not be greater than 'Qty to Manufacture',完成數量不能大於“數量來製造” DocType: Period Closing Voucher,Closing Account Head,關閉帳戶頭 DocType: Employee,External Work History,外部工作經歷 @@ -294,10 +294,10 @@ DocType: Newsletter,Newsletter,新聞 DocType: Stock Settings,Notify by Email on creation of automatic Material Request,在創建自動材料需求時已電子郵件通知 DocType: Journal Entry,Multi Currency,多幣種 DocType: Payment Reconciliation Invoice,Invoice Type,發票類型 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +705,Delivery Note,送貨單 +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +699,Delivery Note,送貨單 apps/erpnext/erpnext/config/learn.py +87,Setting up Taxes,建立稅 apps/erpnext/erpnext/accounts/utils.py +191,Payment Entry has been modified after you pulled it. Please pull it again.,付款項被修改,你把它之後。請重新拉。 -apps/erpnext/erpnext/stock/doctype/item/item.py +386,{0} entered twice in Item Tax,{0}輸入兩次項目稅 +apps/erpnext/erpnext/stock/doctype/item/item.py +387,{0} entered twice in Item Tax,{0}輸入兩次項目稅 apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +105,Summary for this week and pending activities,本週和待活動總結 DocType: Workstation,Rent Cost,租金成本 apps/erpnext/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py +74,Please select month and year,請選擇年份和月份 @@ -308,7 +308,7 @@ DocType: Shipping Rule,Valid for Countries,有效的國家 DocType: Features Setup,"All import related fields like currency, conversion rate, import total, import grand total etc are available in Purchase Receipt, Supplier Quotation, Purchase Invoice, Purchase Order etc.",在採購入庫單,供應商報價單,採購發票,採購訂單等所有可像貨幣,轉換率,總進口,進口總計進口等相關領域 apps/erpnext/erpnext/stock/doctype/item/item.js +48,This Item is a Template and cannot be used in transactions. Item attributes will be copied over into the variants unless 'No Copy' is set,這個項目是一個模板,並且可以在交易不能使用。項目的屬性將被複製到變型,除非“不複製”設置 apps/erpnext/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +69,Total Order Considered,總訂貨考慮 -apps/erpnext/erpnext/config/hr.py +110,"Employee designation (e.g. CEO, Director etc.).",員工指定(例如總裁,總監等) 。 +apps/erpnext/erpnext/config/hr.py +118,"Employee designation (e.g. CEO, Director etc.).",員工指定(例如總裁,總監等) 。 apps/erpnext/erpnext/controllers/recurring_document.py +201,Please enter 'Repeat on Day of Month' field value,請輸入「重複月內的一天」欄位值 DocType: Sales Invoice,Rate at which Customer Currency is converted to customer's base currency,公司貨幣被換算成客戶基礎貨幣的匯率 DocType: Features Setup,"Available in BOM, Delivery Note, Purchase Invoice, Production Order, Purchase Order, Purchase Receipt, Sales Invoice, Sales Order, Stock Entry, Timesheet",存在於物料清單,送貨單,採購發票,生產訂單,採購訂單,採購入庫單,銷售發票,銷售訂單,股票,時間表 @@ -357,7 +357,7 @@ DocType: Workstation,Consumable Cost,耗材成本 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +169,{0} ({1}) must have role 'Leave Approver',"{0}({1})必須有權限 ""假期審批“" DocType: Purchase Receipt,Vehicle Date,車日期 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +39,Medical,醫療 -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +144,Reason for losing,原因丟失 +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +143,Reason for losing,原因丟失 apps/erpnext/erpnext/manufacturing/doctype/workstation/workstation.py +79,Workstation is closed on the following dates as per Holiday List: {0},工作站在以下日期關閉按假日列表:{0} apps/erpnext/erpnext/selling/page/sales_funnel/sales_funnel.py +32,Opportunities,機會 DocType: Employee,Single,單 @@ -385,14 +385,15 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order_lis DocType: Lead,Channel Partner,渠道合作夥伴 DocType: Account,Old Parent,老家長 DocType: Notification Control,Customize the introductory text that goes as a part of that email. Each transaction has a separate introductory text.,自定義去作為郵件的一部分的介紹文字。每筆交易都有一個單獨的介紹性文字。 +DocType: Stock Reconciliation Item,Do not include symbols (ex. $),不包括符號(例如$) DocType: Sales Taxes and Charges Template,Sales Master Manager,銷售主檔經理 apps/erpnext/erpnext/config/manufacturing.py +74,Global settings for all manufacturing processes.,所有製造過程中的全域設定。 DocType: Accounts Settings,Accounts Frozen Upto,帳戶被凍結到 DocType: SMS Log,Sent On,發送於 -apps/erpnext/erpnext/stock/doctype/item/item.py +563,Attribute {0} selected multiple times in Attributes Table,屬性{0}多次選擇在屬性表 +apps/erpnext/erpnext/stock/doctype/item/item.py +564,Attribute {0} selected multiple times in Attributes Table,屬性{0}多次選擇在屬性表 DocType: HR Settings,Employee record is created using selected field. ,使用所選欄位創建員工記錄。 DocType: Sales Order,Not Applicable,不適用 -apps/erpnext/erpnext/config/hr.py +140,Holiday master.,假日高手。 +apps/erpnext/erpnext/config/hr.py +148,Holiday master.,假日高手。 DocType: Material Request Item,Required Date,所需時間 DocType: Delivery Note,Billing Address,帳單地址 apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +737,Please enter Item Code.,請輸入產品編號。 @@ -428,7 +429,7 @@ apps/erpnext/erpnext/projects/doctype/task/task.py +44,Cannot close task as its apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +305,Please enter Warehouse for which Material Request will be raised,請輸入物料需求欲增加的倉庫 DocType: Production Order,Additional Operating Cost,額外的運營成本 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +20,Cosmetics,化妝品 -apps/erpnext/erpnext/stock/doctype/item/item.py +467,"To merge, following properties must be same for both items",若要合併,以下屬性必須為這兩個項目是相同的 +apps/erpnext/erpnext/stock/doctype/item/item.py +468,"To merge, following properties must be same for both items",若要合併,以下屬性必須為這兩個項目是相同的 DocType: Shipping Rule,Net Weight,淨重 DocType: Employee,Emergency Phone,緊急電話 ,Serial No Warranty Expiry,序列號保修到期 @@ -486,17 +487,17 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +66, DocType: Sales Order,Billing and Delivery Status,結算和交貨狀態 apps/erpnext/erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py +58,Repeat Customers,回頭客 DocType: Leave Control Panel,Allocate,分配 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +638,Sales Return,銷貨退回 +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +632,Sales Return,銷貨退回 DocType: Production Planning Tool,Select Sales Orders from which you want to create Production Orders.,要從創建生產訂單選擇銷售訂單。 DocType: Item,Delivered by Supplier (Drop Ship),由供應商交貨(直接發運) -apps/erpnext/erpnext/config/hr.py +120,Salary components.,工資組成部分。 +apps/erpnext/erpnext/config/hr.py +128,Salary components.,工資組成部分。 apps/erpnext/erpnext/config/crm.py +12,Database of potential customers.,數據庫的潛在客戶。 DocType: Authorization Rule,Customer or Item,客戶或項目 apps/erpnext/erpnext/config/crm.py +17,Customer database.,客戶數據庫。 DocType: Quotation,Quotation To,報價到 DocType: Lead,Middle Income,中等收入 apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +58,Opening (Cr),開啟(Cr ) -apps/erpnext/erpnext/stock/doctype/item/item.py +711,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,測度項目的默認單位{0}不能直接改變,因為你已經做了一些交易(S)與其他計量單位。您將需要創建一個新的項目,以使用不同的默認計量單位。 +apps/erpnext/erpnext/stock/doctype/item/item.py +712,Default Unit of Measure for Item {0} cannot be changed directly because you have already made some transaction(s) with another UOM. You will need to create a new Item to use a different Default UOM.,測度項目的默認單位{0}不能直接改變,因為你已經做了一些交易(S)與其他計量單位。您將需要創建一個新的項目,以使用不同的默認計量單位。 apps/erpnext/erpnext/accounts/utils.py +195,Allocated amount can not be negative,分配金額不能為負 DocType: Purchase Order Item,Billed Amt,已結算額 DocType: Warehouse,A logical Warehouse against which stock entries are made.,對這些庫存分錄帳進行的邏輯倉庫。 @@ -515,14 +516,14 @@ DocType: Sales Invoice,Sales Taxes and Charges,銷售稅金及費用 DocType: Employee,Organization Profile,組織簡介 apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.py +90,Please setup numbering series for Attendance via Setup > Numbering Series,透過設定>編號系列,請設定考勤的編號系列 DocType: Employee,Reason for Resignation,辭退原因 -apps/erpnext/erpnext/config/hr.py +150,Template for performance appraisals.,模板的績效考核。 +apps/erpnext/erpnext/config/hr.py +158,Template for performance appraisals.,模板的績效考核。 DocType: Payment Reconciliation,Invoice/Journal Entry Details,發票/日記帳分錄詳細資訊 apps/erpnext/erpnext/accounts/utils.py +53,{0} '{1}' not in Fiscal Year {2},{0}“ {1}”不在財政年度{2} DocType: Buying Settings,Settings for Buying Module,設置購買模塊 apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +62,Please enter Purchase Receipt first,請先輸入採購入庫單 DocType: Buying Settings,Supplier Naming By,供應商命名 DocType: Activity Type,Default Costing Rate,默認成本核算率 -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +662,Maintenance Schedule,維護計劃 +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +656,Maintenance Schedule,維護計劃 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +34,"Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc.",然後定價規則將被過濾掉基於客戶,客戶群組,領地,供應商,供應商類型,活動,銷售合作夥伴等。 apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +22,Net Change in Inventory,在庫存淨變動 DocType: Employee,Passport Number,護照號碼 @@ -561,7 +562,7 @@ DocType: Purchase Invoice,Quarterly,每季 DocType: Selling Settings,Delivery Note Required,要求送貨單 DocType: Sales Order Item,Basic Rate (Company Currency),基礎匯率(公司貨幣) DocType: Manufacturing Settings,Backflush Raw Materials Based On,反吹為原材料的開 -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +62,Please enter item details,請輸入項目細節 +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +57,Please enter item details,請輸入項目細節 DocType: Purchase Receipt,Other Details,其他詳細資訊 DocType: Account,Accounts,會計 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +67,Marketing,市場營銷 @@ -574,7 +575,7 @@ DocType: Employee,Provide email id registered in company,提供的電子郵件ID DocType: Hub Settings,Seller City,賣家市 DocType: Email Digest,Next email will be sent on:,接下來的電子郵件將被發送: DocType: Offer Letter Term,Offer Letter Term,報價函期限 -apps/erpnext/erpnext/stock/doctype/item/item.py +542,Item has variants.,項目已變種。 +apps/erpnext/erpnext/stock/doctype/item/item.py +543,Item has variants.,項目已變種。 apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +65,Item {0} not found,項{0}未找到 DocType: Bin,Stock Value,庫存價值 apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +88,Tree Type,樹類型 @@ -582,7 +583,7 @@ DocType: BOM Explosion Item,Qty Consumed Per Unit,數量消耗每單位 DocType: Serial No,Warranty Expiry Date,保證期到期日 DocType: Material Request Item,Quantity and Warehouse,數量和倉庫 DocType: Sales Invoice,Commission Rate (%),佣金率(%) -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +172,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry",對憑證類型必須是一個銷售訂單,銷售發票或日記帳分錄 +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +176,"Against Voucher Type must be one of Sales Order, Sales Invoice or Journal Entry",對憑證類型必須是一個銷售訂單,銷售發票或日記帳分錄 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +7,Aerospace,航天 DocType: Journal Entry,Credit Card Entry,信用卡進入 apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +18,Task Subject,任務主題 @@ -669,10 +670,10 @@ apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_p DocType: Account,Liability,責任 apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +62,Sanctioned Amount cannot be greater than Claim Amount in Row {0}.,制裁金額不能大於索賠額行{0}。 DocType: Company,Default Cost of Goods Sold Account,銷貨帳戶的預設成本 -apps/erpnext/erpnext/stock/get_item_details.py +259,Price List not selected,未選擇價格列表 +apps/erpnext/erpnext/stock/get_item_details.py +255,Price List not selected,未選擇價格列表 DocType: Employee,Family Background,家庭背景 DocType: Process Payroll,Send Email,發送電子郵件 -apps/erpnext/erpnext/stock/doctype/item/item.py +147,Warning: Invalid Attachment {0},警告:無效的附件{0} +apps/erpnext/erpnext/stock/doctype/item/item.py +148,Warning: Invalid Attachment {0},警告:無效的附件{0} apps/erpnext/erpnext/buying/doctype/supplier/supplier.py +88,No Permission,無權限 DocType: Company,Default Bank Account,預設銀行帳戶 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.py +47,"To filter based on Party, select Party Type first",要根據黨的篩選,選擇黨第一類型 @@ -700,7 +701,7 @@ apps/erpnext/erpnext/config/support.py +13,Support queries from customers.,客 DocType: Features Setup,"To enable ""Point of Sale"" features",為了使“銷售點”的特點 DocType: Bin,Moving Average Rate,移動平均房價 DocType: Production Planning Tool,Select Items,選擇項目 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +341,{0} against Bill {1} dated {2},{0}針對帳單{1}日期{2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +343,{0} against Bill {1} dated {2},{0}針對帳單{1}日期{2} DocType: Maintenance Visit,Completion Status,完成狀態 DocType: Sales Invoice Item,Target Warehouse,目標倉庫 DocType: Item,Allow over delivery or receipt upto this percent,允許在交付或接收高達百分之這 @@ -760,7 +761,7 @@ apps/erpnext/erpnext/config/accounts.py +158,Currency exchange rate master.,貨 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +253,Unable to find Time Slot in the next {0} days for Operation {1},找不到時隙在未來{0}天操作{1} DocType: Production Order,Plan material for sub-assemblies,計劃材料為子組件 apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +422,BOM {0} must be active,BOM {0}必須是積極的 -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +26,Please select the document type first,請先選擇文檔類型 +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +36,Please select the document type first,請先選擇文檔類型 apps/erpnext/erpnext/templates/generators/item.html +74,Goto Cart,轉到車 apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +65,Cancel Material Visits {0} before cancelling this Maintenance Visit,取消取消此保養訪問之前,材質訪問{0} DocType: Salary Slip,Leave Encashment Amount,假期兌現金額 @@ -778,7 +779,7 @@ DocType: Purchase Receipt,Range,範圍 DocType: Supplier,Default Payable Accounts,預設應付帳款 apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +40,Employee {0} is not active or does not exist,員工{0}不活躍或不存在 DocType: Features Setup,Item Barcode,商品條碼 -apps/erpnext/erpnext/stock/doctype/item/item.py +537,Item Variants {0} updated,項目變種{0}更新 +apps/erpnext/erpnext/stock/doctype/item/item.py +538,Item Variants {0} updated,項目變種{0}更新 DocType: Quality Inspection Reading,Reading 6,6閱讀 DocType: Purchase Invoice Advance,Purchase Invoice Advance,購買發票提前 DocType: Address,Shop,店 @@ -801,7 +802,7 @@ DocType: Salary Slip,Total in words,總計大寫 DocType: Material Request Item,Lead Time Date,交貨時間日期 apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +54, is mandatory. Maybe Currency Exchange record is not created for ,是強制性的。也許外幣兌換記錄沒有創建 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +112,Row #{0}: Please specify Serial No for Item {1},列#{0}:請為項目{1}指定序號 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +538,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.",對於“產品包”的物品,倉庫,序列號和批號將被從“裝箱單”表考慮。如果倉庫和批次號是相同的任何“產品包”項目的所有包裝物品,這些值可以在主項表中輸入,值將被複製到“裝箱單”表。 +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +532,"For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table.",對於“產品包”的物品,倉庫,序列號和批號將被從“裝箱單”表考慮。如果倉庫和批次號是相同的任何“產品包”項目的所有包裝物品,這些值可以在主項表中輸入,值將被複製到“裝箱單”表。 apps/erpnext/erpnext/config/stock.py +28,Shipments to customers.,發貨給客戶。 DocType: Purchase Invoice Item,Purchase Order Item,採購訂單項目 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +152,Indirect Income,間接收入 @@ -822,6 +823,7 @@ DocType: Process Payroll,Select Payroll Year and Month,選擇薪資年和月 apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +32,"Go to the appropriate group (usually Application of Funds > Current Assets > Bank Accounts and create a new Account (by clicking on Add Child) of type ""Bank""",轉到相應的群組(通常資金運用>流動資產>銀行帳戶,並新增一個新帳戶(通過點擊添加類型的兒童),“銀行” DocType: Workstation,Electricity Cost,電力成本 DocType: HR Settings,Don't send Employee Birthday Reminders,不要送員工生日提醒 +,Employee Holiday Attendance,員工假日出勤 DocType: Opportunity,Walk In,走在 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +64,Stock Entries,Stock條目 DocType: Item,Inspection Criteria,檢驗標準 @@ -844,7 +846,7 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +168,Stock Options, DocType: Journal Entry Account,Expense Claim,報銷 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +178,Qty for {0},數量為{0} DocType: Leave Application,Leave Application,休假申請 -apps/erpnext/erpnext/config/hr.py +77,Leave Allocation Tool,排假工具 +apps/erpnext/erpnext/config/hr.py +85,Leave Allocation Tool,排假工具 DocType: Leave Block List,Leave Block List Dates,休假區塊清單日期表 DocType: Company,If Monthly Budget Exceeded (for expense account),如果每月超出預算(用於報銷) DocType: Workstation,Net Hour Rate,淨小時率 @@ -854,7 +856,7 @@ DocType: Packing Slip Item,Packing Slip Item,包裝單項目 DocType: POS Profile,Cash/Bank Account,現金/銀行帳戶 apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +70,Removed items with no change in quantity or value.,刪除的項目在數量或價值沒有變化。 DocType: Delivery Note,Delivery To,交貨給 -apps/erpnext/erpnext/stock/doctype/item/item.py +560,Attribute table is mandatory,屬性表是強制性的 +apps/erpnext/erpnext/stock/doctype/item/item.py +561,Attribute table is mandatory,屬性表是強制性的 DocType: Production Planning Tool,Get Sales Orders,獲取銷售訂單 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +64,{0} can not be negative,{0}不能為負數 apps/erpnext/erpnext/public/js/pos/pos.html +28,Discount,折扣 @@ -918,7 +920,7 @@ DocType: SMS Center,Total Characters,總字元數 apps/erpnext/erpnext/controllers/buying_controller.py +130,Please select BOM in BOM field for Item {0},請BOM字段中選擇BOM的項目{0} DocType: C-Form Invoice Detail,C-Form Invoice Detail,C-表 發票詳細資訊 DocType: Payment Reconciliation Invoice,Payment Reconciliation Invoice,付款發票對帳 -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +32,Contribution %,貢獻% +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +42,Contribution %,貢獻% DocType: Item,website page link,網站頁面的鏈接 DocType: Company,Company registration numbers for your reference. Tax numbers etc.,公司註冊號碼,供大家參考。稅務號碼等 DocType: Sales Partner,Distributor,經銷商 @@ -960,10 +962,10 @@ DocType: Purchase Order Item,UOM Conversion Factor,計量單位換算係數 DocType: Stock Settings,Default Item Group,預設項目群組 apps/erpnext/erpnext/config/buying.py +13,Supplier database.,供應商數據庫。 DocType: Account,Balance Sheet,資產負債表 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +579,Cost Center For Item with Item Code ',成本中心與項目代碼“項目 +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +573,Cost Center For Item with Item Code ',成本中心與項目代碼“項目 DocType: Opportunity,Your sales person will get a reminder on this date to contact the customer,您的銷售人員將在此日期被提醒去聯繫客戶 apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +213,"Further accounts can be made under Groups, but entries can be made against non-Groups",進一步帳戶可以根據組進行,但條目可針對非組進行 -apps/erpnext/erpnext/config/hr.py +125,Tax and other salary deductions.,稅務及其他薪金中扣除。 +apps/erpnext/erpnext/config/hr.py +133,Tax and other salary deductions.,稅務及其他薪金中扣除。 DocType: Lead,Lead,潛在客戶 DocType: Email Digest,Payables,應付賬款 DocType: Account,Warehouse,倉庫 @@ -980,10 +982,10 @@ DocType: Payment Reconciliation,Unreconciled Payment Details,未核銷付款明 DocType: Global Defaults,Current Fiscal Year,當前會計年度 DocType: Global Defaults,Disable Rounded Total,禁用圓角總 DocType: Lead,Call,通話 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +407,'Entries' cannot be empty,“分錄”不能是空的 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +409,'Entries' cannot be empty,“分錄”不能是空的 apps/erpnext/erpnext/utilities/transaction_base.py +78,Duplicate row {0} with same {1},重複的行{0}同{1} ,Trial Balance,試算表 -apps/erpnext/erpnext/config/hr.py +205,Setting up Employees,建立職工 +apps/erpnext/erpnext/config/hr.py +220,Setting up Employees,建立職工 apps/erpnext/erpnext/public/js/feature_setup.js +220,"Grid """,電網“ apps/erpnext/erpnext/setup/doctype/naming_series/naming_series.py +150,Please select prefix first,請先選擇前綴稱號 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +138,Research,研究 @@ -992,7 +994,7 @@ apps/erpnext/erpnext/controllers/item_variant.py +25,Please specify at least one DocType: Contact,User ID,使用者 ID apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +132,View Ledger,查看總帳 apps/erpnext/erpnext/stock/report/stock_ageing/stock_ageing.py +41,Earliest,最早 -apps/erpnext/erpnext/stock/doctype/item/item.py +444,"An Item Group exists with same name, please change the item name or rename the item group",具有具有相同名稱的項目群組存在,請更改項目名稱或重新命名該項目群組 +apps/erpnext/erpnext/stock/doctype/item/item.py +445,"An Item Group exists with same name, please change the item name or rename the item group",具有具有相同名稱的項目群組存在,請更改項目名稱或重新命名該項目群組 DocType: Production Order,Manufacture against Sales Order,對製造銷售訂單 apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +450,Rest Of The World,世界其他地區 apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +81,The Item {0} cannot have Batch,該項目{0}不能有批 @@ -1017,7 +1019,7 @@ DocType: Purchase Receipt,Rejected Warehouse,拒絕倉庫 DocType: GL Entry,Against Voucher,對傳票 DocType: Item,Default Buying Cost Center,預設採購成本中心 apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +6,"To get the best out of ERPNext, we recommend that you take some time and watch these help videos.",為了獲得最好ERPNext,我們建議您花一些時間和觀看這些幫助視頻。 -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +38,Item {0} must be Sales Item,項{0}必須是銷售項目 +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +33,Item {0} must be Sales Item,項{0}必須是銷售項目 apps/erpnext/erpnext/public/js/controllers/taxes_and_totals.js +55, to ,到 DocType: Item,Lead Time in days,在天交貨期 ,Accounts Payable Summary,應付帳款摘要 @@ -1043,7 +1045,7 @@ apps/erpnext/erpnext/controllers/selling_controller.py +163,Row {0}: Qty is mand apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +8,Agriculture,農業 apps/erpnext/erpnext/public/js/setup_wizard.js +277,Your Products or Services,您的產品或服務 DocType: Mode of Payment,Mode of Payment,付款方式 -apps/erpnext/erpnext/stock/doctype/item/item.py +121,Website Image should be a public file or website URL,網站形象應該是一個公共文件或網站網址 +apps/erpnext/erpnext/stock/doctype/item/item.py +122,Website Image should be a public file or website URL,網站形象應該是一個公共文件或網站網址 apps/erpnext/erpnext/setup/doctype/item_group/item_group.js +31,This is a root item group and cannot be edited.,請先輸入項目 DocType: Journal Entry Account,Purchase Order,採購訂單 DocType: Warehouse,Warehouse Contact Info,倉庫聯繫方式 @@ -1054,7 +1056,7 @@ DocType: Serial No,Serial No Details,序列號詳細資訊 DocType: Purchase Invoice Item,Item Tax Rate,項目稅率 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +119,"For {0}, only credit accounts can be linked against another debit entry",{0},只有貸方帳戶可以連接另一個借方分錄 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +484,Delivery Note {0} is not submitted,送貨單{0}未提交 -apps/erpnext/erpnext/stock/get_item_details.py +130,Item {0} must be a Sub-contracted Item,項{0}必須是一個小項目簽約 +apps/erpnext/erpnext/stock/get_item_details.py +126,Item {0} must be a Sub-contracted Item,項{0}必須是一個小項目簽約 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +41,Capital Equipments,資本設備 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +31,"Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand.",基於“適用於”欄位是「項目」,「項目群組」或「品牌」,而選擇定價規則。 DocType: Hub Settings,Seller Website,賣家網站 @@ -1063,7 +1065,7 @@ apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py DocType: Appraisal Goal,Goal,目標 DocType: Sales Invoice Item,Edit Description,編輯說明 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +318,Expected Delivery Date is lesser than Planned Start Date.,預計交貨日期比計劃開始日期較早。 -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +766,For Supplier,對供應商 +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +760,For Supplier,對供應商 DocType: Account,Setting Account Type helps in selecting this Account in transactions.,設置帳戶類型有助於在交易中選擇該帳戶。 DocType: Purchase Invoice,Grand Total (Company Currency),總計(公司貨幣) apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +42,Total Outgoing,出貨總計 @@ -1115,7 +1117,6 @@ DocType: Authorization Rule,Average Discount,平均折扣 DocType: Address,Utilities,公用事業 DocType: Purchase Invoice Item,Accounting,會計 DocType: Features Setup,Features Setup,功能設置 -DocType: Item,Is Service Item,是服務項目 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +82,Application period cannot be outside leave allocation period,申請期間不能請假外分配週期 DocType: Activity Cost,Projects,專案 apps/erpnext/erpnext/hr/doctype/holiday_list/holiday_list.py +31,Please select Fiscal Year,請選擇會計年度 @@ -1136,7 +1137,7 @@ DocType: Item,Maintain Stock,維護庫存資料 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +212,Stock Entries already created for Production Order ,生產訂單已創建Stock條目 apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +31,Net Change in Fixed Asset,在固定資產淨變動 DocType: Leave Control Panel,Leave blank if considered for all designations,離開,如果考慮所有指定空白 -apps/erpnext/erpnext/controllers/accounts_controller.py +516,Charge of type 'Actual' in row {0} cannot be included in Item Rate,類型'實際'行{0}的計費,不能被包含在項目單價 +apps/erpnext/erpnext/controllers/accounts_controller.py +533,Charge of type 'Actual' in row {0} cannot be included in Item Rate,類型'實際'行{0}的計費,不能被包含在項目單價 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +179,Max: {0},最大數量:{0} apps/erpnext/erpnext/projects/report/daily_time_log_summary/daily_time_log_summary.py +16,From Datetime,從日期時間 DocType: Email Digest,For Company,對於公司 @@ -1145,8 +1146,8 @@ apps/erpnext/erpnext/accounts/report/gross_profit/gross_profit.py +70,Buying Amo DocType: Sales Invoice,Shipping Address Name,送貨地址名稱 apps/erpnext/erpnext/accounts/doctype/account/account.js +50,Chart of Accounts,科目表 DocType: Material Request,Terms and Conditions Content,條款及細則內容 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +471,cannot be greater than 100,不能大於100 -apps/erpnext/erpnext/stock/doctype/item/item.py +596,Item {0} is not a stock Item,項{0}不是缺貨登記 +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +465,cannot be greater than 100,不能大於100 +apps/erpnext/erpnext/stock/doctype/item/item.py +597,Item {0} is not a stock Item,項{0}不是缺貨登記 DocType: Maintenance Visit,Unscheduled,計劃外 DocType: Employee,Owned,擁有的 DocType: Salary Slip Deduction,Depends on Leave Without Pay,依賴於無薪休假 @@ -1167,7 +1168,7 @@ Used for Taxes and Charges",從項目主檔獲取的稅務詳細資訊表,成 apps/erpnext/erpnext/hr/doctype/employee/employee.py +151,Employee cannot report to himself.,員工不能報告自己。 DocType: Account,"If the account is frozen, entries are allowed to restricted users.",如果帳戶被凍結,條目被允許受限制的用戶。 DocType: Email Digest,Bank Balance,銀行結餘 -apps/erpnext/erpnext/controllers/accounts_controller.py +450,Accounting Entry for {0}: {1} can only be made in currency: {2},會計分錄為{0}:{1}只能在貨幣做:{2} +apps/erpnext/erpnext/controllers/accounts_controller.py +467,Accounting Entry for {0}: {1} can only be made in currency: {2},會計分錄為{0}:{1}只能在貨幣做:{2} apps/erpnext/erpnext/hr/doctype/salary_slip/salary_slip.py +44,No active Salary Structure found for employee {0} and the month,發現員工{0},而該月沒有活動的薪酬結構 DocType: Job Opening,"Job profile, qualifications required etc.",所需的工作概況,學歷等。 DocType: Journal Entry Account,Account Balance,帳戶餘額 @@ -1184,7 +1185,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +289,Sub Assemblies,子組件 DocType: Shipping Rule Condition,To Value,To值 DocType: Supplier,Stock Manager,庫存管理 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +144,Source warehouse is mandatory for row {0},列{0}的來源倉是必要的 -apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +599,Packing Slip,包裝單 +apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.js +593,Packing Slip,包裝單 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +111,Office Rent,辦公室租金 apps/erpnext/erpnext/config/setup.py +110,Setup SMS gateway settings,設置短信閘道設置 apps/erpnext/erpnext/hr/doctype/upload_attendance/upload_attendance.js +60,Import Failed!,導入失敗! @@ -1228,7 +1229,7 @@ DocType: Purchase Order Item Supplied,BOM Detail No,BOM表詳細編號 DocType: Purchase Invoice,Additional Discount Amount (Company Currency),額外的優惠金額(公司貨幣) apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.js +630,Error: {0} > {1},錯誤: {0} > {1} apps/erpnext/erpnext/accounts/doctype/account/account.js +8,Please create new account from Chart of Accounts.,請從科目表建立新帳戶。 -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +661,Maintenance Visit,維護訪問 +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +655,Maintenance Visit,維護訪問 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +49,Customer > Customer Group > Territory,客戶>客戶群組>領地 DocType: Sales Invoice Item,Available Batch Qty at Warehouse,可用的批次數量在倉庫 DocType: Time Log Batch Detail,Time Log Batch Detail,時間日誌批量詳情 @@ -1237,7 +1238,7 @@ DocType: Leave Block List,Block Holidays on important days.,重要的日子中 ,Accounts Receivable Summary,應收賬款匯總 apps/erpnext/erpnext/hr/doctype/employee/employee.py +187,Please set User ID field in an Employee record to set Employee Role,請在員工記錄設定員工角色設置用戶ID字段 DocType: UOM,UOM Name,計量單位名稱 -apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +33,Contribution Amount,貢獻金額 +apps/erpnext/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +43,Contribution Amount,貢獻金額 DocType: Sales Invoice,Shipping Address,送貨地址 DocType: Stock Reconciliation,This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses.,此工具可幫助您更新或修復系統中的庫存數量和價值。它通常被用於同步系統值和實際存在於您的倉庫。 DocType: Delivery Note,In Words will be visible once you save the Delivery Note.,送貨單一被儲存,就會顯示出來。 @@ -1278,7 +1279,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +118,The DocType: Features Setup,To track items using barcode. You will be able to enter items in Delivery Note and Sales Invoice by scanning barcode of item.,要使用條形碼跟踪項目。您將能夠通過掃描物品條碼,進入交貨單和銷售發票的項目。 apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.js +20,Resend Payment Email,重新發送付款電子郵件 DocType: Dependent Task,Dependent Task,相關任務 -apps/erpnext/erpnext/stock/doctype/item/item.py +349,Conversion factor for default Unit of Measure must be 1 in row {0},預設計量單位的轉換因子必須是1在行{0} +apps/erpnext/erpnext/stock/doctype/item/item.py +350,Conversion factor for default Unit of Measure must be 1 in row {0},預設計量單位的轉換因子必須是1在行{0} apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +157,Leave of type {0} cannot be longer than {1},請假類型{0}不能長於{1} DocType: Manufacturing Settings,Try planning operations for X days in advance.,嘗試規劃X天行動提前。 DocType: HR Settings,Stop Birthday Reminders,停止生日提醒 @@ -1288,7 +1289,7 @@ apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sa apps/erpnext/erpnext/public/js/pos/pos.js +512,{0} View,{0}查看 apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +93,Net Change in Cash,現金淨變動 DocType: Salary Structure Deduction,Salary Structure Deduction,薪酬結構演繹 -apps/erpnext/erpnext/stock/doctype/item/item.py +344,Unit of Measure {0} has been entered more than once in Conversion Factor Table,計量單位{0}已經進入不止一次在轉換係數表 +apps/erpnext/erpnext/stock/doctype/item/item.py +345,Unit of Measure {0} has been entered more than once in Conversion Factor Table,計量單位{0}已經進入不止一次在轉換係數表 apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +26,Payment Request already exists {0},付款申請已經存在{0} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +27,Cost of Issued Items,發布項目成本 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.js +182,Quantity must not be more than {0},數量必須不超過{0} @@ -1317,7 +1318,7 @@ DocType: BOM Item,BOM Item,BOM項目 DocType: Appraisal,For Employee,對於員工 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +112,Row {0}: Advance against Supplier must be debit,行{0}:提前對供應商必須扣除 DocType: Company,Default Values,默認值 -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +236,Row {0}: Payment amount can not be negative,行{0}:付款金額不能為負 +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +240,Row {0}: Payment amount can not be negative,行{0}:付款金額不能為負 DocType: Expense Claim,Total Amount Reimbursed,報銷金額合計 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +65,Against Supplier Invoice {0} dated {1},對供應商發票{0}日期{1} DocType: Customer,Default Price List,預設價格表 @@ -1345,8 +1346,7 @@ apps/erpnext/erpnext/config/support.py +18,Warranty Claim against Serial No.,針 DocType: BOM Replace Tool,"Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate ""BOM Explosion Item"" table as per new BOM",在它使用的所有其他材料明細表替換特定的BOM。它將取代舊的BOM鏈接,更新成本和再生“BOM展開項目”表按照新的BOM DocType: Shopping Cart Settings,Enable Shopping Cart,讓購物車 DocType: Employee,Permanent Address,永久地址 -apps/erpnext/erpnext/stock/get_item_details.py +116,Item {0} must be a Service Item.,項{0}必須是一個服務項目。 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +232,"Advance paid against {0} {1} cannot be greater \ +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +234,"Advance paid against {0} {1} cannot be greater \ than Grand Total {2}",推動打擊{0} {1}不能大於付出\超過總計{2} apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +148,Please select item code,請選擇商品代碼 DocType: Salary Structure Deduction,Reduce Deduction for Leave Without Pay (LWP),減少扣除停薪留職(LWP) @@ -1402,12 +1402,13 @@ DocType: Selling Settings,Allow multiple Sales Orders against a Customer's Purch apps/erpnext/erpnext/setup/doctype/company/company.py +139,Main,主頁 apps/erpnext/erpnext/stock/doctype/item/item.js +53,Variant,變種 DocType: Naming Series,Set prefix for numbering series on your transactions,為你的交易編號序列設置的前綴 +DocType: Employee Attendance Tool,Employees HTML,員工HTML apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +165,Stopped order cannot be cancelled. Unstop to cancel.,已停止訂單無法取消。 撤銷停止再取消。 -apps/erpnext/erpnext/stock/doctype/item/item.py +366,Default BOM ({0}) must be active for this item or its template,預設BOM({0})必須是活動的這個項目或者其模板 +apps/erpnext/erpnext/stock/doctype/item/item.py +367,Default BOM ({0}) must be active for this item or its template,預設BOM({0})必須是活動的這個項目或者其模板 DocType: Employee,Leave Encashed?,離開兌現? apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +32,Opportunity From field is mandatory,機會從字段是強制性的 DocType: Item,Variants,變種 -apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +775,Make Purchase Order,製作採購訂單 +apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.js +769,Make Purchase Order,製作採購訂單 DocType: SMS Center,Send To,發送到 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +129,There is not enough leave balance for Leave Type {0},沒有足夠的餘額休假請假類型{0} DocType: Payment Reconciliation Payment,Allocated amount,分配量 @@ -1508,7 +1509,7 @@ DocType: Sales Person,Name and Employee ID,姓名和僱員ID apps/erpnext/erpnext/accounts/party.py +271,Due Date cannot be before Posting Date,到期日不能在寄發日期之前 DocType: Website Item Group,Website Item Group,網站項目群組 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +170,Duties and Taxes,關稅和稅款 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Please enter Reference date,參考日期請輸入 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +327,Please enter Reference date,參考日期請輸入 apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +35,Payment Gateway Account is not configured,支付網關帳戶未配置 apps/erpnext/erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py +44,{0} payment entries can not be filtered by {1},{0}付款分錄不能由{1}過濾 DocType: Item Website Specification,Table for Item that will be shown in Web Site,表項,將在網站顯示出來 @@ -1529,7 +1530,6 @@ apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standar DocType: Issue,Resolution Details,詳細解析 DocType: Quality Inspection Reading,Acceptance Criteria,驗收標準 DocType: Item Attribute,Attribute Name,屬性名稱 -apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be Sales or Service Item in {1},項{0}必須在銷售或服務項目{1} DocType: Item Group,Show In Website,顯示在網站 apps/erpnext/erpnext/public/js/setup_wizard.js +287,Group,組 DocType: Task,Expected Time (in hours),預期時間(以小時計) @@ -1561,7 +1561,7 @@ DocType: Shipping Rule Condition,Shipping Amount,航運量 ,Pending Amount,待審核金額 DocType: Purchase Invoice Item,Conversion Factor,轉換因子 DocType: Purchase Order,Delivered,交付 -apps/erpnext/erpnext/config/hr.py +160,Setup incoming server for jobs email id. (e.g. jobs@example.com),設置接收服務器的工作電子郵件ID 。 (例如jobs@example.com ) +apps/erpnext/erpnext/config/hr.py +168,Setup incoming server for jobs email id. (e.g. jobs@example.com),設置接收服務器的工作電子郵件ID 。 (例如jobs@example.com ) DocType: Purchase Receipt,Vehicle Number,車號 DocType: Purchase Invoice,The date on which recurring invoice will be stop,在其經常性發票將被停止日期 apps/erpnext/erpnext/hr/doctype/leave_allocation/leave_allocation.py +88,Total allocated leaves {0} cannot be less than already approved leaves {1} for the period,共分配葉{0}不能小於已經批准葉{1}期間 @@ -1578,7 +1578,7 @@ DocType: HR Settings,HR Settings,人力資源設置 apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.js +115,Expense Claim is pending approval. Only the Expense Approver can update status.,使項目所需的質量保證和質量保證在沒有採購入庫單 DocType: Purchase Invoice,Additional Discount Amount,額外的折扣金額 DocType: Leave Block List Allow,Leave Block List Allow,休假區塊清單准許 -apps/erpnext/erpnext/setup/doctype/company/company.py +225,Abbr can not be blank or space,縮寫不能為空或空間 +apps/erpnext/erpnext/setup/doctype/company/company.py +228,Abbr can not be blank or space,縮寫不能為空或空間 apps/erpnext/erpnext/accounts/doctype/account/account.js +54,Group to Non-Group,集團以非組 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +50,Sports,體育 apps/erpnext/erpnext/accounts/report/budget_variance_report/budget_variance_report.py +61,Total Actual,實際總計 @@ -1602,7 +1602,7 @@ apps/erpnext/erpnext/controllers/accounts_controller.py +252,Account {0} is inva apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +34,UOM Conversion factor is required in row {0},計量單位換算係數是必需的行{0} apps/erpnext/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.py +52,Clearance date cannot be before check date in row {0},清拆日期不能行檢查日期前{0} DocType: Salary Slip,Deduction,扣除 -apps/erpnext/erpnext/stock/get_item_details.py +246,Item Price added for {0} in Price List {1},加入項目價格為{0}價格表{1} +apps/erpnext/erpnext/stock/get_item_details.py +242,Item Price added for {0} in Price List {1},加入項目價格為{0}價格表{1} DocType: Address Template,Address Template,地址模板 apps/erpnext/erpnext/selling/page/sales_browser/sales_browser.js +128,Please enter Employee Id of this sales person,請輸入這個銷售人員的員工標識 DocType: Territory,Classification of Customers by region,客戶按區域分類 @@ -1619,7 +1619,7 @@ DocType: Employee,Date of Birth,出生日期 apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +82,Item {0} has already been returned,項{0}已被退回 DocType: Fiscal Year,**Fiscal Year** represents a Financial Year. All accounting entries and other major transactions are tracked against **Fiscal Year**.,**財年**表示財政年度。所有的會計輸入項目和其他重大交易針對**財年**進行追蹤。 DocType: Opportunity,Customer / Lead Address,客戶/鉛地址 -apps/erpnext/erpnext/stock/doctype/item/item.py +151,Warning: Invalid SSL certificate on attachment {0},警告:附件無效的SSL證書{0} +apps/erpnext/erpnext/stock/doctype/item/item.py +152,Warning: Invalid SSL certificate on attachment {0},警告:附件無效的SSL證書{0} DocType: Production Order Operation,Actual Operation Time,實際操作時間 DocType: Authorization Rule,Applicable To (User),適用於(用戶) DocType: Purchase Taxes and Charges,Deduct,扣除 @@ -1636,7 +1636,7 @@ apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.p apps/erpnext/erpnext/config/stock.py +69,Split Delivery Note into packages.,分裂送貨單成包。 apps/erpnext/erpnext/hooks.py +69,Shipments,發貨 DocType: Purchase Order Item,To be delivered to customer,要傳送給客戶 -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +25,Time Log Status must be Submitted.,時間日誌狀態必須被提交。 +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +44,Time Log Status must be Submitted.,時間日誌狀態必須被提交。 apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +223,Serial No {0} does not belong to any Warehouse,序列號{0}不屬於任何倉庫 apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +157,Row # ,行# DocType: Purchase Invoice,In Words (Company Currency),大寫(Company Currency) @@ -1653,7 +1653,7 @@ DocType: Leave Application,Total Leave Days,總休假天數 DocType: Email Digest,Note: Email will not be sent to disabled users,注:電子郵件將不會被發送到被禁用的用戶 apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +36,Select Company...,選擇公司... DocType: Leave Control Panel,Leave blank if considered for all departments,保持空白如果考慮到全部部門 -apps/erpnext/erpnext/config/hr.py +95,"Types of employment (permanent, contract, intern etc.).",就業(永久,合同,實習生等)的類型。 +apps/erpnext/erpnext/config/hr.py +103,"Types of employment (permanent, contract, intern etc.).",就業(永久,合同,實習生等)的類型。 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +363,{0} is mandatory for Item {1},{0}是強制性的項目{1} DocType: Currency Exchange,From Currency,從貨幣 apps/erpnext/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py +154,"Please select Allocated Amount, Invoice Type and Invoice Number in atleast one row",請ATLEAST一行選擇分配金額,發票類型和發票號碼 @@ -1672,7 +1672,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +57,"e.g. ""Build tools for build DocType: Quality Inspection,In Process,在過程 DocType: Authorization Rule,Itemwise Discount,Itemwise折扣 DocType: Purchase Order Item,Reference Document Type,參考文檔類型 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +333,{0} against Sales Order {1},{0}針對銷售訂單{1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +335,{0} against Sales Order {1},{0}針對銷售訂單{1} DocType: Account,Fixed Asset,固定資產 apps/erpnext/erpnext/config/stock.py +278,Serialized Inventory,序列化庫存 DocType: Activity Type,Default Billing Rate,默認計費率 @@ -1682,7 +1682,7 @@ apps/erpnext/erpnext/accounts/report/item_wise_sales_register/item_wise_sales_re apps/erpnext/erpnext/config/selling.py +299,Sales Order to Payment,銷售訂單到付款 DocType: Expense Claim Detail,Expense Claim Detail,報銷詳情 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +271,Time Logs created:,時間日誌創建: -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +789,Please select correct account,請選擇正確的帳戶 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +791,Please select correct account,請選擇正確的帳戶 DocType: Item,Weight UOM,重量計量單位 DocType: Employee,Blood Group,血型 DocType: Purchase Invoice Item,Page Break,分頁符 @@ -1717,7 +1717,7 @@ apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +103, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +229,BOM recursion: {0} cannot be parent or child of {2},BOM遞歸: {0}不能父母或兒童{2} DocType: Production Order Operation,Completed Qty,完成數量 apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +122,"For {0}, only debit accounts can be linked against another credit entry",{0},只有借方帳戶可以連接另一個貸方分錄 -apps/erpnext/erpnext/stock/get_item_details.py +257,Price List {0} is disabled,價格表{0}被禁用 +apps/erpnext/erpnext/stock/get_item_details.py +253,Price List {0} is disabled,價格表{0}被禁用 DocType: Manufacturing Settings,Allow Overtime,允許加班 apps/erpnext/erpnext/stock/doctype/serial_no/serial_no.py +197,{0} Serial Numbers required for Item {1}. You have provided {2}.,{0}產品{1}需要的序號。您已提供{2}。 DocType: Stock Reconciliation Item,Current Valuation Rate,目前的估值價格 @@ -1768,7 +1768,6 @@ apps/erpnext/erpnext/stock/get_item_details.py +97,No Item with Barcode {0},沒 apps/erpnext/erpnext/stock/doctype/packing_slip/packing_slip.js +51,Case No. cannot be 0,案號不能為0 DocType: Features Setup,If you have Sales Team and Sale Partners (Channel Partners) they can be tagged and maintain their contribution in the sales activity,如果你有銷售團隊和銷售合作夥伴(渠道合作夥伴),他們可以被標記,並維持其在銷售貢獻活動 DocType: Item,Show a slideshow at the top of the page,顯示幻燈片在頁面頂部 -DocType: Item,"Allow in Sales Order of type ""Service""",允許在銷售訂單式“服務” apps/erpnext/erpnext/setup/doctype/company/company.py +80,Stores,商店 DocType: Time Log,Projects Manager,項目經理 DocType: Serial No,Delivery Time,交貨時間 @@ -1783,6 +1782,7 @@ DocType: Rename Tool,Rename Tool,重命名工具 apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +15,Update Cost,更新成本 DocType: Item Reorder,Item Reorder,項目重新排序 apps/erpnext/erpnext/stock/doctype/material_request/material_request.js +575,Transfer Material,轉印材料 +apps/erpnext/erpnext/controllers/selling_controller.py +236,Item {0} must be a Sales Item in {1},項{0}必須在銷售物料{1} DocType: BOM,"Specify the operations, operating cost and give a unique Operation no to your operations.",指定作業、作業成本並給予該作業一個專屬的作業編號。 DocType: Purchase Invoice,Price List Currency,價格表貨幣 DocType: Naming Series,User must always select,用戶必須始終選擇 @@ -1803,7 +1803,7 @@ DocType: Appraisal,Employee,僱員 apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.js +10,Import Email From,導入電子郵件發件人 apps/erpnext/erpnext/utilities/doctype/contact/contact.js +70,Invite as User,邀請成為用戶 DocType: Features Setup,After Sale Installations,銷售後安裝 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +220,{0} {1} is fully billed,{0} {1}}已開票 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +218,{0} {1} is fully billed,{0} {1}}已開票 DocType: Workstation Working Hour,End Time,結束時間 apps/erpnext/erpnext/config/setup.py +42,Standard contract terms for Sales or Purchase.,銷售或採購的標準合同條款。 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +75,Group by Voucher,集團透過券 @@ -1829,7 +1829,7 @@ DocType: Upload Attendance,Attendance To Date,出席會議日期 apps/erpnext/erpnext/config/selling.py +158,Setup incoming server for sales email id. (e.g. sales@example.com),設置接收服務器銷售的電子郵件ID 。 (例如sales@example.com ) DocType: Warranty Claim,Raised By,提出 DocType: Payment Gateway Account,Payment Account,付款帳號 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +734,Please specify Company to proceed,請註明公司以處理 +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +728,Please specify Company to proceed,請註明公司以處理 apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +20,Net Change in Accounts Receivable,應收賬款淨額變化 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +46,Compensatory Off,補假 DocType: Quality Inspection Reading,Accepted,接受的 @@ -1841,14 +1841,14 @@ DocType: Shipping Rule,Shipping Rule Label,送貨規則標籤 apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +205,Raw Materials cannot be blank.,原材料不能為空。 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +425,"Could not update stock, invoice contains drop shipping item.",無法更新庫存,發票包含下降航運項目。 DocType: Newsletter,Test,測試 -apps/erpnext/erpnext/stock/doctype/item/item.py +407,"As there are existing stock transactions for this item, \ +apps/erpnext/erpnext/stock/doctype/item/item.py +408,"As there are existing stock transactions for this item, \ you can not change the values of 'Has Serial No', 'Has Batch No', 'Is Stock Item' and 'Valuation Method'",由於有存量交易為這個項目,\你不能改變的值'有序列號','有批號','是股票項目“和”評估方法“ apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +459,Quick Journal Entry,快速日記帳分錄 apps/erpnext/erpnext/manufacturing/doctype/bom/bom.js +100,You can not change rate if BOM mentioned agianst any item,你不能改變速度,如果BOM中提到反對的任何項目 DocType: Employee,Previous Work Experience,以前的工作經驗 DocType: Stock Entry,For Quantity,對於數量 apps/erpnext/erpnext/manufacturing/doctype/production_planning_tool/production_planning_tool.py +157,Please enter Planned Qty for Item {0} at row {1},請輸入列{1}的品項{0}的計劃數量 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +217,{0} {1} is not submitted,{0} {1}未提交 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +215,{0} {1} is not submitted,{0} {1}未提交 apps/erpnext/erpnext/config/stock.py +18,Requests for items.,需求的項目。 DocType: Production Planning Tool,Separate production order will be created for each finished good item.,將對每個成品項目創建獨立的生產訂單。 DocType: Purchase Invoice,Terms and Conditions1,條款及條件1 @@ -1873,6 +1873,7 @@ DocType: Notification Control,Expense Claim Approved Message,報銷批准的訊 DocType: Email Digest,How frequently?,多久? DocType: Purchase Receipt,Get Current Stock,獲取當前庫存 apps/erpnext/erpnext/config/manufacturing.py +63,Tree of Bill of Materials,物料清單樹 +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +151,Mark Present,馬克現在 apps/erpnext/erpnext/support/doctype/maintenance_schedule/maintenance_schedule.py +198,Maintenance start date can not be before delivery date for Serial No {0},序號{0}的維護開始日期不能早於交貨日期 DocType: Production Order,Actual End Date,實際結束日期 DocType: Authorization Rule,Applicable To (Role),適用於(角色) @@ -1887,7 +1888,7 @@ apps/erpnext/erpnext/setup/page/welcome_to_erpnext/welcome_to_erpnext.html +21,N apps/erpnext/erpnext/hr/doctype/employee/employee.py +117,Contract End Date must be greater than Date of Joining,合同結束日期必須大於加入的日期 DocType: Sales Partner,A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission.,第三方分銷商/經銷商/代理商/分支機構/分銷商誰銷售公司產品的佣金。 DocType: Customer Group,Has Child Node,有子節點 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +345,{0} against Purchase Order {1},{0}針對採購訂單{1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +347,{0} against Purchase Order {1},{0}針對採購訂單{1} DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)",在這裡輸入靜態URL參數(如稱發件人= ERPNext,用戶名= ERPNext,密碼= 1234等) apps/erpnext/erpnext/accounts/utils.py +42,{0} {1} not in any active Fiscal Year. For more details check {2}.,{0} {1}不在任何現有的會計年度。詳情查看{2}。 apps/erpnext/erpnext/setup/setup_wizard/default_website.py +26,This is an example website auto-generated from ERPNext,這是一個示例網站從ERPNext自動生成 @@ -1935,7 +1936,7 @@ The tax rate you define here will be the standard tax rate for all **Items**. If 10。添加或扣除:無論你是想增加或扣除的稅。" DocType: Purchase Receipt Item,Recd Quantity,RECD數量 apps/erpnext/erpnext/manufacturing/doctype/production_order/production_order.py +104,Cannot produce more Item {0} than Sales Order quantity {1},無法產生更多的項目{0}不是銷售訂單數量{1} -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +494,Stock Entry {0} is not submitted,股票輸入{0}不提交 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +496,Stock Entry {0} is not submitted,股票輸入{0}不提交 DocType: Payment Reconciliation,Bank / Cash Account,銀行/現金帳戶 DocType: Tax Rule,Billing City,結算城市 DocType: Global Defaults,Hide Currency Symbol,隱藏貨幣符號 @@ -1961,7 +1962,7 @@ DocType: Salary Structure,Total Earning,總盈利 DocType: Purchase Receipt,Time at which materials were received,物料收到的時間 apps/erpnext/erpnext/utilities/doctype/address/address.py +118,My Addresses,我的地址 DocType: Stock Ledger Entry,Outgoing Rate,傳出率 -apps/erpnext/erpnext/config/hr.py +100,Organization branch master.,組織分支主檔。 +apps/erpnext/erpnext/config/hr.py +108,Organization branch master.,組織分支主檔。 apps/erpnext/erpnext/controllers/accounts_controller.py +253, or ,或 DocType: Sales Order,Billing Status,計費狀態 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +135,Utility Expenses,公用事業費用 @@ -1999,7 +2000,7 @@ DocType: Bin,Reserved Quantity,保留數量 DocType: Landed Cost Voucher,Purchase Receipt Items,採購入庫項目 apps/erpnext/erpnext/config/learn.py +21,Customizing Forms,自定義表單 DocType: Account,Income Account,收入帳戶 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +651,Delivery,交貨 +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +645,Delivery,交貨 DocType: Stock Reconciliation Item,Current Qty,目前數量 DocType: BOM Item,"See ""Rate Of Materials Based On"" in Costing Section",請見“材料成本基於”在成本核算章節 DocType: Appraisal Goal,Key Responsibility Area,關鍵責任區 @@ -2011,9 +2012,6 @@ apps/erpnext/erpnext/stock/report/stock_ledger/stock_ledger.py +36,Voucher #,憑 DocType: Notification Control,Purchase Order Message,採購訂單的訊息 DocType: Tax Rule,Shipping Country,航運國家 DocType: Upload Attendance,Upload HTML,上傳HTML -apps/erpnext/erpnext/controllers/accounts_controller.py +407,"Total advance ({0}) against Order {1} cannot be greater \ - than the Grand Total ({2})","預付款總額({0})反對令{1}不能大於\ -比總計({2})" DocType: Employee,Relieving Date,解除日期 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +12,"Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria.",定價規則是由覆蓋價格表/定義折扣百分比,基於某些條件。 DocType: Serial No,Warehouse can only be changed via Stock Entry / Delivery Note / Purchase Receipt,倉庫只能通過存貨分錄/送貨單/採購入庫單來改變 @@ -2023,8 +2021,8 @@ apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +31,Income Tax,所 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +15,"If selected Pricing Rule is made for 'Price', it will overwrite Price List. Pricing Rule price is the final price, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field.",如果選擇的定價規則是由為'價格',它將覆蓋價目表。定價規則價格是最終價格,所以沒有進一步的折扣應適用。因此,在像銷售訂單,採購訂單等交易,這將是“速度”字段進賬,而不是“價格單率”字段。 apps/erpnext/erpnext/config/selling.py +163,Track Leads by Industry Type.,以行業類型追蹤訊息。 DocType: Item Supplier,Item Supplier,產品供應商 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +328,Please enter Item Code to get batch no,請輸入產品編號,以獲得批號 -apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +663,Please select a value for {0} quotation_to {1},請選擇一個值{0} quotation_to {1} +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +326,Please enter Item Code to get batch no,請輸入產品編號,以獲得批號 +apps/erpnext/erpnext/selling/doctype/quotation/quotation.js +657,Please select a value for {0} quotation_to {1},請選擇一個值{0} quotation_to {1} apps/erpnext/erpnext/config/selling.py +33,All Addresses.,所有地址。 DocType: Company,Stock Settings,庫存設定 apps/erpnext/erpnext/accounts/doctype/account/account.py +218,"Merging is only possible if following properties are same in both records. Is Group, Root Type, Company",合併是唯一可能的,如果以下屬性中均有記載相同。是集團,根型,公司 @@ -2047,7 +2045,7 @@ DocType: Bank Reconciliation Detail,Cheque Number,支票號碼 DocType: Payment Tool Detail,Payment Tool Detail,支付工具的詳細資訊 ,Sales Browser,銷售瀏覽器 DocType: Journal Entry,Total Credit,貸方總額 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +497,Warning: Another {0} # {1} exists against stock entry {2},警告:另一個{0}#{1}存在對股票入門{2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +499,Warning: Another {0} # {1} exists against stock entry {2},警告:另一個{0}#{1}存在對股票入門{2} apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +392,Local,當地 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +26,Loans and Advances (Assets),貸款及墊款(資產) apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +12,Debtors,債務人 @@ -2067,8 +2065,8 @@ DocType: Price List,Price List Master,價格表主檔 DocType: Sales Person,All Sales Transactions can be tagged against multiple **Sales Persons** so that you can set and monitor targets.,所有的銷售交易,可以用來標記針對多個**銷售**的人,這樣你可以設置和監控目標。 ,S.O. No.,SO號 DocType: Production Order Operation,Make Time Log,讓時間日誌 -apps/erpnext/erpnext/stock/doctype/item/item.py +421,Please set reorder quantity,請設置再訂購數量 -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +159,Please create Customer from Lead {0},請牽頭建立客戶{0} +apps/erpnext/erpnext/stock/doctype/item/item.py +422,Please set reorder quantity,請設置再訂購數量 +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +154,Please create Customer from Lead {0},請牽頭建立客戶{0} DocType: Price List,Applicable for Countries,適用於國家 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +44,Computers,電腦 apps/erpnext/erpnext/setup/doctype/customer_group/customer_group.js +14,This is a root customer group and cannot be edited.,ERPNext是一個開源的基於Web的ERP系統,通過網路技術,向私人有限公司提供整合的工具,在一個小的組織管理大多數流程。有關Web註釋,或購買託管,想得到更多資訊,請連結 @@ -2116,7 +2114,7 @@ apps/erpnext/erpnext/accounts/page/pos/pos.js +15,Billing (Sales Invoice),計費 DocType: Payment Reconciliation Invoice,Outstanding Amount,未償還的金額 DocType: Project Task,Working,工作的 DocType: Stock Ledger Entry,Stock Queue (FIFO),庫存序列(先進先出) -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +13,Please select Time Logs.,請選擇時間記錄。 +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +24,Please select Time Logs.,請選擇時間記錄。 apps/erpnext/erpnext/accounts/doctype/pos_profile/pos_profile.py +37,{0} does not belong to Company {1},{0}不屬於公司{1} DocType: Account,Round Off,四捨五入 ,Requested Qty,要求數量 @@ -2154,7 +2152,7 @@ apps/erpnext/erpnext/accounts/report/financial_statements.py +16,Fiscal Year {0} DocType: Bank Reconciliation,Get Relevant Entries,獲取相關條目 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +409,Accounting Entry for Stock,存貨的會計分錄 DocType: Sales Invoice,Sales Team1,銷售團隊1 -apps/erpnext/erpnext/stock/doctype/item/item.py +462,Item {0} does not exist,項目{0}不存在 +apps/erpnext/erpnext/stock/doctype/item/item.py +463,Item {0} does not exist,項目{0}不存在 DocType: Sales Invoice,Customer Address,客戶地址 DocType: Payment Request,Recipient and Message,收件人和消息 DocType: Purchase Invoice,Apply Additional Discount On,收取額外折扣 @@ -2173,7 +2171,7 @@ DocType: Company,Legal Entity / Subsidiary with a separate Chart of Accounts bel DocType: Payment Request,Mute Email,靜音電子郵件 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +29,"Food, Beverage & Tobacco",食品、飲料&煙草 apps/erpnext/erpnext/accounts/page/financial_analytics/financial_analytics.js +20,PL or BS,PL或BS -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +554,Can only make payment against unbilled {0},只能使支付對未付款的{0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +556,Can only make payment against unbilled {0},只能使支付對未付款的{0} apps/erpnext/erpnext/controllers/selling_controller.py +122,Commission rate cannot be greater than 100,佣金率不能大於100 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +41,Minimum Inventory Level,最低庫存水平 DocType: Stock Entry,Subcontract,轉包 @@ -2191,9 +2189,10 @@ apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +49,Software,軟件 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +151,Colour,顏色 DocType: Maintenance Visit,Scheduled,預定 apps/erpnext/erpnext/selling/doctype/product_bundle/product_bundle.js +13,"Please select Item where ""Is Stock Item"" is ""No"" and ""Is Sales Item"" is ""Yes"" and there is no other Product Bundle",請選擇項,其中“正股項”是“否”和“是銷售物品”是“是”,沒有其他產品捆綁 +apps/erpnext/erpnext/controllers/accounts_controller.py +425,Total advance ({0}) against Order {1} cannot be greater than the Grand Total ({2}),總的超前({0})對二階{1}不能大於總計({2}) DocType: Sales Partner,Select Monthly Distribution to unevenly distribute targets across months.,選擇按月分佈橫跨幾個月不均勻分佈的目標。 DocType: Purchase Invoice Item,Valuation Rate,估值率 -apps/erpnext/erpnext/stock/get_item_details.py +278,Price List Currency not selected,尚未選擇價格表貨幣 +apps/erpnext/erpnext/stock/get_item_details.py +274,Price List Currency not selected,尚未選擇價格表貨幣 apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py +63,Item Row {0}: Purchase Receipt {1} does not exist in above 'Purchase Receipts' table,項目行{0}:採購入庫{1}不在上述“採購入庫單”表中存在 apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +147,Employee {0} has already applied for {1} between {2} and {3},員工{0}已經申請了{1}的{2}和{3} apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Project Start Date,專案開始日期 @@ -2205,6 +2204,7 @@ DocType: Quality Inspection,Inspection Type,檢驗類型 apps/erpnext/erpnext/controllers/recurring_document.py +164,Please select {0},請選擇{0} DocType: C-Form,C-Form No,C-表格編號 DocType: BOM,Exploded_items,Exploded_items +DocType: Employee Attendance Tool,Unmarked Attendance,無標記考勤 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +95,Researcher,研究員 apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +78,Please save the Newsletter before sending,請在發送之前保存信件 apps/erpnext/erpnext/hr/doctype/job_applicant/job_applicant.py +23,Name or Email is mandatory,姓名或電子郵件是強制性 @@ -2230,7 +2230,7 @@ apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,Confirmed,確認 DocType: Payment Gateway,Gateway,網關 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +52,Supplier > Supplier Type,供應商>供應商類型 apps/erpnext/erpnext/hr/doctype/employee/employee.py +127,Please enter relieving date.,請輸入解除日期。 -apps/erpnext/erpnext/controllers/trends.py +137,Amt,AMT +apps/erpnext/erpnext/controllers/trends.py +138,Amt,AMT apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +51,Only Leave Applications with status 'Approved' can be submitted,只允許提交狀態為「已批准」的休假申請 apps/erpnext/erpnext/utilities/doctype/address/address.py +24,Address Title is mandatory.,地址標題是強制性的。 DocType: Opportunity,Enter name of campaign if source of enquiry is campaign,輸入活動的名稱,如果查詢來源是運動 @@ -2245,10 +2245,11 @@ DocType: Purchase Receipt Item,Accepted Warehouse,收料倉庫 DocType: Bank Reconciliation Detail,Posting Date,發布日期 DocType: Item,Valuation Method,估值方法 apps/erpnext/erpnext/setup/utils.py +91,Unable to find exchange rate for {0} to {1},找不到匯率{0} {1} +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +202,Mark Half Day,馬克半天 DocType: Sales Invoice,Sales Team,銷售團隊 apps/erpnext/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py +88,Duplicate entry,重複的條目 DocType: Serial No,Under Warranty,在保修期 -apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +414,[Error],[錯誤] +apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.js +408,[Error],[錯誤] DocType: Sales Order,In Words will be visible once you save the Sales Order.,銷售訂單一被儲存,就會顯示出來。 ,Employee Birthday,員工生日 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +55,Venture Capital,創業投資 @@ -2271,6 +2272,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +50,Period C apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +62,Cost Center with existing transactions can not be converted to group,與現有的交易成本中心,不能轉化為組 DocType: Account,Depreciation,折舊 apps/erpnext/erpnext/stock/report/supplier_wise_sales_analytics/supplier_wise_sales_analytics.py +49,Supplier(s),供應商(S) +DocType: Employee Attendance Tool,Employee Attendance Tool,員工考勤工具 DocType: Supplier,Credit Limit,信用額度 apps/erpnext/erpnext/accounts/page/pos/pos_page.html +4,Select type of transaction,交易的選擇類型 DocType: GL Entry,Voucher No,憑證編號 @@ -2297,7 +2299,7 @@ apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +28,Net Cash from In apps/erpnext/erpnext/accounts/doctype/account/account.py +193,Root account can not be deleted,root帳號不能被刪除 ,Is Primary Address,是主地址 DocType: Production Order,Work-in-Progress Warehouse,在製品倉庫 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +323,Reference #{0} dated {1},參考# {0}於{1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +325,Reference #{0} dated {1},參考# {0}於{1} apps/erpnext/erpnext/templates/includes/cart/cart_address.html +13,Manage Addresses,管理地址 DocType: Pricing Rule,Item Code,產品編號 DocType: Production Planning Tool,Create Production Orders,建立生產訂單 @@ -2324,7 +2326,7 @@ DocType: Bank Reconciliation,Bank Reconciliation,銀行對帳 apps/erpnext/erpnext/templates/includes/footer/footer_extension.html +9,Get Updates,獲取更新 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.py +135,Material Request {0} is cancelled or stopped,材料需求{0}被取消或停止 apps/erpnext/erpnext/public/js/setup_wizard.js +307,Add a few sample records,添加了一些樣本記錄 -apps/erpnext/erpnext/config/hr.py +210,Leave Management,離開管理 +apps/erpnext/erpnext/config/hr.py +225,Leave Management,離開管理 apps/erpnext/erpnext/accounts/report/general_ledger/general_ledger.js +81,Group by Account,以帳戶分群組 DocType: Sales Order,Fully Delivered,完全交付 DocType: Lead,Lower Income,較低的收入 @@ -2339,6 +2341,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +131,Pur apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +18,'From Date' must be after 'To Date',“起始日期”必須經過'終止日期' ,Stock Projected Qty,存貨預計數量 apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +137,Customer {0} does not belong to project {1},客戶{0}不屬於項目{1} +DocType: Employee Attendance Tool,Marked Attendance HTML,顯著的考勤HTML DocType: Sales Order,Customer's Purchase Order,客戶採購訂單 DocType: Warranty Claim,From Company,從公司 apps/erpnext/erpnext/buying/page/purchase_analytics/purchase_analytics.js +95,Value or Qty,價值或數量 @@ -2403,6 +2406,7 @@ apps/erpnext/erpnext/accounts/doctype/shipping_rule/shipping_rule.py +44,From va apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +133,Wire Transfer,電匯 apps/erpnext/erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py +25,Please select Bank Account,請選擇銀行帳戶 DocType: Newsletter,Create and Send Newsletters,建立和發送簡訊 +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +131,Check all,全面檢查 DocType: Sales Order,Recurring Order,經常訂購 DocType: Company,Default Income Account,預設之收入帳戶 apps/erpnext/erpnext/selling/page/sales_analytics/sales_analytics.js +33,Customer Group / Customer,客戶群組/客戶 @@ -2434,6 +2438,7 @@ DocType: Purchase Invoice,Return Against Purchase Invoice,回到對採購發票 DocType: Item,Warranty Period (in days),保修期限(天數) apps/erpnext/erpnext/accounts/report/cash_flow/cash_flow.py +16,Net Cash from Operations,從運營的淨現金 apps/erpnext/erpnext/public/js/setup_wizard.js +222,e.g. VAT,例如增值稅 +apps/erpnext/erpnext/config/hr.py +65,Mark Employee Attendance in Bulk,馬克員工考勤的散裝 apps/erpnext/erpnext/stock/report/bom_search/bom_search.js +26,Item 4,項目4 DocType: Journal Entry Account,Journal Entry Account,日記帳分錄帳號 DocType: Shopping Cart Settings,Quotation Series,報價系列 @@ -2579,14 +2584,14 @@ DocType: Task,Actual Start Date (via Time Logs),實際開始日期(通過時 DocType: Stock Reconciliation Item,Before reconciliation,調整前 apps/erpnext/erpnext/support/doctype/maintenance_visit/maintenance_visit.py +12,To {0},{0} DocType: Purchase Invoice,Taxes and Charges Added (Company Currency),稅收和收費上架(公司貨幣) -apps/erpnext/erpnext/stock/doctype/item/item.py +383,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,商品稅行{0}必須有帳戶類型稅或收入或支出或課稅的 +apps/erpnext/erpnext/stock/doctype/item/item.py +384,Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable,商品稅行{0}必須有帳戶類型稅或收入或支出或課稅的 DocType: Sales Order,Partly Billed,天色帳單 DocType: Item,Default BOM,預設的BOM apps/erpnext/erpnext/setup/doctype/company/company.js +22,Please re-type company name to confirm,請確認重新輸入公司名稱 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +70,Total Outstanding Amt,總街貨量金額 DocType: Time Log Batch,Total Hours,總時數 DocType: Journal Entry,Printing Settings,打印設置 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +264,Total Debit must be equal to Total Credit. The difference is {0},借方總額必須等於貸方總額。差額為{0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +266,Total Debit must be equal to Total Credit. The difference is {0},借方總額必須等於貸方總額。差額為{0} apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +11,Automotive,汽車 apps/erpnext/erpnext/selling/doctype/installation_note/installation_note.js +50,From Delivery Note,從送貨單 DocType: Time Log,From Time,從時間 @@ -2633,7 +2638,7 @@ DocType: Purchase Invoice Item,Image View,圖像查看 DocType: Issue,Opening Time,開放時間 apps/erpnext/erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py +92,From and To dates required,需要起始和到達日期 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +46,Securities & Commodity Exchanges,證券及商品交易所 -apps/erpnext/erpnext/stock/doctype/item/item.py +553,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',測度變異的默認單位“{0}”必須是相同模板“{1}” +apps/erpnext/erpnext/stock/doctype/item/item.py +554,Default Unit of Measure for Variant '{0}' must be same as in Template '{1}',測度變異的默認單位“{0}”必須是相同模板“{1}” DocType: Shipping Rule,Calculate Based On,計算的基礎上 DocType: Delivery Note Item,From Warehouse,從倉庫 DocType: Purchase Taxes and Charges,Valuation and Total,估值與總計 @@ -2655,7 +2660,7 @@ DocType: Leave Application,Follow via Email,通過電子郵件跟隨 DocType: Purchase Taxes and Charges,Tax Amount After Discount Amount,稅額折後金額 apps/erpnext/erpnext/accounts/doctype/account/account.py +198,Child account exists for this account. You can not delete this account.,此帳戶存在子帳戶。您無法刪除此帳戶。 apps/erpnext/erpnext/setup/doctype/territory/territory.py +19,Either target qty or target amount is mandatory,無論是數量目標或目標量是必需的 -apps/erpnext/erpnext/stock/get_item_details.py +469,No default BOM exists for Item {0},項目{0}不存在預設的的BOM +apps/erpnext/erpnext/stock/get_item_details.py +465,No default BOM exists for Item {0},項目{0}不存在預設的的BOM apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.js +335,Please select Posting Date first,請選擇發布日期第一 apps/erpnext/erpnext/public/js/account_tree_grid.js +211,Opening Date should be before Closing Date,開業日期應該是截止日期之前, DocType: Leave Control Panel,Carry Forward,發揚 @@ -2733,7 +2738,7 @@ DocType: Leave Type,Is Encash,為兌現 DocType: Purchase Invoice,Mobile No,手機號碼 DocType: Payment Tool,Make Journal Entry,使日記帳分錄 DocType: Leave Allocation,New Leaves Allocated,新的排假 -apps/erpnext/erpnext/controllers/trends.py +257,Project-wise data is not available for Quotation,項目明智的數據不適用於報價 +apps/erpnext/erpnext/controllers/trends.py +258,Project-wise data is not available for Quotation,項目明智的數據不適用於報價 DocType: Project,Expected End Date,預計結束日期 DocType: Appraisal Template,Appraisal Template Title,評估模板標題 apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +373,Commercial,商業 @@ -2781,6 +2786,7 @@ apps/erpnext/erpnext/config/stock.py +38,Installation record for a Serial No., apps/erpnext/erpnext/public/js/queries.js +39,Please specify a,請指定一個 DocType: Offer Letter,Awaiting Response,正在等待回應 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.py +53,Above,以上 +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +40,Time Log has been Billed,時間日誌已帳單 DocType: Salary Slip,Earning & Deduction,收入及扣除 apps/erpnext/erpnext/accounts/doctype/gl_entry/gl_entry.py +76,Account {0} cannot be a Group,帳戶{0}不能為集團 apps/erpnext/erpnext/accounts/page/accounts_browser/accounts_browser.js +219,Optional. This setting will be used to filter in various transactions.,可選。此設置將被應用於過濾各種交易進行。 @@ -2851,14 +2857,14 @@ apps/erpnext/erpnext/accounts/doctype/account/account.py +50,Account {0}: Parent apps/erpnext/erpnext/setup/doctype/company/company.js +38,Successfully deleted all transactions related to this company!,成功刪除與該公司相關的所有交易! apps/erpnext/erpnext/accounts/report/accounts_payable/accounts_payable.js +21,As on Date,隨著對日 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +58,Probation,緩刑 -apps/erpnext/erpnext/stock/doctype/item/item.py +307,Default Warehouse is mandatory for stock Item.,預設倉庫對庫存項目是強制性的。 +apps/erpnext/erpnext/stock/doctype/item/item.py +308,Default Warehouse is mandatory for stock Item.,預設倉庫對庫存項目是強制性的。 apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +173,Payment of salary for the month {0} and year {1},{1}年{0}月的薪資支付 DocType: Stock Settings,Auto insert Price List rate if missing,自動插入價目表率,如果丟失 apps/erpnext/erpnext/accounts/report/accounts_receivable/accounts_receivable.html +25,Total Paid Amount,總支付金額 ,Transferred Qty,轉讓數量 apps/erpnext/erpnext/config/learn.py +11,Navigating,導航 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +137,Planning,規劃 -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +9,Make Time Log Batch,做時間記錄批 +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +20,Make Time Log Batch,做時間記錄批 apps/erpnext/erpnext/stock/doctype/material_request/material_request_list.js +14,Issued,發行 DocType: Project,Total Billing Amount (via Time Logs),總結算金額(通過時間日誌) apps/erpnext/erpnext/public/js/setup_wizard.js +295,We sell this Item,我們賣這種產品 @@ -2866,7 +2872,7 @@ apps/erpnext/erpnext/accounts/report/purchase_register/purchase_register.py +65, apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +200,Quantity should be greater than 0,量應大於0 DocType: Journal Entry,Cash Entry,現金分錄 DocType: Sales Partner,Contact Desc,聯繫倒序 -apps/erpnext/erpnext/config/hr.py +135,"Type of leaves like casual, sick etc.",葉似漫不經心,生病等類型 +apps/erpnext/erpnext/config/hr.py +143,"Type of leaves like casual, sick etc.",葉似漫不經心,生病等類型 DocType: Email Digest,Send regular summary reports via Email.,通過電子郵件發送定期匯總報告。 DocType: Brand,Item Manager,項目經理 DocType: Cost Center,Add rows to set annual budgets on Accounts.,在帳戶的年度預算中加入新一列。 @@ -2881,7 +2887,7 @@ DocType: GL Entry,Party Type,黨的類型 apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +66,Raw material cannot be same as main Item,原料不能同主品相 DocType: Item Attribute Value,Abbreviation,縮寫 apps/erpnext/erpnext/setup/doctype/authorization_control/authorization_control.py +36,Not authroized since {0} exceeds limits,不允許因為{0}超出範圍 -apps/erpnext/erpnext/config/hr.py +115,Salary template master.,薪資套版主檔。 +apps/erpnext/erpnext/config/hr.py +123,Salary template master.,薪資套版主檔。 DocType: Leave Type,Max Days Leave Allowed,允許的最長休假天 apps/erpnext/erpnext/shopping_cart/doctype/shopping_cart_settings/shopping_cart_settings.py +55,Set Tax Rule for shopping cart,購物車設置稅收規則 DocType: Payment Tool,Set Matching Amounts,設置相同的金額 @@ -2894,7 +2900,7 @@ apps/erpnext/erpnext/config/selling.py +18,Quotes to Leads or Customers.,行情 DocType: Stock Settings,Role Allowed to edit frozen stock,角色可以編輯凍結的庫存 ,Territory Target Variance Item Group-Wise,地域內跨項目群組間的目標差異 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +101,All Customer Groups,所有客戶群組 -apps/erpnext/erpnext/controllers/accounts_controller.py +491,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0}是強制性的。也許外幣兌換記錄為{1}到{2}尚未建立。 +apps/erpnext/erpnext/controllers/accounts_controller.py +508,{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}.,{0}是強制性的。也許外幣兌換記錄為{1}到{2}尚未建立。 apps/erpnext/erpnext/accounts/doctype/tax_rule/tax_rule.py +37,Tax Template is mandatory.,稅務模板是強制性的。 apps/erpnext/erpnext/accounts/doctype/account/account.py +44,Account {0}: Parent account {1} does not exist,帳戶{0}:父帳戶{1}不存在 DocType: Purchase Invoice Item,Price List Rate (Company Currency),價格列表費率(公司貨幣) @@ -2914,8 +2920,8 @@ DocType: Purchase Taxes and Charges,Item Wise Tax Detail,項目智者稅制明 ,Item-wise Price List Rate,全部項目的價格表 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +691,Supplier Quotation,供應商報價 DocType: Quotation,In Words will be visible once you save the Quotation.,報價一被儲存,就會顯示出來。 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +223,{0} {1} is stopped,{0} {1}已停止 -apps/erpnext/erpnext/stock/doctype/item/item.py +395,Barcode {0} already used in Item {1},條碼{0}已經用在項目{1} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +221,{0} {1} is stopped,{0} {1}已停止 +apps/erpnext/erpnext/stock/doctype/item/item.py +396,Barcode {0} already used in Item {1},條碼{0}已經用在項目{1} DocType: Lead,Add to calendar on this date,在此日期加到日曆 apps/erpnext/erpnext/config/selling.py +132,Rules for adding shipping costs.,增加運輸成本的規則。 apps/erpnext/erpnext/setup/doctype/email_digest/templates/default.html +40,Upcoming Events,活動預告 @@ -2942,8 +2948,8 @@ apps/erpnext/erpnext/setup/setup_wizard/setup_wizard.py +134,Standard Selling, apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +138,Atleast one warehouse is mandatory,至少要有一間倉庫 DocType: Serial No,Out of Warranty,超出保修期 DocType: BOM Replace Tool,Replace,更換 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +329,{0} against Sales Invoice {1},{0}針對銷售發票{1} -apps/erpnext/erpnext/stock/doctype/item/item.py +58,Please enter default Unit of Measure,請輸入預設的計量單位 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +331,{0} against Sales Invoice {1},{0}針對銷售發票{1} +apps/erpnext/erpnext/stock/doctype/item/item.py +59,Please enter default Unit of Measure,請輸入預設的計量單位 DocType: Purchase Invoice Item,Project Name,專案名稱 DocType: Supplier,Mention if non-standard receivable account,提到如果不規範應收賬款 DocType: Journal Entry Account,If Income or Expense,如果收入或支出 @@ -2968,7 +2974,7 @@ apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.js +40,"If two o apps/erpnext/erpnext/controllers/trends.py +36,Fiscal Year: {0} does not exists,會計年度:{0}不存在 DocType: Currency Exchange,To Currency,到貨幣 DocType: Leave Block List,Allow the following users to approve Leave Applications for block days.,允許以下用戶批准許可申請的區塊天。 -apps/erpnext/erpnext/config/hr.py +155,Types of Expense Claim.,報銷的類型。 +apps/erpnext/erpnext/config/hr.py +163,Types of Expense Claim.,報銷的類型。 DocType: Item,Taxes,稅 apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +301,Paid and Not Delivered,支付和未送達 DocType: Project,Default Cost Center,預設的成本中心 @@ -2998,7 +3004,7 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +186,"Add users to your organizat apps/erpnext/erpnext/controllers/sales_and_purchase_return.py +97,Row # {0}: Serial No {1} does not match with {2} {3},行#{0}:序列號{1}不相匹配{2} {3} apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +44,Casual Leave,事假 DocType: Batch,Batch ID,批次ID -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +349,Note: {0},注: {0} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +351,Note: {0},注: {0} ,Delivery Note Trends,送貨單趨勢 apps/erpnext/erpnext/setup/doctype/email_digest/email_digest.py +104,This Week's Summary,本週的總結 apps/erpnext/erpnext/buying/doctype/purchase_common/purchase_common.py +74,{0} must be a Purchased or Sub-Contracted Item in row {1},{0}必須是購買或分包項目中列{1} @@ -3038,6 +3044,7 @@ DocType: Project Task,Pending Review,待審核 apps/erpnext/erpnext/accounts/doctype/payment_request/payment_request.py +122, Click here to pay,點擊這裡要 DocType: Task,Total Expense Claim (via Expense Claim),總費用報銷(通過費用報銷) apps/erpnext/erpnext/accounts/report/sales_register/sales_register.py +66,Customer Id,客戶ID +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +176,Mark Absent,馬克缺席 apps/erpnext/erpnext/projects/doctype/time_log/time_log.py +108,To Time must be greater than From Time,到時間必須大於從時間 DocType: Journal Entry Account,Exchange Rate,匯率 apps/erpnext/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +481,Sales Order {0} is not submitted,銷售訂單{0}未提交 @@ -3085,7 +3092,7 @@ DocType: Item Group,Default Expense Account,預設費用帳戶 DocType: Employee,Notice (days),通告(天) DocType: Tax Rule,Sales Tax Template,銷售稅模板 DocType: Employee,Encashment Date,兌現日期 -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +179,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry",對憑證類型必須是採購訂單,採購發票或日記帳分錄 +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +183,"Against Voucher Type must be one of Purchase Order, Purchase Invoice or Journal Entry",對憑證類型必須是採購訂單,採購發票或日記帳分錄 DocType: Account,Stock Adjustment,庫存調整 apps/erpnext/erpnext/projects/doctype/activity_cost/activity_cost.py +34,Default Activity Cost exists for Activity Type - {0},默認情況下存在作業成本的活動類型 - {0} DocType: Production Order,Planned Operating Cost,計劃運營成本 @@ -3139,6 +3146,7 @@ apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +30, DocType: Journal Entry,Write Off Entry,核銷進入 DocType: BOM,Rate Of Materials Based On,材料成本基於 apps/erpnext/erpnext/support/page/support_analytics/support_analytics.js +21,Support Analtyics,支援分析 +apps/erpnext/erpnext/hr/doctype/employee_attendance_tool/employee_attendance_tool.js +141,Uncheck all,取消所有 apps/erpnext/erpnext/accounts/doctype/accounts_settings/accounts_settings.py +27,Company is missing in warehouses {0},公司在倉庫缺少{0} DocType: POS Profile,Terms and Conditions,條款和條件 apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.py +45,To Date should be within the Fiscal Year. Assuming To Date = {0},日期應該是在財政年度內。假設終止日期= {0} @@ -3160,7 +3168,7 @@ apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +429,Transaction n apps/erpnext/erpnext/accounts/doctype/fiscal_year/fiscal_year.js +19,"To set this Fiscal Year as Default, click on 'Set as Default'",要設定這個財政年度為預設值,點擊“設為預設” apps/erpnext/erpnext/config/support.py +54,Setup incoming server for support email id. (e.g. support@example.com),設置接收郵件服務器支持電子郵件ID 。 (例如support@example.com ) apps/erpnext/erpnext/stock/report/stock_projected_qty/stock_projected_qty.py +19,Shortage Qty,短缺數量 -apps/erpnext/erpnext/stock/doctype/item/item.py +577,Item variant {0} exists with same attributes,項目變種{0}存在具有相同屬性 +apps/erpnext/erpnext/stock/doctype/item/item.py +578,Item variant {0} exists with same attributes,項目變種{0}存在具有相同屬性 DocType: Salary Slip,Salary Slip,工資單 apps/erpnext/erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py +48,'To Date' is required,“至日期”是必需填寫的 DocType: Packing Slip,"Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight.",產生交貨的包裝單。用於通知箱號,內容及重量。 @@ -3208,7 +3216,7 @@ apps/erpnext/erpnext/selling/doctype/campaign/campaign.js +10,View Leads,查看 DocType: Item Attribute Value,Attribute Value,屬性值 apps/erpnext/erpnext/crm/doctype/lead/lead.py +65,"Email id must be unique, already exists for {0}",電子郵件ID必須是唯一的,已經存在{0} ,Itemwise Recommended Reorder Level,Itemwise推薦級別重新排序 -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +264,Please select {0} first,請先選擇{0} +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +268,Please select {0} first,請先選擇{0} DocType: Features Setup,To get Item Group in details table,取得詳細表格裡的項目群組 apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +112,Batch {0} of Item {1} has expired.,一批項目的{0} {1}已過期。 DocType: Sales Invoice,Commission,佣金 @@ -3263,7 +3271,7 @@ apps/erpnext/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +4 DocType: Payment Tool,Get Outstanding Vouchers,獲得傑出禮券 DocType: Warranty Claim,Resolved By,議決 DocType: Appraisal,Start Date,開始日期 -apps/erpnext/erpnext/config/hr.py +130,Allocate leaves for a period.,離開一段時間。 +apps/erpnext/erpnext/config/hr.py +138,Allocate leaves for a period.,離開一段時間。 apps/erpnext/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +50,Cheques and Deposits incorrectly cleared,支票及存款不正確清除 apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +139,Click here to verify,點擊這裡核實 apps/erpnext/erpnext/accounts/doctype/account/account.py +46,Account {0}: You can not assign itself as parent account,帳戶{0}:你不能指定自己為父帳戶 @@ -3283,7 +3291,7 @@ DocType: Employee,Educational Qualification,學歷 DocType: Workstation,Operating Costs,運營成本 DocType: Employee Leave Approver,Employee Leave Approver,員工請假審批 apps/erpnext/erpnext/crm/doctype/newsletter/newsletter.py +166,{0} has been successfully added to our Newsletter list.,{0}已成功添加到我們的新聞列表。 -apps/erpnext/erpnext/stock/doctype/item/item.py +433,Row {0}: An Reorder entry already exists for this warehouse {1},行{0}:一個重新排序條目已存在這個倉庫{1} +apps/erpnext/erpnext/stock/doctype/item/item.py +434,Row {0}: An Reorder entry already exists for this warehouse {1},行{0}:一個重新排序條目已存在這個倉庫{1} apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.py +67,"Cannot declare as lost, because Quotation has been made.",不能聲明為丟失,因為報價已經取得進展。 DocType: Purchase Taxes and Charges Template,Purchase Master Manager,採購主檔經理 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +426,Production Order {0} must be submitted,生產訂單{0}必須提交 @@ -3307,7 +3315,7 @@ apps/erpnext/erpnext/hr/doctype/leave_application/leave_application.py +101,Warn apps/erpnext/erpnext/stock/doctype/delivery_note/delivery_note.py +241,Sales Invoice {0} has already been submitted,銷售發票{0}已提交 apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +30,Completion Date,完成日期 DocType: Purchase Invoice Item,Amount (Company Currency),金額(公司貨幣) -apps/erpnext/erpnext/config/hr.py +105,Organization unit (department) master.,組織單位(部門)的主人。 +apps/erpnext/erpnext/config/hr.py +113,Organization unit (department) master.,組織單位(部門)的主人。 apps/erpnext/erpnext/setup/doctype/sms_settings/sms_settings.py +25,Please enter valid mobile nos,請輸入有效的手機號 DocType: Budget Detail,Budget Detail,預算案詳情 apps/erpnext/erpnext/selling/doctype/sms_center/sms_center.py +75,Please enter message before sending,在發送前,請填寫留言 @@ -3323,13 +3331,13 @@ DocType: Purchase Receipt Item,Received and Accepted,收到並接受 ,Serial No Service Contract Expiry,序號服務合同到期 DocType: Item,Unit of Measure Conversion,轉換度量單位 apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +86,Employee can not be changed,僱員不能改變 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +271,You cannot credit and debit same account at the same time,你無法將貸方與借方在同一時間記在同一帳戶 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +273,You cannot credit and debit same account at the same time,你無法將貸方與借方在同一時間記在同一帳戶 DocType: Naming Series,Help HTML,HTML幫助 apps/erpnext/erpnext/hr/doctype/appraisal/appraisal.py +50,Total weightage assigned should be 100%. It is {0},分配的總權重應為100 % 。這是{0} apps/erpnext/erpnext/controllers/status_updater.py +143,Allowance for over-{0} crossed for Item {1},備抵過{0}越過為項目{1} DocType: Address,Name of person or organization that this address belongs to.,此地址所屬的人或組織的名稱。 apps/erpnext/erpnext/public/js/setup_wizard.js +255,Your Suppliers,您的供應商 -apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +58,Cannot set as Lost as Sales Order is made.,不能設置為失落的銷售訂單而成。 +apps/erpnext/erpnext/selling/doctype/quotation/quotation.py +53,Cannot set as Lost as Sales Order is made.,不能設置為失落的銷售訂單而成。 apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +65,Another Salary Structure {0} is active for employee {1}. Please make its status 'Inactive' to proceed.,另外工資結構{0}激活員工{1}。請其狀態“無效”繼續。 DocType: Purchase Invoice,Contact,聯繫 apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +9,Received From,從......收到 @@ -3339,11 +3347,11 @@ DocType: Item,Has Serial No,有序列號 DocType: Employee,Date of Issue,發行日期 apps/erpnext/erpnext/hr/doctype/expense_claim/expense_claim.py +16,{0}: From {0} for {1},{0}:從{0}給 {1} apps/erpnext/erpnext/selling/doctype/sales_order/sales_order.py +150,Row #{0}: Set Supplier for item {1},行#{0}:設置供應商項目{1} -apps/erpnext/erpnext/stock/doctype/item/item.py +114,Website Image {0} attached to Item {1} cannot be found,網站圖像{0}附加到物品{1}無法找到 +apps/erpnext/erpnext/stock/doctype/item/item.py +115,Website Image {0} attached to Item {1} cannot be found,網站圖像{0}附加到物品{1}無法找到 DocType: Issue,Content Type,內容類型 apps/erpnext/erpnext/setup/setup_wizard/industry_type.py +17,Computer,電腦 DocType: Item,List this Item in multiple groups on the website.,列出這個項目在網站上多個組。 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +295,Please check Multi Currency option to allow accounts with other currency,請檢查多幣種選項,允許帳戶與其他貨幣 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +297,Please check Multi Currency option to allow accounts with other currency,請檢查多幣種選項,允許帳戶與其他貨幣 apps/erpnext/erpnext/manufacturing/doctype/bom/bom.py +60,Item: {0} does not exist in the system,項:{0}不存在於系統中 apps/erpnext/erpnext/accounts/doctype/account/account.py +105,You are not authorized to set Frozen value,您無權設定值凍結 DocType: Payment Reconciliation,Get Unreconciled Entries,獲取未調節項 @@ -3353,14 +3361,14 @@ apps/erpnext/erpnext/public/js/setup_wizard.js +56,What does it do?,它有什麼 DocType: Delivery Note,To Warehouse,到倉庫 apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +45,Account {0} has been entered more than once for fiscal year {1},帳戶{0}已多次輸入會計年度{1} ,Average Commission Rate,平均佣金率 -apps/erpnext/erpnext/stock/doctype/item/item.py +356,'Has Serial No' can not be 'Yes' for non-stock item,非庫存項目不能有序號 +apps/erpnext/erpnext/stock/doctype/item/item.py +357,'Has Serial No' can not be 'Yes' for non-stock item,非庫存項目不能有序號 apps/erpnext/erpnext/hr/doctype/attendance/attendance.py +34,Attendance can not be marked for future dates,考勤不能標記為未來的日期 DocType: Pricing Rule,Pricing Rule Help,定價規則說明 DocType: Purchase Taxes and Charges,Account Head,帳戶頭 apps/erpnext/erpnext/config/stock.py +79,Update additional costs to calculate landed cost of items,更新的額外成本來計算項目的到岸成本 apps/erpnext/erpnext/setup/setup_wizard/install_fixtures.py +111,Electrical,電子的 DocType: Stock Entry,Total Value Difference (Out - In),總價值差(輸出 - ) -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +317,Row {0}: Exchange Rate is mandatory,行{0}:匯率是必須的 +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +319,Row {0}: Exchange Rate is mandatory,行{0}:匯率是必須的 apps/erpnext/erpnext/setup/doctype/sales_person/sales_person.py +27,User ID not set for Employee {0},用戶ID不為員工設置{0} DocType: Stock Entry,Default Source Warehouse,預設來源倉庫 DocType: Item,Customer Code,客戶代碼 @@ -3379,15 +3387,15 @@ DocType: Notification Control,Sales Invoice Message,銷售發票訊息 apps/erpnext/erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py +27,Closing Account {0} must be of type Liability / Equity,關閉帳戶{0}的類型必須是負債/權益 DocType: Authorization Rule,Based On,基於 DocType: Sales Order Item,Ordered Qty,訂購數量 -apps/erpnext/erpnext/stock/doctype/item/item.py +589,Item {0} is disabled,項目{0}無效 +apps/erpnext/erpnext/stock/doctype/item/item.py +590,Item {0} is disabled,項目{0}無效 DocType: Stock Settings,Stock Frozen Upto,存貨凍結到...為止 apps/erpnext/erpnext/controllers/recurring_document.py +168,Period From and Period To dates mandatory for recurring {0},期間從和週期要日期強制性的經常性{0} apps/erpnext/erpnext/config/projects.py +13,Project activity / task.,專案活動/任務。 -apps/erpnext/erpnext/config/hr.py +65,Generate Salary Slips,生成工資條 +apps/erpnext/erpnext/config/hr.py +78,Generate Salary Slips,生成工資條 apps/erpnext/erpnext/accounts/doctype/pricing_rule/pricing_rule.py +41,"Buying must be checked, if Applicable For is selected as {0}",採購必須進行檢查,如果適用於被選擇為{0} apps/erpnext/erpnext/setup/doctype/authorization_rule/authorization_rule.py +40,Discount must be less than 100,折扣必須小於100 DocType: Purchase Invoice,Write Off Amount (Company Currency),核銷金額(公司貨幣) -apps/erpnext/erpnext/stock/doctype/item/item.py +424,Row #{0}: Please set reorder quantity,行#{0}:請設置再訂購數量 +apps/erpnext/erpnext/stock/doctype/item/item.py +425,Row #{0}: Please set reorder quantity,行#{0}:請設置再訂購數量 DocType: Landed Cost Voucher,Landed Cost Voucher,到岸成本憑證 apps/erpnext/erpnext/hr/doctype/process_payroll/process_payroll.py +55,Please set {0},請設置{0} DocType: Purchase Invoice,Repeat on Day of Month,在月內的一天重複 @@ -3440,7 +3448,7 @@ apps/erpnext/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py +70, DocType: Manufacturing Settings,Default Work In Progress Warehouse,預設在製品倉庫 apps/erpnext/erpnext/config/accounts.py +117,Default settings for accounting transactions.,會計交易的預設設定。 apps/erpnext/erpnext/stock/doctype/material_request/material_request.py +58,Expected Date cannot be before Material Request Date,訊息大於160個字符將會被分成多個訊息 -apps/erpnext/erpnext/stock/get_item_details.py +119,Item {0} must be a Sales Item,項{0}必須是一個銷售項目 +apps/erpnext/erpnext/stock/get_item_details.py +115,Item {0} must be a Sales Item,項{0}必須是一個銷售項目 DocType: Naming Series,Update Series Number,更新序列號 DocType: Account,Equity,公平 DocType: Sales Order,Printing Details,印刷詳情 @@ -3492,7 +3500,7 @@ DocType: Task,Review Date,評論日期 DocType: Purchase Invoice,Advance Payments,預付款 DocType: Purchase Taxes and Charges,On Net Total,在總淨 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.py +161,Target warehouse in row {0} must be same as Production Order,行目標倉庫{0}必須與生產訂單 -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +97,No permission to use Payment Tool,沒有權限使用支付工具 +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +99,No permission to use Payment Tool,沒有權限使用支付工具 apps/erpnext/erpnext/controllers/recurring_document.py +194,'Notification Email Addresses' not specified for recurring %s,為重複%不是指定的“通知電子郵件地址” apps/erpnext/erpnext/accounts/doctype/account/account.py +123,Currency can not be changed after making entries using some other currency,貨幣不能使用其他貨幣進行輸入後更改 DocType: Company,Round Off Account,四捨五入賬戶 @@ -3515,7 +3523,7 @@ apps/erpnext/erpnext/accounts/report/trial_balance/trial_balance.js +56,Show zer DocType: BOM,Quantity of item obtained after manufacturing / repacking from given quantities of raw materials,製造/從原材料數量給予重新包裝後獲得的項目數量 DocType: Payment Reconciliation,Receivable / Payable Account,應收/應付賬款 DocType: Delivery Note Item,Against Sales Order Item,對銷售訂單項目 -apps/erpnext/erpnext/stock/doctype/item/item.py +572,Please specify Attribute Value for attribute {0},請指定屬性值的屬性{0} +apps/erpnext/erpnext/stock/doctype/item/item.py +573,Please specify Attribute Value for attribute {0},請指定屬性值的屬性{0} DocType: Item,Default Warehouse,預設倉庫 DocType: Task,Actual End Date (via Time Logs),實際結束日期(通過時間日誌) apps/erpnext/erpnext/accounts/doctype/cost_center/cost_center.py +37,Budget cannot be assigned against Group Account {0},不能指定預算給群組帳目{0} @@ -3540,10 +3548,10 @@ DocType: Lead,Blog Subscriber,網誌訂閱者 apps/erpnext/erpnext/config/setup.py +88,Create rules to restrict transactions based on values.,創建規則來限制基於價值的交易。 DocType: HR Settings,"If checked, Total no. of Working Days will include holidays, and this will reduce the value of Salary Per Day",如果選中,則總數。工作日將包括節假日,這將縮短每天的工資的價值 DocType: Purchase Invoice,Total Advance,預付款總計 -apps/erpnext/erpnext/config/hr.py +220,Processing Payroll,處理工資單 +apps/erpnext/erpnext/config/hr.py +235,Processing Payroll,處理工資單 DocType: Opportunity Item,Basic Rate,基礎匯率 DocType: GL Entry,Credit Amount,信貸金額 -apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +142,Set as Lost,設為失落 +apps/erpnext/erpnext/crm/doctype/opportunity/opportunity.js +141,Set as Lost,設為失落 apps/erpnext/erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html +4,Payment Receipt Note,付款收貨注意事項 DocType: Supplier,Credit Days Based On,信貸天基於 DocType: Tax Rule,Tax Rule,稅務規則 @@ -3573,7 +3581,7 @@ DocType: Purchase Receipt Item,Accepted Quantity,允收數量 apps/erpnext/erpnext/accounts/party.py +25,{0}: {1} does not exists,{0}:{1}不存在 apps/erpnext/erpnext/config/accounts.py +18,Bills raised to Customers.,客戶提出的賬單。 apps/erpnext/erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py +26,Project Id,項目編號 -apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +489,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},行無{0}:金額不能大於金額之前對報銷{1}。待審核金額為{2} +apps/erpnext/erpnext/accounts/doctype/journal_entry/journal_entry.py +491,Row No {0}: Amount cannot be greater than Pending Amount against Expense Claim {1}. Pending Amount is {2},行無{0}:金額不能大於金額之前對報銷{1}。待審核金額為{2} apps/erpnext/erpnext/crm/doctype/newsletter_list/newsletter_list.py +40,{0} subscribers added,{0}用戶已新增 DocType: Maintenance Schedule,Schedule,時間表 DocType: Cost Center,"Define Budget for this Cost Center. To set budget action, see ""Company List""",定義預算這個成本中心。要設置預算的行動,請參閱“企業名錄” @@ -3634,19 +3642,20 @@ apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +33,Please en DocType: POS Profile,POS Profile,POS簡介 DocType: Payment Gateway Account,Payment URL Message,付款URL信息 apps/erpnext/erpnext/config/accounts.py +163,"Seasonality for setting budgets, targets etc.",季節性設置預算,目標等。 -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +238,Row {0}: Payment Amount cannot be greater than Outstanding Amount,行{0}:付款金額不能大於傑出金額 +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.js +242,Row {0}: Payment Amount cannot be greater than Outstanding Amount,行{0}:付款金額不能大於傑出金額 apps/erpnext/erpnext/buying/doctype/supplier/supplier.js +66,Total Unpaid,總未付 -apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +21,Time Log is not billable,時間日誌是不計費 -apps/erpnext/erpnext/stock/get_item_details.py +122,"Item {0} is a template, please select one of its variants",項目{0}是一個模板,請選擇它的一個變體 +apps/erpnext/erpnext/projects/doctype/time_log/time_log_list.js +32,Time Log is not billable,時間日誌是不計費 +apps/erpnext/erpnext/stock/get_item_details.py +118,"Item {0} is a template, please select one of its variants",項目{0}是一個模板,請選擇它的一個變體 apps/erpnext/erpnext/public/js/setup_wizard.js +202,Purchaser,購買者 apps/erpnext/erpnext/hr/doctype/salary_structure/salary_structure.py +81,Net pay cannot be negative,淨工資不能為負 -apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +107,Please enter the Against Vouchers manually,請手動輸入對優惠券 +apps/erpnext/erpnext/accounts/doctype/payment_tool/payment_tool.py +109,Please enter the Against Vouchers manually,請手動輸入對優惠券 DocType: SMS Settings,Static Parameters,靜態參數 DocType: Purchase Order,Advance Paid,提前支付 DocType: Item,Item Tax,產品稅 apps/erpnext/erpnext/buying/doctype/purchase_order/purchase_order.js +606,Material to Supplier,材料到供應商 apps/erpnext/erpnext/stock/doctype/stock_entry/stock_entry.js +179,Excise Invoice,消費稅發票 DocType: Expense Claim,Employees Email Id,員工的電子郵件ID +DocType: Employee Attendance Tool,Marked Attendance,明顯考勤 apps/erpnext/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py +159,Current Liabilities,流動負債 apps/erpnext/erpnext/config/crm.py +48,Send mass SMS to your contacts,發送群發短信到您的聯繫人 DocType: Purchase Taxes and Charges,Consider Tax or Charge for,考慮稅收或收費 @@ -3669,7 +3678,7 @@ DocType: Item Attribute,Numeric Values,數字值 apps/erpnext/erpnext/public/js/setup_wizard.js +174,Attach Logo,附加標誌 DocType: Customer,Commission Rate,佣金率 apps/erpnext/erpnext/stock/doctype/item/item.js +230,Make Variant,在Variant -apps/erpnext/erpnext/config/hr.py +145,Block leave applications by department.,按部門封鎖請假申請。 +apps/erpnext/erpnext/config/hr.py +153,Block leave applications by department.,按部門封鎖請假申請。 apps/erpnext/erpnext/templates/pages/cart.html +51,Cart is Empty,車是空的 DocType: Production Order,Actual Operating Cost,實際運行成本 apps/erpnext/erpnext/accounts/doctype/account/account.py +80,Root cannot be edited.,root不能被編輯。 @@ -3688,7 +3697,7 @@ apps/erpnext/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +380,Cos DocType: Item,Automatically create Material Request if quantity falls below this level,自動創建材料,如果申請數量低於這個水平 ,Item-wise Purchase Register,項目明智的購買登記 DocType: Batch,Expiry Date,到期時間 -apps/erpnext/erpnext/stock/doctype/item/item.py +418,"To set reorder level, item must be a Purchase Item or Manufacturing Item",要設置訂貨點水平,項目必須購買項目或生產項目 +apps/erpnext/erpnext/stock/doctype/item/item.py +419,"To set reorder level, item must be a Purchase Item or Manufacturing Item",要設置訂貨點水平,項目必須購買項目或生產項目 ,Supplier Addresses and Contacts,供應商的地址和聯繫方式 apps/erpnext/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +268,Please select Category first,請先選擇分類 apps/erpnext/erpnext/config/projects.py +18,Project master.,專案主持。 From 31619f0a8391d9c00c3d706d138294b2592331d1 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Wed, 3 Feb 2016 15:13:55 +0530 Subject: [PATCH 44/46] [docs] --- erpnext/docs/current/api/accounts/index.txt | 4 ++-- erpnext/docs/current/api/config/index.txt | 22 +++++++++---------- .../docs/current/api/controllers/index.txt | 20 ++++++++--------- erpnext/docs/current/api/hr/index.txt | 4 ++-- erpnext/docs/current/api/index.txt | 6 ++--- erpnext/docs/current/api/setup/index.txt | 4 ++-- .../current/api/setup/setup_wizard/index.txt | 8 +++---- .../docs/current/api/shopping_cart/index.txt | 4 ++-- erpnext/docs/current/api/startup/index.txt | 4 ++-- erpnext/docs/current/api/stock/index.txt | 8 +++---- erpnext/docs/current/api/utilities/index.txt | 4 ++-- .../docs/current/models/accounts/account.html | 4 ++++ .../accounts/period_closing_voucher.html | 2 +- .../models/accounts/sales_invoice_item.html | 4 ++-- .../models/accounts/shipping_rule.html | 9 ++++++++ erpnext/docs/current/models/hr/holiday.html | 4 ++-- .../models/selling/sales_order_item.html | 4 ++-- .../models/stock/delivery_note_item.html | 4 ++-- .../docs/current/models/stock/price_list.html | 2 ++ .../stock/stock_reconciliation_item.html | 3 ++- .../docs/current/models/stock/warehouse.html | 2 ++ 21 files changed, 72 insertions(+), 54 deletions(-) diff --git a/erpnext/docs/current/api/accounts/index.txt b/erpnext/docs/current/api/accounts/index.txt index cf92d5a469..33f157c7ac 100644 --- a/erpnext/docs/current/api/accounts/index.txt +++ b/erpnext/docs/current/api/accounts/index.txt @@ -1,4 +1,4 @@ erpnext.accounts.general_ledger -erpnext.accounts.utils +erpnext.accounts erpnext.accounts.party -erpnext.accounts \ No newline at end of file +erpnext.accounts.utils \ No newline at end of file diff --git a/erpnext/docs/current/api/config/index.txt b/erpnext/docs/current/api/config/index.txt index b8e76b568e..7d4ebc5d65 100644 --- a/erpnext/docs/current/api/config/index.txt +++ b/erpnext/docs/current/api/config/index.txt @@ -1,15 +1,15 @@ -erpnext.config.stock -erpnext.config.hr +erpnext.config.accounts erpnext.config.buying -erpnext.config.support -erpnext.config -erpnext.config.learn -erpnext.config.website +erpnext.config.crm erpnext.config.desktop erpnext.config.docs -erpnext.config.selling -erpnext.config.projects -erpnext.config.setup -erpnext.config.accounts +erpnext.config.hr +erpnext.config +erpnext.config.learn erpnext.config.manufacturing -erpnext.config.crm \ No newline at end of file +erpnext.config.projects +erpnext.config.selling +erpnext.config.setup +erpnext.config.stock +erpnext.config.support +erpnext.config.website \ No newline at end of file diff --git a/erpnext/docs/current/api/controllers/index.txt b/erpnext/docs/current/api/controllers/index.txt index ad58d1126c..3965811e80 100644 --- a/erpnext/docs/current/api/controllers/index.txt +++ b/erpnext/docs/current/api/controllers/index.txt @@ -1,14 +1,14 @@ +erpnext.controllers.accounts_controller +erpnext.controllers.buying_controller +erpnext.controllers erpnext.controllers.item_variant erpnext.controllers.print_settings -erpnext.controllers -erpnext.controllers.recurring_document -erpnext.controllers.accounts_controller -erpnext.controllers.sales_and_purchase_return -erpnext.controllers.buying_controller -erpnext.controllers.website_list_for_contact -erpnext.controllers.stock_controller -erpnext.controllers.trends -erpnext.controllers.status_updater erpnext.controllers.queries +erpnext.controllers.recurring_document +erpnext.controllers.sales_and_purchase_return +erpnext.controllers.selling_controller +erpnext.controllers.status_updater +erpnext.controllers.stock_controller erpnext.controllers.taxes_and_totals -erpnext.controllers.selling_controller \ No newline at end of file +erpnext.controllers.trends +erpnext.controllers.website_list_for_contact \ No newline at end of file diff --git a/erpnext/docs/current/api/hr/index.txt b/erpnext/docs/current/api/hr/index.txt index bbd031146f..c515b53205 100644 --- a/erpnext/docs/current/api/hr/index.txt +++ b/erpnext/docs/current/api/hr/index.txt @@ -1,2 +1,2 @@ -erpnext.hr.utils -erpnext.hr \ No newline at end of file +erpnext.hr +erpnext.hr.utils \ No newline at end of file diff --git a/erpnext/docs/current/api/index.txt b/erpnext/docs/current/api/index.txt index 396033d494..f7f8f5e618 100644 --- a/erpnext/docs/current/api/index.txt +++ b/erpnext/docs/current/api/index.txt @@ -1,5 +1,5 @@ +erpnext.__init__ +erpnext.__version__ erpnext.exceptions erpnext.hooks -erpnext.tasks -erpnext.__init__ -erpnext.__version__ \ No newline at end of file +erpnext.tasks \ No newline at end of file diff --git a/erpnext/docs/current/api/setup/index.txt b/erpnext/docs/current/api/setup/index.txt index f00d546c82..63162d85a9 100644 --- a/erpnext/docs/current/api/setup/index.txt +++ b/erpnext/docs/current/api/setup/index.txt @@ -1,3 +1,3 @@ -erpnext.setup.utils +erpnext.setup erpnext.setup.install -erpnext.setup \ No newline at end of file +erpnext.setup.utils \ No newline at end of file diff --git a/erpnext/docs/current/api/setup/setup_wizard/index.txt b/erpnext/docs/current/api/setup/setup_wizard/index.txt index 53da4fe315..6e21162d28 100644 --- a/erpnext/docs/current/api/setup/setup_wizard/index.txt +++ b/erpnext/docs/current/api/setup/setup_wizard/index.txt @@ -1,8 +1,8 @@ -erpnext.setup.setup_wizard.test_setup_wizard +erpnext.setup.setup_wizard.default_website erpnext.setup.setup_wizard -erpnext.setup.setup_wizard.test_setup_data +erpnext.setup.setup_wizard.industry_type erpnext.setup.setup_wizard.install_fixtures erpnext.setup.setup_wizard.sample_data -erpnext.setup.setup_wizard.default_website erpnext.setup.setup_wizard.setup_wizard -erpnext.setup.setup_wizard.industry_type \ No newline at end of file +erpnext.setup.setup_wizard.test_setup_data +erpnext.setup.setup_wizard.test_setup_wizard \ No newline at end of file diff --git a/erpnext/docs/current/api/shopping_cart/index.txt b/erpnext/docs/current/api/shopping_cart/index.txt index cbbce0ac40..c95a01d0e4 100644 --- a/erpnext/docs/current/api/shopping_cart/index.txt +++ b/erpnext/docs/current/api/shopping_cart/index.txt @@ -1,5 +1,5 @@ erpnext.shopping_cart.cart erpnext.shopping_cart erpnext.shopping_cart.product -erpnext.shopping_cart.utils -erpnext.shopping_cart.test_shopping_cart \ No newline at end of file +erpnext.shopping_cart.test_shopping_cart +erpnext.shopping_cart.utils \ No newline at end of file diff --git a/erpnext/docs/current/api/startup/index.txt b/erpnext/docs/current/api/startup/index.txt index 0cf302ed91..40766bcbc3 100644 --- a/erpnext/docs/current/api/startup/index.txt +++ b/erpnext/docs/current/api/startup/index.txt @@ -1,4 +1,4 @@ erpnext.startup.boot -erpnext.startup.report_data_map +erpnext.startup erpnext.startup.notifications -erpnext.startup \ No newline at end of file +erpnext.startup.report_data_map \ No newline at end of file diff --git a/erpnext/docs/current/api/stock/index.txt b/erpnext/docs/current/api/stock/index.txt index 01082a7be2..27cb1482d3 100644 --- a/erpnext/docs/current/api/stock/index.txt +++ b/erpnext/docs/current/api/stock/index.txt @@ -1,6 +1,6 @@ -erpnext.stock.stock_ledger -erpnext.stock -erpnext.stock.utils erpnext.stock.get_item_details +erpnext.stock +erpnext.stock.reorder_item erpnext.stock.stock_balance -erpnext.stock.reorder_item \ No newline at end of file +erpnext.stock.stock_ledger +erpnext.stock.utils \ No newline at end of file diff --git a/erpnext/docs/current/api/utilities/index.txt b/erpnext/docs/current/api/utilities/index.txt index ec810e96e3..86ae38fc1d 100644 --- a/erpnext/docs/current/api/utilities/index.txt +++ b/erpnext/docs/current/api/utilities/index.txt @@ -1,3 +1,3 @@ -erpnext.utilities.transaction_base erpnext.utilities.address_and_contact -erpnext.utilities \ No newline at end of file +erpnext.utilities +erpnext.utilities.transaction_base \ No newline at end of file diff --git a/erpnext/docs/current/models/accounts/account.html b/erpnext/docs/current/models/accounts/account.html index 37c774eb4c..306af7d107 100644 --- a/erpnext/docs/current/models/accounts/account.html +++ b/erpnext/docs/current/models/accounts/account.html @@ -969,6 +969,10 @@ Credit + + + +
      10. diff --git a/erpnext/docs/current/models/accounts/period_closing_voucher.html b/erpnext/docs/current/models/accounts/period_closing_voucher.html index 1a3aac1fc8..c14226eed0 100644 --- a/erpnext/docs/current/models/accounts/period_closing_voucher.html +++ b/erpnext/docs/current/models/accounts/period_closing_voucher.html @@ -157,7 +157,7 @@ Closing Account Head

        - The account head under Liability or Equity, in which Profit/Loss will be booked

        + The account head under Liability, in which Profit/Loss will be booked

        diff --git a/erpnext/docs/current/models/accounts/sales_invoice_item.html b/erpnext/docs/current/models/accounts/sales_invoice_item.html index e36089de93..a8db705d05 100644 --- a/erpnext/docs/current/models/accounts/sales_invoice_item.html +++ b/erpnext/docs/current/models/accounts/sales_invoice_item.html @@ -596,8 +596,8 @@ target_warehouse Link - - Target Warehouse + + Customer Warehouse (Optional) diff --git a/erpnext/docs/current/models/accounts/shipping_rule.html b/erpnext/docs/current/models/accounts/shipping_rule.html index beadc90ff4..8f859cbc60 100644 --- a/erpnext/docs/current/models/accounts/shipping_rule.html +++ b/erpnext/docs/current/models/accounts/shipping_rule.html @@ -413,6 +413,15 @@ Net Weight
      11. + +
      12. + + +Shopping Cart Shipping Rule + +
      13. + + diff --git a/erpnext/docs/current/models/hr/holiday.html b/erpnext/docs/current/models/hr/holiday.html index b84eb16cfa..59043c876c 100644 --- a/erpnext/docs/current/models/hr/holiday.html +++ b/erpnext/docs/current/models/hr/holiday.html @@ -40,7 +40,7 @@ 1 - description + description Text Editor @@ -52,7 +52,7 @@ 2 - holiday_date + holiday_date Date diff --git a/erpnext/docs/current/models/selling/sales_order_item.html b/erpnext/docs/current/models/selling/sales_order_item.html index 323da91cfe..c3a745fed0 100644 --- a/erpnext/docs/current/models/selling/sales_order_item.html +++ b/erpnext/docs/current/models/selling/sales_order_item.html @@ -518,8 +518,8 @@ target_warehouse Link - - Target Warehouse + + Customer Warehouse (Optional) diff --git a/erpnext/docs/current/models/stock/delivery_note_item.html b/erpnext/docs/current/models/stock/delivery_note_item.html index 1c48c11e0e..df205c8f54 100644 --- a/erpnext/docs/current/models/stock/delivery_note_item.html +++ b/erpnext/docs/current/models/stock/delivery_note_item.html @@ -485,8 +485,8 @@ target_warehouse Link - - To Warehouse (Optional) + + Customer Warehouse (Optional) diff --git a/erpnext/docs/current/models/stock/price_list.html b/erpnext/docs/current/models/stock/price_list.html index 60d5b2eabe..28e2cec31e 100644 --- a/erpnext/docs/current/models/stock/price_list.html +++ b/erpnext/docs/current/models/stock/price_list.html @@ -391,6 +391,8 @@ Price List Master + +
      14. diff --git a/erpnext/docs/current/models/stock/stock_reconciliation_item.html b/erpnext/docs/current/models/stock/stock_reconciliation_item.html index 701bbde26f..c20d7e4f18 100644 --- a/erpnext/docs/current/models/stock/stock_reconciliation_item.html +++ b/erpnext/docs/current/models/stock/stock_reconciliation_item.html @@ -111,7 +111,8 @@ Currency Valuation Rate - +

        + Do not include symbols (ex. $)

        diff --git a/erpnext/docs/current/models/stock/warehouse.html b/erpnext/docs/current/models/stock/warehouse.html index c0fa5d3d6b..2d7108b2b0 100644 --- a/erpnext/docs/current/models/stock/warehouse.html +++ b/erpnext/docs/current/models/stock/warehouse.html @@ -629,6 +629,8 @@ A logical Warehouse against which stock entries are made. + +
      15. From 94bfe8ea0ded866b137992bb0e344bcc6532bca7 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Wed, 3 Feb 2016 15:14:17 +0530 Subject: [PATCH 45/46] [change-log] --- erpnext/change_log/v6/v6_20_0.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 erpnext/change_log/v6/v6_20_0.md diff --git a/erpnext/change_log/v6/v6_20_0.md b/erpnext/change_log/v6/v6_20_0.md new file mode 100644 index 0000000000..a7e351db72 --- /dev/null +++ b/erpnext/change_log/v6/v6_20_0.md @@ -0,0 +1,4 @@ +- Added new **Employee Attendance Tool**, to manage attendace in bulk. +- In Profit and Loss Statement and Cash Flow repots, **accumulated periodic balance** is not optional based on filters +- Removed **Is Service Item** from Item, all sales items are available for service. +- Now **Sales Person Group** can be selected in a sales transaction. All the activities made by the children of any group, will also be considered as it's own activity. \ No newline at end of file From fba61abd2a48987a77eb469c0184f28d9ab38808 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Wed, 3 Feb 2016 15:53:56 +0600 Subject: [PATCH 46/46] bumped to version 6.20.0 --- erpnext/__version__.py | 2 +- erpnext/hooks.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/erpnext/__version__.py b/erpnext/__version__.py index 23bade8adf..7699ef1013 100644 --- a/erpnext/__version__.py +++ b/erpnext/__version__.py @@ -1,2 +1,2 @@ from __future__ import unicode_literals -__version__ = '6.19.0' +__version__ = '6.20.0' diff --git a/erpnext/hooks.py b/erpnext/hooks.py index b0fed28351..9a83652a16 100644 --- a/erpnext/hooks.py +++ b/erpnext/hooks.py @@ -7,7 +7,7 @@ app_publisher = "Frappe Technologies Pvt. Ltd." app_description = """ERP made simple""" app_icon = "icon-th" app_color = "#e74c3c" -app_version = "6.19.0" +app_version = "6.20.0" app_email = "info@erpnext.com" app_license = "GNU General Public License (v3)" source_link = "https://github.com/frappe/erpnext" diff --git a/setup.py b/setup.py index 8717765c3c..b68051187a 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages from pip.req import parse_requirements -version = "6.19.0" +version = "6.20.0" requirements = parse_requirements("requirements.txt", session="") setup(

    #n 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 literal 0 HcmV?d00001 diff --git a/erpnext/docs/assets/img/articles/discount-2.png b/erpnext/docs/assets/img/articles/discount-2.png new file mode 100644 index 0000000000000000000000000000000000000000..0db98aec074af938e9a331c90d6e251506672bb5 GIT binary patch literal 79214 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 literal 0 HcmV?d00001 diff --git a/erpnext/docs/assets/img/articles/sales-person-transaction-1.png b/erpnext/docs/assets/img/articles/sales-person-transaction-1.png new file mode 100644 index 0000000000000000000000000000000000000000..c9aa23ea39d509f72533c16bdeb1de7bbf6ca85a GIT binary patch literal 55207 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 DCyLm2 literal 0 HcmV?d00001 diff --git a/erpnext/docs/assets/img/articles/sales-person-transaction-2.png b/erpnext/docs/assets/img/articles/sales-person-transaction-2.png new file mode 100644 index 0000000000000000000000000000000000000000..39bafaeb7e4ee6988292aeef1d9a756fe1771da0 GIT binary patch literal 58566 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ÝUzZ}jTyZHD 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 literal 0 HcmV?d00001 diff --git a/erpnext/docs/assets/img/articles/sales-person-transaction-4.png b/erpnext/docs/assets/img/articles/sales-person-transaction-4.png new file mode 100644 index 0000000000000000000000000000000000000000..5883c76f095e487907979e4a1fe21a40d6631a9d GIT binary patch literal 126688 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�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%0D@lC&LV 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